a, a:hover { 
  color: #000;
  text-decoration: none;
}
#overlay {
  display: none;
  background:rgba(0,0,0,1.5);
  color: #025ead;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 10000;
  top: 0;
  left: 0;
  float: left;
  text-align: center;
  padding-top: 25%;
  opacity: .80;
  overflow: none;
}

/* Switch */
 /* The switch - the box around the slider */
 .custom-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.custom-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

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

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

.custom-switch input:checked + .custom-switch-slider {
  background-color: #025ead;
}

.custom-switch input:focus + .custom-switch-slider {
  box-shadow: 0 0 1px #025ead;
}

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

/* SELECT2 */
.select2 span.selection {
  display: block;
}
.select2.select2-container .dropdown-wrapper {
  display: block;
}
.select2-container .select2-selection--single {
  height: 38px;
  border: 1px solid #dee2e6;
  border-radius: 0;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 36px;
}