<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.mo-dialog-modal {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    background-color: white;
    color: black;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: 100%;
    padding: 0;
    position: fixed;
    bottom: 70px;
    z-index: 1500;
    display: none;
}

.mo-dialog-modal .modal-header {
    background-color: #2c2f6b;
    color: white;
    padding: 10px 20px;
    border-radius: 16px 16px 0 0;
}

.mo-dialog-modal .modal-header h2 {
    font-size: 16px;
    font-weight: normal;
    padding: 0;
    margin: 0;
}

.mo-dialog-modal .mo-modal-content {
    margin: 0;
    padding: 15px;
    height: 600px;
    overflow-y: auto;
}

.mo-dialog-modal .answer {
    background-color: #e4e6ee;
    color: #484a78;
    padding: 15px;
    margin-top: 0;
    border-radius: 15px;
}

.mo-dialog-modal .questions {
    flex-direction: column;
    text-align: right;
}

.mo-dialog-modal .questions button.question {
    background-color: #2c2f6b;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 30px 10px 20px;
    margin: 5px 0;
    cursor: pointer;
    text-align: left;
    position: relative;
}

.mo-dialog-modal .questions button.question:hover {
    background-color: #1a1d4b;
}

.mo-dialog-modal .questions button.question span.glyphicon {
    position: absolute;
    top: 35%;
    right: 10px;
}

.mo-dialog-modal .questions .active button.question span.glyphicon-plus-sign {
    display: none;
}

.mo-dialog-modal .questions button.question span.glyphicon-remove-sign {
    display: none;
}

.mo-dialog-modal .questions .active button.question span.glyphicon-remove-sign {
    display: block;
}

.mo-dialog-modal button.question.btn-ask-a-question {
    background-color: white;
    color: #2c2f6b;
    border: 2px solid #2c2f6b;
}

.mo-dialog-modal button.question.btn-ask-a-question:hover {
    background-color: #1a1d4b;
    border-color: #1a1d4b;
    color: white;
}

.mo-dialog-modal .question-item .answer {
    text-align: left;
    display: none;
}

.mo-dialog-modal .question-item.active .answer {
    display: inline-block;
}


.question-button, .question-button-close {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1C3278;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s;
}

.question-button:hover {
    background-color: #1a1d4b;
}

.question-button img.btn-question-icon {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

.question-button .btn-question-text {
    display: inline;
}

.question-button-close {
    display: none;
    font-size: 40px;
    padding: 0;
    width: 40px;
    height: 40px;
    background: none;
    color: #1C3278;
}

.question-button-close:hover {
    color: #1a1d4b;
}


@media (max-width: 600px) {
    .question-button {
        border-radius: 50%;
        padding: 10px;
        width: 40px;
        height: 40px;
        justify-content: center;
    }

    .question-button .btn-question-text {
        display: none;
    }

    .question-button img.btn-question-icon {
        width: 24px;
        height: 24px;
        margin: 0;
    }
}

@media (max-height: 600px) {
    .mo-dialog-modal .mo-modal-content {
        height: 500px;
    }
}

@media (min-width: 768px) {
    .mo-dialog-modal {
        width: 360px;
        right: 20px;
    }
}
</pre></body></html>