.drop {
    z-index: 1;
}
.custom-checkbox {
    display: none;
}
.custom-checkbox + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 16px;
    color: #000000;
}
.custom-checkbox + label a {
    position: relative;
    cursor: pointer;
    font-size: 16px;
    color: #000000;
}
.custom-checkbox + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    width: 15px;
    height: 15px;
    background-color: #ffffff;
    border: 2px solid #ffc107;
    border-radius: 4px;
}
.custom-checkbox:checked + label:after {
    content: '✔';
    position: absolute;
    left: 4px;
    top: 0;
    font-size: 16px;
    color: #000000;
}

.custom-checkbox:invalid + label:before {
    border-color: #ff0000;
}
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.popup.hidden {
    display: none;
}
.popup-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: #000000;
}
.popup-content p {
    margin: 0 0 15px 0;
}
.popup-content button {
    background-color: #ffc107;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    color: #000000;
}
.popup-content button:hover {
    background-color: #ffca28;
}

@media (max-width:767px) {
  .popup-call .simplePopup {
    max-width: 100%;
    margin-left: 0;
    left:  50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 480px;
  }
  .popup-call .popup-form {
    max-width: 100%;
    padding: 60px 40px;
  }
  .popup-call .women {
    display: none;
  }
  .tel-icon.tel-modal {
    display: none;
  }
}
@media (min-width:768px) {
  .tel-icon {
    display: none;
  }
  .tel-icon.tel-modal {
    display: inline-block;
  }
}

