@charset "UTF-8";
/* ################ GERAL */
body{
  color: #141414;
  font-size: 12px;
}
.hidden{
  display: none !important;
}
.reset-input{
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  background: initial !important;
}
.cursor-pointer{
  cursor: pointer;
}
.backgroundColorRed{
  background-color: #006992;
}
.btn-back{
  font-size: 20px;
}
.btn-danger{
    background-color: #006992;
    border-color: #006992;
}
.btn{
  border-radius: 50px;
  padding: .05rem .9rem;
}
.btn-secondary{
  border-radius: 50px;
}
.text-muted{
  color: #141414 !important;
}
.text-dark-gray{
  color: #414d5f
}
.underline{
  text-decoration: underline;
}
.width-initial{
  width: initial;
}
.w-10{
  width: 10%;
}
.w-20{
  width: 20%;
}
.w-30{
  width: 30%;
}
.margin-side-items{
  margin: 0 0 10px 10px;
}
.input-text{
    border: 0;
    outline: 0;
    background: transparent;
    border-bottom: 1px solid #979797;
    border-radius: 0;
}

/* ################ LOGIN */
.authentication-page .navbar-custom,
.authentication-page .left-side-menu,
.authentication-page footer{
  display: none !important;
}
.card-radius{
  border-radius: 10px;
}
.card-radius-top{
  border-radius: 10px 10px 0 0;
}
.topBorderCard{
  height: 15px;
}
input[type=button].btn-login{
  width: 181px;
  height: 40px;
}

/* ################ CUSTOMIZAÇÕES */
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto{
  padding-left: 0;
  padding-right: 0;
  
}
.form-control.vdp-datepicker input, .dark .form-control.vdp-datepicker input {
border-top-width: 0px;
    border-left-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    background-color: transparent;
    padding-left: 0;
    color: #6c757d;
    width: 100%;
}
.vdp-datepicker__calendar span.cell{
  height: 30px;
  line-height: 30px;
}
div.vdp-datepicker__calendar{
  width: 250px;
  font-size: 11px;
}


/*############### togglet*/

.container-switch {
  display: inline-flex;
  padding: 1rem;
  width: 230px;
}
.container-switch .label-swith{
  display: block;
  margin-top: -3px;
  padding-left: 1rem;
}
.container-switch .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 14px;
}

.container-switch .switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.container-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.container-switch .slider:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.container-switch input:checked + .slider {
  background-color: #006992;
}

.container-switch input:focus + .slider {
  box-shadow: 0 0 1px #006992;
}

.container-switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.container-switch .slider.round {
  border-radius: 34px;
  width: 40px;
}

.container-switch .slider.round:before {
  border-radius: 50%;
}


