/* Slider Button */
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #fff;
}
.form-tab {
	display: inline-block;
}

.form-card {
	display: none;
}

.form-card.active {
	display: block;
}

#overlay{
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height:100%;
  display: none;
  background: rgba(0,0,0,0.6);
}
.cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}
.is-hide{
  display:none;
}

.registration_screen .input_group {
    margin: 15px 0;
}

.hide {
  display: none;
}

.max-height-200 {
  max-height: 200px;
}

/* Board Of Director PopUp Design */

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  max-width: 100%;
  max-height: 80%;
  overflow-y: auto;
}
.close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--main);
    color: #fff;
    border-radius: 100px;
    font-size: 15px;
    padding: 0px 6px;
    cursor: pointer;
}
/* .close {
  position: absolute;
  top: 10px;
  right: 25px;
  background: var(--main);
  color: #fff;
  border-radius: 100px;
  font-size: 28px;
  padding: 0px 12px;
  cursor: pointer;
} */
.modal-header {
    justify-content: center;
    border-bottom: none;
}
.modal-footer{
    border-top: none;
}
.modal-content{
    background-color: #F0F0F0;
}
.modal-footer>* {
    margin: 0 auto;
}
.show {
  display: block;
}
/* Contact FOrm Start */
.input-container {
  position: relative;
  margin-bottom: 20px;
}

.input-field {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.input-label {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #999;
  transition: top 0.3s, font-size 0.3s;
  pointer-events: none;
}

.input-field:focus + .input-label {
  font-size: 10px;
}
.input-container input{
  padding: 15px 0 0 10px;
}

.input-container textarea{
  padding: 18px 0 0 10px;
}
.shrink-label {
  font-size: 10px;
}
/* Contact FOrm End */
