<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Minification failed. Returning unminified contents.
(2,1): run-time error CSS1019: Unexpected token, found '@charset'
(2,10): run-time error CSS1019: Unexpected token, found '"UTF-8"'
(2,17): run-time error CSS1019: Unexpected token, found ';'
 */
/* CSS Document */
@charset "UTF-8";
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.surveyModal .modal-content {
    border-radius: 10px;
    box-shadow: none;
    border: 0;
}

.surveyModal .modal-header {
    border-bottom: 0;
    padding-top: 5px;
}

.surveyModal .close {
    opacity: 1;
    font-size: 30px;
    font-weight: 400;
}

.surveyModal .modal-body {
    padding: 20px 60px 70px
}

.surveyModal .title {
    font-weight: 700; 
    font-size: 22px;
    text-align: center;
    color: #004394;
    margin-bottom: 40px;
}

/* Emoji Div */
.surveyModal .emoji-options-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 635px;
    margin: 0 auto 10px;
}

.surveyModal .emoji-options-wrapper [type=radio] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.surveyModal .emoji-options-wrapper [type=radio]+img {
    cursor: pointer;
    opacity: 1;
    max-width: 70px;
    width: 100%;
}


/* Form Div */
.surveyModal .form-div {
    margin-top: 15px;
}

.surveyModal p.question {
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    color: #333333;
    margin: 15px 0;
}

.surveyModal ul.options-wrapper {
    list-style: none;
    padding: 0;
    margin: 0;
}

.surveyModal ul.options-wrapper li {
    display: inline;
}

.surveyModal ul.options-wrapper li label {
    display: inline-block;
    background: #E5F6FF;
    border-radius: 5px;
    margin-right: 12px;
    margin-bottom: 15px;
    padding: 8px 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    border: 2px solid #E5F6FF;
    cursor: pointer;
}
.surveyModal ul.options-checkbox li {
    list-style: unset;
    margin-bottom: 10px;
}
.surveyModal ul.options-checkbox label {
    font-size: 16px;
    vertical-align: middle;
}
.surveyModal ul.options-checkbox li input[type="text"] {
    border: 0;
    outline: 0;
    background: transparent;
    border-bottom: 1px solid black;
    font-size: large;
    width: 50%;
}
.surveyModal ul.options-wrapper li input[type="checkbox"]:checked+label {
    background: #FFFFFF;
    border-color: #004394;
    color: #004394;
}

.surveyModal ul.options-wrapper li input[type="checkbox"] {
    display: absolute;
}

.surveyModal ul.options-wrapper li input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.surveyModal textarea.form-control {
    height: 134px;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}

.surveyModal .btn-blue {
    background: #004394;
    border-radius: 5px;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #FFFFFF;
    border: 0;
    text-align: center;
    margin: 40px auto 20px;
    max-width: 230px;
    height:60px;
    width: 100%;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.surveyModal .btn-blue:disabled {
    background: #BDBBBB;
}

/* Thanks Div */
.surveyModal .thanks-div .title {
    margin-bottom: 30px
}

.surveyModal .thanks-div .btn-close {
    margin: 0 auto;
}

/* Responsive */
@media screen and (min-width: 990px) {
    .surveyModal .modal-dialog {
        width: 900px;
        margin-top: 10%;
    }
    .surveyModal .emoji-options-wrapper {
        margin-bottom:25px
    }
}

@media screen and (min-width:375px) {
    .surveyModal .modal-dialog {
        margin-top: 5%;
    }
}

@media screen and (max-width:990px) {
	.surveyModal .modal-dialog {
        margin-top: 20%;
    }
    .surveyModal .modal-body {
        padding: 0px 60px 40px;
    }
    .surveyModal .title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .surveyModal .emoji-options-wrapper [type=radio]+img {
        max-width: 45px;
    }
    .surveyModal p.question {
        font-size: 16px;
    }
    .surveyModal ul.options-wrapper li label {
        font-size: 14px;
        line-height: 30px;
        margin-bottom: 15px;
        padding: 5px 15px;
    }
    .surveyModal textarea.form-control {
        height: 85px;
        font-size: 14px;
        line-height: 21px;
    }
    .surveyModal .btn-blue {
        margin-top: 25px;
        max-width: 165px;
        height: 45px;
        font-size: 18px;
        line-height: 27px;
        margin-bottom:0
    }
    .surveyModal .thanks-div .title {
        margin-bottom: 25px;
    }
}

@media screen and (max-width:550px) {
    .surveyModal .modal-body {
        padding: 0px 20px 40px;
    }
    .surveyModal ul.options-wrapper li label {
        margin-right:6px;
    }
    .surveyModal .thanks-div .btn-close {
        max-width: unset;
    }
}

@media screen and (max-width:320px) {
    .surveyModal .modal-body {
        padding: 0px 12px 40px;
    }
    .surveyModal .emoji-options-wrapper [type=radio]+img {
        max-width: 40px;
    }
    .surveyModal ul.options-wrapper li label {
        padding: 5px 6px;
    }
}
</pre></body></html>