

/* Start:/bitrix/components/custom_component/nw.quez/templates/kichen/style.css?175681213610134*/
.quiz-container {
	background-color: #fff ;
	border: 1px solid #696969;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 932px;
    height: 640px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    overflow: auto;
}
.quiz-container .progress-bar {
	height: 6px;
	width: calc(100% + 32px) ;
    margin: 5px -16px;
    background-color: #fff;
}
.quiz-container .progress {
    height: 100%;
    background-image: linear-gradient(to right, #d95900 70%, #ffffff);
    border-radius: 0;
    width: 0%;
    transition: all 1s;
}
.quiz-container .indication{
        display: flex;
    justify-content: space-between;
    opacity: 0.70;
    font-weight: bold;
    font-size: 14px;
    color: #d95900;
}


.quiz-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.quiz-container .title {
    color: #161A1D;
    font-weight: bold;
    font-size: 26px;
    line-height: 120%;
    margin: 10px 0;
}

.quiz-container .info{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}
.quiz-container .blocks_img{
    display: flex;
    justify-content: space-evenly;
}
.quiz-container .blocks_img .block_img{
    width: 600px;
    height: 400px;
}
.quiz-container .block_text{
    width: 50%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
}
.blocks_img .block_text{
    width: 30%;
}
.block_text input[type=number], .block_text input[type=text], .block_text select{
    padding: 11px 15px;
    width: 100%;
}

.info .prev-btn, .info .prev-btn:focus {
    padding: 14px 20px !important;
    border-radius: 10px;
    border: 2px solid #6E7886;
    color: #6E7886;
    background-color: white;
}
.info .next-btn, .info .next-btn:focus {
    background-color: #D18C47 !important;
    padding: 15px 20px !important;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    border: none !important;

}
.quiz-container input {
    border-radius: 10px;
    border: 1px solid #bfbfbf;
}
#result, .question, .B, .C {
    display: none;
}
.question.active, .B.active, .C.active {
    display: block;
    animation: ani 1s forwards;
}
/*окно результатов*/
#result hr{
margin: 5px 0 20px;
background-color: #bfbfbf;}

#result .progress{
width: 100%;
    background-color: #d95900;
    background-image: none;}

#result .block_contact{
width: 100%;
    display: flex;
    gap: 15px;
}
#result .block_contact input {
padding: 11px 15px;
    width: 100%;
}

#result-text{
	font-weight: bold;
    font-size: 18px;}
/*конец результатов*/

/*Блок кнопок*/
.block_button{
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
			margin-top: 15px;
        }

        .block_button .icon{
            width: 40px;
            margin-left: 10px;
			border-radius: unset;
        }
        .block_button label{
            width: 190px;
            display: flex;
            flex-direction: row;
            align-items: center;
            cursor: pointer;
            padding: 10px 20px;
            margin-bottom: 30px;
            background: white;
            justify-content: center;
			border: 2px solid rgba(0, 0, 0, 0.25);
    		border-radius: 10px;

        }
        .block_button input {
            -webkit-appearance: none; 
            -moz-appearance: none;
            appearance: none;
            display: none;
        }

        .block_button input[type="radio"]:checked + label{
            border: 2px solid #D18C47;
    		background-color: #FEF8F3;
    		border-radius: 10px;
        }

.block_button input[type="radio"]:hover + label{
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 6px 12px rgba(0, 0, 0, 0.2);
    background-color: #F9FAFB;
        }
/*Конец блока кнопок*/

/*диалоговое окно*/
#quiz .modal-dialog {
    max-width: 932px !important;
    width: 100% !important;
}
#quiz .modal-content{
    padding: 0;
}
/*конец диалогового окна*/

/*начало радио*/
.radio-form {
    display: flex;
    justify-content: center;
    margin: 10px 0 0;
}
.radio-form .radio-control {
    width: 100%;
    max-width: 250px;
    transition: all ease 250ms;
}
.radio-form .radio-control input, .checkbox-form .checkbox-control input {
    display: none;
}
.radio-form .radio-control .radio-input {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    margin: 0 10px;
    position: relative;
    transition: all ease 250ms;
    border: 2px solid rgba(0,0,0,0.25); 
    display: block;
}
.radio-form .radio-control:hover .radio-input {
    box-shadow: 0 2px 5px rgba(0,0,0,0.2), 0 6px 12px rgba(0,0,0,0.2);
    background-color: #F9FAFB;
}
.radio-form .radio-control .radio-input img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    border-radius: 10px;
}
.radio-form .radio-control .radio-input span {
    letter-spacing: 1px;
    font-size: 18px;
    display: block;
    margin-top: 16px;
    color: #AAA;
}
.radio-form .radio-control input:checked + .radio-input span {
    color: #444444;
    opacity: 1;
    transition: opacity ease 250ms;
}
.radio-form .radio-control input:checked + .radio-input:after {
    bottom: 0px;
    right: 20px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    animation-name: animation;
    animation-duration: 250ms;
    display: block;
    position: absolute;
    content:"";
    background: url("/bitrix/components/custom_component/nw.quez/templates/kichen/images/Group14.svg") no-repeat center;
    background-size: cover;
}
.radio-form .radio-control input:checked + .radio-input {
    border: 2px solid #D18C47;
    background-color: #FEF8F3;
}
.radio-form .radio-control input:checked + .radio-input:after,
.radio-form .radio-control input:checked {
    color: #D18C47;
}
/*конец радио*/

/*чек боксы*/
.checkbox-form {
    width: 100%;
    padding: 10px 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: wrap;
}
.checkbox-form .checkbox-control {
    width: 100%;
    max-width: 400px;
    border: 1px solid #bfbfbf;
    border-radius: 10px;
    padding: 14px;
    cursor: pointer;
    position: relative;
}
.checkbox-form .checkbox-control span, .checkbox-form .checkbox-control p{
    padding-left: 20px;
    margin-bottom: 0;
}
.checkbox-form .checkbox-control:hover {
    background-color: #F9FAFB;
}
.checkbox-input{
    font-weight: 600;
}
.checkbox-form .checkbox-control input + .checkbox-input:after {
    top: 16px;
    left: 10px;
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    border: 1px solid #D18C47;
    background-color: #fff;
    color: white;
    content: " ";
}
.checkbox-form .checkbox-control input:checked + .checkbox-input:after {
    content:"\2714";
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-name: animation2;
    animation-duration: 250ms;
    background-color: #D18C47;
}
/*конец чек боксов*/
/*селект*/
        .select{
            position: relative;
        }
        select {
            position: relative;
            color: #333;
            border: 1px solid #bfbfbf;
            border-radius: 10px;
            appearance: none; /* Убирает стандартное оформление в некоторых браузерах */
            -webkit-appearance: none; /* Для Safari */
            -moz-appearance: none; /* Для Firefox */
        }

		.select:after {
            content: "\f107";
            width: 18px;
            height: 18px;
            display: block;
            pointer-events: none;
            position: absolute;
            z-index: 1;
            right: 20px;
            bottom: 16px;
            font-size: 25px;
            font-family: "FontAwesome";
        }

        select:hover {
            border-color: #999;
        }

        select:focus {
            outline: none;
            border-color: #d18c47;
    box-shadow: 0 0 0 2px #d18c4733;
        }
        option {
            padding: 10px;
            background-color: white;
            color: #333;
        }

        option:hover {
            background-color: #f0f0f0;
        }
/*конец селект*/
/*текстареа*/
.textarea-control{
width: 100%;
max-width: 250px;
}

.textarea-control textarea{
    resize: none;
    border: 2px solid rgba(0, 0, 0, 0.25);
    border-radius: 10px;
	height: 100%;
	margin: 0 10px 0.5rem;
	padding: 15px 15px 0;
	width: calc(100% - 20px);
}
/*конец текстареа*/
/*анимации*/
@keyframes animation {
    0% {
        transform: translateY(-50%) scale(0);
    }
    75% {
        transform: translateY(-50%) scale(1.3);
    }
    100% {
        transform: translateY(-50%) scale(1);
    }
}
@keyframes animation2 {
    0% {
        transform: scale(0);
    }
    75% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes ani {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
/*конец анимаций*/
/*медиа*/
@media screen and (max-width: 500px) {
	.quiz-container .title {
	font-size: 20px
}
    .radio-form {
        flex-wrap: wrap;
		gap: 10px;
    }
    .radio-form .radio-control {
       width: calc(50% - 5px);
    }
	.radio-form .radio-control .radio-input{
		margin: 0
	}
	.quiz-container .blocks_img {
		flex-direction: column;
gap: 10px;
	}
	.quiz-container .blocks_img .block_img {
	width: 100%;
    max-width: 300px;
    margin: auto;
    height: 200px;
	}
	.quiz-container .block_text{
	width: 100%;
	}
	.checkbox-form {
	gap: 0;
	}
	.textarea-control {
	width: calc(50% - 5px);
	}
	.textarea-control textarea {
	margin: 0;
    height: auto;
	width: 100%;
	}
.block_button label {
    margin-bottom: 0;
    width: 31%;
    flex-direction: column;
}
	.block_button .icon {
margin: 0;}
}
/* End */


/* Start:/bitrix/components/bitrix/map.yandex.system/templates/.default/style.css?1654602936666*/
div.bx-yandex-map {color: black; font-size: 11px;}
div.bx-yandex-map div.YMaps-b-balloon-content {color: black; font-size: 11px;}
div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td {
	padding: 0px !important;
}


div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td textarea{
	font-size: 11px;
}


div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td.YMaps-b-balloon-b {
	background-image: none !important;
}

/* End */
/* /bitrix/components/custom_component/nw.quez/templates/kichen/style.css?175681213610134 */
/* /bitrix/components/bitrix/map.yandex.system/templates/.default/style.css?1654602936666 */
