<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.question-form-mobal .modal-dialog,
.question-form-mobal .modal-dialog .modal-content
{
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    background-color: #2c2f6b;
    color: white;
    border-radius: 40px;
    padding: 0;
    box-shadow: none;
    border: none;
}

.question-form-mobal .modal-dialog .modal-content {
    padding: 30px;
}

.question-form-mobal .modal-header {
    border: none;
    text-align: c;
}

.question-form-mobal label {
    padding-left: 10px;
    margin-top: 20px;
}

.question-form-mobal .question-form .submit-button {
    background-color: white;
    color: #2c2f6b;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

.question-form-mobal .question-form .submit-button:hover {
    background-color: #1a1d4b;
    border-color: #1a1d4b;
    color: white;
}

.question-form-mobal .question-form input[type="text"],
.question-form-mobal .question-form input[type="email"],
.question-form-mobal .question-form button[type="submit"],
.question-form-mobal .question-form textarea
{
    height: 40px;
    border-radius: 20px;
}

.question-form-mobal .modal-title {
    text-align: center;
    width: 100%;
}

.question-form-mobal .modal-title h2 {
    font-weight: normal;
}

.question-form-mobal .question-form textarea.question-message-x {
    margin-bottom: 24px;
}

.question-form-mobal .modal-header .close {
    color: white;
    box-shadow: none;
    font-size: 26px;
    margin-top: 24px;
    margin-right: 30px;
    position: absolute;
    right: -7px;
    top: -7px;
    opacity: 1;
}

.question-form-mobal .modal-header .close:hover {
    opacity: 1;
}

.question-form-mobal .question-form .checkbox {
    margin: 0 0 0 20px;
}

.question-form-mobal .q-btn-wrapper {
    margin-top: 45px;
}

.question-form-mobal .q-btn-wrapper label {
    margin-top: 0;
}

body.show-modal-questions-form .modal {
    z-index: 1560;
}

body.show-modal-questions-form .modal-backdrop {
    background-color: white;
    z-index: 1540;
}

body.show-modal-questions-form .modal-backdrop.in,
body.show-modal-questions-form .modal-backdrop.show
{
    opacity: 1;
    background: rgba(255, 255, 255, .9);
    filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.question-form-mobal.success form.question-form,
.question-form-mobal.success .modal-title,
.question-form-mobal .question-success-alert 
{
    display: none;
}

 .question-form-mobal.success .question-success-alert {
    display: block;
    text-align: center;
}

.question-form-mobal .modal-footer {
    border: none;
    text-align: left;
}

.question-form-mobal .question-error-alert {
    color: red;
}

.question-form-mobal .round-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.question-form-mobal .round-checkbox input {
    display: none;
}

.question-form-mobal .checkmark {
    width: 30px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
    position: relative;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.question-form-mobal .round-checkbox input:checked + .checkmark {
    background-color: #2c2f6b;
}

.question-form-mobal .checkmark::after {
    content: "";
    display: none;
}

.question-form-mobal .round-checkbox input:checked + .checkmark::after {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
    .question-form-mobal .modal-dialog {
        width: 640px;
    }
}

@media (max-width: 600px) {
    .question-form-mobal .question-form .input-item-wr {
        margin-bottom: 20px;
        padding: 0;
    }
    .question-form-mobal .form-group {
        margin: 0;
    }
}

@media only screen and (max-width: 500px) {
    .question-form-mobal h2 {
        font-size: 24px;
    }
}
</pre></body></html>