.read-moreless-type p:last-child {
    margin-bottom: 0px;
}
.fa-eye {
    background-image: url('/assets/front/images/visibility_24dp.svg');
}
.fa-eye-slash {
    background-image: url('/assets/front/images/visibility_off_24dp.svg');
}
.form-control.is-valid+.toggle-password, .form-control.is-invalid+.toggle-password, .form-control.is-invalid+.invalid-feedback+.toggle-password {
    left: calc(100% - 65px);
}
.show-hide-password-eye {
    cursor: pointer;
    z-index: 9999;
    left: calc(100% - 45px);
    top: 29px;
    width: 20px;
    height: 20px;
    display: block;
    background-position: center;
    padding-left: 3rem !important;
    background-repeat: no-repeat;
}
.live-dot {
    position: relative;
    width: 8px;
    height: 8px;
    background-color: #26E200;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(17, 199, 0, 0.8);
}
.live-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(16, 189, 0, 0.3);
    transform: translate(-50%, -50%) scale(1);
    animation: pulse 1.5s infinite ease-out;
}

.happening-now {
    font-size: 13px;
    margin: 5px 0px;
    font-weight: 700;
    color: rgb(16 191 0);
}
  
/* Keyframes for Smooth Ripple */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}
.is-invalid+.select2-container--bootstrap-5 .select2-selection, .was-validated select:invalid+.select2-container--bootstrap-5 .select2-selection {
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.is-valid+.select2-container--bootstrap-5 .select2-selection, .was-validated select:valid+.select2-container--bootstrap-5 .select2-selection {
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.happening-now {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}



.custom-checkbox-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 10px;
}
.custom-checkbox-primary input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.custom-checkbox-primary .check-label {
  display: inline-block;
  padding-left: 30px;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.custom-checkbox-primary .check-label::before {
  content: "";
  height: 20px;
  width: 20px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 2px;
  z-index: 2;
  border: 2px solid #79677F;
  border-radius: 3px;
}
.custom-checkbox-primary input[type=checkbox]:checked + .check-label::before {
  border-color: #0CAC8E;
}
.custom-checkbox-primary input[type=checkbox]:checked + .check-label::after {
  content: "";
  border: solid #0CAC8E;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  height: 9px;
  width: 5px;
  display: inline-block;
  position: absolute;
  left: 7.4px;
  top: 7px;
  z-index: 3;
}
@media (max-width: 767px) {
  .custom-checkbox-primary .check-label {
    font-size: 14px;
    line-height: 22px;
    padding-left: 27px;
  }
  .custom-checkbox-primary .check-label::before {
    height: 20px;
    width: 20px;
    top: 2px;
  }

  .body-small-md{
    font-size: 14px;
    line-height: 18px;
  }
}


