.form-sms-subscribe-wrapper {
    background-color: #fff;
    border-radius: 5px;
    margin: 0 auto;
    width: 500px;
    max-width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
}

.form-sms-subscribe-wrapper .sms-group {
    width: 100%;
    text-align: center;
}

.form-sms-subscribe-wrapper .g-recaptcha-wrapper > div,
.form-sms-subscribe-wrapper .g-recaptcha > div {
    margin: 0 auto;
}

.form-sms-subscribe-wrapper .sms-group + .sms-group {
    margin-top: 10px;
}

.form-sms-subscribe-wrapper label {
    display: block;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
}

.form-sms-subscribe-wrapper .input {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    text-align: center;
    width: 100%;
}

.form-sms-subscribe-wrapper .input:focus {
    box-shadow: 0px 0px 5px 2px #b01519;
    border-color: transparent;
}

.form-sms-subscribe-wrapper .sms-submit {
    border-radius: 5px;
    border: 1px solid #b01519;
    padding: 5px 15px;
    background-color: #cc181d;
    color: #fff;
    margin-left: 5px;
    margin-right: 5px;
}

.alert-success {
    padding: 10px 10px 15px;
    background: #4caf50;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
    color: #fff;
    font-size: 16px;
}

.sms-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    border: 5px solid #f3f3f3; /* Light grey */
    border-top: 5px solid #cc181d; /* Blue */
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.maan-modal {
    position: fixed;
    z-index: 250;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.21);
}

.maan-modal .form-sms-subscribe-wrapper {
    width: 350px;
}

.maan-modal__bottom-right {
    bottom: 0;
    right: 10px;
}

.maan-modal__center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 300;
}

.maan-modal__head {
    position: absolute;
    top: -15px;
    right: 0;
    left: 0;
    z-index: 10;
}

.maan-modal__close {
    font-size: 24px;
    padding: 0 10px;
    line-height: 1;
    background: #cc181d;
    color: #ffffff;
    border: 0;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maan-modal__body {
    width: 100%;
}

.form-sms__title {
    font-weight: 600;
    text-align: center;
    font-size: 17px;
}

.form-sms__desc {
    font-size: 16px;
    color: #666;
    text-align: center;
}

.form-sms__desc3 {
    font-size: 14px;
    color: #666;
    text-align: center;
}

.form-sms__desc2 {
    font-size: 12px;
    color: #777;
    text-align: center;
}

@media (max-width: 520px) {
    .maan-modal {
        width: 100% !important;
        right: 0;
        left: 0;
    }

    .maan-modal iframe {
        width: 100% !important;
    }

    .maan-modal .form-sms-subscribe-wrapper {
        width: 100%;
    }
}

.maan-modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 280;
    display: none;
}