/** GLOABL **/

.box {
}

a {
  color: #9E7A66;
}

a:hover {
  color: #ECA680;
}

body {
  background-color: #F1F8F1;
}

p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 2rem;
  margin-bottom: 1em;
  margin-top: 1em;
}

h1 {
  font-family: 'Dosis', sans-serif;
  font-weight: 700;
  color: #9E7A66;
}

h2 {
  font-family: 'Dosis', sans-serif;
  font-weight: 700;
  color: #9E7A66;
}

h3 {
  font-family: 'Dosis', sans-serif;
  font-weight: 700;
  color: #9E7A66;
}

h4 {
  font-family: 'Dosis', sans-serif;
  font-weight: 700;
  color: #9E7A66;
}

h5 {
  font-family: 'Dosis', sans-serif;
  font-weight: 700;
  color: #9E7A66;
}

.lead {
  font-family: 'Dosis', sans-serif;
  font-weight: 200;
}

.page-link {
  color: #9E7A66;
}

/** END GLOABL **/


/* CUSTOM BACKGROUNDS */
.bg-brown {
  background-color: #9E7A66;
}

.bg-dark-blue {
  background-color: #3b4a5c;
}
/* END CUSTOM BACKGROUNDS */

/** DEFAULT BUTTON **/
.btn-light {
  background-color: #ecebde;
  color: #9E7A66;
  border-color: #9E7A66;
}

.btn-light:hover {
  background-color: #ECA680;
  color: #ecebde;
  border-color: #9E7A66;
}

.btn-light:active {
  background-color: #ecebde;
  color: #9E7A66;
  border-color: #9E7A66;
}

.btn-dark {
  background-color: #9E7A66;
  color: #F1F8F1;
  border-color: #ecebde;
}

.btn-dark:hover {
  background-color: #ECA680;
  color: #ffffff;
  border-color: #ecebde;
}

.btn-dark:active {
  background-color: #9E7A66;
  color: #ecebde;
  border-color: #ecebde;
}

/** END DEFAULT BUTTON **/


/** PAINEL MENU **/
#wrapper{padding:90px 15px;}
.navbar-expand-lg .navbar-nav.side-nav{flex-direction: column;}
.header-top{box-shadow: 0 3px 5px rgba(0,0,0,.1)}


@media(min-width:992px) {
#wrapper{margin-left:70px}
.navbar-nav.side-nav{text-align:center;background: #9E7A66;box-shadow: 2px 1px 2px rgba(0,0,0,.1);position:fixed;top:59px;flex-direction: column!important;left:0px;width:70px;bottom:0;padding-bottom:40px}
.side-nav li { border-bottom: 1px solid rgba(255,255,255,.5);}
.side-nav li a {padding: 20px;display:block;position:relative;}
.navbar-nav li a svg{font-size: 25px;margin: 0 10px 0 5px;}
.navbar-nav li a .ttip {opacity:0;position:absolute;    background: #999;
    left: 0px;
    white-space: nowrap;
    top: 16px;
    border-radius: 3px;
    padding: 5px 10px;
    transition: .5s ease all;}
.navbar-nav li a:hover .ttip {opacity:1;left: 70px; color: #F1F8F1}
.navbar-nav li a .ttip:after {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-right-color: #999;
  border-width: 5px;
  margin-top: -5px;
}
}

/** END PAINEL MENU **/

/* Paginação */

.pagination .active a {
  background-color: #F1F8F1!important;
  color: #9E7A66!important;
  border-color: #9E7A66!important;
}

.pagination a:hover,
.pagination .active a {
    background-color: #F1F8F1;
    color: #9E7A66;
}

/* END Paginação */

/** Custom Checkbox Color **/

.custom-control-input-green:focus~.custom-control-label::before {
  border-color: #28a745 !important;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

.custom-control-input-green:checked~.custom-control-label::before {
  border-color: #28a745 !important;
  background-color: #28a745 !important;
}

.custom-control-input-green:focus:not(:checked)~.custom-control-label::before {
  border-color: #5bd778 !important;
}

.custom-control-input-green:not(:disabled):active~.custom-control-label::before {
  background-color: #d6f5dd !important;
  border-color: #d6f5dd !important;
}

/** END Custom Checkbox Color **/