a {
    color: #ff0c75;
    text-decoration: none;
    background-color: transparent;
  }
  
  a:hover {
    color: #aa1d52;
    text-decoration: underline;
  }
  
.color-private{
  color: #5aa2dd;
}
.border-private{
  border-color: #5aa2dd;
}
.info-private .private{
  color: #5aa2dd;
}
.info-private > div::before{
  content: " ";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  margin-top: 0px;
  background-color: #858796;
}
.bg-primary {
    background-color: #ff0c75 !important;
}
.info-private > div.private::before{
    background-color: #5aa2dd;
}
  
.btn-primary {
    color: #fff;
    background-color: #ff0c75;
    border-color: #ff0c75;
}

.btn-primary:hover {
    color: #fff;
    background-color: #aa1d52;
    border-color: #aa1d52;
}

.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #aa1d52;
    border-color: #aa1d52;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #ff0c75;
  border-color: #ff0c75;
}

.btn-outline-primary {
    color: #ff0c75;
    border-color: #ff0c75;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #aa1d52;
    border-color: #aa1d52;
}
.btn-link {
    font-weight: 400;
    color: #ff0c75;
    text-decoration: none;
}
.btn-link:hover {
    color: #aa1d52;
    text-decoration: underline;
  }

.bg-gradient-primary {
    /* background-color: #ff0c75 !important;
    background-image: linear-gradient(180deg, #ff0c75 10%, #aa1d52 100%) !important; */

    background: transparent linear-gradient(180deg, #1B5D99 0%, #0E2F4D 100%) 0% 0% no-repeat padding-box !important;
    background-size: cover;
}

.--textMenu{
  margin-left: 20px;
}

.--textMenuAdmin{
  margin-left: 20px;
  color: #00EBFF;
}

.--textDescripMenu{
  color:#00EBFF !important;
}

.bg-login-image {
    background: url("/img/logo_iepc_vertical.png");
    background-position: center;
    background-size: 70%;
    background-repeat: no-repeat
}

.bg-register-image {
    background: url("/img/logo_iepc_vertical.png");
    background-position: center;
    background-size: 70%;
    background-repeat: no-repeat
}

.text-primary {
    color: #ff0c75 !important;
}

.border-left-primary {
    border-left: 0.25rem solid #aa1d52 !important;
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #aa1d52;
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #ff0c75;
    border-color: #ff0c75;
  }

  .ui-widget {
      background-color: #fff;
  }

  .custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #ff0c75;
    background-color: #ff0c75;
  }

  .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
    border-color: #ff0c75;
    background-color: #ff0c75;
  }

  .custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #ff0c75;
    background-color: #ff0c75;
  }

/* Estilos para los placeholders en formularios */

  .form-control::-webkit-input-placeholder { /* Edge */
    color: lightpink; 
  }
  
  .form-control:-ms-input-placeholder { /* Internet Explorer */
    color: lightpink;
  }
  
  .form-control::placeholder {
    color: lightpink;
  }

  /* Estilos para los switches encendido/apagado */

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 19px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 4px;
  right: 1px;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  content: attr(data-off-label);
}

.slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  right: 0px;
  left: -6px;
  bottom: 1px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #ff0c75;
}

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

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

.on
{
  display: none;
  color: white;
  left: 30%;
}

.off
{
  color:rgba(0, 0, 0, 0.76);
  left: 60%;
}

.on, .off
{
  /* color: white; */
  position: absolute;
  transform: translate(-50%,-50%);
  top: 50%;
  /* left: 50%; */
  font-size: 10px;
  font-family: Verdana, sans-serif;
}

input:checked+ .slider .on
{display: block;}

input:checked + .slider .off
{display: none;}

/* Rounded sliders */
.slider.round {
  border-radius: 30px;
}

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

/* ----------------------- termina estilos switches  ----------------------------- */

.mayusculas {
  text-transform: uppercase;
}