body {
  font-family: "Roboto", sans-serif;
  background-color: #fff; 
  color: #000;
}

.texto-clicavel {
    cursor: pointer; /* Muda o cursor para "mãozinha" */
    text-decoration: underline; /* Opcional, para parecer mais com link */
    transition: color 0.2s;
}

.texto-clicavel:hover {
    color: #0056b3; /* Muda a cor ao passar o mouse */
}

.linha-1 {
    background-color: #ffffff; 
    padding: 10px 0px 17px 0px;  
}

.linha-2 {
   background-color: #e3e4ed;
    padding: 10px 0px 17px 0px; 
}

.white { 
  color: #f0f0f0;
}
p {
  color: #b3b3b3;
  font-weight: 300; }

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

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  a:hover {
    text-decoration: none !important; }

.content {
  padding: 7rem 0; }

h2 {
  font-size: 20px; }

.container > .row {
  height: 100vh;
  min-height: 700px; }

@media (max-width: 991.98px) {
  .imagebg {
    height: 200px; } }

.contents {
  background: white;
    background: linear-gradient(180deg, rgb(255 255 255) 0%, rgb(197 197 197) 85%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#222222",GradientType=1); 
min-height: 100vh;
}

.half .contents, .half .imagebg {
  width: 50%; 
}
  @media (max-width: 1199.98px) {
    .half .contents, .half .imagebg {
      width: 100%; } 
  }
  .contents .form-control, .bg .form-control, .dt-container select, .dt-container input[type=search] {
    border: none;
    -webkit-box-shadow: 0 1px 2px 0 rgba(200, 200, 200, 0.8);
    box-shadow: 0 1px 2px 0 rgba(200, 200, 200, 0.8);
    border-radius: 4px;
    height: 50px;
    background: #fff; 
    position: relative;
  }
    .contents .form-control:active, .contents .form-control:focus, .bg .form-control:active, .bg .form-control:focus {
      outline: none;
      -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); 
    }

.imagebg {
  background-size: cover;
  background-position: center; 
}

a {
  color: #212529;
  text-decoration: underline; 
}

a:hover {
  color: #705027;
}

.btn {
  height: 54px;
  padding-left: 30px;
  padding-right: 30px; 
}

.forgot-pass {
  position: relative;
  top: 2px;
  font-size: 14px;
   }

.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 14px; }
  .control .caption {
    position: relative;
    top: .2rem;
    color: #bbb; }

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0; }

.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
  border-radius: 4px; }

.control--radio .control__indicator {
  border-radius: 50%; }

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  background: #ccc; }

.control input:checked ~ .control__indicator {
  background: #00aa52; }

.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
  background: #fb8633; }

.control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.9;
  pointer-events: none; }

.control__indicator:after {
  font-family: 'icomoon';
  content: '\e5ca';
  position: absolute;
  display: none;
  font-size: 16px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }

.control input:checked ~ .control__indicator:after {
  display: block;
  color: #fff; }

.control--checkbox .control__indicator:after {
  top: 50%;
  left: 50%;
  margin-top: -1px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b; }

.control--checkbox input:disabled:checked ~ .control__indicator {
  background-color: #7e0cf5;
  opacity: .2; }

.btn-primary, div.dt-container .dt-paging .dt-paging-button.current, div.dt-container .dt-paging .dt-paging-button.current:hover {
    color: #fff !important;
    background-color: rgba(46, 139, 87) !important;
    border-color: rgba(46, 139, 87) !important;
}

.btn-primary:hover {
    color: #fff;
    background-color: #00aa52;
    border-color: #00aa52;
    opacity: 0.9;
}

.control:hover input:not([disabled]):checked ~ .control__indicator, .control input:checked:focus ~ .control__indicator {
    background: #00aa52;
    opacity: 0.9;
}

.loading {
  top: 0px;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0,0,0,0.9);
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #00aa52;
  -webkit-mask: radial-gradient(circle closest-side at 50% 40%,#0000 94%, #000);
  transform-origin: 50% 40%;
  animation: l25 1s infinite linear;
}
@keyframes l25 {
  100% {transform: rotate(1turn)}
}

.card {
  margin-top: 15px;
  margin-bottom: 60px;
}

.card, .modal-content {
  background: #f6f7fc;
  color: #333;
}

.card .contents .form-control, .bg .form-control {
    border: none;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    height: 50px;
    background: #fff;   
  }

.card .card-title {
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #00aa52;
  font-weight: 700;
  position: relative;
}

.card .card-title .actions {
  position: absolute;
  right: 10px;
  top: 3px;
}

.alert-bottom {
  position: fixed;
  width: 40%;
  padding: 15px 20px;
  border-radius: 6px;
  top: 15px;
  right: -40%;
  /* opacity: 0.9; */
  z-index: 999;
  transition: all 0.4s;
}

.alert-bottom.active {
  right: 15px;
}

.alert-bottom i {
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 12px;
}

.alert-bottom.alert-danger {
  border: 1px solid #721c24;
}

.alert-bottom.alert-success {
  border: 1px solid #155724;
}

.alert-bottom.alert-warning {
  border: 1px solid #856404;
}

@media (max-width: 1199.98px) {
  .alert-bottom {
    width: 90%;
  }
}

.field-icon {
    position: absolute;
    bottom: 10px;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #666;
}

.rrequired {
  border: 2px solid Red !important;
}

.div-bt {
  position: fixed;
  bottom: -100px;
  left: 0px;
  width: 100%;
  padding: 13px;
  background: #eeeff4;
  border-top: 1px solid #ddd;
  z-index: 99px;
  transition: all 0.3s;
}

.div-bt.active {
  bottom: -5px;
}

.div-bt.unfix {
  position: relative !important;
  background: none !important;
  border: none !important;
  bottom: unset !important;
  left: unset !important;
  padding: 0px;
}

:disabled {
  opacity: 0.5 !important;
}

.form-control:disabled {
  background-color: #eee !important;
}

.btn.btn-sm {
  height: 45px;
  padding-left: 25px;
  padding-right: 25px;
}

.btn-primary.disabled, .btn-primary:disabled {
  background-color: #00aa52;
  border-color: #00aa52;
}

.alert-success {
  color: #ffffff;
  background-color: #079128;
  border: none !important;
}

.alert-warning {
  color: #ffffff;
  background-color: #a47d01;
  border: none !important;
}

.alert-danger {
  color: #ffffff;
  background-color: #a40101;
  border: none !important;
}

.btn.btn-xs {
  height: 35px;
  padding-left: 18px;
  padding-right: 18px;
}

.navbar {
  background: white;
  transition: top 0.6s;
  z-index: 5;
  position: relative;
  padding: 20px 40px;
  top: -100px;
  margin-top: 100px;
  margin-bottom: -100px;
}

.navbar.fixed {
  padding: 10px 40px;
  margin-top: 0px;
  position: fixed;
  z-index: 5;
  width: 100%;
  top: 0px;
  background: #fff;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#222222",GradientType=1);
}

.navbar-brand img {
  max-width: 320px
}

@media (max-width: 768px) {
  .navbar-brand img {
    max-width: 230px
  }
} 

.navbar.fixed .navbar-brand img {
  max-width: 230px
}

.nav-item {
  margin-left: 20px;
}
.nav-item a {
  color: #00aa52;
  text-decoration: none !important;
  position: relative;
  padding: 6px 0px !important;
}

.nav-item.active a {
  color: #00aa52 !important;
}

.nav-item a:hover {
  color: #333;
}

.nav-item a::before {
  position: absolute;
  content: ' ';
  height: 3px;
  width: 0%;
  bottom: 0px;
  right: 0px;
  background-color: #00aa52;
  transition: all 0.3s;
}

.nav-item a:hover::before {
  position: absolute;
  content: ' ';
  height: 3px;
  width: 100%;
  bottom: 0px;
  right: 0px;
  background-color: #00aa52;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  background-color: #fff;
  border: 1px solid #00aa52;
  padding: 10px;
}
.dropdown-item:focus, .dropdown-item:hover {
  background: #fff;
  color: #00aa52 !important;
}

.dropdown-item::before {
  display: none !important;
}

@media (max-width: 768px) {
  .nav-item a::before {
    display: none !important;
  }
} 

.fotodiv {
  display: flex;
}

.foto_logo, .foto_doc {
  margin-right: 15px;
  height: 80px;
  width: 80px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  position: relative;
}

.foto_logo_tabela {
  margin-right: 15px;
  height: 50px;
  width: 80px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  position: relative;
}


.foto_logo {
  background-size: contain;
  background-image: url('../images/generico.png');
} 

.foto_doc {
  background-size: cover;
  background-image: url('../images/nofoto.png');
}

.foto_logo:hover::before, .foto_doc:hover::before {
  content: '';
  position: absolute;
  width: 100%;
  padding-top: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1;
}

.foto_logo:hover::after, .foto_doc:hover::after {
  content: '+';
  font-size: 34px;
  color: #fff;
  position: absolute;
  left: calc(50% - 9px);
  top: calc(50% - 26px);
  z-index: 2;
}

.dt-container select {
  margin-right: 5px;
}

.dataTable, .table-responsive {
  font-size: 14px !important;
}

.logo-list {
  height: 25px;
  width: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

button:focus, button:focus-visible {
  outline: none !important;
}

@media (max-width: 768px) {
  .navbar {
    padding: 20px 20px;
  }
  .navbar-nav {
    margin-top: 10px;
  }
}

.table tr td {
  vertical-align: middle;
}

.read-only {
  background-color: #eee !important;
  opacity: 0.5 !important;
}