/***** FONTES *****/
@font-face {
    font-family: "Source-Sans-Pro";
    src: URL("../fonts/SourceSansPro-Regular.ttf");
}
@font-face {
    font-family: "Source Sans Pro Bold";
    src: URL("../fonts/SourceSansPro-Bold.ttf");
}
@font-face {
    font-family: "Source-Sans-Pro-SemiBold";
    src: URL("../fonts/SourceSansPro-SemiBold.ttf");
}

/***** GERAL *****/
body {
	background-color: #f5f5f5 !important;
	font-family: "Source-Sans-Pro";
	font-size: 14px;
}
.container {
    width: 90% !important;
    max-width: inherit;
}
.fs-6 {
	font-size: 12px !important;
}
.fs-7 {
	font-size: 10px !important;
}

.fw-semibold {
	font-weight: normal !important;
	font-family: "Source-Sans-Pro-SemiBold" !important;
}
.text-success td {
	color: #3CB371;
}
.cursor-pointer {
	cursor: pointer;
}
.attention-message {
	width: 100%;
	padding: 6px 10px;
	background-color: #f0ad4e;
	font-size: 12px;
	margin-bottom: 15px;
}

.pagination .active a {
	background-color: rgba(9, 30, 66, 0.08) !important;
	box-shadow: inset 0px 1px 11px -4px #999 !important;	
}
.center-vertical {
	  display: -webkit-flexbox;
	  display: -ms-flexbox;
	  display: -webkit-flex;
	  display: flex;
	  -webkit-flex-align: center;
	  -ms-flex-align: center;
	  -webkit-align-items: center;
	  align-items: center;
}
.alert-growl {
	top: 70px;
	z-index: 9;
	width: 525px;
	position: fixed;
	left: calc(50% - 262px);
	animation: cssAnimation 0s ease-in 5s forwards;
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}

.legenda-fechado {
	width: 35px;
	height: 35px;
	display: -webkit-inline-box;
	background-color: #ccc;
}
.legenda-durante-semana {
	width: 35px;
	height: 35px;
	line-height: 15px;
	display: -webkit-inline-box;
	background-color: rgb(42,50,32);
}
.legenda-final-semana {
	width: 35px;
  	height: 35px;
	display: -webkit-inline-box;
	background-color: rgb(138,46,54);
}
.col-legenda {
	top: 3px;
	position: relative;
	line-height: 15px;
}

.equal-height {
    display: flex; /* Ativa o Flexbox no elemento pai (row) */
}

.equal-height > div {
    display: flex; /* Ativa o Flexbox nas colunas */
    flex-direction: column; /* Organiza os itens em coluna */
}

.equal-height > div > div {
    flex-grow: 1; /* Permite que as divs internas cresçam para preencher o espaço */
}

@keyframes cssAnimation {
    to {
  		display: block;
  		visibility: hidden;
    }
}

/***** TELA PRINCIPAL *****/
.card {
	border: none;
	margin-top: 30px;
	margin-bottom: 30px;
}
.card-header {
	font-family: "Source-Sans-Pro-SemiBold";
	background-color: #fff;
	border: none;
	text-transform: uppercase;
	color: #888;
}

/***** TABLE *****/
.table .thead-dark th {
	color: #666;
	background-color: #ddd;
	border: 2px solid #b7b5b5;
	font-weight: normal;
	text-transform: uppercase;
	font-size: 12px;
}

/***** TABS *****/
.nav-tabs .nav-link {
	border: none;
	color: #888;
}
.nav-tabs .nav-link.active {
	background: #f5f5f5;
	border-bottom: 1px solid #fff !important;
}
.tab-content > .active {
	border-bottom: 1px solid #dee2e6;
}

/***** INPUT *****/
input[readonly].form-control {
  background-color: #e9ecef;
  opacity: 1 !important;
}

/***** LOADING *****/
/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 9999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Transparent Overlay */
.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
	opacity: 0.5;
}



/* Animation */
@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/***** BOTOES ******/
.btn {
	font-size: 12px;
	text-transform: uppercase;
}
.btn-default {
	background-color: #d6b36b;
	color: #fff;
	border: 1px solid #d6b36b;
}
.btn-mini {
	font-size: 10px;
	padding: 2px 4px;
}
.btn-menu {
	font-family: "Source-Sans-Pro-SemiBold";
	background-color: rgb(255,172,51);
	color: RGB(56,74,54);
}
.btn-menu:hover {
	background-color: rgb(255,172,51);
	color: RGB(56,74,54);
}
.btn-sair {
	font-family: "Source-Sans-Pro-SemiBold";
	background-color: transparent;
	color: #fff;
}
.btn-sair:hover {
	background-color: rgb(138,46,54);
	color: #fff;
}
.btn.show {
	border: none;
}
.btn.disabled {
	border: none;
}

/***** MENU *****/
.bg-menu {
	background-color: RGBA(56, 74, 54, 0.95) !important;
}
.navbar-expand-lg .navbar-nav .nav-link {
	padding-right: .8rem;
	padding-left: .8rem;
}
.dropdown-item {
	font-size: 14px;
}

/***** LOGIN *****/
.login {
	width: auto;
	max-width: 370px;
	margin: 10% auto;
	background: #fff;
	border: 1px solid #dddddd;
	padding: 20px;
}
.login label {
	font-weight: normal !important;
}

/***** SIMPLE AUTOCOMPLETE *****/
div.autocomplete {
	z-index: 1000;
	position: absolute;
	min-width: 429px;
	background-color: #eee;
	border: 2px solid #ccc;
	font-size: 14px;
}
div.autocomplete ul {
	padding-left: 0;
	margin: 0;
	list-style: none;
}
div.autocomplete ul li {
	padding: 8px 10px;
	cursor: pointer;
	color: #000;
}
div.autocomplete ul li.sel {
	background-color: #87cefa;
}
