/* DEFAULT */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

:root {
    --yellow: #ffd100;
    --orange: #ff6a13;
    --darkGray: #53565a;
    --midGray: #888b8d;
    --white: #fff;
    --roundness: 1.25em;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
}

body {
    font-family: 'Open Sans', sans-serif;
    /*background-image: url('../img/cover.jpg');*/
    background-color: rgb(255, 255, 255);
    background-size: cover;
    color: #666;
}

body.blur {
    filter: blur(6px);
}

h1 {
    font-size: 1.5rem;
    line-height: 2.1rem;
    color: #2C3E50;
    margin-bottom: 10px;
}

h2 {
    font-weight: normal;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

hr {
    border-color: #c3c3c3;
}

p, footer {
    font-weight: normal;
    font-size: 1rem;
    margin-bottom: 20px;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

fieldset:not(:last-child) {
    border-bottom: 1px solid var(--neutral-300, #EFF0F6);
    margin-bottom: 2em;
}

img, video {
    max-width: 100%;
}

img.logo {
    max-height: 60px;
}

/* INPUT TEXT */
.form-control {
    padding: 15px;
    font-size: 17px;
    width: 100%;
    display: block;
    text-align: left;
    position: relative;
    transition: color 200ms ease-in;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    border: 1px solid var(--neutral-300, #EFF0F6);
    background: var(--neutral-100, #FFF);
    box-shadow: 0px 2px 6px 0px rgba(19, 18, 66, 0.07);
}

input::placeholder {
    color: #c1c1c1;
}

.form-control:focus {
    border-color: none;
    box-shadow: none;
}

/* PROGRESSBAR */
.progress {
    height: 20px;
    margin-bottom: 20px;
}

.progress-bar {
    width: 0;
    height: 100%;
    background-color: #00b0a9;
    transition: width 0.3s ease;
}

/* MAIN FORM */
form.main-form {
    border: 1px solid var(--neutral-300, #EFF0F6);
    background: var(--neutral-100, #FFF);
    box-shadow: 0px 5px 16px 0px rgba(8, 15, 52, 0.06);
}

/* OPTION GROUP */
.option-group {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.option-group.content-align-horizontal {
    flex-direction: row;
}



/* CHECK GROUP */
.check-group {
    position: relative;
    width: 100%;
}

.check-group input[type="checkbox"], .check-group input[type="radio"] {
    position: absolute;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
    appearance: unset;
    right: 20px;
    top: 50%;
    z-index: -1;
}

/* CHECK GROUP BUTTON */
.check-group.check-button input[type="checkbox"] ~ label, .check-group.check-button input[type="radio"] ~ label {
    border: 5px solid #fff;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: color 200ms ease-in;
    overflow: hidden;
    border-radius: 50%;
    background: var(--neutral-100, #FFF);
    box-shadow: 0px 2px 6px 0px rgba(19, 18, 66, 0.07);
    font-weight: normal;
    position: relative;
}

.check-group.check-button input[type="checkbox"] ~ label:after, .check-group.check-button input[type="radio"] ~ label:after {
    width: 31px;
    height: 31px;
    content: "";
    border: 2px solid #D1D7DC;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
    background-repeat: no-repeat;
    background-position: 2px 3px;
    border-radius: 50%;
    z-index: 2;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 200ms ease-in;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}
.check-group.check-button input[type="checkbox"]:not([data-exclusivo]) ~ label {
    border-radius: 6px;
}
.check-group.check-button input[type="checkbox"]:not([data-exclusivo]) ~ label:after {
    border-radius: 0;
}

.check-group.check-button input:checked ~ label {
    border: 5px solid #54E0C7;
}

.check-group.check-button input:checked ~ label:after {
    background-color: #54E0C7;
    border-color: #54E0C7;
}

.check-group.check-button input[data-especifique]:checked ~ label {
    width: 100%;
    border-radius: 0px;
    height: auto;
    padding: 0px;
}

.check-group.check-button input[data-especifique]:checked ~ label:after {
    display: none;
}

/* CHECK GROUP LABEL */
.check-group.check-label input[type="checkbox"] ~ label, .check-group.check-label input[type="radio"] ~ label {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: var(--neutral-100, #FFF);
}
.check-group.check-label input[type="checkbox"]:not(:disabled) ~ label, .check-group.check-label input[type="radio"]:not(:disabled) ~ label {
    padding: 15px 10px;
    border: 5px solid var(--neutral-100, #FFF);
    cursor: pointer;
    transition: color 200ms ease-in;
    border-radius: 16px;
    box-shadow: 0px 2px 6px 0px rgba(19, 18, 66, 0.07);
}

.check-group.check-label input[type="checkbox"]:not(:disabled):checked ~ label, .check-group.check-label input[type="radio"]:not(:disabled):checked ~ label {
    color: #fff;
    background: #00b0a9;
    border-color: #54E0C7;
}

.checker .check-group.check-label input[type="checkbox"] ~ label, .checker .check-group.check-label input[type="radio"] ~ label {
    padding-right: 60px;
    text-align: left;
    align-items: start;
}

.checker .check-group.check-label input[type="checkbox"]:not(:disabled) ~ label:after, .checker .check-group.check-label input[type="radio"]:not(:disabled) ~ label:after {
    content: "";
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    background: var(--neutral-100, #FFF);
    color: #fff;
    border: 2px solid #D1D7DC;
    border-radius: 50%;
    cursor: pointer;
    transition: all 200ms ease-in;
    transform: translateY(-50%);
    position: absolute;
    right: 20px;
    top: 50%;
}
.checker .check-group.check-label input[type="checkbox"]:not(:disabled):not([data-exclusivo]) ~ label:after {
    border-radius: 6px;
}

.checker .check-group.check-label input[type="checkbox"]:not(:disabled):checked ~ label:after, .checker .check-group.check-label input[type="radio"]:not(:disabled):checked ~ label:after {
    background-color: #54E0C7;
    border-color: #54E0C7;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
    background-repeat: no-repeat;
    background-position: 3px 4px;
}

.checker .check-group.check-label input[type="checkbox"]:not(:disabled):checked ~ label[data-checker]:after, .checker .check-group.check-label input[type="radio"]:not(:disabled):checked ~ label[data-checker]:after {
    background: #54E0C7;
    content: attr(data-checker);
}

.especifique {
    display: none;
    align-items: baseline;
    gap: 10px;
    width: 100%;
}

.especifique input {
    padding: 2px;
    border-radius: 0px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #EFF0F6;
}

input[data-especifique]:checked ~ label .especifique {
    display: flex;
}

/* GONDOLA */
.questao-gondola {
    overflow-x: hidden;
}

.questao-gondola .option-group {
    gap: 0;
}

.questao-gondola .check-group.check-label input[type="checkbox"] ~ label, .questao-gondola .check-group.check-label input[type="radio"] ~ label {
    padding: 0px;
    justify-content: end;
}

.gondola-item .questao-item,
.gondola-item .questao-item .questao-label {
    padding: 0px;
}

.gondola-item {
    display: flex;
    flex-direction: column;
}

.gondola-item .label-group {
    display: flex;
    height: 100%;
    position: relative;
}

span.gondola-footer {
    background-color: #ededed;
    font-size: 13px;
    text-align: center;
    color: #666;
    border-left: solid 1px #c1c1c1;
    border-bottom: 3px solid #666;
    margin: 0px -1px;
    text-wrap: nowrap;
    overflow: hidden;
}

/* TERMOMETRO */
.questao-termometro .option-group {
    gap: 0;
    text-align: center;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.navegacaosatisfation {
    text-align: center;
    align-items: center;
}
.navegacaosatisfation > :last-child {
    text-align: right;
}
.navegacaosatisfation > :first-child {
    text-align: left;
}

.navegacaosatisfation,
.questao-termometro .questao-content {
    display: flex;
    justify-content: space-between;
}

.questao-termometro .questao-content .questao-item input[type="radio"]:not([disabled]) ~ .questao-label {
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px 0px;
}

/* SOMATORIA */
.somatoria .resultado {
    background: #f7f5ff;
    border-radius: 20px;
    padding: 10px 50px;
}

.somatoria .resultado input {
    border: 5px solid #e4e2e9;
    background-color: #fff;
    cursor: default;
}

/* ACCORDION */
.accordion-item {
    border: none;
}

.accordion .accordion-button {
    color: #fff;
    padding: 16px;
    line-height: 24px;
    font-weight: 600;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    border-radius: 16px !important;
    font-size: 14px;
    margin-bottom: 5px;
    background-color: #00b0a9;
    outline: none !important;
    box-shadow: none;
}

/* SLIDER */
.slider-wrapper {
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 12px;
    border: solid 2px transparent;
}

input[type="range"]:focus ~ .slider-wrapper {
    border-color: orange;
}

.slider-container {
    position: relative;
    width: 100%;
    display: flex;
}

.slider-container input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    cursor: pointer;
    outline: none;
    opacity: 0;
    position: relative;
    z-index: 1;
}

.slider-container input[type="range"]::-moz-range-track {
    height: 24px;
    background: #ccc;
    border-radius: 16px;
}

.slider-container input[type="range"]::-webkit-slider-runnable-track {
    height: 24px;
    background: #ccc;
    border-radius: 16px;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 42px;
    width: 42px;
    margin-top: -10px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #f50;
}

.slider-container input[type="range"]::-moz-range-thumb {
    height: 42px;
    width: 42px;
    background-color: #fff;
    margin-top: -10px;
    border-radius: 50%;
    border: 1px solid #f50;
}

.slider-bar {
    height: 100%;
    border: solid 1px #fff;
    background: var(--midGray);
    padding-right: 40px;
    border-radius: 12px;
}

.slider-mark {
    display: block;
    height: 100%;
    position: relative;
    background: linear-gradient(to right, var(--orange), 25%, var(--yellow));
    border-radius: 12px 0px 0px 12px;
}

.slider-mark span {
    content: "☹️";
    display: inline-block;
    position: absolute;
    width: 50px;
    height: 50px;
    right: -44px;
    font-size: 38px;
    line-height: 40px;
    margin-top: -12px;
}

/* CONCORDANCIA */
.questao-concordancia .option-group {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    color: #fff;
    text-align: center;
    gap: 0;
}

/*ESTRELAS*/
.rating {
    display: flex;
    width: 100%;
    overflow: hidden;
    flex-direction: column-reverse;
    position: relative;
    align-items: baseline;
    gap: 20px;
}
/*
.rating-0 {
    filter: grayscale(100%);
}*/

.rating > input {
    display: none;
}
.rating > .rating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
.rating-text {
    text-align: center;
    overflow-wrap: anywhere;
    min-width: 80px;
}
.rating > .rating-item > label {
    display: block;
    cursor: pointer;
    width: 65px;
    height: 65px;
    margin-top: auto;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: .3s;
}

.rating > input:not(.no-rating):checked ~ .rating-item > label,
.rating > input:not(.no-rating):checked ~ .rating-item > label ~ .rating-item > label {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}
.rating > input:not(:checked) ~ .rating-item > label:hover,
.rating > input:not(:checked) ~ .rating-item > label:hover ~ .rating-item > label {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23d8b11e' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}
/* MATRIZ GRID */
.questao-grid-matriz .form-control {
    padding: 6px;
    border-radius: 10px;
    appearance: auto;
}

/*BUTTONS*/
.action-button {
    min-width: 100px;
    background: #00b0a9;
    font-weight: 400;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
    float: right;
}

.action-button:hover,
.action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #00b0a9;
}

.action-button-previous {
    min-width: 100px;
    background: #e5e5e5;
    font-weight: 400;
    color: #000;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
    float: right;
}

.action-button-previous:hover,
.action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}

/* MODAL ZOOM */
.modal {
    display: none;
    position: fixed;
    z-index: 99999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.bi-zoom-in {
    position: absolute;
    display: flex;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    transition: .5s;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.bi-zoom-in .zoom-in {
    display: block;
    width: 32px;
    height: 32px;
    background: url('../img/lupa.png');
}

.bi-zoom-in:hover {
    opacity: 1;
}

.table-row .table-col img, .table-row .table-col video {
    max-width: unset;
}







.bs-searchbox input.form-control {
    border-radius: unset;
    box-shadow: unset;
    padding: 6px;
}

.btn.dropdown-toggle.btn-light {
    padding: 15px;
    font-size: 17px;
    cursor: pointer;
    border-radius: 16px;
    border: 1px solid var(--neutral-300, #EFF0F6);
    box-shadow: 0px 2px 6px 0px rgba(19, 18, 66, 0.07);
}


#codPaginaQuestao {
    font-weight: bold;
    text-align: center;
    color: red;
}


.video-container {
    position: relative;
    display: inline-block;
}

.btn-controls {
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 0px 10px 15px 10px;
}



/************************/

.table-flex .table-row {
    border: 1px solid #ededed;
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 8px;

        display: flex;
        flex-direction: column;
        gap: 1.5rem;
}

.table-row:nth-child(even) {
    background-color: #f1f1f1;
}


    .table-flex .table-col {
        text-align: center;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

.table-flex .table-text {
    display: block;
}

.table-flex .table-header {
    font-weight: 600;
    margin-bottom: 22px;
    align-items: start;
}

.table-flex .table-flex-header {
    display: none;
}





.slider {
    position: relative;
    margin-top: 80px;
}

    .slider input[type="range"] {
        position: relative;
        -webkit-appearance: none;
        outline: 0;
        border: 0;
        width: 100%;
        height: 30px;
        background-color: #cde8ef;
        border-radius: 8px;
        overflow: hidden;
    }


        .slider input[type="range"]::-webkit-slider-runnable-track {
            height: 100%;
            -webkit-appearance: none;
        }

        .slider input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 30px;
            height: 30px;
            cursor: pointer;
            background: #39b0aa;
            border-radius: 50%;
            border: solid 4px #fff;
            position: relative;
            box-shadow: 0 4px 25px rgba(0, 0, 0, .4);
        }

    .slider .slider-thumb {
        font-weight: bold;
        display: flex;
        width: 40px;
        height: 50px;
        background: #39b0aa;
        position: absolute;
        align-items: center;
        justify-content: center;
        border-radius: 30px;
        margin-bottom: 10px;
        bottom: 100%;
        color: #fff;
        margin-left: -20px;
    }

        .slider .slider-thumb:before {
            font-weight: bold;
            display: block;
            content: '';
            width: 16px;
            height: 16px;
            background: #39b0aa;
            position: absolute;
            transform: rotate(45deg);
            bottom: -5px;
        }

@media (min-width: 340px) {
    .rating {
        flex-direction: row-reverse;
        gap: 15px;
        font-size: 0.75rem;
        overflow: auto;
    }

    .rating > .rating-item > label {
        width: 45px;
        height: 45px;
    }
}

@media (min-width: 400px) {
    .rating {
        font-size: 1rem;
    }
}

@media (min-width: 470px) {
    .rating {
        gap: 20px;
    }

    .rating > .rating-item > label {
        width: 65px;
        height: 65px;
    }
}

@media (min-width: 720px) {

    .table-container {
        overflow: auto;
    }

    .table-flex .table-text {
        display: none;
    }

    .table-flex .table-col {
        padding: 25px;
    }

    .table-col.check-label {
        padding: 5px;
    }



    .table-flex:not(.table-reverse) {
        display: table;
        width: 100%;
    }

    .table-flex:not(.table-reverse) .table-col {
        display: table-cell;
        vertical-align: middle;
        width: unset;
    }

    .table-flex:not(.table-reverse) .table-row {
        display: table-row;
    }










    .table-flex.table-reverse {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }


        .table-flex.table-reverse .table-header {
            margin-bottom: 0px;
            align-items: inherit;
        }


        .table-flex.table-reverse .table-flex-header {
            display: inherit;
        }
		/*
		.table-flex.table-reverse .table-flex-header .table-col {
			white-space: nowrap;
		}*/

        .table-flex.table-reverse .table-row {
            border: unset;
            border-radius: unset;
            margin: 0px;
            background: unset;
            padding: 0px;
            gap: 0;
            flex-grow: 1;
        }

        .table-flex.table-reverse .table-col:nth-child(even) {
            background: #f1f1f1
        }
}


    @media (max-width: 720px) {
        .navegacaosatisfation {
            display: none !important;
        }

        .option-group:not(.force-horizontal) {
            display: flex !important;
            flex-direction: column !important;
        }
        .questao-escala .d-flex.justify-content-center {
            display: grid !important;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto;
        }

        .questao-escala .d-flex.justify-content-center .slider-container {
            grid-column: 1 / span 2;
            grid-row: 1;
        }

        .questao-escala .d-flex.justify-content-center .rangertext {
            grid-column: 2;
            grid-row: 2;
        }

            .questao-escala .d-flex.justify-content-center .rangertext:first-child {
                grid-column: 1;
            }
    }



