.survey {}

.survey-status {
    text-align: center;
    background-color: #8cc63e;
    color: #fff;
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* .survey-status-wrapper {
    display: inline-block;
} */

.survey-status-wrapper>span {
    /* display: block; */
    display: flex;
    flex-direction: column;
}

.survey-status-wrapper>span:last-child {
    font-weight: bold;
}

.survey-prev-button,
.survey-next-button {
    background-color: #8cc63e;
    color: inherit;
    display: flex;
    cursor: pointer;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: all 0.35s;
    margin: 0;
    border-radius: 5px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    height: 100%;
    min-width: 46px;
    text-align: center;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 11px 0;
}

.survey-prev-button:after,
.survey-next-button:after {
    content: "\f104";
    font-family: 'Font Awesome 5 Free';
    font-size: 40px;
    line-height: 1;
    /* vertical-align: text-top; */
}

.survey-prev-button {
    transform: rotate(180deg);
}

.survey-next-button {
    /* margin-right: 15px; */
}

.survey-prev-button.active,
.survey-next-button.active {
    pointer-events: all;
    visibility: visible;
    opacity: 1;
}

.survey-questions {
    position: relative;
    overflow: hidden;
    margin-left: -20px;
    margin-right: -20px;
}

.survey-question {
    /* display: none; */
    flex-wrap: wrap;
    display: flex;
    overflow: hidden;
    /* height: 0; */
}

.survey-answer {
    position: relative;
    display: flex;
    flex-direction: column;
    /* height: 27vh; */
    height: 25vw;

    background-color: #8cc63e;
    border-radius: 5px;
    margin: 20px;
    overflow: hidden;
    cursor: pointer;
    min-height: 200px;
    flex-grow: 1;
}

.survey-answer-image {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    height: 100%;
}

.survey-answer .survey-answer-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 100%;
    margin: 0;
    padding: 10px 10px;
    color: #fff !important;
    background: #8cc63e;
    transition: all 0.35s;
    line-height: 1.3;
}

.survey-answer * {
    color: #fff !important;
}

.survey-answer button,
.survey-answer .fusion-button,
.survey-answer .fusion-button .fusion-test {
    background: #fff !important;
    color: #8cc63e !important;
}

.survey-answer.active {
    cursor: default;
}

.survey-answer:hover .survey-answer-text {
    background-color: rgba(0, 0, 0, 0.1);
}

.survey-answer.active .survey-answer-text {
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.3);
}

.survey-answer.active .survey-answer-text:before {
    /* content: '✔';
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    line-height: 2.5em;
    width: 55px; */

    /* content: '✔';
    font-weight: bold;
    color: #fff;
    width: 55px;
    float: right; */

    content: "\f147";
    font-family: 'dashicons';
    font-size: 30px;
    line-height: 25px;
    display: inline-block;
}

.survey-answers-2 .survey-answer {
    width: calc(50% - 40px);
}

.survey-answers-3 .survey-answer {
    width: calc(33% - 40px);
}

.survey-answers-4 .survey-answer {
    width: calc(50% - 40px);
}

.survey-answers-5 .survey-answer {
    width: calc(50% - 40px);
}

.survey-answers-6 .survey-answer {
    width: calc(33% - 40px);
}

.survey-summary {
    overflow: hidden;
    height: 0px;
    background-color: #8cc63e;
    border-radius: 5px;
    margin-top: 20px;
    color: #fff;
    transition: all 1.5s;
    opacity: 0;
}

.survey-summary.active {
    height: auto;
    padding: 20px;
    opacity: 1;
}

.survey-summary a {
    color: green !important;
}

.survey-summary .fusion-button {
    border-width: 2px;
    border-color: #333333;
    width: auto;
}

@media (max-width: 1000px) {
    .survey-answers-3 .survey-answer {
        width: calc(50% - 40px);
    }

    .survey-answers-6 .survey-answer {
        width: calc(50% - 40px);
    }
}

@media (max-width: 730px) {
    .survey-answer {
        width: 100% !important;
    }
}


.survey-summary {
    overflow: hidden;
    height: 0px;
    background-color: #f0f0f0;
    border-radius: 5px;
    margin-top: 20px;
    color: inherit;
    padding: 11px 20px 22px 20px;
    transition: all 0.5s;
    border: 2px solid #dcdcdc;
}

.survey-summary> :first-child,
.survey-summary> :first-child> :first-child {
    margin-top: 0;
    padding-top: 0;
}

.survey-summary> :last-child,
.survey-summary> :last-child> :last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}