/* The Modal (background) */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 9999999;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.8);
    /* Black w/ opacity */
}

/* Modal Content */

.modal-content {
    background-color: #ffffff;
    margin: auto;
    padding: 20px;
    width: 320px;
    max-width: 82%;
    border-radius: 10px;
}

.modal-content p {
    font-size: 20px !important;
    line-height: 32px !important;
    color: green !important;
}

.modal-content .btn {
    width: 200px !important;
    padding: 10px !important;
    height: auto !important;
    font-size: 26px !important;
    letter-spacing: 5px !important;
    margin: 0 auto !important;
    display: block !important;
    background-color: green !important;
    box-shadow: 3px 5px 3px #012b01;
    border-radius: 80px !important;
    border: none !important;
    color: #fff !important;
}

.modal-content .btn:hover {
    transform: scale(1);
}

::placeholder {
    color: #000;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    color: #000;
}

::-ms-input-placeholder {
    color: #000;
}

.button-submit:focus,
.name-input:focus-within,
.phone-input:focus-within {
    box-shadow: none !important;
}

#otp {
    text-align: left !important;
    font-family: arial;
    width: calc(100% - 32px);
    margin: 0 auto !important;
    display: block !important;
    font-size: 17px;
    border-radius: 4px;
    border: none;
    padding: 10px 3px;
}

.vryfy-btn {
    background: #0a0a0a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    padding: 12px 16px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    display: inherit;
}

.vryfy-btn:before,
.vryfy-btn:after {
    background: none !important;
    box-shadow: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
}

.vryfy-btn[disabled] {
    background-color: #969696;
    color: #4e4e4e;
}

.otp-notice {
    color: #5a5a5a;
    line-height: 23px;
    font-size: 15px;
    text-align: center;
    padding-top: 8px;
}

/* The Close Button */

.close {
    float: right;
    font-size: 42px;
    font-weight: bold;
    position: relative;
    top: -22px;
    right: -10px;
    color: #000;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}