﻿.survey-content {
    width: 100%;
    max-width: 600px;
    margin: 30px auto;
    padding: 0 20px;
}
.survey-content h4 {
    margin: 50px 0 20px;
}
.survey-content .question {
    width: 100%;
    padding: 10px 0 5px;
    color: #3c3c3c;
    font-family: "Nexa";
    font-size: 16px;
    font-weight: 700;
    border-top: solid 1px #dedede;
}
.survey-content .additionalField .question {
    border-top: none;
}
.survey-content .question span {
    color: red;
}
.survey-content .second-question {
    width: 100%;
    padding: 10px 0 5px;
    color: #3c3c3c;
    font-family: "Nexa";
    font-size: 16px;
    font-weight: 700;
}
.survey-content .answer {
    padding: 0 0 10px;
}
.survey-content .inline {
    display: flex;
    gap: 5px 25px;
    flex-wrap: wrap;
}
.survey-content .answer .validation-error {
    color: red;
}
.survey-content .answer .validation-error:not(:empty) {
    margin: 10px 0;
}
.survey-content .matrix {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 0 0 20px;
}
.survey-content input[type=text],
.survey-content textarea,
.survey-content select {
    width: 100%;
    border: 1px solid #D0D9E0;
    padding: 10px 12px;
    border-radius: 4px;
    color: #3c3c3c;
    font-family: "Nexa";
    font-size: 16px;
    font-weight: 500;
}
.survey-content .radio {
    display: flex;
    align-items: center;
    gap: 10px;
}
.survey-content .radio input[type=radio] {
    width: 14px;
}
.survey-content label {
    margin-bottom: 0;
}
.survey-content .submit-container {
    display: flex;
    width: 100%;
    margin: 30px 0;
}
.survey-content input[type=submit] {
    width: 200px;
    margin: 0 auto;
    border: 1px solid #fa503d;
    font-size: 18px;
    font-weight: 700;
}
section.survey-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #54545487;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
section.survey-message .message-container {
    position: relative;
    width: 90%;
    max-width:350px;
    background-color: white;
    border-radius: 10px;
    border: solid #545454 1px;
    padding: 40px 20px 20px;
}
section.survey-message button.message-close {
    position: absolute;
    right: 5px;
    top: 5px;
    border: none;
    background: none;
}
section.survey-message button.message-close svg {
    width: 25px;
}
section.survey-message .message {
    font-size: 18px;
}
section.survey-message .button-close {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
section.survey-message .button-close button {
    padding: 8px 24px;
}
.hidden {
    display: none !important;
}
