@font-face {
  font-family: Effra-std;
  src: url('../fuentes/Effra_Std_Lt.ttf'); 
}

body, button{
    background-color:#F6F6F6;
    font-family: 'Inter'!important, 'Effra-std';
    font-weight: bold!important;
}
 table.dataTable thead {
    color: #FFFFFF;
    background: #009FE3;
}
header{
    height: 100px;
}

.caja{
  /* border: 1px solid; */
  padding: 15px 15px 15px;
  box-shadow: 10px 10px 15px #7c7c81;
  border-radius: 10px;
  margin: auto;
  width: 95%;
}
#container{ 
    padding-top: 100px;
    margin: auto;
    padding: 5px 15px 15px;
    width: 95%;
}
.container{ 
    margin: auto;
    padding: 105px 15px 15px;
    padding-top: 105px;
    width: 95%;
}
.close{
    width: 25px;
    height: 25px;
}
.photouser {
    margin-left: 30px;
    width: 25px;
    height: 25px;
}
 .dropdown-item:hover{
    /*background: #009FE3;*/
    color: #FFFFFF;
    background: #009FE3;
  } 
  .nav-color a.nav-link {
    color: #F6F6F6;
    font-weight: bold;
}
.fixed-menu {
    position: fixed;
    top: 85px;
    right: 0;
    left: 0;
    z-index: 1040;
}
.navbar-menu{
    color: #3768a8;
    background: #3768a8;
    top: 100px;
    width: 100%;
    z-index: 1030;
    position: sticky;
}
.optionsBar{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    float: right;
    justify-content: center;
    align-items: right;
}
.optionsBar span {
    color: #FFF;
    font-size: 11pt;
    font-family: 'Effra-std';
    /* 'GothamBook' */
    text-transform: uppercase;
    margin-left: 30px;
}
.footer{
    font-family: 'Effra-std'; /*-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; */
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    color: black;
    margin: auto;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
  cursor: hand;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f00;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #00ff14;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 24px;
}

.slider.round:before {
  border-radius: 50%;
}