.scoring-quiz{
    width: 100%;
    max-width: 754px;
    margin: 0 auto;
    line-height: 150%;
    font-size: 16px;
}

.scoring-quiz p{
    font-size: 16px;
    line-height: 150%;
    color: #303D48;
}

.step.first_step p{
    text-align: center;
    color: #303D48;
    font-weight: 700;
    margin-top: 0;
    font-size: 20px;
}
.step.first_step svg{
    display: block;
    max-width: 100%;
    margin: 38px auto;
}


.page-content.scoring-page-content{
    padding-top: 30px;
}

.scoring-quiz .scoring-quiz_footer{
    display: block;
}

.scoring-quiz #quiz_start_button{
    display: none;
}

.scoring-quiz.first_step_active .scoring-quiz_footer,
.scoring-quiz.first_step_active .scoring-quiz_header{
    display: none;
}
.scoring-quiz.first_step_active #quiz_start_button{
    width: 100%;
    margin: 0;
    text-align: center;
    display: block;
}


.scoring-quiz .scoring-quiz_header{
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: #30B5E7;
}

.scoring-quiz .step .step_title,
.scoring-quiz .publish_step .step_title{
    font-size: 22px;
    color:#303D48;
    font-weight: 700;
    margin:16px 0 50px 0;
    text-align: center;
    line-height: 155%;
}


.scoring-quiz_footer{
    border-top: 1px solid #DBDEE7;
    padding-top: 24px;
    margin-top: 50px;
}

.scoring-quiz_footer .scoring{
    display: flex;
    justify-content: space-between;
}

.scoring-quiz_footer .scoring #score_result{
    width: 437px;
}

.scoring-quiz_footer .scoring #score_result span{
    color: #303D48;
    font-weight: 400;
}

.scoring-quiz_footer .scoring #score_result span#score_count{
    margin-left: 10px;
    color: #30B5E7;
    font-weight: 700;
}

.scoring-quiz_footer .scoring #progress_bar{
    width: 100%;
    height: 16px;
    position: relative;
    border-radius: 100px;
    background: #F5F8FD;
    margin-top: 16px;
    overflow: hidden;
}

.scoring-quiz_footer .scoring #progress_bar span{
    position: absolute;
    left: 0;
    height: 100%;
    width: 0px;
    background: #30B5E7;
}

.scoring-quiz_footer .scoring .score_buttons{
    width: 252px;
    display: flex;
    justify-content: space-between;
}

.scoring-quiz_footer .scoring .score_buttons .btn-animate{
    /*width: calc(50% - 6px);*/
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scoring-quiz_footer .scoring .score_buttons .btn-transparent,
.quiz_button_group .btn-transparent{
    background: #fff;
    border: 2px solid #ef3d48;
    color: #ef3d48 !important;
}

.quiz_button_group .btn-transparent:hover{
    color: #fff !important;
}

/*Quiz 1 - 10*/
.radio-group_1_10 {
    display: flex;
    justify-content: center;
}

.radio-group_1_10 input[type="radio"] {
    display: none; /* Скрывает стандартные радио кнопки */
}

.radio-group_1_10 label {
    display: flex;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    cursor: pointer;
    font-size: 22px;
    align-items: center;
    justify-content: center;
    margin: 0 6px;
    background: #DBDEE7;
    color: #303D48;
    transition: background-color 0.2s, transform 0.2s;
}

.radio-group_1_10 input[type="radio"]:checked + label {
    background-color: #30B5E7;
    color: white;
}

.radio-group_1_10 input[type="radio"]:focus + label {
    outline: none;
    border-color: #007bff;
}

.radio-group_1_10-container .question_left_right{
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
}

.radio-group_1_10-container .question_left_right p{
    max-width: 141px;
}

.radio-group_1_10-container .question_left_right p:last-child{
    text-align: right;
}

/* Quiz 1-5 List */
.list_1_5_question_question {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quiz-list_1_5_question_answ {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

.list_1_5_question_question{
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid #DBDEE7;
}

.list_1_5_question_question:last-child{
    padding-bottom: 0;
    border-bottom: 0;
}

.quiz-list_1_5_question_answ li {
    position: relative;
}

.quiz-list_1_5_question_answ input[type="radio"] {
    appearance: none;
    margin: 0;
    font-size: 16px; /* Adjust size as needed */
    width: 32px; /* Adjust width as needed */
    height: 32px; /* Adjust height as needed */
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #DBDEE7;
    color: #303D48;
    transition: background-color 0.2s, transform 0.2s;
}

.quiz-list_1_5_question_answ input[type="radio"]:checked {
    background-color: #30B5E7;
}

.quiz-list_1_5_question_answ input[type="radio"]:checked + label {
    color: white;
}

.quiz-list_1_5_question_answ label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}


/*Checbkox/Radio text*/
.custom-checkbox-w-image,
.custom-radio-w-image{
    display: flex;
    background: #F5F8FD;
    border-radius: 6px;
    padding: 18px 24px;
    justify-content: space-between;
    flex-direction: row-reverse;
    cursor: pointer;
    transition: all .3s ease;
    transition: all .3s ease;
}

.custom-checkbox-w-image .checkbox-text,
.custom-radio-w-image .radio-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    color: #303D48;
}

.custom-checkbox-w-image input[type="checkbox"],
.custom-radio-w-image input[type="radio"]{
    appearance: none;
    background-color: #fff;
    border: 1px solid #DBDEE7;
    width: 24px;
    height: 24px;
    border-radius: 3px;
    border-radius: 100%;
    cursor: pointer;
}


.custom-radio-w-image {
    display: flex;
    align-items: center;
    cursor: pointer;
}


.custom-radio-w-image.checked,
.custom-checkbox-w-image.checked{
    background: #30B5E7;
    transition: all .3s ease;
}

.custom-checkbox-w-image.checked .checkbox-text,
.custom-radio-w-image.checked .radio-text{
    color: #fff;
}

.custom-radio-w-image.checked input,
.custom-checkbox-w-image.checked input{
    border: 6px solid #fff;
    background-color: transparent;
}

.radio-container,
.checkbox-container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.radio-container label,
.checkbox-container label{
    width: calc(50% - 15px);
    margin-bottom: 30px;
}

.checkbox-radio-image-container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.checkbox-radio-image-container label{
    width: calc(33% - 7px);
    margin-bottom: 15px;
    text-align: center;
}

.checkbox-radio-image-container label img{
    width: 100%;
    border-radius: 6px;
    margin-bottom: 24px;
}

/*True False*/
.true_false_group{
    list-style: none;
    display: flex;
}

.true_false_group li{
    display: flex;
    align-items: center;
    color: #303D48;
    font-weight: 700;
}

.true_false_group li label{
    margin-right: 10px;
}

.true_false_group li:nth-child(2){
    margin-left: 30px;
}

.rc_image_true_false_container{
    display: flex;
    justify-content: space-between;
}

.rc_image_true_false_container .custom-checkbox-radio-image{
    width: calc(50% - 10px);
    margin-bottom: 20px;
}

.rc_image_true_false_container .custom-checkbox-radio-image img{
    width: 100%;
    border-radius: 6px;
}

.rc_image_true_false_container .custom-checkbox-radio-image .true_false_group {
    justify-content: center;
    margin-top: 20px;
}

.rc_image_true_false_container.one .custom-checkbox-radio-image{
    width: 100%;
}

.step{
    display: none;
}

.step.active{
    display: block;
}

/*Custom standart checkbox/radio*/
.custom-r-c{
    appearance: none;
    background-color: #fff;
    border: 1px solid #DBDEE7;
    width: 24px;
    height: 24px;
    border-radius: 3px;
    border-radius: 100%;
    cursor: pointer;
}

.custom-r-c:checked{
    border:6px solid #30B5E7;
}

/*Form*/
.form_publish_pre{
    display: flex;
    justify-content: space-between;
}


.form_publish_pre_result{
    width: 465px;
    background: #F5F8FD;
    border-radius: 6px;
    overflow: hidden;
    padding: 30px;
    position: relative;
}

.form_publish_pre_result .top_svg{
    position: absolute;
    top: 0;
    left: 0;
}

.form_publish_pre_result .abs_logo{
    top: 30px;
    right: 30px;
    position: absolute;
}

.form_publish_pre_result .name{
    position: relative;
    z-index: 1;
    color: #303D48;
    font-weight: 900;
    font-size: 36px;
    margin: 70px 0 10px 0;
}

.form_publish_pre_result .description{
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #303D48;
}

.form_publish_pre_result .abs_bottom{
    position: absolute;
    bottom: 0;
    right: 0;
}

.flex-score_result{
    display: flex;
    text-align: center;
    justify-content: space-between;
    width: 300px;
    margin-top: 36px;
    position: relative;
    z-index: 1;
}

.flex-score_result span{
    color: #303D48;
    font-size: 16px;
    display: block;
    font-weight: 400;
}

.flex-score_result p,
.flex-score_result b{
    margin: 2px 0 0 0;
    color: #EF3D48;
    text-align: center;
    font-size: 46px;
    font-weight: 900;
}

.form_publish_pre_form.form_center{
    margin: 0;
    width: 675px;
    padding: 30px;
    max-width: 100%;
}

.form_publish_pre_form.form_center input,
.form_publish_pre_form.form_center textarea{
    margin-bottom: 15px;
}

.form_publish_pre{
    margin: 0 0 100px 0;
}

.scoring-quiz.quiz-result .form_publish_pre_result{
    width: 100%;
    height: 415px;
}

.scoring-quiz.quiz-result .form_publish_pre_result .description{
    max-width: 300px;
    margin-top: 20px;
}

.scoring-quiz.quiz-result .form_publish_pre_result .name {
    margin: 100px 0 10px;
}

.quiz_button_group{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.quiz_button_group .btn-animate.mini{
    width: 200px;
}

.publish_step .rc_image_true_false_container .custom-checkbox-radio-image{
    width: calc(33% - 10px);
}

.form_publish_pre_result .flex-score_result span{
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #303D48;
}

.form_publish_pre_result .flex-score_result p {
    font-size: 90px;
    line-height: 1;
    margin-top: 10px;
}

.form_publish_pre_result .abs_foot{
    position: absolute;
    bottom: 0;
    right: 0;
}

.flex-score_result_container{
    width: 331px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
}

.flex-score_result_container > p{
    color: #303D48;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    margin: 40px 0;
}

.scoring-quiz.scoring-quiz_form,
.scoring-quiz.quiz-result{
    display: none;
}

.profile_types_nav{
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 30px auto;
}

.profile_types_nav li{
    border: 1px solid #DBDEE7;
    width: 184px;
    text-align: center;
}

.profile_types_nav li:first-child{
    border-radius: 6px 0 0 6px;
    border-right: 0;
}

.profile_types_nav li:last-child{
    border-radius: 0 6px 6px 0;
    border-left: 0;
}

.profile_types_nav li a{
    text-decoration: none;
    display: block;
    color: #303D48;
    padding: 10px 0;
    font-weight: 700;
    font-size: 16px;
}

.profile_types_nav li.active a{
    color: #fff;
}

.profile_types_nav li.candidates.active{
    border-color: #EF3D48;
    background: #EF3D48;
}
.profile_types_nav li.electeds.active{
    border-color: #30B5E7;
    background: #30B5E7;
}
.profile_types_nav li.other.active{
    border-color: #F3BA40;
    background: #F3BA40;
}

.profile_types_filter{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 90px;
}

.profile_types_filter .profile_types_filter_title{
    font-size: 36px;
    color: #303D48;
    font-weight: 900;
}

.profile_types_filter .score_profile_filter{
    width: 480px;
    display: flex;
    justify-content: space-between;
}

.profile_types_filter .score_profile_filter select{
    width: 212px;
}

.profile_types_filter .select2-container--default .select2-selection--single .select2-selection__placeholder{
    color: #303D48;
    font-size: 16px;
    font-weight: 400;
}

.profile_types_filter .select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #DBDEE7;
    border-radius: 6px;
    padding: 10px 5px;
    height: 48px;
}

.profile_types_filter .select2-container{
    margin-right:5px;
    width: 33% !important;
}

.select2-container .select2-selection--single .select2-selection__rendered{
    padding: 0 0 0 10px;
}

.profile_types_filter .select2-container--default .select2-selection--single .select2-selection__arrow b{
    border-color: #303D48 transparent transparent transparent;
}

.profile_types_filter .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{
    border-color: transparent transparent #303D48 transparent
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
    width: 30px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #DBDEE7;
    color: #303D48;
}

.profile_types_filter .select2-results__option {
    padding: 10px;
}

.score_profile_filter .btn-animate.mini {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.profile_list_map{
    margin-top: 50px;
    height: 630px;
}


.score_profiles{
    width: 558px;
    height: 630px;
    overflow: auto;
}

.score_profiles .score_profile{
    display: flex;
    position: relative;
    padding: 14px;
    box-sizing: border-box;
    background: #F5F8FD;
    border-radius: 6px;
    margin-top: 10px;
    border: 2px solid #f5f8fd;
    transition: all .3s ease;
    text-decoration: none;
    color: #303D48;
}

.score_profiles .score_profile:hover{
    border: 2px solid #EF3D48;
}

.score_profiles .score_profile:first-child{
    margin-top: 0;
}

.score_profiles .score_profile .score_num{
    position: absolute;
    background: #EF3D4826;
    border-radius: 30px;
    padding: 4px 12px 4px 12px;
    right: 15px;
}

.score_profiles .score_profile .photo{
    width: 118px;
    height: 118px;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score_profiles .score_profile .photo img{
    max-width: 120%;
}

.score_profiles .score_profile b{
    color: #303D48;
    font-weight: 700;
    font-size: 14px;
}

.score_profiles .score_profile .info{
    width: 378px;
    margin-left: 30px;
}


.score_profiles .score_profile .info .name{
    color: #EF3D48;
    font-weight: 700;
    font-size: 20px;
}

.score_profiles .score_profile .info .location{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 7px;
}
.score_profiles .score_profile .info .location span{
    color: #303D48;
    font-size: 16px;
    line-height: 24px;
    max-width: 250px;
}

.score_profiles .score_profile .info .location svg{
    transition: all .3s ease;
    opacity: 0;
    width: 36px;
    height: 36px;
    border-radius: 100%;
}

.score_profiles .score_profile:hover .info .location svg{
    opacity: 1;
}

.score_profiles .score_profile .info .meta{
    margin: 0;
    font-size: 14px;
    display: flex;
}


.profile_list_map{
    display: flex;
    justify-content: space-between;
}

.profile_list_map .score_map{
    width: 558px;
    background: #212121;
    height: 630px;
    border-radius: 6px;
}

.candidate_main_info{
    width: 100%;
    height: 457px;
    background: #F5F8FD;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.candidate_main_info .abs_items .top_abs{
    position: absolute;
    top:0;
    left: 0;
}
.candidate_main_info .abs_items .bottom_abs{
    position: absolute;
    bottom:0;
    right: 0;
}

.candidate_main_info .info{
    z-index: 1;
    position: relative;
    padding: 80px;
}

.candidate_main_info .info .meta{
    display: flex;
    color: #303D48;
    font-weight: 400;
}

.candidate_main_info .info .meta .date{
    margin-left: 20px;
}

.candidate_main_info .info h1{
    font-size: 56px;
    color: #303D48;
    margin-top: 10px;
}

.candidate_main_info .info .location{
    font-weight: 400;
    color: #303D48;
    font-size: 20px;
    max-width: 490px;
    margin: 25px 0 30px 0;
}

.candidate_main_info .info .description{
    color: #303D48;
    font-weight: 300;
    font-size: 18px;
    margin-top: 10px;
}

.candidate_main_info .info .btn-animate{
    font-size: 20px;
    margin: 0;
    padding: 18px 84px;
}

.candidate_main_info .abs_items .abs_photo{
    width: 400px;
    height: 400px;
    border-radius: 100%;
    overflow: hidden;
    position: absolute;
    right: 50px;
    bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.candidate_main_info .abs_items .abs_photo img{
    width: 120%;
}

.candidate_main_info_fullpage .container_content h2.s_title{
    text-align: center;
    font-weight: 900;
    font-size: 36px;
    color: #303D48;
}

.candidate_main_info_fullpage .container_content .article{
    font-size: 18px;
    line-height: 32px;
}

.candidate_main_info_fullpage .form_publish_pre_result{
    width: 753px;
    height: 425px;
    margin: 30px auto 0 auto;
}

.candidate_main_info_fullpage .contact_block{
    height: 270px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    background: #F5F8FD;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
}

.candidate_main_info_fullpage .contact_block .abs_items svg{
    position: absolute;
    right: 0;
    top:0;
}

.candidate_main_info_fullpage .contact_block h2.s_title{
    font-size: 36px;
    font-weight: 900;
    color: #303D48;
}
.candidate_main_info_fullpage .contact_block a{
    text-decoration: none;
    color: #30B5E7;
    font-weight: 700;
    font-size: 22px;
    margin-top: 10px;
    display: block;
}

.candidate_main_info_fullpage .faq{
    margin:120px 0;
}

body, html{
    scroll-behavior: smooth;
}


.header_candidate.header .nav li a{
color: #303D48;
font-weight: 400;
margin-left: 30px;
}

.candidate_footer{
    height: 100px;
    background: #303D48;
    color: #fff;
}

.candidate_footer_flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.candidate_footer_flex ul{
    display: flex;
    list-style: none;
    margin: 0;
}

.candidate_footer_flex ul li{
    margin-right: 30px;
}

.candidate_footer_flex ul li a{
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

.candidate_footer_flex p{
    margin: 0;
    font-weight: 400;
    font-size: 12px;
}

.in_map.score_profile{
    width: 230px;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: #303D48;
    display: block;
}

.in_map.score_profile img{
    width: 100%;
}

.in_map.score_profile .name{
    font-weight: 700;
    color: #ef3d48;
    font-size: 20px;
    margin: 10px 0;
}

.in_map.score_profile .location{
    font-size: 15px;
}

.in_map.score_profile .meta{
    font-size: 14px;
    margin-top: 10px;
}

.priorities-owl .owl-item{
    width: 390px;
    background: #30B5E7;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 6px;
    min-height: 354px;
}

.priorities-owl .owl-item svg{
    display: block;
}

.priorities-owl .owl-item p{
    line-height: 34px;
    font-size: 22px;
    color: #fff;
    padding-top: 20px;
}
.priorities{
    width: 100%;
    background: #1681B6;
    padding-bottom: 70px;
}
.priorities .section_title_group{
    display: flex;
    justify-content: space-between;
    padding-top: 70px;
    align-items: center;
    margin-bottom: 50px;
}

.priorities .section_title_group svg{
    cursor: pointer;
}

.priorities .section_title_group h2{
    color: #fff;
    font-weight: 900;
    font-size: 36px;
}

.priorities .section_title_group .owl-custom-nav{
    display: flex;
    justify-content: space-between;
    width: 125px;
    align-items: center;
}

.rc_left_image_container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.rc_left_image_container img,
.rc_center_image_container img{
    max-width: 100%;
    border-radius: 6px;
}

.rc_center_image_container img{
    margin-bottom: 30px;
}

.rc_left_image_container .rc_left_image{
    width: 38%;
}

.rc_left_image_container .right-radio-group{
    width: 55%;
}

.rc_left_image_container .radio-container label,
.rc_left_image_container .checkbox-container label{
    margin-bottom: 33px;
    width: 100%;
}

.step.stop .custom_radio_group .radio-container label{
    outline: 1px solid red;
}


.publish_step .rc_image_true_false_container .custom-checkbox-radio-image{
    width: calc(33% - 10px);
}

.publish_step .rc_image_true_false_container{
    margin: 0 auto;
}

.electeds_type .score_profiles .score_profile:hover{
    border-color: #30b5e7;
}

.electeds_type .score_profiles .score_profile .info .name{
    color: #30b5e7;
}

.electeds_type .score_profiles .score_profile .score_num {
    background: #30b5e726;
}

.scoring_form_subtitle{
max-width: 600px;
text-align: center;
margin: 10px auto 0 auto;
}

.after_score_form{
    color: #000;
    font-weight: 400;
    font-size: 14px;
    display: block;
    line-height: 160%;
    margin-top: 10px;
}

.form_publish_pre label{
    font-weight: 600;
    color: #303D48;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
    line-height: 36px;
}
.pac-container {
    margin-top: -30px;
}


.form_publish_pre .form_group_2,
.form_publish_pre .form_group_3{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.form_publish_pre .form_group_2 label{
    width: calc(50% - 10px);
}

.form_publish_pre .form_group_3 label{
    width: calc(33% - 10px);
}

.form_publish_pre_result.thank_you_result .flex-score_result_count{
    width: 120px;
    text-align: center;
}

.flex-score_result_count.hero{
    width: auto;
    text-align: center;
}

.form_publish_pre_result.thank_you_result .flex-score_result p,
.form_publish_pre_result.thank_you_result .flex-score_result b{
    font-size: 90px;
}

.form_publish_pre_result.thank_you_result .flex-score_result{
    margin-top: 25px;
}

.form_publish_pre_result.thank_you_result .abs_bottom {
    bottom: 0px;
    right: 0px;
}

.js_score_result{
    width: 753px;
    height: 425px;
    margin: 30px auto 0 auto;
}

.other_type .score_profiles .score_profile .info{
    margin-left: 0;
}

.other_type .score_profiles .score_profile:hover {
    border: 2px solid #f3ba40;
}

.other_type .score_profiles .score_profile .info .name{
    color: #f3ba40;
}

.other_type .score_profiles .score_profile .info .location{
    display: block;
}

@media(max-width: 767px){
    .flex-score_result_container{
        width: 100%;
    }
    .form_publish_pre_result .top_svg{
        top: -70px;
        left: -70px;
    }

    .flex-score_result_container > svg{
        max-width: 100%;
    }

    .form_publish_pre_result .abs_foot{
        display: none;
    }
    .form_publish_pre .form_group_2 label,
    .form_publish_pre .form_group_3 label{
        width: 100%;
        margin-bottom: 0;
    }
    .scoring-quiz{
        margin: 30px auto 0 auto;
    }
    .rc_left_image_container .rc_left_image,
    .rc_left_image_container .right-radio-group,
    .scoring-quiz_footer .scoring #score_result,
    .radio-container label, .checkbox-container label,
    .form_publish_pre_form.form_center
    {
        width: 100%;
    }
    .rc_left_image_container .right-radio-group {
        margin-top: 25px;
    }
    .scoring-quiz_footer .scoring {
        flex-wrap: wrap;
    }
    .scoring-quiz_footer .scoring .score_buttons {
        margin-left: auto;
        margin-top: 15px;
        width: 100%;
    }
    .form_publish_pre {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .form_publish_pre_result {
        width: 100%;
        margin-bottom: 30px;
    }
    .page-content h1 {
        font-size: 26px;
        line-height: 160%;
    }
    .profile_types_nav li a{
        font-size: 14px;
    }
    .profile_types_filter {
        margin-top: 50px;
        flex-wrap: wrap;
    }
    .profile_types_filter .score_profile_filter{
        display: block;
        width: 100%;
        margin-top: 30px;
    }

    .profile_types_filter .select2-container{
        margin: 0;
        margin-bottom: 10px;
        width: 100% !important;
    }

    .page-content .btn-animate.shop{
        background-color: #30b5e7 !important;
        color: #fff !important;
    }

    .page-content .profile_types_filter .btn-animate.shop{
        width: 100%;
    }

    .profile_list_map{
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .score_profiles, .profile_list_map{
        width: 100%;
        display: block;
    }

    .score_profiles .score_profile{
        display: block;
    }

    .score_profiles .score_profile .photo{
        width: 100%;
        height: 250px;
        margin-top: 50px;
    }
    .score_profiles .score_profile .info {
        width: 100%;
        margin-left: 0;
        margin-top: 25px;
    }

    .profile_list_map{
        height: auto;
    }

    .profile_list_map .score_map{
        display: block;
        width: 100%;
        margin-top: 30px;
    }
    .candidate_main_info_fullpage .form_publish_pre_result{
        width: 100%;
    }
}


/* TMP */
.flex-score_result{
    margin-top: 120px;
}
.flex-score_result{
    display: block;
}
.flex-score_result span {
    font-size: 16px;
}
.flex-score_result p, .flex-score_result b{
    font-size: 56px;
    line-height: 1;
}


.form_publish_pre_result .flex-score_result{
    margin-top: 65px;
    width: 100%;
}

.form_publish_pre_result > p{
    max-width: 357px;
    font-size: 20px;
    margin-top: 20px;
}

.form_publish_pre_form.form_center{
    width: calc(100% - 500px);
}

.form_publish_pre_result .abs_bottom {
    bottom: -70px;
    right: -90px;
}

@media(max-width: 1200px){
    .candidate_main_info .info {
        z-index: 3;
        position: relative;
        padding: 130px 15px 15px 15px;
    }
    .candidate_main_info .info h1 {
        font-size: 36px;
        margin-top: 40px;
    }
    .candidate_main_info .info .location{
        font-size: 16px;
    }
    .candidate_main_info .info .btn-animate {
        font-size: 16px;
        padding: 14px 40px;
    }
    .candidate_main_info .abs_items .bottom_abs{
        bottom: -100px;
    }
}

@media(max-width: 900px){
    .candidate_main_info .info .meta{
        display: block;
    }
    .candidate_main_info .info .meta .date{
        margin-left: 0;
    }
    .candidate_main_info .info{
        text-align: center;
        padding: 285px 15px 30px 15px;
    }
    .candidate_main_info .info .location {
        max-width: 100%;
        text-align: center;
    }

    .candidate_main_info .info .flex-score_result{
        justify-content: center;
    }

    .candidate_main_info .abs_items .abs_photo {
        width: 200px;
        height: 200px;
        right: 50%;
        bottom: auto;
        top: 60px;
        margin-right: -100px;
    }
    .candidate_main_info{
        height: auto;
    }
    ain_info .info h1 {
        font-size: 32px;
        margin-top: 20px;
    }
    .candidate_main_info .abs_items .bottom_abs{
        display: none;
    }
    .candidate_main_info {
        background: #30b5e726;
        margin-top: 60px;
    }
}

@media(max-width: 1000px){
    .form_publish_pre_form.form_center {
        width: calc(100% - 400px);
    }
    .form_publish_pre_result .abs_bottom{
        bottom: -130px;
        display: none;
    }
    .form_publish_pre_result.thank_you_result .abs_bottom{
        bottom: 0;
        display: block;
    }
}

@media(max-width: 767px){
    .flex-score_result{
        margin-top: 30px;
        width: 150px;
    }
    .flex-score_result span {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .flex-score_result p, .flex-score_result b{
        font-size: 56px;
    }
    .form_publish_pre_result .abs_bottom{
        bottom: -100px;
    }
    .publish_step .rc_image_true_false_container{
        flex-wrap: wrap;
    }
    .publish_step .rc_image_true_false_container .custom-checkbox-radio-image{
        width: 100%;
    }
    .form_publish_pre_result {
        min-height: 340px;
        width: 100%;
        height: auto;
    }
    .form_publish_pre_form.form_center{
        width: 100%;
    }
    .priorities-owl .owl-item{
        min-height: auto;
    }
    .form_publish_pre_result.thank_you_result .name{
        margin-top: 20px;
        line-height: 36px;
    }
    .form_publish_pre_result.thank_you_result .abs_logo{
        position: static;
    }
    .form_publish_pre_result.thank_you_result{
        height: auto;
    }

    .form_publish_pre_result.thank_you_result .abs_bottom{
        bottom: -180px;
        display: block;
        right: -180px;
    }

}

@media(max-width: 480px){
    .form_publish_pre_result {
        min-height: 400px;
    }
}

#share_result{
    display: none;
}
#share_result.form_publish_pre_result{
    width: 767px !important;
    min-height: auto !important;
    height: 430px !important;
    padding: 0 !important;
}
#share_result.form_publish_pre_result.thank_you_result .abs_logo {
    position: absolute !important;
}
#share_result.form_publish_pre_result.thank_you_result .name {
    margin: 70px 0 10px 0 !important;
    line-height: 36px !important;
    padding-left: 55px !important;
}

#share_result.form_publish_pre_result .description{
    padding-left: 55px !important;
}

#share_result.form_publish_pre_result.thank_you_result .flex-score_result_count{
    margin-left: 55px !important;
}
#share_result.form_publish_pre_result.thank_you_result .abs_bottom{
    bottom: 0 !important;
    right: 0 !important;
}

#share_result.form_publish_pre_result.thank_you_result .flex-score_result_count b,
#share_result.form_publish_pre_result .flex-score_result span{
    display: block !important;
}

#share_result.form_publish_pre_result.thank_you_result .flex-score_result_count b{
font-size: 68px !important;
}

#share_result.form_publish_pre_result.thank_you_result .flex-score_result_count{
    width: 133px !important;
}
/* /TMP */

.share_buttons{
    display: flex;
    background: #F5F8FD;
    border-radius: 6px;
    margin-left: 20px;
    display: none;
}

.share_buttons a{
    padding: 15px;
}

/* Main page */
.flex_quiz{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 384px;
}

.flex_quiz .left{
    width: 754px;
    background: #EF3D48;
    border-radius: 6px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
}


.flex_quiz .left .content p,
.flex_quiz .right .text{
    font-weight: 900;
    color: #fff;
    font-size: 36px;
    max-width: 380px;
    line-height: 144%;
}

.flex_quiz .left .content span,
.flex_quiz .right span{
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    margin: 16px 0;
    display: block;
}

.flex_quiz .right{
    text-decoration: none;
}

.flex_quiz .left .content a{
    width: 100%;
    max-width: 295px;
    display: block;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    color: #EF3D48;
    background: #fff;
    border-radius: 6px;
    padding: 18px 0;
    margin-top: 20px;
}

.flex_quiz .right{
    width: 362px;
    background: #30B5E7;
    border-radius: 6px;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    justify-content: space-between;
}

.flex_quiz .right .arrow{
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

@media(max-width: 1280px){
    .flex_quiz .left {
        width: 670px;
    }
    .flex_quiz .right {
        width: calc(100% - 700px);
    }
}

@media(max-width: 1100px) {
    .flex_quiz .left {
        width: 580px;
    }
    .flex_quiz .right {
        width: calc(100% - 610px);
    }
    .flex_quiz .right .image{
        margin:0 auto;
        max-width: 100%;
    }

    .quiz-bg > img{
        max-width: 100% !important;
    }
}
@media(max-width: 1100px) {
.flex_quiz .left, .flex_quiz .right {
    width: 100%;
    padding: 30px;
    text-align: center;
}

.flex_quiz{
    height: auto;
}

.flex_quiz .right{
    margin-top: 30px;
}

    .flex_quiz .left .content p, .flex_quiz .right .text {
        margin: 0 auto;
    }

    .flex_quiz .right .arrow{
        color: #fff;
        font-weight: 700;
        font-size: 18px;
        width: 200px;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media(max-width: 767px){
    .flex_quiz .left{
        display: block;
    }
    .flex_quiz .left .content a {
        font-size: 18px;
        max-width: 248px;
        padding: 15px 0;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
    }
    #share_result.form_publish_pre_result{
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch;
    }
}