@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
a, a:focus, a:hover, input, button{
    outline: none;
}
img, svg {
    flex-shrink: 0;
}
.fix-contain{
    object-fit: contain;
}
body {
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: #001A6B;
    background: #DEEEFF;
}
header:before{
    content: "";
    position: absolute;
    background-image: url(../images/bg-header.png);
    background-size: auto;
    background-repeat: no-repeat; 
    width: 100%;
    height: 800px;
    top: 0;
}
header:after{
    content: "";
    position: absolute;
    background-image: url(../images/bg-kremlin.png);
    background-size: inherit;
    background-repeat: no-repeat;
    background-position: right;
    width: 100%;
    height: 1000px;
    top: 0;
    right: 0;
    z-index: -1;
}

a{
    color: #472DFA;
}

.btn{
    position: relative;
    color: #fff;
    border-radius: 10px;    
    font-weight: 600;
    text-transform: uppercase;
    overflow: hidden;
    border: none;
    /*transition: 0.5s;*/
}
.btn:hover{
    color: #fff;    
}
.btn::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0;
    /*transition: opacity 0.5s ease;*/
    z-index: 1;
}
.btn:hover::before {
  opacity: 1;
}
.btn span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: #fff;
    z-index: 2;
}
.btn svg{
    z-index: 1;
}
/**************************/
.btn-modal{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    background: linear-gradient(270deg, #2c3ee0 0%, #4e38f9 40.38%, #1f7afc 92.79%);
    border-radius: 20px;
    min-width: 220px;
    padding: 15px 0;
	text-transform: capitalize;
}    
.btn-modal::before{
    background: linear-gradient(270deg, #3025C4 100%, #3025C4 100%, #3025C4 100%);
}
.btn-modal-white, .btn-modal-white:hover{
    background: #fff;
    border: 1px solid #472DFA;
}
.btn-modal.btn-modal-white:hover::before{
    background: #fff;
}
.btn-modal-white, .btn-modal-white span{
    color: #472DFA;
}
/**************************/
.btn-quest {  
  background: linear-gradient(270deg, #2c3ee0 0%, #4e38f9 40.38%, #1f7afc 92.79%);  
  font-weight: 900;  
  padding: 22px 46px;
  border-radius: 100px;
    border: none;
}
.btn-quest::before { 
  background: linear-gradient(270deg, #3025C4 100%, #3025C4 100%, #3025C4 100%);  
}
.btn-quest span img{
    margin-right: 20px;
}
.btn-circle { 
  font-weight: 900;  
  padding: 10px 20px;
  border-radius: 100px;
  text-transform: none; 
}
.btn-circle span img{
    margin-right: 10px;
}
.btn-circle-small { 
  font-size: 14px;
  text-transform: none;
  padding: 10px 20px;
  line-height: 1;
}

.btn-default{
    background: #472DFA;
    font-size: 18px;
    padding: 7px 20px;
    text-transform: none;
}
.btn-default:focus-visible{
    background: #472DFA;
    color: #fff;
}
.btn-default:hover{
    background: #3025C4;    
}
.btn-default.btn-no-bg{
    border: 1px solid #472DFA;
    background: transparent;
    color: #472DFA;
}
.btn-default.btn-no-bg:hover{
    background: #472DFA;
    color: #fff;
}
.btn-small{
    background: #6077FA;
    padding: 5px 15px;
    font-size: 18px;
    text-transform: none;
}
.btn-small:hover{
    background: #3025C4;    
}
.btn-small svg{
    margin-right: 5px;
}
.btn-quiz{
    padding: 15px 60px;
    text-transform: none;
    font-size: 18px;
    border-radius: 20px;
}
.btn-quiz:hover{
    border: 1px solid #06089A;
}
.btn-prev svg, .btn-seek svg, .btn-home svg{
    margin-right: 20px;
}
.btn-prev, .btn-seek, .btn-home, .btn-seek-prev{
    display: none;
    background: #fff;
    color: #06089A;
    border: 1px solid #fff;
}
.btn-prev:hover, .btn-seek:hover, .btn-home:hover, .btn-seek-prev:hover{
    background: #fff;
    color: #06089A;
    border: 1px solid #03217C;
}
.btn-next svg, .btn-next-seek svg, .btn-start svg, .btn-begin svg{
    margin-left: 20px;
    flex-shrink: 0;
}
.btn-return svg{
    margin-right: 20px;
}
.section-intro .intro-text:before{
    content: "";
    position: absolute;
    background-image: url(../images/fly.png);
    width: 245px;
    height: 150px;
    bottom: 0;
    left: 255px;
}
.no-style{
    list-style: none;
    margin: 0;
    padding: 0;
}
.span-block span{
    display: block;
}

header{
    margin-bottom: 38px;
}
.navbar{    
}
.navbar.sticky {
  position: fixed;
  transition: all .5s ease;
  background-color: RGB(255,255,255,0.9);
  box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.4);
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 99;
}
.navbar-brand {
    position: relative;
    display: flex;
    white-space: inherit;
}
.agency-item{
    position: relative;
    cursor: pointer;
    margin-right: 10px;
}
.navbar-brand .agency-item:last-child{
    margin-right: 0;
}

.agency-item .agency-info{
    display: none;
    text-align: center;
    position: absolute;
    width: 240px;
    left: 50%;
    transform: translateX(-50%);
    backdrop-filter: blur(10px);
    background: rgba(0, 26, 107, 0.85);
    color: #fff;
    font-size: 16px;
    border-radius: 10px;
    padding: 10px 15px;
    margin-top: 20px;
    z-index: 9;
}
.footer-logo .agency-item .agency-info{    
    bottom: 70px;
}
.footer-logo .agency-item .agency-info:before{
    top: auto;
    bottom: -10px;    
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #18317b;
    border-bottom: 0;
}
.agency-item .agency-info a{
    display: block; 
    color: #001A6B;
    background: #fff;
    border-radius: 10px;
    padding: 5px 15px;
    text-decoration: none;
}
.agency-item .agency-info:before{
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #18317b;
}
.navbar-toggler{
    position: relative;
}
.navbar-nav{

}
.navbar-nav > li{
    position: relative;
}
.nav-item{    
    display: flex;
    align-items: center;
    margin-right: 20px;
}
.nav-item:last-child{        
    margin-right: 0;
}
.nav-link{
    font-size: 18px;
    color: #001A6B!important;
    padding: 3px;
}
.nav-item .nav-link:hover:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 5px;
    border-radius: 1px;
    background: linear-gradient(to right, #1F7AFC, #4E38F9, #2C3EE0);
}
.card-default{
    position: relative;
    background: #F8F8FE;
    border-radius: 20px;
    padding: 27px 40px;
}
.card-default p{
    margin-bottom: 0;
}
.card-gray{
    font-size: 16px;
    background: #E7E4FB;
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 30px 20px;    
}
.main-title{
    font-family: 'Montserrat', sans-serif;
    font-size: 75px;
    text-transform: uppercase;
}
.main-title span img{
    margin-right: 25px;
}

.main-desc{
    width: 300px;
    margin: 40px 0 58px 0;
}
.sub-title{
    display: flex;
    align-items: end;
    color: #06089A;
    margin-bottom: 48px;
}
.sub-title img{
    flex-shrink: 0;
}
.sub-title h2{
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 0;
}
.sub-title p{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
}

.lblue {
    color: #472DFA;
}
.white{
    color: white;
}
.no-decoration{
    text-decoration: none;
}
.relative{
    position: relative;
}
.mt-15{
    margin-top: 15px;
}
.mt-20{
    margin-top: 20px;
}
.mt-30{
    margin-top: 30px;
}
.mt-40{
    margin-top: 40px;
}
.mt-55{
    margin-top: 55px;
}
.mr-20{
    margin-right: 20px;
}
.ml-15{
    margin-left: 15px;
}
.mb-15{
    margin-bottom: 15px!important;
}
.mb-20{
    margin-bottom: 20px!important;
}
.mb-30{
    margin-bottom: 30px;
}
.mb-40{
    margin-bottom: 40px;
}
.h-auto{
    height: auto;
}
.gap-10{
    gap: 10px;
}
.gap-20{
    gap: 20px;
}
.gap-30{
    gap: 30px;
}
.font-20{
    font-size: 20px;
}
.zindex-1{
    z-index: 1;
}
.shrink-0{
    flex-shrink: 0;
}
.main-content, .main-content *{
    font-family: 'Inter';
    font-size: 18px;
    line-height: 1.3;
}
.main-content p{
    margin-bottom: 10px!important;
}

.modal{
    display: none;
}
.modal-title-quiz{
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 24px;
    font-weight: 600;
    margin-top: -70px;
    margin-bottom: 40px;
    max-width: calc(100% - 50px);
}
.modal-title-quiz img{
    width: 26px;
}
body.fancybox-active{
    overflow: hidden !important;
}
.fancybox-bg {
    background: rgb(38%, 47%, 98%, 0.6);; 
}
.modal.fancybox-content{
    width: 800px;
    height: 750px;
    border-radius: 20px;
    padding: 90px 30px 70px 30px;
    background: linear-gradient(180deg, #deeeff 0%, #b4cefc 100%);
    overflow: hidden;
}
.modal.modal-lg.fancybox-content{
    width: 1300px;
    height: 780px;
}
.fancybox-content > .row, .fancybox-content > .row > *{
    /*height: 100%;*/
}

.modal .fancybox-button{
    width: 40px;
    height: 40px;
    top: 20px;
    right: 30px;
    border-radius: 50%;
    background: #fff;
}
@media (max-width: 991px){
    .modal.fancybox-content{
        width: 100%!important;
        height: auto;
        overflow-y: auto;
    }
}

/*****************************/
.quest-list{
    display: flex;
    flex-direction: column;
}
.quest-result{
    display: none;
}
.quest-list label{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 5px;
    cursor: pointer;
}
.quest-list label > div{
    position: relative;    
    display: flex;
    align-items: center;
    width: 100%;
    padding-right: 30px;
}
.quest-list label:last-child{
    margin-bottom: 0;
}
.quest-list label.active{
    background: #fff;
    border-radius: 20px;
}
.quest-list label span{
    margin-left: 10px;
}
.quest-res{
    position: relative;
    display: none;
    margin-top: 40px;
    border-radius: 20px;
    padding: 20px 80px 20px 20px;
}
.quest-res img{
    position: absolute;
    display: none;
    height: 115px;
    right: 0;
    bottom: -20px;
}
.quest-item.success .quest-res, .quest-item.error .quest-res{
    display:block;
}
.quest-item.success .quest-res .qs{
    display: block;
}
.quest-item.error .quest-res .qe{
    display: block;
}
.quest-item.success .quest-res{
    background: #E1F7E2;
    border: 2px solid #2F8A32;
}
.quest-item.error .quest-res{
    background: #FF8A97;
    border: 2px solid #fff;
}
.quest-item.success label, .quest-item.error label{
    pointer-events: none;
}

.quest-res-item{
    display: none;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}
input:checked + .quest-res-item{
    position: absolute;
    display: block;
    right: 0px;
}
.quest-item.success .quest-res-item{
    background-image: url('../images/qs.svg');
    
}
.quest-item.error .quest-res-item{
    background-image: url('../images/qe.svg');    
}

.radio-input {
    flex-shrink: 0;
    appearance: none;
    width: 31px;
    height: 31px;
    border: 1px solid #B6B6FF;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.radio-input:checked {
    background-color: #fff;
    border-color: #B6B6FF;
    background-image: url('../images/radio.png');
    background-position: center;
    background-repeat: no-repeat;
}
.radio-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.radio-input:disabled + span {
    opacity: 0.5;
    cursor: not-allowed;
}
/*****************************/
.section-main{
    position: relative;
    background-image: url('../images/bg-main.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 70px;
}
.whats-items{
    position: relative;    
}
.whats-items img.children{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%
}
.section-intro img.dog{
    position: absolute;
    bottom: -86px;
    right: 0;
    width: 440px;
    z-index: 2;
}
.whats-item{
    position:relative;
    border: 2px solid #fff;
    border-radius: 30px;
    padding: 25px 30px;
    height: 100%;
    overflow: hidden;
    z-index: 1;
} 
.whats-item > .row{
    height: 100%;
}
.whats-item > .row > div{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.whats-item > svg, .whats-item > img{
    position: absolute;
    right: 0;
    bottom: 0;
    max-height: 100%;
}
.whats-item i{    
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1.35px solid #472DFA;
    color: #472DFA;
    border-radius: 50%;
    font-style: normal;
    font-size: 16px;
    width: 27px;
    height: 27px;
    margin-right: 10px;
}
.whats-item span{
    font-size: 18px;
    font-weight: 700;
}
.whats-item span + div{
    margin: 15px 0 20px 0;
    font-size: 16px;    
}
.whats-item.whats-item-1{    
    background:#E7E4FB; 
}
.whats-item.whats-item-2{
    background:#FDE7C4; 
}
.whats-item.whats-item-2 i{ 
    border-color:#FE7B03;
    color: #FE7B03;
}
.whats-item.whats-item-2 span + div{    
    color: #471E07;
}
.whats-item.whats-item-2 button{
    background: #FE7B03;
}
.whats-item.whats-item-2 button:hover{
    background: #CE6200;
}
.whats-item.whats-item-3{    
    background:#E1F7E2; 
}
.whats-item.whats-item-3 i{ 
    border-color:#3DB841;
    color: #3DB841;
}
.whats-item.whats-item-3 span + div{    
    color: #063F0C;
}
.whats-item.whats-item-3 button{
    background: #3DB841;
}
.whats-item.whats-item-3 button:hover{
    background: #308F33;
}

.election{
    position: relative;
    padding-top: 100px;
    padding-bottom: 120px;
    margin-bottom: -120px;
}
.election ul{
    font-size: 16px; 
}
.election ul li{
    position: relative;
    display: flex;    
    border-radius: 0 40px 40px 0;
    margin-bottom: 20px;
}
.election ul li:last-child{ 
    margin-bottom: 0px;
}
.election ul li img{
    background: #fff;
    border-radius: 50%;
    z-index: 1;
}
.election ul li span{
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px 40px 20px 90px;
    margin: 2px 0px 2px -70px;
    border-radius: 0 40px 40px 0;
}
.election ul li span p{
    margin-bottom: 0;
}

.ui-slider .ui-slider-handle:focus, .noUi-handle {
  outline: none;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -12px;
    margin-left: -22px;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: rgb(255, 255, 255, 1);
    box-shadow: 0px 0px 7px 0px rgba(196, 195, 199, 1);
}
.ui-state-default:before, .ui-widget-content .ui-state-default:before, .ui-widget-header .ui-state-default:before, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active{
    content: "";
    display: block;   
    width: 27px;
    height: 27px;
    background: red;
    border-radius: 50%;
}
.ui-slider-handle .slider-tooltip {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    padding: 9px 15px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}
.ui-slider-handle .slider-tooltip::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px 4px 0;
    border-style: solid;    
}
.ages{
    padding-top: 235px;    
}
.age-block{
    position: relative;
    background-image: url('../images/bg-age.png');
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    padding: 30px;
}
.age-top{
    display:flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
}
.age-top span{
    font-weight: 400;
}
.ages .age{
    position: relative;
    margin: 100px 10px 90px 10px; 
}
.ages .age #range{
    height: 11px;
    border: 0;
}
.age-scale{
    position: absolute;
    top: 0;
    left: -8px;
    right: -8px;
    height: 11px;
    display: flex;
    justify-content: space-between;
    background: linear-gradient(90deg, #4b3df9 0%, #5b90fe 16.36%, #8e2ce0 33.05%, #83dc90 49.93%, #e9e170 66.8%, #ffd34d 83.12%, #f95338 100%);
    z-index: 1;
}
.age-tick{
    position: relative;
    width: 17px;
    height: 17px;
    margin-top: -3px;  
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-tick:before{
    content: "";
    display: block;
    width: 27px;
    height: 27px;    
    border-radius: 50%;
    z-index: 1;
    position: absolute;
    z-index: -1;
}
.age-tick span{
    position: absolute;
    top: 35px;
    width: 60px;
    font-size: 16px;
    text-align: center;
}
.ui-slider-handle:after{
    content: "";
    position: absolute;
    display: block;
    width: 17px;
    height: 17px;    
    border-radius: 50%;    
}

.age-tick.tick-0, .ui-slider-handle[data-slide="0"]:after, .ui-slider-handle[data-slide="0"] .slider-tooltip{
    background: #472DFA;
}
.age-tick.tick-0:before, .ui-slider-handle[data-slide="0"]:before{
    background: #A9A3FF;
}
.age-tick.tick-1, .ui-slider-handle[data-slide="1"]:after, .ui-slider-handle[data-slide="1"] .slider-tooltip{
    background: #5B8EFE;    
}
.age-tick.tick-1:before, .ui-slider-handle[data-slide="1"]:before{
    background: #98B8FF;
}
.age-tick.tick-2, .ui-slider-handle[data-slide="2"]:after, .ui-slider-handle[data-slide="2"] .slider-tooltip{
    background: #8E2CE0;
}
.age-tick.tick-2:before, .ui-slider-handle[data-slide="2"]:before{
    background: #BBA6FF;
}
.age-tick.tick-3, .ui-slider-handle[data-slide="3"]:after, .ui-slider-handle[data-slide="3"] .slider-tooltip{
    background: #5BBD54;
}
.age-tick.tick-3:before, .ui-slider-handle[data-slide="3"]:before{
    background: #CEEACA;
}
.age-tick.tick-4, .ui-slider-handle[data-slide="4"]:after, .ui-slider-handle[data-slide="4"] .slider-tooltip{
    background: #ECE044;
}
.age-tick.tick-4:before, .ui-slider-handle[data-slide="4"]:before{
    background: #F9F6B0;
}
.age-tick.tick-5, .ui-slider-handle[data-slide="5"]:after, .ui-slider-handle[data-slide="5"] .slider-tooltip{
    background: #FFC54B;
}
.age-tick.tick-5:before, .ui-slider-handle[data-slide="5"]:before{
    background: #F9F6B0;
}
.age-tick.tick-6, .ui-slider-handle[data-slide="6"]:after, .ui-slider-handle[data-slide="6"] .slider-tooltip{
    background: #F95739;
}
.age-tick.tick-6:before, .ui-slider-handle[data-slide="6"]:before{
    background: #FF907C;
}


.ui-slider-handle[data-slide="0"] .slider-tooltip::after{
    border-color: #472DFA transparent;
}
.ui-slider-handle[data-slide="1"] .slider-tooltip::after{
    border-color: #5B8EFE transparent;
}
.ui-slider-handle[data-slide="2"] .slider-tooltip::after{
    border-color: #8E2CE0 transparent;
}
.ui-slider-handle[data-slide="3"] .slider-tooltip::after{
    border-color: #5BBD54 transparent;
}
.ui-slider-handle[data-slide="4"] .slider-tooltip::after{
    border-color:  #ECE044 transparent;
}
.ui-slider-handle[data-slide="5"] .slider-tooltip::after{
    border-color: #FFC54B transparent;
}
.ui-slider-handle[data-slide="6"] .slider-tooltip::after{
    border-color: #F95739 transparent;
}

.age-items{    
}
.age-items .age-item{
    display:none;
    padding: 0 18px 0 35px;
    border-radius: 20px;
}
.age-items .age-item.active{
    display:flex;
}
.age-items .age-item img{
    height: 220px;
    max-width: 100%;
    object-fit: cover;
}
.age-items .age-item .age-item-info{
    position: relative;
    padding: 30px 0 30px 18px;
}
.age-info{
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 15px;
    padding: 15px 20px;
}
.age-info > svg{
    margin-right: 10px;
    flex-shrink: 0;
}
.age-item-info{
    font-size: 14px;
    flex-shrink: 0;
}
.age-item-info .age-status{
    font-size: 18px;
    font-weight: 600;
}
.age-item-info .age-status span{
    font-size: 25px;    
    margin-right: 20px;
}
.age-pagination{
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.age-pagination-item.active{
    background: #472DFA;
}
.age-pagination-item{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #DEEEFF;
}
.age-items .age-item[data-age="0"] .age-status span{
    background: linear-gradient(180deg, #6560fa 0%, #562ef1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.age-items .age-item[data-age="1"] .age-status span{
    color:#6077FA;
}
.age-items .age-item[data-age="2"] .age-status span{
    background: linear-gradient(180deg, #29c0cf 0%, #0d9cb3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.age-items .age-item[data-age="3"] .age-status span{
    background: linear-gradient(180deg, #5bbd54 0%, #2f8a32 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.age-items .age-item[data-age="4"] .age-status span{
    background: linear-gradient(180deg, #fec608 0%, #f79807 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.age-items .age-item[data-age="5"] .age-status span{
    background: linear-gradient(180deg, #fe8f21 0%, #fe5c06 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.age-items .age-item[data-age="6"] .age-status span{
    background: linear-gradient(180deg, #fc82a6 0%, #ec4979 100%);
    background-clip: text;
    -webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.age-items .age-item[data-age="0"]{
    background: #E7E4FB;
}
.age-items .age-item[data-age="1"]{
    background: #DEEEFF;
}
.age-items .age-item[data-age="2"]{
    background: #EBF8F9;
}
.age-items .age-item[data-age="3"]{
    background: #E1F7E2;
}
.age-items .age-item[data-age="4"]{
    background: #FFF7C0;
}
.age-items .age-item[data-age="5"]{
    background: #FDE7C4;
}
.age-items .age-item[data-age="6"]{
    background: #FDEFF2;
}

.quest{    
}
.quest-top span{
    font-size: 18px;
    font-weight: 600;
    margin-left: 10px;
}
.quest-top p{
    margin: 10px 0 20px 0;
}

.answers .answer{
    position: relative;
    display: flex;
    flex-direction: column;    
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
    z-index: 1;
}
.answers .answer:last-child{    
    margin-bottom: 0;
}
.answers .answer-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}
.answer .answer-left{
    display: flex;
    align-items: center;
}
.answer .answer-num, .answer i{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 18px;
    font-style: normal;
    color: #fff;
}
.answer i{
    display: flex;
    align-items: center;
}
.answer .answer-header i:before{
    font-family: 'FontAwesome';
    font-size: 22px;
    font-weight: 600;
	content: "\f105";
    position: absolute;
    color: #fff;
    margin-left: 4px;
}
.answer.active .answer-header i:before{
    content: "\f107";
    margin-top: 1px;
    margin-left: 1px;
}
.answer .answer-title{
    display: flex;
    align-items: center;
}
.answer .answer-title img{
    margin: 0 20px 0 30px;
}
.answer .answer-title span{
    font-weight: 600;
}
.answer .answer-title p{
    margin-bottom: 0;
    font-size: 14px;
}
.answer .answer-section{
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.answer .answer-section:last-child{ 
    margin-bottom: 0;
}
.answer .section-title{
    font-size: 18px;
    font-weight: 600;
    color: #06089A;
    margin-bottom: 10px;
}
.answer .section-title img{
    height: 30px;
    margin-right: 15px;    
}
.answer .answer-body{
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;    
}
.answer.active .answer-body{
    max-height: 2500px;
    opacity: 1;
    padding: 20px 30px;
}
.answer-card{
    position: relative;
    display: flex;
    padding: 20px 15px;
    border-radius: 20px;    
    height: 100%;
}
.answer-card.card-column{
    flex-direction: column;
}
.answer-card img{
    height: 100px;
    object-fit: contain;
}
.answer-card.card-column img{
    height: 120px;
}
.answer-card-title{
    font-size: 14px;
    padding-left: 15px;
}
.answer-card.card-column .answer-card-title{
    margin-top: 15px;
    padding-left: 0;
}
.answer-card-title span{
    display: block;
    font-size: 16px;
    color: #06089A;
    margin-bottom: 5px;
}
.answer-card-title p{
    margin: 0;
    color: #000;
}
.answer-info{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-top: 20px;
}
.answer-info i{
    margin-right: 10px;
    background: linear-gradient(180deg, #5bbd54 0%, #2f8a32 100%);
}

.answer.answer-1 .answer-header, .answer.answer-1 .answer-card{
    background: #F8F8FE;    
}
.answer.answer-1 .answer-num, .answer.answer-1 .answer-header i{
    background: #472DFA;
}
.answer.answer-1 .answer-title span{
    color: #472DFA    
}
.answer.answer-1 .answer-body{
    background: #B6B6FF;
}
.answer.answer-1 .answer-section{
    background: #E7E4FB;
}
.answer.answer-1 .answer-section:nth-child(even){
    background: #D3DFFF;
}

.answer.answer-2 .answer-header, .answer.answer-2 .answer-card{
    background: #F3F9F3;    
}
.answer.answer-2 .answer-num, .answer.answer-2 .answer-header i{
    background: linear-gradient(180deg, #5bbd54 0%, #2f8a32 100%);
}
.answer.answer-2 .answer-title span{
    background: linear-gradient(180deg, #5bbd54 0%, #2f8a32 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.answer.answer-2 .answer-body{
    background: #E1F7E2;
}

.answer.answer-3 .answer-header, .answer.answer-3 .answer-card{
    background: #FEF5EB;    
}
.answer.answer-3 .answer-num, .answer.answer-3 .answer-header i{    
    background: linear-gradient(180deg, #fe8f21 0%, #fe5c06 100%);
}
.answer.answer-3 .answer-title span{
    background: linear-gradient(180deg, #fe8f21 0%, #fe5c06 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.answer.answer-3 .answer-body{
    background: #FDE7C4;
}

.answer.answer-4 .answer-header, .answer.answer-4 .answer-card{
    background: #EDF2FE;
}
.answer.answer-4 .answer-num, .answer.answer-4 .answer-header i{    
    background: linear-gradient(180deg, #4682fc 0%, #1b5cf9 100%);
}
.answer.answer-4 .answer-title span{
    background: linear-gradient(180deg, #4682fc 0%, #1b5cf9 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.answer.answer-4 .answer-body{
    background: #D3DFFF
}

.answer.answer-5 .answer-header, .answer.answer-5 .answer-card{
    background: #EBF8F9;
}
.answer.answer-5 .answer-num, .answer.answer-5 .answer-header i{    
    background: linear-gradient(180deg, #29c0cf 0%, #0d9cb3 100%);
}
.answer.answer-5 .answer-title span{
    background: linear-gradient(180deg, #29c0cf 0%, #0d9cb3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.answer.answer-5 .answer-body{
    background: #C8E5E8;
}

.location{
    padding-top: 150px;
    padding-bottom: 200px;
    margin-bottom: -200px;
}
.location .sub-title{
    margin-bottom: 0;
}
.location .sub-title > div{
    padding: 0 60px 0 30px;
}
.location .sub-title > img{
    width: 186px;
    margin-top: -55px;     
    margin-left: -98px;
}
.location .sub-title h2{
    
}
.location-left{
    padding-right: 150px;
}
.location .card-location img{
    width: 40px;
    height: 40px;
    margin-top: 5px;
    margin-right: 15px;
}
.location-map{
    position: relative;        
}
.location-map img:nth-child(1){
    width: calc(100% + 20px);
    margin: -20px -10px -10px -10px;
}
.location-map img:nth-child(2){
    position: absolute;
    width: 140px;
    left: -20%;
}
.location .bg-map{
    margin-top: -50px;
    margin-bottom: -150px;
    text-align: right;
}
.location .bg-map img{
    width: calc(100% - 200px);
}


.cand{
    padding-bottom: 50px;
}
.cand .sub-title img{
    width: 150px;
    margin-right: 50px;
    margin-left: -75px;
}
.modal-cand .modal-title i{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    color: #fff;
    border-radius: 50%;
}
.cand .sub-title h2{
    margin-bottom: 15px;
}
.cand .bg-img{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;   
    height: 100%;
}
.cand .bg-img .card-default{
    width: 60%;
    padding-bottom: 10px;
    z-index: 1;
}
.cand .bg-img .card-default:before{
    content: "";
    display: block;
    position: absolute;
    left: 20px;
    bottom: -39px;    
    width: 39px;
    height: 40px;
    background-image: url(../images/com-b.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.cand .bg-img .card-default p:nth-child(2){
    text-align: right;
}
.cand .bg-img > svg{
    position: absolute;
    left: 30%;
    bottom: -70px;
}
.cand .bg-img img{
    width: calc(100% + 75px);
    object-fit: contain;
    margin-left: -75px;
    z-index: 1;
}
.cands{
    margin-top: 37px;
}
.cands > div{
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}
.cand-item{
    position: relative;
    display: flex;
    align-items: end;
    width: 200px;
    height: 100%;    
}
.cand-item:hover{
    cursor: pointer;
}
.cand-item > img{
    width: 100%;
    object-fit: contain;
    z-index: 2;  
}
.cand-info{
    position: absolute;
    display: flex;
    flex-direction: column;
    bottom: -20px;
    width: 100%;
    align-items: center;
    z-index: 2;
}
.cand-info > div > i,
.lider-info > i{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    width: 30px;
    height: 30px;
    left: -7px;
}
.cand-info > div{
    position: relative;
    z-index: 1;
}
.cand-info > div > img{
    width: 90px;
    height: 90px;
}
.cand-info span{
    font-size: 16px;
    border-radius: 10px;
    background: #fff;
    padding: 6px 15px;
    margin-top: -10px;
    margin-bottom: -5px;
    text-align: center;
    z-index: 1;
}
.cand-info button{
    display: flex;
    align-items: center;
    border: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;    
    border-radius: 10px;
    padding: 3px 10px;
    /*transition: 0.5s;*/
}
.cand-info button img{
    margin-right: 10px;
}
.cand-item .cand-e{
    display:none;
    width: 100%;
    height: 40px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute; 
    bottom: 10px;
    border-radius: 100%;
    background: #fff;
    box-shadow: 0 4px 6px 15px #fff, 0 4px 5px -1px rgba(255, 255, 255, 0.5);
    transition: 0.5s;
    z-index: 1;    
}
.cand-item:hover .cand-e{
    display:block;
}
.cand-item.cand-item:first-child svg{
    position: absolute;
    top: 0px;
    left: calc(-100% - 20px);
}

.cand-item.cand-item-4:hover button{
    background: #503bc5;
}
.cand-item.cand-item-5:hover button{
    background: #d35c17;
}
.cand-item.cand-item-6:hover button{
    background: #de9e07;
}

.modal-title{
    margin-bottom: 25px;
}
.modal-title span{
    font-size: 24px;
    font-weight: 600;
}
.pages{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.page{
    display: none;
}
.page.active{
    display: flex;
    height: 100%;   
}

.modal-cards.card-full{
    border-radius: 15px;    
    padding-right: 20px;
}
.modal-cards.card-full .modal-card{
    border-radius: 15px;
        overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: auto;
    scrollbar-color: #6077FA #fff;
    height: 100%;
}
.modal-cards:not(card-full) .modal-card{
    border-radius: 15px;
    background: #fff;
    padding: 15px 20px;
    margin-right: 0;
}
.modal-cards{
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;    
    scrollbar-width: auto;
    scrollbar-color: #6077FA #fff;
    height: 100%;
}

.modal-cards.active{
    display: block;
}
.modal-cards .modal-card{
    margin-bottom: 15px;
    margin-right: 10px;
    font-size: 18px;
    color: #000;
}
.modal-cards .modal-card:last-child{
    margin-bottom: 0;    
}
.modal-card > p{
    margin-bottom: 5px;
    font-weight: 600;
}
.page-about .portret{
    width: 100%;
    border-radius: 20px;
}


.modal-about-button{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.audio-info{
    display: flex;
    align-items: center;
    gap: 15px;
    height: 30px;
    margin-top: 22px;
    margin-bottom: 10px;
    visibility: hidden;
}
.audio-info .audio-time{
    background: #EDF2FE;
    border-radius: 20px;    
    padding: 5px 10px;
}
.audio-info .audio-time span{
    display: block;
    width: 50px;
}
.audio-info .audio-time span:last-child{
    display: none;
}
#progressAudio{
    width: 100%;
    height: 9px;
    border-radius: 5px;
    border: 0;
}
#progressAudio .noUi-handle{
    width: 24px;
    height: 24px;   
    border-radius: 50%;
    top: -8px; 
}
#progressAudio .noUi-touch-area {        
    border-radius: 50%;
    background: #6077FA;
    border: 0;    
}
#progressAudio .noUi-connect{
    background: #6077FA;
}
.noUi-handle:after, .noUi-handle:before{
    display:none;    
}

.modal-about-footer.play .audio-info{
    visibility: visible;
}    
.modal-about-footer.play #rateBtn{
    display: flex;
}
.modal-about-footer #rateBtn{
    display: none;
    min-width: 66px;
}
.modal-about-footer #playBtn > span:nth-child(1){
    display: none;
}
.modal-about-footer #playBtn > span:nth-child(2) svg{
    margin-right: 10px;
}
.modal-about-footer.play #playBtn{
    min-width: 142px;
}
.modal-about-footer.play #playBtn > span:nth-child(1){
    display: block;
}
.modal-about-footer.play #playBtn > span:nth-child(2){
    display: none;
}
.modal-back{
    display: none;
    margin-top: 30px;
}
#modal-map .sub-title{
    margin-bottom: 48px;
}
#modal-map .sub-title img{
    height: 100px;
    margin-right: 25px;
}
#modal-map .sub-title p{
    margin-top: 8px;
}
#modal-map .map-header img{
    width: 402px;
    position: absolute;    
    bottom: 0;
    right: 20px;
}

.voted{
    margin-top: -40px;
    margin-bottom: 100px;
}
.voted-item{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;    
    border-radius: 20px;
    padding: 20px 24px;        
    height: 100%;
}
.voted-item.checked{    
        box-shadow: 0 0 20px #fff, 0 0 10px #472dfa, 0 0 20px #472dfa;
}
.voted-item > label{
    width: 100%;
    text-align: center;
}
.voted-item > div{
    text-align: center;
}
.voted-item img{
    width: 115px;
    height: 115px;
}
.voted-item span{
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    word-spacing: 100vw;
}
.btn-quest + svg{
    position: absolute;
    top: 50%;    
    left: 60px;
}
.lider-list{
    margin-top: 30px;
}
.lider-item{
    display: flex;
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
}
.lider-item:last-child{
    margin-bottom: 0;
}
.lider-info{
    display: flex;
    align-items: center;
    gap: 20px;   
}
.lider-info > i{
    position: relative;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    left: auto;
}
.lider-info span{
    font-weight: 900;
    min-width: 100px;
}
.lider-voted{
    width: 100%;
}
.lider-progress {  
  background: #fff;
  border-radius: 15px;
  margin-bottom: 15px;
}

.progress-value {
  height: 15px;
  background: #6077FA;
  border-radius: 15px;
  width: 0;
  transition: width 0.5s;
}
.lider-voted-count{
    font-size: 16px;
    font-weight: 600;
}
.lider-content{
    position: relative;
    display: flex;
    justify-content: center;
    margin-left: -100px;
}
.lider-content > svg{
    position: absolute;
    top: -40px;
}
.lider-fact{
    position: relative;
    width: 310px;
    padding: 15px 24px 30px 24px;
    background: #FFEEB4;
    text-align: center;
    border: 1px solid #FDCE49;
    border-radius: 20px;
    z-index: 1;
}
.lider-fact:before{
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    border-radius: 5px;
    background: RGB(97, 134, 255, 0.85);
}
.lider-fact > div{
    display: flex;
    align-items: center;
    justify-content: left;
}
.lider-fact > div > span{
    font-weight: 600;
    padding-left: 10px;
}
.lider-fact p{
    margin: 15px 0;
}
.lider-fact button{
    display: flex;
    align-items: center;
    justify-content: center;
}
.lider-fact button svg{
    margin-right: 10px;
}

.map-header{
    background: linear-gradient(270deg, #2c3ee0 0%, #4e38f9 40.38%, #1f7afc 92.79%);
    border-radius: 20px 20px 0 0;
    color: #fff;
    line-height: 1;
}
.map-header > .col{
    position: relative;
    display: flex;    
    align-items: center;
    justify-content: center;
    border-right: 1px solid #fff;
    padding: 18px 30px;
}
.map-header > .col svg{
    margin-right: 20px;
}
.map-content-item .col:nth-child(1), .map-content-item .col:nth-child(2), .map-content-item .col:nth-child(5){
    text-align: center;
}
.map-header .col, .map-content-item .col{
    flex: 0 0 auto;
}
.map-header .col:nth-child(1), .map-content-item .col:nth-child(1){
    width: 5%;
}
.map-header .col:nth-child(2), .map-content-item .col:nth-child(2){
    width: 10%;
}
.map-header .col:nth-child(3), .map-content-item .col:nth-child(3){
    width: 33%;
}
.map-header .col:nth-child(4), .map-content-item .col:nth-child(4){
    width: 33%;   
}
.map-header .col:nth-child(5), .map-content-item .col:nth-child(5){    
    width: 19%;
}
.map-content-item{
    border: 1px solid #E7E4FB;    
}
.map-content-item .col:nth-child(2) *{
    color: rgb(0, 26, 107)!important;
    font-weight: 400!important;
    line-height: 130%!important;
    font-family: inherit!important;
}
.map-content-item ul{
    font-size: 14px;
    padding-left: 0;
    margin: 0;
}
.map-content-item ul li{
    padding-bottom: 5px;
    margin-bottom: 3px;
    border-bottom: 1px solid #E7E4FB;
}
.map-content-item ul li:last-child{
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}
.map-content-item .col{
    display: flex;
    align-items: center;
    padding: 25px 30px;
    border-right: 1px solid #E7E4FB;

}
.map-content-item:hover{
    background: #EDF2FE;
    border: 1px solid #1f7afc;        
}
.map-content-item:last-child:hover{
    border-radius: 0 0 0 20px;
}
.map-content{
    background: #fff;
    height: 450px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: auto;
    scrollbar-color: #6077FA #fff;
    border-radius: 0 0 20px 20px;
    margin-right: -27px;
}

/* Стили для шапки и выпадающего списка */
.map-header-top {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
}

.map-header-icon {
    margin-right: 20px;
    flex-shrink: 0;
}

.map-header-title {
    color: #1a208c;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    margin-top: 5px;
}

.map-header-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.map-header-desc {
    color: #1a208c;
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
}

.rayon-select-wrapper {
    position: relative;
    width: 260px;
}

.rayon-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #4361EE;
    border-radius: 10px;
    padding: 8px 45px 8px 42px;
    font-size: 15px;
    color: #1a208c;
    cursor: pointer;
    outline: none;
    font-weight: 500;
    box-shadow: none;
}

.rayon-select-wrapper select:focus {
    border-color: #1a208c;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
}

/* SVG Иконка пина слева */
.rayon-select-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Чтобы клик проходил сквозь иконку по селекту */
}

/* SVG Иконка стрелочки справа */
.rayon-select-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.outro{
    position: relative;
    background-image: url(../images/bg-cloud.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 250px;
    margin-top: -70px;
}
.outro ul li{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.outro p{
    margin: 20px 0 37px 0;
}
.outro ul li:last-child{ 
    margin-bottom: 0;
}
.outro ul li:before{
    content: "";
    display: inline-flex;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: #472DFA;
    background-image: url(../images/check.svg);
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    margin-right: 12px;
}


footer{
    font-size: 18px;
    color: #fff;
    background: #6077FA;
    padding-top: 52px;
    padding-bottom: 52px;
}
.books{
    position: relative;
    margin-top: 140px;
    margin-bottom: 80px;
    padding-bottom: 20px;
    overflow: hidden;    
}

.book-item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
    background: #fff;
    padding: 20px;
    height: auto;
}
.book-item:hover{
    cursor: pointer;
}
.book-item .book-image{
    position: relative;
}
.book-item .book-image span, .book-img span{
    position: absolute;
    right: 0;
    bottom: 0;
    background: #472DFA;
    color: #fff;
    padding: 4px 6px;
    border-radius: 10px 0 0 0;
}
.book-item img{
    width: 100%;
    border-radius: 10px;
    box-shadow: 6px 6px 14px 0 rgba(17, 0, 167, 0.15);
}
.book-item .book-info{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    font-size: 16px;
}
.book-item .book-info span:first-child{
    color: #06089A;
    font-weight: 600;
    margin-bottom: 5px;
}
.modal-book.modal.fancybox-content{
    background: #EDF2FE;
    width: 930px;
}
.book-img img{
    width: 100%;
}
.book-info-item{
    font-size: 18px;    
    margin-bottom: 25px;
}
.book-info-item > div{
    display: flex;
    align-items: center;
    gap: 10px;    
}
.book-info-item > div > span, .book-content > span{
    color: #472DFA;
    font-weight: 600;   
}
.book-content{
    margin-top: 30px;
}
.book-info-item p, .book-content > p{
    color: #000;
    margin: 10px 0 0 0;
}

.map-filter {
    position: relative;
    box-shadow: 0 4px 4px 0 rgba(96, 119, 250, 0.1);
    border-radius: 10px;
    overflow: hidden;
}
.map-filter__head {
    width: 100%;    
    position: relative;
    font-size: 18px;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;    
    padding: 9px 19px 9px 9px;
    background-color: #FFFFFF;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.map-filter__toggler {
    color: var(--primary);
    margin-left: auto;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.map-filter__body {
    position: relative;
    display: none;
    max-height: 360px;
    background-color: #fff;
    overflow: hidden;
    z-index: 21;
}
.map-filter__body-inner {
    max-height: 360px;
    padding: 0 15px 10px;
    overflow-y: scroll;
}
.location-item {
    padding: 15px 0;
    border-bottom: 1px solid #EBECFE;
}
.location-item__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 0 6px;
    gap: 20px;
}
.location-map__route {
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--primary);
    font: 400 0.75rem / 1.25 var(--fm);
}
.book-detail__libs-caption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 11px;
    font-size: 16px;
    color: #A4A6B7;
    margin-top: 10px;
}
.select-list .location-map{
    color: #000;
    font-size: 14px;
}
.select-list .location-item__title{
    color: #000;
    font-size: 14px;
    font-weight: 600;
}
.select-list .location-map span{
}
.select-list .location-map a{
    color: #472DFA;
}
.book-detail__group{
    font-size: 16px;
    color: #A4A6B7;
}

.swiper-container {
    position: relative;
    width: 100%;
    height: 100%;    
}
.swiper-wrapper {    
    padding-bottom: 40px;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom: -10px;
}
.swiper-pagination-bullet {     
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 1;
}

.swiper-pagination-bullet-active{
    background: #472DFA;   
}
.swiper-container .swiper-button-prev, .swiper-container .swiper-button-next{
    color: #472DFA;
}
.swiper-container .swiper-button-prev{
    left: -35px;
}
.swiper-container .swiper-button-next{        
    right: -35px;    
}

#modal-quiz{    
    height: auto;
    padding: 90px 10px 70px 50px;
}
#modal-quiz .quest-top{
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 50px;
    margin-bottom: 60px;
}
#modal-quiz .quest-title{
    display: flex;
    gap: 5px;
}
#modal-quiz .quest-title span{
    margin: 0;
}
#modal-quiz .quest-progress{
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    gap: 5px;
}
#modal-quiz .quest-progress span{
    width: 100%;
    height: 8px;
    background: #fff;
    border-radius: 25px;
}
#modal-quiz .quest-progress span.active{
    background: #472DFA;
}
#modal-quiz .quest-item{
    display: none;    
}
#modal-quiz .quest-item{
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 280px;
    background-image: url(../images/dog-book.png);
}
#modal-quiz .quest-item.success{
    background-image: url(../images/dog-success.png);
}
#modal-quiz .quest-item.error{
    background-image: url(../images/dog-error.png);
}
#modal-quiz .quest-item.active{
    display: block;
}
#modal-quiz .quest-item > div > span{
    display: block;
    font-size: 24px;
    font-weight: 600;
    margin-bottom:40px;
}
#modal-quiz .answer-item label{
    font-size: 18px;
}
#modal-quiz .quest-footer{    
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    margin-right: 50px;
}
#modal-quiz .quest-footer .btn-next, #modal-quiz .quest-footer .btn-next-seek {
    pointer-events: none;
    opacity: 0.5;
}
#modal-quiz .quest-footer .btn-next.active, #modal-quiz .quest-footer .btn-next-seek.active{
    pointer-events: visible;
    opacity: 1;
}
.quest-start > div{
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 50px;
    background-image: url(../images/dog-start.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 460px;  
}
.quest-start > div{
    margin-top: 50px; 
}
.quest-item.error[data-quest] label,
.quest-item.success[data-quest] label{
    pointer-events: none;
}
.quest-item .comment-block{
    min-height: 100px;
}
.quest-item .quest-comment{
    display:none;
    color: #06089A;
    font-size: 18px;
    border-radius: 20px;
    padding: 20px;
    margin-top: 30px;    
}
.quest-item.error .quest-comment{
    display: block;
    background: #FDEFF2;
    border: 1px solid #FF8A97;
}
.quest-item.error .quest-comment b{
    color: #FF8A97;
}
.quest-item.success .quest-comment{
    display: block;
    background: #E1F7E2;
    border: 1px solid #3DB841;
}
.quest-item.success .quest-comment b{
    color: #5BBD54;
}

.quest-result .circle-res{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 165px;
    height: 165px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #6077FA;
}
.quest-result .circle-res > div{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 36px;
    font-weight: 600;
    color: #06089A;    
}
.quest-result .circle-res > div span:first-child{
    font-size: 64px;
}
.quest-result .circle-res:before{
    position: absolute;
    content: "";
    width: calc(100% + 32px);
    height: calc(100% + 32px);
    border-radius: 50%;
    background: #D3DFFF;
    z-index: -1;
}

.quest-result .circle-res:after{
    position: absolute;
    content: "";
    width: calc(100% + 75px);
    height: calc(100% + 75px);
    border-radius: 50%;
    background: #F8F8FE;
    filter: blur(34px);
    z-index: -1;
}
.quest-result .title-res, .title-seek{
    font-size: 32px;
    font-weight: 600;
}
.title-seek{
    display: flex;
    gap: 20px;
}
.title-seek >div{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.title-seek span{
    font-size: 18px;
    font-weight: 400;
    max-width: 400px;
}
.quest-result p{
    margin: 15px 0 60px 0;
}
.quest-result .info-res{
    display: flex;
    align-items: center;    
    gap: 20px;
    color: #06089A;
    margin-top: 60px;
    border-radius: 20px;
    padding: 20px 50px;
    margin-right:50px;
}
.quest-result .info-res svg{
    flex-shrink: 0;
}
.row-res .quest-result > div{
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 340px;
}
.row-res[data-res="low"] .quest-result > div{
    background-image: url(../images/dog-low.png);
}
.row-res[data-res="mid"] .quest-result > div{
    background-image: url(../images/dog-mid.png);
}
.row-res[data-res="high"] .quest-result > div{
    background-image: url(../images/dog-high.png);
}
.row-res[data-res="low"] .quest-result .info-res svg rect{
    fill: #FF8A97;
}
.row-res[data-res="mid"] .quest-result .info-res svg rect{
    fill: #FE7B03;
}
.row-res[data-res="high"] .quest-result .info-res svg rect{
    fill: #3DB841;
}
.row-res[data-res="low"] .info-res{
    background: #FDEFF2;
    border: 1px solid #FF8A97;
}
.row-res[data-res="mid"] .info-res{
    background: #FDE7C4;
    border: 1px solid #FE7B03;
}
.row-res[data-res="high"] .info-res{
    background: #E1F7E2;
    border: 1px solid #3DB841;
}
.row-res[data-res="low"] .circle-res > div span:first-child {
    color: #FF8A97;
}
.row-res[data-res="mid"] .circle-res > div span:first-child {
    color: #FE7B03;
}
.row-res[data-res="high"] .circle-res > div span:first-child {
    color: #3DB841;
}

.quest-seek, .quest-total{
    padding-right: 50px;
}
.quest-total-info{
    background: #E1F7E2;
    border: 1px solid #3DB841;
    border-radius: 20px;
    padding: 17px 25px;
}
.quest-total-info-item{
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}
.quest-total-info-item > div > div{
    color: #3DB841;
}
.quest-total-info-item:last-child{
    margin-bottom: 0;
}
.quest-total .img-total img{
    height: 370px;
}
.footer-seek{
    display: flex;
    align-items: center;
    gap: 35px;
}
.seek-list{
    position: relative;
    margin-top: 25px;    
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: auto;
    scrollbar-color: #6077FA #fff;
    padding-right: 5px;
}
.seek-list.list{
    height: 460px;
}
.quest-seek.list:before{
    content: "";
    position: absolute;
    background-image: url(../images/dog-answer.png);
    width: 185px;
    height: 164px;
    z-index: 9;
    top: 28px;
    right: 50px;
}
.quest-seek.detail{
    margin-bottom: 70px;
}
.quest-seek.detail:before{
    content: "";
    position: absolute;
    background-image: url(../images/book-answer.png);
    width: 211px;
    height: 211px;
    z-index: 9;    
    bottom: 50px;
    right: 50px;
}
.seek-detail{
    padding: 20px 30px 20px 20px;
    border: 1px solid #5BBD54;
    background: #fff;
    border-radius: 20px;
}
.seek-detail > div:first-child{
    display: flex;
    gap: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}
.seek-card{
    position: relative;
    display: flex;
    gap: 20px;
    padding: 20px 30px 20px 20px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid;
    cursor: pointer;
    margin-bottom: 5px;
}
.seek-card > span, .seek-detail > div:first-child span{
    width: 25px;
    height: 25px;
}
.seek-card:after{
    font-family: 'FontAwesome';
    font-size: 26px;
    font-weight: 600;
    content: "\f105";
    position: absolute;
    color: #06089A;    
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.seek-card > span:before, .seek-detail > div:first-child span:before{
    content: "";
    display: block;    
    width: 25px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
}
.seek-card .seek-info{
    display: flex;
    flex-direction: column;
}
.seek-card .seek-info span:first-child, .seek-card .seek-info span:last-child b{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.seek-card.success > span:before, .seek-detail > div:first-child span:before{    
    background-image: url(../images/seek-success.svg);
}
.seek-card.success{
    border-color: #5BBD54;
}
.seek-card.success .seek-info span:last-child b{
    color: #3DB841;
}
.seek-card.error > span:before{    
    background-image: url(../images/seek-error.svg);
}
.seek-card.error{
    border-color: #FC82A6;
    background: #FDEFF2;
}
.seek-card.error .seek-info span:last-child b{
    color: #FF8A97;
}

.quest-total{
    display: none;
}

.footer-logo, .footer-msg{
    display: flex;
    align-items: center;
    height: 100%;
}
.footer-msg{
    justify-content: end;
}
.footer-logo a, .footer-msg a{
    margin-right: 18px;
    text-decoration: none;
}
.footer-logo .agency-item img{
    height: 52px;
}
.footer-msg a img{
    height: 35px;
}
.footer-logo a:last-child, .footer-msg a:last-child{
    margin-right: 0;
}



.navbar-container{
    display: flex;
}
.navbar-collapse{  
}
.navbar-collapse.open{
    display: block;
    position: absolute;
    background: #deeeff;
    z-index: 9;
    top: 67px;
    left: 0;
    right: 0;    
}
.map-container{
    position: relative;
    padding-bottom: 150px;
}

.mobile, .mobile-flex, .mobile-block{
    display: none!important;
}
/****************************/
.img-election{
    position: absolute;
    width: calc(100% - 200px);
    bottom: -140px;    
    right: -2000px;
}
.img-book{
    position: absolute;
    width: 290px;
    top: -200px;
    right: -2000px;
    
}
.img-boy{
    position: absolute;
    width: 100%;
    top: 0;
    left: -2000px;    
}
.img-map{
    position: absolute;        
    width: calc(100% - 180px);
    right: 2000px;
    top: -30px;
}
.img-girl{
    position: absolute;
    width: calc(868px);
    top: -420px;    
    right: -125px;    
}
.img-dog{
    position: absolute;
    top: 150px;
    left: 225px;
}
.img-map-mobile, .img-boy-mobile{
    display: none;
    width: 100%;
}
.img-expert{

}

.draw-border {
  box-shadow: inset 0 0 0 4px #58afd1;
  color: #58afd1;
  transition: color 0.25s 0.0833333333s;
  position: relative;
}
.answer-card::before, .answer-card::after {
  border: 0 solid transparent;
  box-sizing: border-box;
  content: "";
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  right: 0;
}
.answer-card::before {
  border-bottom-width: 2px;
  border-left-width: 2px;
}
.answer-card::after {
  border-top-width: 2px;
  border-right-width: 2px;
}
.answer-card:hover {
  color: #b6b6ff;
}
.answer-card:hover::before, .answer-card:hover::after {
  border-color: #b6b6ff;
    border-radius: 20px;
  transition: border-color 0s, width 0.25s, height 0.25s;
  width: 100%;
  height: 100%;
}
.answer-card:hover::before {
  transition-delay: 0s, 0s, 0.25s;
}
.answer-card:hover::after {
  transition-delay: 0s, 0.25s, 0s;
}
/****************************/
.election, .answers, .location, .cand{
    overflow: hidden;
}
.answers{
    position: relative;
    padding-top: 100px;
    margin-top: -100px;
}
/*******************************/
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
        max-width: 1370px;
    }
}

@media (max-width: 991px){    
    .mobile-flex{
        display: flex!important;
    }
    .mobile, .mobile-block{
        display: block!important;
    }    
    .d-xs-none, .desktop{
        display: none!important;
    }
    .d-xs-block{
        display: block!important;
    }
    .flex-xs-column{
        flex-direction: column;
    }
    .w-xs-100{
        width:100%;
    }
    .mt-xs-0{
        margin-top: 0;
    }
    .mt-xs-15{
        margin-top: 15px;
    }
    .mt-xs-20{
        margin-top: 20px;
    }
    .mt-xs-30{
        margin-top: 30px;
    }
    .mt-xs-40{
        margin-top: 40px;
    }
    .mb-xs-5{
        margin-bottom: 5px;
    }
    .mb-xs-10{
        margin-bottom: 10px;
    }
    .mb-xs-15{
        margin-bottom: 15px;
    }
    .mb-xs-20{
        margin-bottom: 20px;
    }
    .mb-xs-25{
        margin-bottom: 25px;
    }
    .mb-xs-30{
        margin-bottom: 30px;
    }
    .p-xs-0{
        padding: 0;
    }

    .order-xs-2{
        order: 2;
    }

    .agency-item .agency-info{
        position: fixed;
    }
    .agency-item .agency-info:before{
        display: none;
    }
    .footer-logo .agency-item .agency-info {
        bottom: 200px;
    }
    
    .section-intro .intro-text:before{
        display: none;
    }

    .navbar-brand .navbar-brand-info{
        left: 120px;
    }
    .navbar-brand .navbar-brand-info:before{
        display: none;
    }
    .navbar-collapse{
        padding: 20px;
        background: #fff!important;
    }
    .navbar-collapse .navbar-nav li{
        margin-bottom: 10px;
    }
    .navbar-collapse .navbar-nav li > img{
        width: 20px;
        height: 20px;
        margin-right: 5px;
    }
    #modal-map .sub-title img{
        display: none;
    }
    .map-header { 
        display: none;
    }
    .map-content { 
        margin-right: 0;
        background: transparent;
    }
    .map-content-item{
        margin-bottom: 30px;
        background: #fff;
        border-radius: 20px;
    }
    .map-content-item: last-child{
        margin-bottom: 0;
        border: 0;
    }
    .map-content-item li{
        font-weight: 600;
    }
    .map-content-item .btn{
        width: 100%;
    }
    .map-content-item .agency{
        display: block;        
        padding-bottom: 10px;
        margin-bottom: 10px;        
        border-bottom: 1px solid #1f7afc;
    }
    .map-content-item .agency ul li{
        font-weight: 400;
    }
    .map-content-item .agency svg{
        margin-right: 5px;
    }
    .map-content-item .col {         
    }
    .map-content-item .col:first-child {
        display: none;    
    }
    .map-content-item .col:nth-child(3){
        padding-top: 0px;
    }
    .map-content-item .col:nth-child(3) ul li{
        font-weight: 400;
    }
    .map-content-item .col:nth-child(3), .map-content-item .col:nth-child(5){
        order: 1;
    }    
    .map-content-item .col:nth-child(2), .map-content-item .col:nth-child(3), .map-content-item .col:nth-child(4), .map-content-item .col:nth-child(5){
        width: 100%;
    }
    
    .footer-logo .agency-item img{
        height: 30px;
    }
    .footer-msg svg{
        height: 20px;
    }

    .modal-about-button{
        display: block;
    }
    .modal-about-button .btn{
        width: 100%;
        margin-bottom: 20px;
    }

    .btn-quiz {
        margin-left: auto;
        margin-right: auto;
    }
    .quest-start > div{
        padding-right: 0;
        align-items: end;
        height: 400px;
    }
    #modal-quiz { 
        padding: 90px 10px 70px 10px;
    }
    #modal-quiz .quest-footer { 
        margin-right: 0;
    }
    #modal-quiz .quest-item, #modal-quiz .quest-item.success, #modal-quiz .quest-item.error { 
        background-image: none;
    }
    #modal-quiz .quest-footer{
        flex-direction: column;
    }
    #modal-quiz .quest-footer > *{
        width: 100%;
        margin-bottom: 20px;
    }
    .quest-seek.detail{
        margin-bottom: 10px;
    }
    .quest-seek.detail:before, .quest-seek.list:before{ 
        display: none;
    }
    .quest-seek, .quest-total {
        padding-right: 10px;
    }
    .quest-total .img-total img {
        display: none;
    }
    .quest-total-info { 
        width: 100%;
        margin-top: 20px;
    }
    .quest-result .info-res {    
        margin-right: 0px;
    }
    .section-intro{
        padding-bottom: 180px;
    }
    .section-main { 
        padding-top: 240px;
    }
    .section-intro img.dog { 
        bottom: -435px; 
    }
    .whats-items img.children {
        position: absolute; 
        width: 100%;
        top: -400px;
    }
    .election { 
        padding-top: 40px;        
    }
    .election ul li { 
        margin-left: 30px;
    }
    .election ul li span { 
        border-radius: 40px;
        margin: 0;
        padding-left: 50px;
    }
    .election ul li img {
        position: absolute;
        background: transparent;
        width: 65px;
        height: 65px;
        top: 50%;
        transform: translateY(-50%);
        left: -22px;
        padding: 3px;
        background: #fff;
    }
    .img-dog-mobile{
        position: relative;
        width: 100%;
        margin-bottom: -20px;
        z-index: 1;
    }
    .map-container { 
        padding-bottom: 30px;
    }
    .books { 
        margin-top: 40px;    
    }
    
    .books .container-book{
        padding-left: 0;
        padding-right: 0;
    }
    .book-info{
        margin-bottom: 20px;
    }
    .book-info-item { 
        margin-bottom: 15px;
    }
    .swiper-container{        
    }
    .swiper {
        padding-left: 50px;      
        padding-right: 50px;
    }
    .swiper-container .swiper-button-prev, .swiper-container .swiper-button-next {    
        background: #fff;
        border-radius: 50%;
        box-shadow: -6px 6px 14px 0 rgba(17, 0, 167, 0.15);
        padding: 10px;
    }
    .swiper-pagination{
        left: 30px !important;
        width: calc(100% - 60px) !important;
    }
    .book-item{
        opacity: 0.5;
    }
    .book-item.swiper-slide-active{
        opacity: 1;
    }
    .swiper-container .swiper-button-prev{
        left: 5px;
    }
    .swiper-container .swiper-button-next{        
        right: 5px;    
    }
    .navbar>.container{    
        justify-content: space-around;
    }
    .navbar > .container > .row{        
    }
    .navbar-container{
        justify-content: space-between;
    }
    .main-title { 
        font-size: 32px;
    }
    .main-title span img{
        margin-right: 13px;
        height: 35px;
    }
    .sub-title h2 {
        font-size: 20px; 
    }
    .ui-slider-handle .slider-tooltip, .img-dog, .img-girl, .img-boy, .img-boy-mobile{
        display:none;
    }
    
    .answer .answer-left{
        gap: 20px;    
    }
    .answer .answer-title img {
        display: none;
    }
    .ages{
        padding-top: 25px;
    }
    .age-block { 
        background: #fff;
        padding: 30px 10px 1px 10px;
    }
    .ages .age { 
        margin: 20px 0 20px 0;
    }
    .ages .age #range, .img-election, .img-book, .img-map{
        display: none;
    }
    .age-scale {
        position: relative;
        display: flex;
        justify-content: space-between;
        background: none;    
        left: auto;
        right: auto;
        height: auto;
    }
    .age-tick{
        background: none!important;
        border: 1px solid #B6B6FF;
        width: 43px;
        height: auto;
        border-radius: 10px;        
    }
    .age-tick span {
        width: 100%;
        position: relative;
        top: auto;
        padding: 7px;
    }
    .age-tick:before {
        content: none;
    }
    .age-tick.active{
        background: #472DFA!important;
        color: #fff;
    }
    .age-items .age-item{    
        padding: 0;
        margin: 0;
    }
    .age-items .age-item img { 
        position: absolute;
        right: 0;
        bottom: 0;
    }
    .age-pagination{
        display: flex;
    }

    .cand .sub-title{
        gap: 10px;
    }
    .cand .sub-title img {
        width: 70px;
        margin-right: 0;
        margin-left: 0;
    }
    .cand{
        padding-bottom: 10px;
    }
    .cands > div {         
        margin-bottom: 40px;
    }
    .location .sub-title{
        align-items: center !important;
    }
    .location{
        padding-top: 60px;
    }
    .location .sub-title > img{
        width: 114px;
        margin-top: auto;
        margin-left: auto;
    }
    .location-left {
        padding-right: 0;
    }
    .location-map img:nth-child(2) { 
        width: 77px;
        left: 10px;
        top: 0;
    }
    .voted {
        margin-top: 0;
        margin-bottom: 50px;
    }
    .voted .sub-title { 
        margin-bottom: 30px;
    }

    .voted-item {
        display: flex !important;    
        flex-direction: row;
    }
    .voted-item > div {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .voted-item > div > img{
        width: 60px;
        height: 60px;
    }
    .voted-item span { 
        word-spacing: normal;
    }
    .voted-item > label {
        width: auto; 
    }
    .outro { 
        background-size: contain;
        padding-top: 100px;
        margin-top: 0;
        margin-bottom: 30px;
    }
    .outro .sub-title{
        justify-content: center;
    }
    .outro .sub-title img{
        width: 31px;
    }
    .outro > div{
        background: #DEEEFF;
    }
    .img-map-mobile{
        display: block;
        margin-top: 25px;
    }
    .img-boy-mobile{
        display: block;
    }
}

@media (min-width: 992px){
    .d-lg-none{
        display: none;
    }
    .d-lg-block{
        display: block;
    }
}
