
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    background: #fff;
    padding: 20px;
    max-width: 400px;
    width: 100%;
}

.close-btn {
    position: absolute;
    left: 100%;
    bottom: 99%;
    cursor: pointer;
}

.modal .payment-title {
    color: #19acbf;
    font-weight: bold;
    font-size: 30px;
}

.modal form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.modal form label {
    margin-top: 10px;
    color: #19acbf;
    font-family: 'Century Gothic'
}

.modal form input[type="text"],
.modal form input[type="tel"],
.modal form input[type="email"] {
    padding: 10px;
    margin-top: 5px;
    border: none;
    border-bottom: 1px solid #dddddd;
}

.checkbox-wrapper {
    display: flex;
    align-items: baseline;
    margin-top: 10px;
    font-size: 12px;
}


.modal form button {
    margin-top: 20px;
    padding: 10px;
    background: #19acbf;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 50px;
}
.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-checkbox+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
  }
  .custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 2px solid #19acbf;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
  }
  .custom-checkbox:checked+label::before {
    border-color: #148797;
   
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2319acbf' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
  }


@media (max-width: 640px) {
    .close-btn{
        left: 93%;
    }
}
