.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
}

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

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

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

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

input:checked+.slider:before {
    transform: translateX(14px);
}

.slider.round {
    border-radius: 34px;
}

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


/* otp css */

.success-alert {
  color: #0ac00d !important;
  background: #fafff9 !important;
  border: 1px solid #53c00a !important;
}

#otp-generator {
  padding: 10px;
  background-color: #1e7ac4;
  border: none;
  border-radius: 7px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.custom-table-btn {
  text-decoration: none;
  color: #fff;
  background-color: #2191dc;
  padding: 7px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 14px;
}

.custom-table-btn:active {
  font-size: 12px;
}

#custom-loader {
  display: inline;
  text-align: center;
  margin: 20px 0;
}

#custom-loader .spinner {
  display: table-cell;
  width: 30px;
  height: 30px;
  border: 8px solid #e5e2e2;
  border-top: 8px solid #4579ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.gf_login_links [title=Register]{
  display: none;
}