#poll {
    background-color: #000;
}

.overflow_hidden_auto {
    overflow-x: hidden;
    overflow-y: auto;
}

.centerXY {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.centerX {
    position: relative; 
    left: 50%; 
    transform: translateX(-50%);
}

.centerY {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.cursor_pointer {
    cursor: pointer;
}

.poll_arrows {
    font-size: calc(20pt + 1.5vw);
}

.poll-questions {
    font-size: calc(18px + 0.8vmin) !important;
    line-height: calc(22px + 1.4vmin) !important;
}

.input-answers {
    background-color: transparent;
    color: #fff;
}

/******************************* Assessment Thermometer *******************************/
.assessment_thermometer .at_visual_resource {
    min-height: 65%;
}

.assessment_thermometer .title {
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: bold;
    margin-bottom: 1em;
    color: #e3bf42;
    font-size: calc(10pt + 2vw);
    line-height: calc(10pt + 2.5vw);
    text-transform: unset;
}

.assessment_thermometer .at_visual_resource .at_image {
    height: 50%;
}

.assessment_thermometer .at_text_resource .text .question_at {
    font-size: calc(18px + 0.8vmin) !important;
    line-height: calc(22px + 1.4vmin) !important;
}

.assessment_thermometer .at_text_resource .text .score {
    color: var(--main-color);
}

.assessment_thermometer .anonymous_poll {
    width: auto; 
    margin: 0 20px 0 0;
}

.assessment_thermometer .btn_at {
    border: none; 
    background-color: transparent;
}

.assessment_thermometer .fa-check-circle {
    font-size: 40px; 
    color: #3be23b;
}

.assessment_thermometer .btn_back .fa-arrow-alt-circle-left {
    font-size: 40px; 
    color: var(--main-color);
}

.at_thermometer .thermometer {
    width: 25px;
    background: #38383f;
    height: 240px;
    position: relative;
    border: 9px solid #2a2a2e;
    border-radius: 20px;
    z-index: 1;
    margin-bottom: 50px;
}

.at_thermometer .thermometer:before, .at_thermometer .thermometer:after {
    position: absolute;
    content: "";
    border-radius: 50%;
}

.at_thermometer .thermometer:before {
    width: 100%;
    height: 34px;
    bottom: 9px;
    background: #38383f;
    z-index: -1;
}

.at_thermometer .thermometer:after {
    transform: translateX(-50%);
    left: 50%;
    width: 50px;
    height: 50px;
    background-color: red;
    bottom: -41px;
    border: 9px solid #2a2a2e;
    z-index: -3;
}

.at_thermometer .thermometer .graduations {
    height: 59%;
    top: 20%;
    width: 50%;
}

.at_thermometer .thermometer .graduations, .at_thermometer .thermometer .graduations:before {
    position: absolute;
    border-top: 2px solid rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
}

.at_thermometer .thermometer .graduations:before {
    content: "";
    height: 34%;
    width: 100%;
    top: 32%;
}

.at_thermometer .thermometer .temperature {
    bottom: 0;
    background: linear-gradient(violet, indigo, blue, green, yellow, orange, red) no-repeat bottom;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-size: 100% 240px;
    transition: all 0.2s ease-in-out;
}

.at_thermometer .thermometer .temperature, .at_thermometer .thermometer .temperature:before, .at_thermometer .thermometer .temperature:after {
    position: absolute;
}

.at_thermometer .thermometer .nivel_9_10:before {
    background-image: url('../../images/poll_level_9-10.png');
    transition: background-image 2s;
}

.at_thermometer .thermometer .nivel_7_8:before {
    background-image: url('../../images/poll_level_7-8.png');
    transition: background-image 2s;
}

.at_thermometer .thermometer .nivel_5_6:before {
    background-image: url('../../images/poll_level_5-6.png');
    transition: background-image 2s;
}

.at_thermometer .thermometer .nivel_3_4:before {
    background-image: url('../../images/poll_level_3-4.png');
    transition: background-image 2s;
}

.at_thermometer .thermometer .nivel_1_2:before {
    background-image: url('../../images/poll_level_1-2.png');
    transition: background-image 2s;
}

.at_thermometer .thermometer .temperature:before {
    background-size: contain;
    background-color: rgba(42, 42, 46, 0.7);
    background-repeat: no-repeat;
    background-position: center;
    content:"";
    z-index: 2;
    padding: 20px 20px;
    border-radius: 50%;
    transform: translateY(50%);
    left: calc(100% + 1em / 1.5);
    top: calc(20px - 3.8em);
}

.at_thermometer .thermometer .temperature:after {
    content: "";
    border-top: 0.4545454545em solid transparent;
    border-bottom: 0.4545454545em solid transparent;
    border-right: 0.6666666667em solid rgba(0, 0, 0, 0.7);
    left: 100%;
    top: calc(-1em / 2.2 + 5px);
}
 
/* The container */
.at_container {
    display: block;
    position: relative;
    width: 25px;
    height: 25px;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.at_container input {
    position: absolute;
    opacity: 0;
}

/* Create a custom radio button */
.at_checkmark {
    position: absolute;
    top: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.at_container:hover input ~ .at_checkmark_hover {
    background-color: #e3bf42;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.at_checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Style the indicator (dot/circle) */
.at_container .at_checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

@media (max-width: 575px) {
    .assessment_thermometer .assessment_thermometer_row {
        height: 100% !important;
    }
}

 /******************************* Test Poll *******************************/
.body_test_poll {
    background-color: #000;
}

.body_test_poll .title {
    font-family: "Barlow Semi Condensed", sans-serif;
    font-weight: bold;
    margin-bottom: 1em;
    color: #e3bf42;
    font-size: calc(10pt + 2vw);
    line-height: calc(10pt + 2.5vw);
    text-transform: unset;
}

.body_test_poll .test_poll_visual_resource .row_visual_resources {
    height: 75%;
}

.body_test_poll .test_poll_visual_resource {
    min-height: 65%;
}

.body_test_poll .test_poll_text_resource .text, .body_test_poll .test_poll_visual_resource .test_poll_image, .body_test_poll .test_poll_visual_resource .test_poll_video {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.body_test_poll .test_poll_text_resource .text {
    width: 95%;
}

.body_test_poll .test_poll_text_resource .text .answer, .body_test_poll .test_poll_text_resource .text .percentage {
    z-index: 1;
}

.body_test_poll .test_poll_text_resource .text .answer {
    width: 80%;
}

.body_test_poll .test_poll_text_resource .text .percentage {
    width: 20%;
}

.body_test_poll .test_poll_text_resource .text .answer_box_test_poll .filling_bling {
    left: 0; 
    bottom: 0; 
    background-color: orange;
}

.body_test_poll .test_poll_visual_resource .test_poll_image {
    height: 55%;
}

.body_test_poll .test_poll_text_resource .text .answer_box_test_poll {
    box-shadow: 2px 2px 8px 2px rgba(235, 171, 52, 0.5);
    border: 2px solid orange;
}

.body_test_poll .test_poll_text_resource .text .answer_box_test_poll_onclick:hover {
    background-color: #e3bf42;
}

.body_test_poll .test_poll_text_resource .text .question_test_poll {
    font-size: calc(18px + 0.8vmin) !important;
    line-height: calc(22px + 1.4vmin) !important;
}

.body_test_poll .test_poll_text_resource .text .votes {
    color: #9c9c9c;
}

@media (max-width: 575px) {
    .body_test_poll .test_poll_text_resource {
        height: auto;
        max-height: none !important;
    }
}