body {
    color: #4e5b68;
    font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
}

.widget.widget-4 .widget-head .heading {
    font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
}

.btn {
    padding: 5px 14px;
    transition: background-color 100ms cubic-bezier(0.465, 0.183, 0.153, 0.946);
    border: 0;
    border-radius: 3px;
    font-size: 14px !important;
    font-weight: 400;
}

.btn.btn-default {
    color: #4e5b68;
    background-color: rgba(43, 50, 57, 0.1);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.btn.btn-default:hover {
    background-color: rgba(43, 50, 57, 0.15);
}

/* .btn.btn-primary {
    background-color: #458ccf;
}

.btn.btn-primary:hover {
    background-color: #317abf;
} */

input,
button,
select,
textarea {
    font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
}

.metro {
    display: flex;
    font-family: Raleway, sans-serif;
    font-size: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.metro a:link,
.metro div {
    min-width: 30%;
    margin: 12px;
    padding: 1em;
    transition: all 150ms cubic-bezier(0.465, 0.183, 0.153, 0.946);
    text-align: center;
    text-decoration: none;
    /*text-transform: capitalize; */
    color: #999;
    background-color: #eee;
    font-weight: bold;
    flex: 1 1 30%;
}

.metro a:link .fa,
.metro div .fa {
    position: static;
    display: block;
    line-height: 1.4em;
}

.metro a:hover {
    color: #fff;
    background-color: #37a6cd;
}

#menu .slim-scroll > ul .fa a {
    padding: 0 0 0 50px;
    font-family: 'Open Sans', sans-serif;
}

#menu .slim-scroll > ul .fa::before {
    position: absolute;
    left: 20px;
    color: #37a6cd;
    font-size: 17px;
    line-height: 38px;
}

#wrapper {
    overflow: visible;
}

#wrapper .container-960 {
    min-height: 100vh;
}

#wrapper #content:only-child {
    margin: 0;
}

#logo {
    position: fixed;
    bottom: 0;
    left: 0;
    opacity: .5;
}

@media screen and (max-width: 640px) {
    #logo {
        display: none;
    }
}

.dropdown-menu .fa {
    font-family: inherit;
}

.dropdown-menu .fa::before {
    position: absolute;
    top: 0;
    right: 10px;
    left: auto;
    color: #c4c4c4;
    font-family: FontAwesome, sans-serif;
    font-size: 17px;
}

.widget-stats .fa {
    padding: 0 5px 0 0;
    vertical-align: super;
}

.widget-stats .fa::before {
    position: relative;
    top: 0;
    left: 0;
    margin-top: -30px;
    color: #bebebe;
    font-size: 30px;
}

.navbar.main .appbrand > span span {
    padding: 2px;
    color: #37a6cd;
}

input[type=text],
input[type=password],
input[type=date],
select,
textarea {
    transition: background-color 234ms cubic-bezier(0.465, 0.183, 0.153, 0.946);
    color: #000;
}

input[type=text]:required:invalid,
input[type=password]:required:invalid,
input[type=date]:required:invalid,
select:required:invalid,
textarea:required:invalid {
    background-color: #efe1e1;
}

label,
input,
button,
select,
textarea {
    font-size: 12px;
}

.required > label::after {
    content: '\f069';
    color: #fe4445;
    font-family: 'FontAwesome';
}

.spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 300ms cubic-bezier(0.465, 0.183, 0.153, 0.946), cubic-bezier(0.465, 0.183, 0.153, 0.946);
    transform: scale(1.15);
    pointer-events: none;
    opacity: 0;
}

.spinner .inner {
    position: fixed;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 65%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.spinner::after {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-color: rgba(255, 255, 255, 0.7);
}

.spinner.visible {
    transition: transform 0.3s cubic-bezier(0.465, 0.183, 0.153, 0.946);
    transform: scale(1);
    pointer-events: auto;
    opacity: 1;
}

.notifications {
    position: fixed;
    z-index: 800;
    bottom: 0;
    left: 0;
    width: 300px;
}

.notification {
    display: flex;
    min-height: 40px;
    max-height: 253px;
    margin: 0 0 15px;
    transition: all 0.3s cubic-bezier(0.465, 0.183, 0.153, 0.946);
    transform: translateY(20px);
    opacity: 0;
    color: rgba(255, 255, 255, 0.9);
    align-content: space-around;
}

.notification.open {
    transform: translateY(0);
    opacity: 1;
}

.notification::before {
    width: 44px;
    height: 100%;
    padding: 14px 15px;
    background-color: rgba(0, 0, 0, 0.1);
    font-family: 'FontAwesome';
    font-size: 1.1em;
}

.notification.error {
    background: #e25440;
}

.notification.error::before {
    content: '\f071';
}

.notification.success {
    background: #9fbb58;
}

.notification.success::before {
    content: '\f058';
}

.notification > span {
    display: block;
    text-align: center;
    align-self: center;
    flex: 1 0;
}

.notification > button {
    width: 34px;
    transition: color 500ms cubic-bezier(0.465, 0.183, 0.153, 0.946);
    opacity: 1 !important;
    color: rgba(255, 255, 255, 0.6);
    border: none;
    background-color: transparent;
    text-shadow: none;
    font-size: 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.notification > button::before {
    font-family: 'FontAwesome';
}

.notification > button.close::before {
    content: '\f057';
}

.notification > button:hover {
    color: #fff;
}

input.maiuscula {
    text-transform: uppercase;
}

.form-msg {
    font-size: 12px;
    color: black;
}

[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
    display: none !important;
}

.msg-valid {
    color: red;
}

.text-uppercase {
    text-transform: uppercase;
}

.links a {
    text-decoration: none;
}

.borda {
    border: 1px solid black;
}

@media print {
    .no-print, .no-print * {
        display: none !important;
    }
}

.danger-background {
    background-color: rgba(233, 83, 79, 0.7) !important;
}

.warning-backgound {
    background-color: #f0ad4e !important;
}

.success-background {
    background-color: #5cb85c !important;
}

.vertical {
    transform: rotate(-90deg);
    white-space: pre;
    width: 10px;
}

.tabela tr td {
    line-height: 1px !important;
    height: 1px !important;
}

.tabela tr th {
    line-height: 1px !important;
    height: 1px !important;
}

.div-vertical {
    letter-spacing: 0px;
}

.select2-results__option[aria-selected=true] {
    display: none;
}

.hiddenEvent{display: none;}
.fc-other-month .fc-day-number { display:none;}

td.fc-other-month .fc-day-number {
     visibility: hidden;
}
