

body{
  font-family: 'Nunito', sans-serif !important;
  /*font-family: 'Open Sans', sans-serif;*/
}

nav{
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.login-bgc{
  background: #303b45;
  background: linear-gradient(0deg, #212529 0%, #5c636b 7%, rgba(255, 255, 255, 1) 23%);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.navbar-nav{
  height: 100% !important;
}

.nav-link{
  height: 100% !important;
}
.nav-link::after {
  display:none !important;
}

.nav-menu-large {
  min-width: 100px !important;
}

.menu-opt:hover{
  background-color: #888788 !important; 
  color: #3f5060 !important;
}

.hidden{
  display: none !important;
}

#table_form td, th{
  text-align: center !important;
} 

.text-small{
  font-size: 0.8em !important;
}

.modal-xlg {
  max-width: 80% !important;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  pointer-events: auto !important;
  cursor: not-allowed !important;
}

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none !important;
  cursor: not-allowed !important;
}

a.btn[disabled] {
  pointer-events: none !important;
  cursor: not-allowed !important;
}

*.disabled {
  cursor: not-allowed !important;
}

.bg-custom1 {
  background-color: #94CD85 !important;
}

a.bg-custom1:hover, a.bg-custom1:focus,
button.bg-custom1:hover,
button.bg-custom1:focus {
  background-color: #94CD85 !important;
}

.bg-custom2{
  background-color: #7e5d4f !important;
}

.bg-custom-menu{
  background-color: #3f5060;
  color: white !important;
  border-bottom: 5px solid #5b666f;
}

.bg-custom-card{
  background-color: #3f5060 !important;
  color: white !important;
  border-bottom: 3px solid #303b45;
}
.btn{
  color:white !important;
}
.btn-outline-dark {
  color: #343a40 !important;
}
.btn-custom{
  background-color: #3f5060 !important;
  border: 1px solid #303b45;
  border-left: 10px solid #303b45;
  color: white;
}

.btn-custom-light{
  background-color: #3f5060 !important;
  border: 1px solid #303b45;
  color: white;
}

.btn-custom:hover, .btn-custom-sm:hover{
  background-color: #5d6f81 !important;
}

.btn-custom-sm{
  background-color: #303b45 !important;
  padding: 3px 6px;
  font-size: 1em;
  border: 1.5px solid #3f5060;
  color: white;
}
.btn-xls{
  background-color: #107C41 !important;
  border: 1px solid #185C37;
  border-left: 10px solid #185C37;
  color: white;
}

.btn-xls:hover{
  background-color: #21A366 !important;
}
.card-choice{
  cursor: pointer;
  user-select: none;
}
.card-choice:hover{
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}
a.card-choice {
  color:#000;
  text-decoration: none; 
}
.bg-custom-table,
.bg-custom-table > th,
.bg-custom-table > td {
  background-color: #dbdbdb;
}

.bg-custom-div-fields{
  background-color: #fef1cf;
}

.table-hover .bg-custom-table:hover {
  background-color: #e7e7e7;
}

.table-hover .bg-custom-table:hover > td,
.table-hover .bg-custom-table:hover > th {
  background-color: #e7e7e7;
}

.modal-header{
  padding: 5px 16px;
}

.form-group{
  margin-bottom: 5px !important;
}

.active a{
  color: #303b45 !important;
}

.dropdown-menu a{
  color: #000 !important;
}

#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
}
#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 30px;
}

.switch input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 23px;
  width: 23px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #6b696b;
}

input:focus + .slider {
  box-shadow: 0 0 1px #6b696b;
}

input:checked + .slider:before {
  background-color: #303b45;
}

input:focus + .slider:before {
  box-shadow: 0 0 1px #303b45;
}

input:checked + .slider:before {
  -webkit-transform: translateX(23px);
  -ms-transform: translateX(23px);
  transform: translateX(23px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 30px;
}

.slider.round:before {
  border-radius: 50%;
}

.custom-link{
  color: #e2a611;
}

.custom-link:hover{
  color: #303b45;
}

.bordered{
  border: 3px solid #dee2e6;
  border-radius: 5px;
}

.resumen{
  width: 70%;
  padding: 5px 25px;
  margin: 10px auto;
}

.pointer{
  cursor: pointer;
}

.custom-hr{
  border-style: dashed;
  border-color: #ced4da;
}

.badge-notify{
  background:red;
  position:relative;
  top: -10px;
  left: -7px;
}

.table100{
  width: 100% !important;
}

.primeraMayuscula{
  text-transform: capitalize;
}

@keyframes ring {
  0% {
    -webkit-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }

  2% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  4% {
    -webkit-transform: rotate(-18deg);
    -ms-transform: rotate(-18deg);
    transform: rotate(-18deg);
  }

  6% {
    -webkit-transform: rotate(18deg);
    -ms-transform: rotate(18deg);
    transform: rotate(18deg);
  }

  8% {
    -webkit-transform: rotate(-22deg);
    -ms-transform: rotate(-22deg);
    transform: rotate(-22deg);
  }

  10% {
    -webkit-transform: rotate(22deg);
    -ms-transform: rotate(22deg);
    transform: rotate(22deg);
  }

  12% {
    -webkit-transform: rotate(-18deg);
    -ms-transform: rotate(-18deg);
    transform: rotate(-18deg);
  }

  14% {
    -webkit-transform: rotate(18deg);
    -ms-transform: rotate(18deg);
    transform: rotate(18deg);
  }

  16% {
    -webkit-transform: rotate(-12deg);
    -ms-transform: rotate(-12deg);
    transform: rotate(-12deg);
  }

  18% {
    -webkit-transform: rotate(12deg);
    -ms-transform: rotate(12deg);
    transform: rotate(12deg);
  }

  20% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.faa-ring.animated,
.faa-ring.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-ring {
  -webkit-animation: ring 2s ease infinite;
  animation: ring 2s ease infinite;
  transform-origin-x: 50%;
  transform-origin-y: 0px;
  transform-origin-z: initial;
}

.btn-overflow{
  white-space: normal !important;
}

/*select2*/
select.is-invalid~.select2-container .select2-selection{
  border-color: #dc3545;
}

#overlay{
  width:100%;
  height: 1080px;
  position: fixed;
  z-index:999;
  background:rgba(256,256,256,1);
}

#overlay figure{
  position: relative;
  margin: 0px auto;
  top: 250px;
  width: 200px;
}

err{
  color: red;
}

.nav-pills .nav-link.active{
  background-color: #eee;
}

.div-custom-bg{
  background-color: #eee;
  padding: 15px;
  border-radius: 5px;
}

.tab-content{
  background-color: #FFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-left: 1px solid rgba(0, 0, 0, 0.125);
  border-right: 1px solid rgba(0, 0, 0, 0.125);
}