
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-VariableFont_slnt,wght.woff2') format('woff2');
	font-display: swap;
}
.no-select {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
@media (any-hover: hover){
	body::-webkit-scrollbar {
		width: 10px;
	}
	body::-webkit-scrollbar-thumb {
		width: 10px;
		border-radius: 5px;
		background-color: #D4D4D4;
	}
	body::-webkit-scrollbar-track {
		background-color: transparent;
	}
}
.wp-block-create-block-wrap {
	width: 1340px;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}
@media(max-width: 375px){
	.wp-block-create-block-wrap {
		padding: 0 10px;
	}
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 5px;
    padding: 10px 25px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    width: max-content;
    height: 50px;
    font-size: 16px;
    max-width: 100%;
    background: transparent;
	border: 1px solid transparent;
}
.btn-primary {
	border: 1px solid #006BB0;
	background: #006BB0;
	font-weight: 300;
	color: #fff;
}
.btn-white {
	border: 1px solid #fff;
	background: #fff;
	color: #444;
}
.btn-light {
	border: 1px solid #777;
	color: #333;
}
@media(any-hover: hover){
	.btn-light:hover {
		border: 1px solid #444;
		color: #000;
	}
	.btn-primary:hover {
		border: 1px solid #00609E;
		background: #00609E;
		color: #fff;
	}
	.btn-white:hover {
		color: #000;
	}
}

/** ПРЕЛОАДЕР ТРИ ТОЧКИ **/
.dot-loader {
	position: relative;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background: #bbb;
	animation: dotFlashing 1s infinite linear alternate;
	animation-delay: .5s;
}

.dot-loader::before, 
.dot-loader::after {
	content: '';
	background: #bbb;
	display: inline-block;
	position: absolute;
	top: 0;
}

.dot-loader::before {
	left: -15px;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	animation: dotFlashing 1s infinite alternate;
	animation-delay: 0s;
}

.dot-loader::after {
	left: 15px;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	animation: dotFlashing 1s infinite alternate;
	animation-delay: 1s;
}

.dot-loader.white,
.dot-loader.white::before, 
.dot-loader.white::after {
	background: #fff;
}
@keyframes dotFlashing {
	0% {
		opacity: 0.9;
	}
	50%,100% {
		opacity: 0.5;
	}
}
/** ПРЕЛОАДЕР ТРИ ТОЧКИ (END) **/


/** ПРЕЛОАДЕР КНОПОК **/
.loading-btn {
	position: relative!important;
	color: transparent!important;
}
.loading-btn > *:not(.dot-loader) {
    visibility: hidden!important;
}
.loading-btn .dot-loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
/** ПРЕЛОАДЕР КНОПОК (END) **/

/** МОДАЛЬНОЕ ОКНО **/
.modal {
    position: fixed;
	padding: 50px 20px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 29, 34, 0.50);
    z-index: 50;
	display: none;
	overflow-y: scroll;
	height: 100vh;
	width: 100vw;
}
@media(any-hover: hover){
	.modal::-webkit-scrollbar {
		width: 10px;
	}
	.modal::-webkit-scrollbar-thumb {
		width: 10px;
		background-color: #F5C885;
	}
	.modal::-webkit-scrollbar-track {
		background-color: transparent;
	}
}
.modal.show{
	display: block;
	opacity: 0;
	transition: opacity 0.2s;
}
.modal.opacity{
	opacity: 1;
}
.modal > div {
    background-color: #fff;
	border-radius: 10px;
    box-shadow: 0px 4px 25px rgb(0 0 0 / 7%);
    min-width: 60px;
    width: max-content;
    max-width: 100%;
    position: relative;
    margin: auto;
	overflow: hidden;
	transition: transform 0.2s;
	transform: scale(0.7);
}
.modal.opacity > div {
	transform: scale(1);
}
.modal .modal-content {
	position: relative;
	min-width: 200px;
	min-height: 190px;
}
.modal .modal-content h2 {
	font-size: 20px;
	padding: 15px 35px 15px 0;
	margin: 0;
	overflow: hidden;
    text-overflow: ellipsis;
}
.modal .btn-close {
    color: #333;
    position: absolute;
    right: 10px;
    top: 10px;
	width: 40px;
	height: 40px;
    border: 1px solid transparent;
	cursor: pointer;
	z-index: 1;
}
.modal .btn-close:before {
    content: '';
    display: block;
    top: calc(50% - 1px);
    left: calc(50% - 11px);
    width: 22px;
    height: 2px;
    position: absolute;
    background: #777;
    transition: 0.2s;
    transform-origin: center;
    transform: rotate(45deg);
}
.modal .btn-close:after {
    content: '';
    display: block;
    top: calc(50% - 1px);
    left: calc(50% - 11px);
    width: 22px;
    height: 2px;
    position: absolute;
    background: #777;
    transition: 0.2s;
    transform-origin: center;
    transform: rotate(315deg);
}
@media(any-hover: hover){
	.modal .btn-close:hover:before,
	.modal .btn-close:hover:after {
		background: #F5C885;
	}
}
@media(max-width: 375px){
	.modal {
		padding: 20px;
	}
}
/** МОДАЛЬНОЕ ОКНО (END) **/

/** ВСПЛЫВАЮЩЕЕ СООБЩЕНИЕ **/
.popup-alert {
    position: fixed;
    width: 350px;
    margin: 0 auto;
    top: 5px;
	left: 0;
	right: 0;
    border-radius: 5px;
    z-index: 1000;
	display: none;
	box-sizing: border-box;
}
.popup-alert>div {
	color: #fff;
	font-size: 14px;
    position: relative;
	border-radius: 5px;
	padding: 10px 35px 10px 20px;
	box-shadow: 0 10px 10px 0 rgba(0,0,0,0.2);
}
.popup-alert  .btn-close{
	position: absolute;
	color: #fff;
	top: 0;
	right: 0;
	top: 7px;
    right: 15px;
	cursor: pointer;
}
.popup-alert.success  .btn-close{
	color: #fff;
}
.popup-alert.show{
	display: block;
	opacity: 0;
	transition: 0.1s;
}
.popup-alert.opacity{
	opacity: 1;
	top: 15px;
}
.popup-alert.danger {
    background-color: #CC231B;
}
.popup-alert.success {
    background-color: #003E30;
	color: #fff;
}
/** ВСПЛЫВАЮЩЕЕ СООБЩЕНИЕ (END)**/

.modal-success .modal-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 50px;
}
.modal-success .success {
    text-align: center;
    position: relative;
    padding-top: 140px;
    padding-bottom: 20px;
    font-size: 16px;
    max-width: 250px;
}
.modal-success .success:before {
    content: '';
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #6bb56b;
}
.modal-success .success:after {
    content: '';
    top: 52px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    position: absolute;
    display: block;
    width: 15px;
    height: 30px;
    border-right: 4px solid #6bb56b;
    border-bottom: 4px solid #6bb56b;
}
.color-gray {
	color: #B3B3B3;
}
.color-sand {
	color: #F5C885;
}
.sands-p {
	display: block;
	margin-bottom: 15px;
}

/** FOORMS **/
.ys-form .field {
    width: 100%;
	position: relative;
}
.ys-form .field > .title {
	font-size: 15px;
	width: 100%;
	line-height: normal;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 10px;
    font-weight: 600;
	padding-left: 15px;
}
.ys-form .field > .desc {
    padding-left: 15px;
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}
.ys-form .field-text input,
.ys-form .field-select .selected,
.ys-form .field-multi-select .selected {
	font-size: 15px;
	border-radius: 5px;
	padding: 0 15px;
	height: 40px;
	width: 100%;
	font-family: 'Inter';
    border: 1px solid #D0D6D8;
}
.ys-form .field-text input:focus {
    border: 1px solid #006BB0;
	outline: none;
}
.ys-form .field-select .selected,
.ys-form .field-multi-select .selected {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-right: 30px;
    line-height: normal;
	position: relative;
	font-variant: none;
    background: #fff;
}
.ys-form .field-select .selected:after, 
.ys-form .field-multi-select .selected:after {
    content: '';
    display: block;
    top: 12px;
    right: 15px;
    width: 8px;
    height: 8px;
    position: absolute;
    border-left: 2px solid #bbb;
    border-bottom: 2px solid #bbb;
    transform: rotate(-45deg);
    pointer-events: none;
}
.ys-form .field-select.open .selected,
.ys-form .field-multi-select.open .selected {
	border: 1px solid #006BB0;
}
.ys-form .field-select .selected span,
.ys-form .field-multi-select .selected span {
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ys-form .field-select .placeholder,
.ys-form .field-multi-select .placeholder {
	color: #444;
}
.ys-form .field-select .options,
.ys-form .field-multi-select .options {
	display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 3;
    border: 1px solid #eee;
    padding: 15px 10px 15px 10px;
    border-radius: 5px;
    background: #fff;
    width: 100%;
    min-width: 100px;
	line-height: normal;
	opacity: 0;
    box-shadow: 0px 10px 20px 0px #00000020;
}
.ys-form .field-select .options {
    padding: 5px 0;
}
.ys-form .field-select.open .options,
.ys-form .field-multi-select.open .options {
	display: block;
	animation: show_options 0.1s ease-out 0s forwards; 
}
.ys-form .field-multi-radio .options,
.ys-form .field-multi-checkbox .options {
	padding-left: 15px;
}
@keyframes show_options {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.ys-form .field-select .scroll,
.ys-form .field-multi-radio .scroll,
.ys-form .field-multi-select .scroll,
.ys-form .field-multi-checkbox .scroll {
    overflow-y: auto;
    max-height: 170px;
}
.ys-form .field-multi-radio .scroll,
.ys-form .field-multi-checkbox .scroll {
	max-height: 300px;
}
.ys-form .field-select label input{
	display: none;
}
.ys-form .field-select label,
.ys-form .field-multi-radio label,
.ys-form .field-multi-select label,
.ys-form .field-multi-checkbox label {
    display: block;
    padding: 5px 0;
	cursor: pointer;
}
.ys-form .field-multi-radio label,
.ys-form .field-multi-checkbox label {
	width: max-content;
}
.ys-form .field-select label {
	padding: 5px 20px;
}
.ys-form .field-select label:first-child{
	padding-top: 5px;
}
.ys-form .field-multi-radio label:first-child,
.ys-form .field-multi-select label:first-child,
.ys-form .field-multi-checkbox label:first-child {
    padding-top: 0;
}
.ys-form .field-select label:last-child {
	padding-bottom: 5px;
}
.ys-form .field-multi-radio label:last-child,
.ys-form .field-multi-select label:last-child,
.ys-form .field-multi-checkbox label:last-child {
    padding-bottom: 0;
}
.ys-form .field input[type=checkbox],
.ys-form .field-multi-radio input[type=radio] {
	display: none;
}
.ys-form .field input[type=radio] + span,
.ys-form .field input[type=checkbox] + span,
.ys-form .field-multi-radio input[type=radio] + span {
	position: relative;
	padding-left: 30px;
	overflow: hidden;
	font-size: 15px;
	line-height: 20.43px;
	color: #444;
	font-variant: none;
}
.ys-form .field input[type=radio] + span {
	padding-left: 0px;
}
.ys-form .field-multi-radio input[type=radio] + span {
	padding-left: 30px;
}
.ys-form .field input[type=checkbox] + span:before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	top: 0;
	left: 0;
	border-radius: 3px;
	position: absolute;
	border: 1px solid #D0D6D8;
	box-sizing: border-box;
	transition: 0.1s;
    background: #fff;
}
.ys-form .field input[type=checkbox]:checked + span:after {
	content: '';
	display: block;
	top: 5px;
	left: 4px;
	width: 10px;
	height: 5px;
	position: absolute;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
}
.ys-form .field input[type=checkbox]:checked + span:before {
	background: #006BB0;
	border: 1px solid #006BB0;
}
.ys-form .field-multi-radio input[type=radio] + span:before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	top: 0;
	left: 0;
	border-radius: 50%;
	position: absolute;
	border: 1px solid #D0D6D8;
	box-sizing: border-box;
	transition: 0.1s;
}

.ys-form .field-multi-radio input[type=radio]:checked + span:after {
	content: '';
	display: block;
	top: 4px;
	left: 4px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	position: absolute;
	background: #006BB0;
}
.ys-form .field-multi-radio input[type=radio]:checked + span:before {
	border: 1px solid #006BB0;
}
.ys-form .field-textarea textarea {
    display: block;
    font-size: 15px;
    border-radius: 5px;
    padding: 10px 15px;
    height: 100px;
    width: 100%;
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
	font-family: 'Inter';
    border: 1px solid #D0D6D8;
}
.ys-form .field-textarea .limit {
	position: absolute;
    right: 0;
	bottom: -5px;
	transform: translateY(100%);
	font-size: 12px;
	color: #777;
}
.ys-form .field-textarea textarea:focus {
    border: 1px solid #006BB0;
	outline: none;
}
.ys-form .field.error input,
.ys-form .field.error textarea.error,
.ys-form .field.error input:focus,
.ys-form .field.error textarea:focus {
    border: 1px solid #EF7979;
}
.ys-form .field .err {
    position: absolute;
    left: 5px;
    z-index: 1;
    bottom: 0;
    border-radius: 3px;
    padding: 2px 5px;
    max-width: 100%;
    color: #fff;
    font-size: 10px;
    background: #FF5555;
    width: max-content;
    line-height: normal;
    transform: translateY(100%);
    font-weight: 600;
    box-shadow: 0px 0px 15px 0px #31363D1A;
}

.ys-form .field input::placeholder,
.ys-form .field textarea::placeholder {
	transition: 0.3s;
}
.ys-form .field-files input {
	display: none;
}
.ys-form .field-files .btn-add-file {
	width: max-content;
    max-width: 100%;
	margin-left: 15px;
}
.ys-form .field-files .btn-add-file label {
    display: block;
    border-bottom: 1px dashed;
    cursor: pointer;
    color: #333;
}
.ys-form .field-files .files {
    width: max-content;
	margin-left: 15px;
}
.ys-form .field-files .file-name {
	display: flex;
	align-items: center;
	cursor: default;
}
.ys-form .field-files .files > div {
	position: relative;
	padding: 0 0 0 25px;
	background-image: url(../img/svg/file.svg);
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: left top;
    margin-bottom: 5px;
}
.ys-form .field-files .files > div span {
	display: block;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ys-form .field-files .btn-del-file {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 3px;
    left: 0;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    background: #E14D43;
    transition: 0.3s;
}
.ys-form .field-files .btn-del-file:after, 
.ys-form .field-files .btn-del-file:before {
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    position: absolute;
	width: 40%;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
}
.ys-form .field-files .btn-del-file:after {
	transform: translate(-50%, -50%) rotate(45deg);
}
.ys-form .field-files .btn-del-file:before {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.ys-form .field-checkbox-dates > .desc {
	margin-bottom: 10px;
}
.ys-form .field-checkbox-dates .group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border: 1px solid #D0D6D8;
    padding: 20px;
    width: 100%;
    justify-content: space-between;
    border-radius: 5px;
}
.ys-form .field-checkbox-dates .field {
	margin-bottom: 0px;
}
.ys-form .field-checkbox-dates .options {
	padding-left: 0;
}
.ys-form .field-checkbox-dates .calendar {
	font-size: 15px;
	color: #444;
}
.ys-form .field-checkbox-dates .ui-datepicker-header {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
    margin-bottom: 5px;
}
.ys-form .field-checkbox-dates .ui-datepicker-header .ui-corner-all {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
	justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    cursor: pointer;
    border-radius: 50%;
    background: #d0edff;
}
.ys-form .field-checkbox-dates .ui-datepicker-header .ui-corner-all span {
	justify-content: center;
    align-items: center;
    display: block;
    width: 5px;
    height: 5px;
    border-left: 2px solid #777;
    border-bottom: 2px solid #777;
    transform: rotate(-45deg);
    pointer-events: none;
}
.ys-form .field-checkbox-dates .ui-datepicker-header .ui-datepicker-prev {
	left: 0px;
    padding-left: 2px;
}
.ys-form .field-checkbox-dates .ui-datepicker-header .ui-datepicker-next {
	right: 0px;
    padding-right: 2px;
}
.ys-form .field-checkbox-dates .ui-datepicker-header .ui-datepicker-prev span {
	transform: rotate(45deg);
}
.ys-form .field-checkbox-dates .ui-datepicker-header .ui-datepicker-next span {
	transform: rotate(-135deg);
}
.ys-form .field-checkbox-dates .ui-datepicker-calendar th,
.ys-form .field-checkbox-dates .ui-datepicker-calendar td {
	padding: 0;
}
.ys-form .field-checkbox-dates .ui-datepicker-calendar th a,
.ys-form .field-checkbox-dates .ui-datepicker-calendar td a,
.ys-form .field-checkbox-dates .ui-datepicker-calendar th span,
.ys-form .field-checkbox-dates .ui-datepicker-calendar td span {
	color: #444;
    display: flex;
	width: 30px;
    height: 30px;
	cursor: default;
	justify-content: center;
    align-items: center;
}
.ys-form .field-checkbox-dates .ui-datepicker-calendar th a,
.ys-form .field-checkbox-dates .ui-datepicker-calendar td a {
	text-decoration: none;
	cursor: pointer;
}
.ys-form .field-checkbox-dates .ui-datepicker-calendar td.ui-state-disabled span {
	color: #bbb;
	background: #efefef;
}
.ys-form .field-checkbox-dates .ui-datepicker-calendar td.date-select a {
	color: #fff;
	background: #006BB0;
}
.ys-form .field.phone:after {
    content: '+7';
    position: absolute;
    bottom: 8px;
    left: 11px;
    font-size: 15px;
    font-family: 'Inter';
    padding: 2px 5px;
    border-radius: 3px;
}
.ys-form .field.phone input {
    padding: 0 15px 0 40px;
}
@media(any-hover: hover){
	.ys-form .field-checkbox-dates .ui-datepicker-header .ui-corner-all:hover span {
		border-left: 2px solid #333;
		border-bottom: 2px solid #333;
	}
	.ys-form .field-files .files > div:hover {
		background-image: unset;
	}
	.ys-form .field-files .files > div:hover .btn-del-file {
		opacity: 1;
	}
	.ys-form .field-files .btn-add-file:hover label {
		color: #000;
	}
	.ys-form .field input:focus::placeholder,
	.ys-form .field textarea:focus::placeholder {
		color: transparent;
	}
	.ys-form .field-select label:hover span {
		color: #000;
	}
	.ys-form .field-select .scroll::-webkit-scrollbar,
	.ys-form .field-multi-select .scroll::-webkit-scrollbar {
		width: 5px;
	}
	.ys-form .field-select .scroll::-webkit-scrollbar-thumb,
	.ys-form .field-multi-select .scroll::-webkit-scrollbar-thumb {
		width: 5px;
		border-radius: 5px;
		background-color: #ddd;
	}
	.ys-form .field textarea::-webkit-scrollbar-track {
		background-color: transparent;
	}
	.ys-form .field-select .scroll::-webkit-scrollbar,
	.ys-form .field-multi-select .scroll::-webkit-scrollbar {
		width: 5px;
	}
	.ys-form .field textarea::-webkit-scrollbar-thumb {
		width: 10px;
		border-radius: 10px;
		background-color: #ddd;
	}
	.ys-form .field textarea::-webkit-scrollbar-track {
		background-color: transparent;
	}
	.ys-form .field input[type=checkbox]:not(:checked):hover + span {
		color: #333;
	}
	.ys-form .field input[type=checkbox]:not(:checked):hover + span::before {
		border: 1px solid #333;
	}
}

/** FOORMS (END) **/


.yoast-breadcrumbs {
    font-size: 14px;
}
.yoast-breadcrumbs a {
    text-decoration: none;
}
@media(max-width: 600px){
	.yoast-breadcrumbs {
		font-size: 12px;
	}
}

b.ys-hint {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #bbb;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    font-weight: 900;
    font-size: 10px;
    color: #fff;
    margin-left: 5px;
}
b.ys-hint.open-modal {
    cursor: pointer;
}