#profile-quiz {
    margin-bottom: 24px;
}

#profile-quiz.loading {
    position: relative;
    opacity: 0.8;
}

#profile-quiz.loading:after {
    content: '';
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    font-size: 10px;
    position: absolute;
    border-top: 4px solid #4caf50;
    border-right: 4px solid #4caf50;
    border-bottom: 4px solid rgba(255, 255, 255, 0.2);
    border-left: 4px solid #ffffff;
    transform: translateZ(0);
    animation: loading 1.1s infinite linear;
    z-index: 9;
    will-change: transform;
    border-radius: 50%;
}

.profile-quiz-intro {
    position: relative;
    padding: 12px;
    background-color: #FFC530;
    border-radius: 5px;
    overflow: hidden;
}

.profile-quiz-intro__content {
    width: calc(100% - 85px);
    margin-bottom: 12px;
}

.profile-quiz-intro__title {
	margin-bottom: 10px;
	margin-top: 10px;
    /*margin-bottom: 5px;*/
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    color: #242526;
}

.profile-quiz-intro__description {
    font-size: 14px;
    line-height: 20px;
    color: #242526;
    position: relative;
	z-index: 1;
}

.profile-quiz-intro__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 142px;
    /*height: 32px;*/
	height: 38px;
    font-size: 14px;
    line-height: 24px;
    font-weight: bold;
    white-space: nowrap;
    color: #ffffff;
    text-decoration: none;
    background-color: #2F8F41;
    border-radius: 5px;
}

.profile-quiz-intro__button:hover {
    opacity: 0.8;
}

.profile-quiz-intro__image {
    position: absolute;
    /*right: -20px;*/
	right: -80px;
	top: 20px;
    bottom: 0;
}

.profile-quiz-question {
    padding: 20px;
    border: 1px solid #E3E3E3;
    border-radius: 8px;
}

.profile-quiz__steps {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 7px;
}

.profile-quiz__progress {
    width: 100%;
    height: 2px;
    margin-bottom: 10px;
    background-color: #E3E3E3;
    border-radius: 2px;
    overflow: hidden;
}

.profile-quiz__progress-bar {
    height: 100%;
    background-color: #2F8F41;
}

.profile-quiz__title {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
    color: #242526;
}

.profile-quiz__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid #E3E3E3;
}

.profile-quiz__message {
    color: #ff0000;
}

.profile-quiz__button {
    margin-left: auto;
    padding: 0 20px;
}

.profile-quiz__select {
    margin-bottom: 20px;
}

.profile-quiz__select .choices__inner {
    padding: 0 10px;
    background-color: transparent;
    border: 1px solid #E3E3E3;
    border-radius: 10px;
}

.profile-quiz__select .choices.is-open .choices__inner {
    border-color: #2F8F41;
    box-shadow: none;
}

.profile-quiz__select .choices__input {
    margin: 0 2px;
    padding: 0;
    min-height: initial;
    height: 38px;
    outline: 0;
    border: 0 !important;
    background: 0 0 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #999;
    font-size: 100%;
    font-family: sans-serif;
    line-height: normal;
    border-radius: 0;
    width: 25px;
    transform: translate(0, 2px);
}

.profile-quiz__select .choices__list--multiple .choices__item {
    display: inline-flex;;
    align-items: center;
    position: relative;
    height: 34px;
    margin: 3px 5px 3px 0;
    padding: 0 30px 0 10px;
    font-size: 16px;
    line-height: 18px;
    color: #242526;
    background-color: rgba(47, 143, 65, .1);
    background-image: none;
    border: 0;
    border-radius: 10px;
}

.profile-quiz__select .choices__button {
    position: absolute !important;
    top: 7px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 6.41L17.59 5L12 10.59L6.41 5L5 6.41L10.59 12L5 17.59L6.41 19L12 13.41L17.59 19L19 17.59L13.41 12L19 6.41Z' fill='black'/%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-position: 0 0 !important;
    background-repeat: no-repeat !important;
    border: 0 !important;
}

.profile-quiz__select .choices__button:hover {
    opacity: 0.8;
}


.profile-quiz__select .choices__list--dropdown {
    margin-top: 0;
    border: 0;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.profile-quiz__select .choices__list--dropdown .choices__item {
    display: flex !important;
    align-items: center;
    height: 44px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 24px;
    color: #242526;
}

.profile-quiz__select .choices__list--dropdown .choices__item:not(:last-child) {
    border-bottom: 1px solid #E3E3E3;
}

.profile-quiz__select .choices__list--dropdown .choices__item:hover {
    background-color: rgba(47, 143, 65, 0.1);
    background-image: none;
    color: #242526;
}

.profile-quiz__checkbox input[type="checkbox"] {
    display: none;
}

.profile-quiz__checkbox label {
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 16px;
    line-height: 1.5;
    color: #242526;
    cursor: pointer;
}

.profile-quiz__checkbox:not(:last-child) label {
    border-bottom: 1px solid #E3E3E3;
}

.profile-quiz__checkbox label:hover {
    background-color: rgba(47, 143, 65, 0.10);
}

.profile-quiz__checkbox label:before {
    content: "";
    flex-shrink: 0;
    display: block;
    width: 24px;
    height: 24px;
    margin-right: 15px;
    border: 1px solid #E3E3E3;
    border-radius: 5px;
    box-sizing: border-box;
}

.profile-quiz__checkbox label:hover:before {
    border: 1px solid #2F8F41;
    box-shadow: 0 0 5px 0 #2F8F41;
}

.profile-quiz__checkbox input[type="checkbox"]:checked + label:before {
    background: #2F8F41 url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSI+PHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiBmaWxsPSIjMkY4RjQxIiByeD0iNiIvPjxwYXRoIGZpbGw9IiNmZmYiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIuMyIgZD0iTTcuMjQxIDExLjA3MmEuNjcxLjY3MSAwIDAgMSAuNTE3LjI0NWwtLjUxNy0uMjQ1Wm0wIDBINi4xMjhjLS4yMjUgMC0uMzY3LjI2LS4yMTcuNDQ0bDQuMzYzIDUuMzlhLjY3LjY3IDAgMCAwIDEuMDM0IDBsNy43OC05LjYxMmMuMTUzLS4xODYuMDA3LS40NDQtLjIxNi0uNDQ0SDE3Ljc2Yy0uMiAwLS4zOTIuMDktLjUxNy4yNDVsLTYuNDUxIDcuOTY4bS0zLjU1LTMuOTkyIDMuNTUgMy45OTJtMCAwLTMuMDMzLTMuNzQ2IDMuMDMzIDMuNzQ2WiIvPjwvc3ZnPg==") center no-repeat;
}

.popup__body--profile-quiz {
    width: 100%;
    padding: 0 !important;
    text-align: initial;
    border-radius: 8px;
}

.popup__body--profile-quiz .popup__heading,
.popup__body--profile-quiz .popup__close {
    display: none;
}

.popup__body--profile-quiz #profile-quiz {
    min-height: 250px;
    margin: 0;
}

.popup__body--profile-quiz .profile-quiz-question {
    min-height: 250px;
    border: 0;
}

/*** Responsive ***/

@media (min-width: 1280px) {

    .profile-quiz-intro {
        display: flex;
        align-items: center;
        padding: 0 0 0 20px;
    }

    .profile-quiz-intro__content {
        margin-bottom: 0;
    }

    .profile-quiz-intro__title {
        font-size: 20px;
        line-height: 20px;
    }

    .profile-quiz-intro__description {
        font-size: 16px;
        line-height: 20px;
		position: relative;
	    z-index: 1;
    }

    .profile-quiz-intro__button {
        flex-shrink: 0;
        width: 160px;
        height: 40px;
        margin-left: 20px;
        font-size: 16px;
    }

    .profile-quiz-intro__image {
        position: initial;
        width: 250px;
        height: 100px;
		margin-right: -80px;
    }
}