/* START - used in js to hide blocks on the template */
.js-cts-question--hide {
    display: none;
}
/* END - used in js to hide blocks on the template */

.survey-custom--wrapper {
    padding: 10px 30px 50px;
}

.survey-custom--error {
    font-size: 14px;
    background: #fdf2f4;
    border-left: 8px solid #f24846;
    color: #000;
    padding: 10px 20px;
    margin-bottom: 15px;
}

.survey-custom--one-by-one .survey-custom--error {
    margin-bottom: 30px;
}

.survey-custom--error:before {
    content: "\26A0";
    font-size: 20px;
    margin-right: 10px;
}

.survey-custom--question:after {
    content:" *";
    color: red;
}

.survey-custom--description {
    padding: 10px 20px 20px;
    font-size: 14px;
}

.survey-custom--answers {
    padding-top: 10px;
}

.survey-custom--answer {
    position: relative;
}

.survey-custom--answer:not(:last-child) {
    border-bottom: none;
}

.survey-custom--answer input[type='radio'] {
    display: none;
}

.survey-custom--answer label {
    display: block;
    padding: 10px 20px;
    font-weight: normal;
}

.survey-custom--answer label:before {
    content: " ";
    display: inline-block;
    position: relative;
    top: 5px;
    margin-right: 15px;
    width: 20px;
    height: 20px;
    border-radius: 11px;
    background-color: transparent;
}

.survey-custom--answer input[type=radio]:checked + label:after {
    border-radius: 11px;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 19px;
    left: 24px;
    content: " ";
    display: block;
}

.survey-custom--buttons {
    text-align: center;
}

.survey-custom--buttons button {
    margin: 20px;
}

@media only screen and (max-width: 767px) {
    .survey-custom--wrapper {
        padding: 10px 10px 50px;
    }
}
