@charset "utf-8";

body {
	position: relative;
	background: var(--colorDark);
	font-family: 'Montserrat';
	color:#fff;
}

:root {
	--colorMain: #cda368;
	--colorLite: #f7f7f7;
	--colorLight: #999;
	--colorDark: #1c1d1f;
}

/**/

.check_mark li::before {
	border: 1px solid var(--colorMain);
	background: var(--colorMain);
}

header a:hover {
	text-decoration: none;
}
/*HEADER*/

.cd-auto-hide-header {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	will-change: transform;
	-webkit-transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
	background: var(--colorDark);
	
}

.top_header {
	height: 45px;
	border-bottom: 1px solid var(--colorMain);
}

.cd-auto-hide-header::after {
	clear: both;
	content: "";
	display: block;
}

.cd-auto-hide-header.is-hidden {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}

.cd-auto-hide-header,
.top_header {
	height: 45px;
}

@media (min-width: 576px) {
	.cd-auto-hide-header,
	.top_header {
		height: 55px;
	}
}

@media (min-width: 992px) {
	.cd-auto-hide-header,
	.top_header {
		height: 80px;
	}
}

@media (min-width: 1200px) {
	.cd-auto-hide-header,
	.top_header {
		height: 90px;
	}
}


/*LOGO*/

.logo {
	float: left;
	display: grid;
	align-items: center;
	height: 100%;
	grid-template-columns: auto auto;
}

.logo_img,.slogan_img {
	height: 100%;
}

.logo_link {
	height: 30px;
}

@media (min-width: 576px) {
	.logo_link {
		height: 40px;
	}
}

@media (min-width: 768px) {
	.logo_link {
		height: 50px;
	}
}

@media (min-width: 992px) {
	.logo_link {
		height: 60px;
	}
}

@media (min-width: 1200px) {
	.logo_link {
		height: 80px;
	}
}
.logo_img.bg_img_white {
  display: none;
}

.slogan_site {
	height: 33px;
	display: none;
	padding-left: 5px;
	font-size: 0.8rem;
	line-height: 0.8rem
}

@media (min-width: 768px) {
	.slogan_site {
		display: block;
	}
}

@media (min-width: 1200px) {
	.slogan_site {
		height: 30px;
		padding-top: 7px;
	}
}


/**/

/*RIGHT_BLOCK*/


.right_block {
	display: grid;
	align-items: center;
	height: 100%;
	justify-items: end;
	max-width: calc(90vw);
}

.block_function > .d-table-cell > * {
	padding-left: calc(1vw);
	padding-right: 0;
}

@media only screen and (min-width:1024px) {
	.block_function > .d-table-cell > * {
		padding-left: calc(1.5vw);
		padding-right: 0;
	}
}

@media only screen and (min-width:1200px) {
	.block_function > .d-table-cell > * {
		padding-left: calc(2vw);
		padding-right: 0;
	}
}

/*search*/


/*search*/

.search_input {
	border: none;
	border-bottom: 2px solid var(--colorMain);
	padding: 5px 30px 5px 0;
	font-size: 1rem;
	background: none;
	width: 100%;
	color: #fff;
}

.search_item {
	display: flex;
	align-items: center;
	position: inherit;
}

@media (min-width:992px) {
	.search_item {
		position: relative;
	}
}

.search_button {
	background: no-repeat;
	border: none;
	font-size: 1.2rem;
	padding: 0;
	display: block;
	color: var(--colorMain);
	line-height: 1.2rem;
}

.search_button:hover {
	color: var(--colorMain);
	text-shadow: 0 0 1px #f2f2f2;
}

@media (min-width:576px) {
	.search_button {
		font-size: 1.4rem;
	}
}

@media (min-width:768px) {
	.search_button {
		font-size: 1.6rem;
	}
}

@media only screen and (min-width:992px) {
	.search_button {
		display: none;
	}
}

.form_search {
	padding: 10px 15px;
	background-color:  var(--colorDark);
	position: absolute;
	display: none;
	right: 0;
	top: 45px;
	width: 100%;
	box-shadow: 0 5px 10px rgba(255, 255, 255, 0.05);
	color: #fff
}

@media only screen and (min-width:576px) {
	.form_search {
		top: 55px;
	}
}

@media only screen and (min-width:992px) {
	.form_search {
		padding: 0;
		background: none;
		display: block;
		position: relative;
		right: auto;
		top: auto;
		width: auto;
		box-shadow: none;
		border-top: none;
	}
}



@media only screen and (min-width:992px) {
	.search_input {
		height: 0;
		width: 0;
		padding: 9px;
		border: none;
		border: 1px solid var(--colorMain);
		outline: none;
		transition: .5s cubic-bezier(0, 0.8, 0, 1);
		position: absolute;
		top: -5px;
		right: 5px;
		z-index: 1;
		border-radius: 50%;
		cursor: pointer;
	}

	.search_input:focus {
		width: calc(50vw);
		z-index: 1;
		border: 1px solid var(--colorMain);
		border-radius: 0;
		padding: 20px;
		top: -9px;
		cursor: auto;
		background: var(--colorDark);
		color: #fff
	}

	.search_label {
		border-bottom: 2px solid var(--colorMain);
		width: 7px;
		position: absolute;
		bottom: 0px;
		transform: skewY(50deg);
		right: 3px;
		transition: .4s cubic-bezier(0, 0.8, 0, 1);
	}

	.search_input:focus + .search_label {
		width: 0;
	}

	.form_search {
		height: 26px;
		width: 26px;
	}
	.search_input:focus,
	.form_search:hover .search_input,
	.form_search:hover .search_label {
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
		border-color: var(--colorMain);
	}
}





/*phone*/

.phone_links {
	display: flex;
	align-items: center;
}

.phone_ic_screen {
	display: none;
	font-size: 1.7rem;
	color: var(--colorMain);
	padding-right: 10px;
}

.phone_button i {
	color: var(--colorMain);
}

.phone_button:hover i {
	color: var(--colorMain);
}

@media only screen and (min-width:992px) {
	.phone_ic_screen {
		display: block;
	}
}

.phone_line > * {
	font-size: 0.75rem;
	display: block;
}

.phone_button {
	display: block;
	background: none;
	border: none;
	padding: 0;
	font-size: 1.4rem;
	line-height: 1.2rem;
}

@media (min-width: 768px) {
	.phone_button {
		font-size: 1.7rem;
		line-height: 1.8rem;
	}
}

@media only screen and (min-width:992px) {
	.phone_button {
		display: none;
	}
}

.phone_button:hover {
	color: var(--colorMain);
	text-shadow: 0 0 1px #f2f2f2;
}

@media (max-width:575px) {
	.phone_line {
		top: 45px;
	}
}

.phone_number {
	line-height: 0.85rem;
	font-size: 1rem;
}

@media (min-width: 992px) {
	.phone_number {
		line-height: 1rem;
		font-size: 1.1rem;
	}
}
/**/
.phone_mobil_container {
	background-color: var(--colorDark);
	position: absolute;
    right: 0;
    display: none;
    top: 46px;
    z-index: 1;
    width: 100%;
    padding: 10px 15px;
    text-align: center;
    box-shadow: 0 5px 10px rgba(255, 255, 255, 0.05);
	 max-width: 250px;
}






@media only screen and (min-width:576px) {
	.phone_mobil_container {
		top: 55px;
	}
}

@media only screen and (min-width:992px) {
	.phone_mobil_container {
		display: flex;
		position: relative;
		top: 0;
		padding: 0;
		text-align: left;
		background: none;
		width: auto;
		box-shadow: none;
		border-top: none;
		max-width: 100%;
	}
}


.phone_mobil_container > * {
	padding: 5px 0;
	justify-items: center;
	display: grid;
}

@media only screen and (min-width:992px) {
	.phone_mobil_container > * {
		padding-top: 0;
		padding-bottom: 0;
		padding-left: calc(1vw);
		padding-right: 0;
		display: inherit;
	}
}

@media only screen and (min-width:1024px) {
	.phone_mobil_container > * {
		padding-left: calc(1.5vw);
		padding-right: 0;
	}
}

@media only screen and (min-width:1200px) {
	.phone_mobil_container > * {
		padding-left: calc(2vw);
		padding-right: 0;
	}
}

/**/
.soc_ic {
	display: flex;
	align-items: center;
}

.soc_ic > * {
	margin-right: 5px;
}

.icon_mess {
	white-space: nowrap;
	margin: 3px;
	color: #fff;
	border-radius: 50%;
	width: 29px;
	height: 29px;
	display: grid;
	align-items: center;
	justify-items: center;
	text-shadow: 0 1px 3px rgba(0,0,0,0.5);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

@media (min-width:1200px) {
	.icon_mess {
		width: 31px;
		height: 31px;
	}
}

.icon_mess.whatsapp {
	font-size: 1rem;
	padding-bottom: 1px;
	background: #009c00;
	background: -moz-linear-gradient(45deg, #009c00 0%, #00bf00 63%, #00bf00 100%);
	background: -webkit-linear-gradient(45deg, #009c00 0%,#00bf00 63%,#00bf00 100%);
	background: linear-gradient(45deg, #009c00 0%,#4fbe5e 63%,#00bf00 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#009c00', endColorstr='#00bf00',GradientType=1 );
}

.icon_mess.telegram {
	font-size: 1rem;
	transform: rotate(10deg);
	padding-right: 2px;
	background: #0286b7;
	background: -moz-linear-gradient(45deg, #0286b7 0%, #00afe4 63%, #00afe4 100%);
	background: -webkit-linear-gradient(45deg, #0286b7 0%,#00afe4 63%,#00afe4 100%);
	background: linear-gradient(45deg, #0286b7 0%,#00afe4 63%,#00afe4 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0286b7', endColorstr='#00afe4',GradientType=1 );
}
.icon_mess.viber {
	font-size: 1rem;
	padding-bottom: 2px;
	background: #6b42a3;
	background: -moz-radial-gradient(45deg,  #6b42a3 0%, #5b46aa 59%, #915dea 100%);
	background: -webkit-radial-gradient(45deg,  #6b42a3 0%,#5b46aa 59%,#915dea 100%);
	background: radial-gradient(45deg,  #6b42a3 0%,#5b46aa 59%,#915dea 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b42a3', endColorstr='#915dea',GradientType=1 );

}
.icon_mess.max {
	font-size: 1.1rem;
	padding-bottom: 2px;	
	background: #474cfb;
	background: -moz-linear-gradient(-110deg, #00afe4 0%, #474cfb 63%, #6600a0 100%);
	background: -webkit-linear-gradient(-110deg, #00afe4 0%,#474cfb 63%,#6600a0 100%);
	background: linear-gradient(110deg, #00afe4 0%,#474cfb 63%,#6600a0 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#474cfb', endColorstr='#6600a0',GradientType=1 );

}

.soc_ic_link:hover .icon_mess {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.soc_ic_link:hover .icon_mess.telegram {
	background: #fff;
	color: #00afe4;
	border: 1px solid #00afe4;
}

.soc_ic_link:hover .icon_mess.whatsapp {
	background: #fff;
	color: #009c00;
	border: 1px solid #009c00;
}
.soc_ic_link:hover .icon_mess.viber {
	background: #fff;
	color: #6b42a3;
	border: 1px solid #6b42a3;
}
.soc_ic_link:hover .icon_mess.max {
	background: #fff;
	color: #474cfb;
	border: 1px solid #474cfb;
}
/**/


/*MENU*/

/**menu**/	

.cd-secondary-nav {
	background: var(--colorDark);
	display: none;
	height: 0px;
	-webkit-transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
	box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 992px) {
	.cd-secondary-nav {
		height: 46px;
		display: block;
	}
}



/**/

.cont_menu {
	position: relative;
	right: 50%;
	float: right;
}

.top_menu.flex {
	position: relative;
	left: 50%;
	float: left;
}

nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.top_menu a {
	padding: 10px calc(2vw);
	white-space: nowrap;
	display: grid;
	width: 100%;
	height: 45px;
	z-index: 1;
	overflow: hidden;
	align-content: center;
	font-size: 0.9rem;
}

@media only screen and (min-width: 768px) {
	.top_menu > li > a {
		line-height: 1.6rem;
	}
}

.top_menu.flex > li > a.effect_2w::after {
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}

.top_menu.flex > li > a.effect_2w:hover::after, 
.top_menu.flex > li.active > a.effect_2w::after {
	-webkit-transform: translateY(-12px);
	-moz-transform: translateY(-12px);
	transform: translateY(-12px);
}

.top_menu > li > a.active, 
.sub_menu a:hover {
	position: relative;
}
/**/

.sub_menu,
.flex_menu {
	position: absolute;
	z-index: 5;
	min-width: 150px;
	background: var(--colorDark);
	visibility: hidden;
	opacity: 0;
	width: auto;
	text-align: left;
	top: 45px;
	-webkit-transition: all 0.1s ease-in-out 0s;
	-moz-transition: all 0.1s ease-in-out 0s;
	-o-transition: all 0.1s ease-in-out 0s;
	-ms-transition: all 0.1s ease-in-out 0s;
	transition: all 0.1s ease-in-out 0s;
	padding: 0;
	box-shadow: 0 0px 8px rgba(0, 0, 0, 0.1);
}
.sub_menu {
	text-align: left;
	left: 0;
}
.flex_menu {	
	text-align: right;
	right: 0;
}

.sub_menu li,
.flex_menu li {
	position: relative;
}

.sub_menu li a, 
.flex_menu li a {
	position: relative;
	border-bottom: 1px solid var(--colorMain);
}

.sub_menu li:last-of-type a, 
.flex_menu li:last-of-type a {
	border-bottom: none;
}


.sub_menu li.active a,
.flex_menu li.active a {
	color: #fff;
}

.sub_menu .sub_menu,
.flex_menu .flex_menu {
	position: absolute;
	left: 100%;
	top: -1px;
}
.sub_menu li,
.flex_menu li {
	height: auto;
}
nav li:hover > .sub_menu,
nav li:hover > .flex_menu {
	transform: rotateX(0deg);
	visibility: visible;
	opacity: 1;
}

.top_menu > li {
	float: left;
	position: relative;
	margin-right: 1px;
}
.flex_menu li a {
	text-align: right;
}
/**/
.flex-multi {
	float: left;
	width: 45%;
	margin-bottom: 100px;
}

.flex-multi + .flex-multi {
	float: right;
}

.flexMenu-viewMore {
	height: 45px;
	cursor: pointer;
}

.flexMenu-viewMore a {
	height: 100%;
}
.flexMenu-viewMore > a {
	align-content: baseline;
}
.flexMenu-viewMore > a::before {
	content: "°°°";
	line-height: 1px;
	font-size: 1.5rem;
	position: relative;
	top: 16px;
	font-weight: 300;
}
.active_flex .a_active::before,
.flexMenu-viewMore > a:hover,
.flexMenu-viewMore > a.a_active {
	color: #fff;
}

.flexMenu-viewMore.active:hover {
	-webkit-transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}



.top_menu .a_active {
	color: #fff;
}


.a_active::after,
.active_flex .a_active::after {
	height: 100%;
}
/**/

@media only screen and (min-width: 1024px) {
	.menu_mobil {
		display: none;
	}
}

.menu_mobil {
	display: block;
	padding-top: 0;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

@media (min-width: 576px) {
	.menu_mobil {
		padding-top: 0;
	}
}

@media only screen and (min-width: 992px) {
	.menu_mobil {
		display: none;
	}
}

.mob_menu {
	display: none;
	background: var(--colorDark);
	padding: 0;
	height: calc(100vh - 45px);
	overflow: auto;
	width: 100%;
}

.mob_menu li {
	display: block;
	margin: 0;
}

.mob_menu a {
	display: block;
	height: 50px;
	line-height: 50px;
	color: #fff;
	border-top: 1px solid var(--colorMain);
	white-space: nowrap;
	padding-left: 20px;
	padding-right: 20px;
	position: relative;
	background: var(--colorDark);
}

@media (min-width: 576px) {
	.mob_menu a {
		padding-left: 60px;
		padding-right: 60px;
	}
}

.mob_menu a::before, .mob_menu a::after {
	font-size: 1rem;
}

.mob_menu a.phone_link_mob {
	font-size: 1rem;
	border: none;
	display: inline;
	padding: 0;
	text-decoration: none;
}

.phone_mob, .address_mob {
	padding-left: 20px;
	font-size: 0.85rem;
	line-height: 1.3px;
	padding-bottom: 16px;
	padding-top: 5px;
}

@media (min-width: 576px) {
	.phone_mob, .address_mob {
		padding-left: 60px;
	}
}

.phone_mobil {
	padding-top: 10px;
	border-top: 1px solid #f2f2f2;
	/*box-shadow:inset 0 0 10px rgba(0, 0, 0, 0.1);*/
	background: -moz-linear-gradient(top,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 10%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 10%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 10%,rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4d000000', endColorstr='#00000000',GradientType=0 );
}

.phone_mob i, .address_mob i {
	padding-right: 10px;
	font-size: 1rem;
	color: var(--colorMain);
}

.contact_mobil {
	max-width: 320px;
	margin: 0 auto;
	padding: 20px;
}

.contact_mobil > * {
	width: 100%;
	padding: calc(1vw);
}

@media only screen and (min-width:576px) {
	.contact_mobil > * {
		width: 50%;
		justify-content: center;
	}
}
/**/
.burger_link {
	float: left;
}
/**/
/*nav-trigger*/
.cd-auto-hide-header .nav-trigger {
	display: grid;
	padding: 0;
	text-transform: uppercase;
	text-align: center;
	align-items: center;
	height: 45px;
	font-size: 1rem;
	width: 30px;
}

@media (min-width: 576px) {
	.cd-auto-hide-header .nav-trigger {
		height: 55px;
		font-size: 1.2rem;
		width: 40px;
	}
}

.cd-auto-hide-header .nav-trigger span {
	display: table-cell;
	vertical-align: middle;
}
/**/
.cd-auto-hide-header .nav-trigger em, 
.cd-auto-hide-header .nav-trigger em::after, 
.cd-auto-hide-header .nav-trigger em::before {
	display: block;
	position: relative;
	height: 2px;
	background-color: var(--colorMain);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	left: 0;
}

.cd-auto-hide-header .nav-trigger em {
	width: 16px;
}

.cd-auto-hide-header .nav-trigger em::after {
	width: 22px;
}

.cd-auto-hide-header .nav-trigger em::before {
	width: 22px;
}

@media (min-width: 576px) {
	
	.cd-auto-hide-header .nav-trigger em {
		width: 19px;
	}

	.cd-auto-hide-header .nav-trigger em::after {
		width: 25px;
	}

	.cd-auto-hide-header .nav-trigger em::before {
		width: 25px;
	}
}

/**/
.cd-auto-hide-header .nav-trigger em {
	/*margin: 0 auto;*/
	-webkit-transition: background-color .2s;
	transition: background-color .2s;
}

.cd-auto-hide-header .nav-trigger em::before, .cd-auto-hide-header .nav-trigger em::after {
	position: absolute;
	content: '';
	right: 0;
	-webkit-transition: -webkit-transform .2s;
	transition: -webkit-transform .2s;
	transition: transform .2s;
	transition: transform .2s, -webkit-transform .2s;
}

.cd-auto-hide-header .nav-trigger em::before {
	-webkit-transform: translateY(-6px);
	-ms-transform: translateY(-6px);
	-o-transform: translateY(6px);
	-moz-transform: translateY(6px);
	transform: translateY(-6px);
}

.cd-auto-hide-header .nav-trigger em::after {
	-webkit-transform: translateY(6px);
	-ms-transform: translateY(6px);
	-o-transform: translateY(6px);
	-moz-transform: translateY(6px);
	transform: translateY(6px);
}

@media only screen and (min-width: 992px) {
	.cd-auto-hide-header .nav-trigger {
		display: none;
	}
}

.cd-auto-hide-header.nav-open .nav-trigger em {
	background-color: rgba(255, 255, 255, 0);
}

.cd-auto-hide-header.nav-open .nav-trigger em::before {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(-45deg);
}

.cd-auto-hide-header.nav-open .nav-trigger em::after {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

/*multilevel*/
ul.mob_nav {
	padding: 0;
	margin: 0;
}

ul.mob_nav ul {
	display: none;
	margin: 0;
	padding: 0;
}

ul.mob_nav ul li {
	clear: both;
	margin: 0;
	padding: 0;
}

.mob_menu ul.mob_nav ul li a {
	padding-left: 50px;
}

@media (min-width: 576px) {
	.mob_menu ul.mob_nav ul li a {
		padding-left: 90px;
	}
}

.transform_top::after {
	content: "\e978";
}

.transform_bottom::after {
	content: "\e97a";
}

.transform_top::after,
.transform_bottom::after {
	font-family: FontAravana;
	position: absolute;
	top: 0;
	right: 30px;
	font-size: 0.8rem;
}

@media (min-width: 576px) {
	.transform_top::after,
	.transform_bottom::after {
		right: 60px;
	}
}
/**/

.contact_mobil {
	padding-left: 20px;
	padding-right: 20px;
}

@media (min-width: 576px) {
	.contact_mobil {
		padding-left: 60px;
		padding-right: 60px;
	}
}

.contact_mobil a {
	border: none;
	padding: 0;
}


/*MAIN*/

.cd-main-content {
	overflow: hidden;
}

.cd-main-content {
	padding-top: 45px;
}

@media (min-width: 576px) {
	.cd-main-content {
		padding-top:55px;
	}
}

@media (min-width: 992px) {
	.cd-main-content {
		padding-top: 135px;
	}
}





/*SLIDER*/

/*SLIDER*/

.slider {
	position: relative;
}

.slide_image,.banner_block {
	height: calc(100vh - 45px);
}

@media (min-width: 576px) {
	.slide_image,.banner_block {
		height: calc(100vh - 55px);
	}
}

@media  (min-width: 992px) {
	.slide_image,.banner_block {
		height: calc(100vh - 80px);
	}
}

@media only screen and (min-width: 1200px) {
	.slide_image,.banner_block {
		height: calc(100vh - 135px);
	}
}





.slider-header .slick-next-carousel, .slider-header .slick-prev-carousel {
	top: 45%;
}

.slide_image {
	position: relative;
}

.slick-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slide_overflow {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background: rgba(0, 0, 0, 0.4);
	-webkit-transition: .4s;
	-moz-transform: .4s;
	-o-transition: .4s;
	transition: .4s;
	opacity: 1;
	z-index: 0;
}

/*slid_title*/

.static_form {
	position: absolute;
	width: 100%;
	height:1px;
	top: calc(10vh);
}
@media (min-width: 576px) {
	.static_form {
		top: calc(20vh);
	}
}

@media  (min-width: 992px) {
	.static_form {
		top: calc(30vh);
	}
}
.slid_link {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0 15px;
	max-width: 800px;
}

@media (max-width:767px) {
	.slid_link {
		padding: 15px;
	}
}

.name_slid {
	font-size: 1.5rem;
	line-height: calc(2rem);
}

@media (min-width:768px) {
	.name_slid {
		font-size: calc(3vw);
		line-height: calc(4vw);
	}
}

.subtit_slid {
	font-size: 1.4rem;
	padding: 10px 0;
}

@media (min-width:768px) {
	.subtit_slid {
		font-size: calc(2vw);
	}
}

.slid_info {
	max-width: 500px;
	margin-bottom: 30px;
}

.slick-dots.dots_header {
	position: relative;
	bottom: 0;
}

.dotsHeader {
	height: 1px;
	display: grid;
	position: absolute;
	bottom: 50px;
	width: 100%;
}
/*dots*/
.slick-dots li button::before {
    width: 12px;
    height: 12px;
    border: 1px solid var(--colorMain);
    background: var(--colorMain);
    margin-top: 0;
    opacity: 0.7;
}
.slick-dots li.slick-active button::before {
    opacity: 1;
    color: var(--colorMain);
    background: var(--colorMain);
    border: 1px solid var(--colorMain);
    width: 12px;
    height: 12px;
    margin: 0;
    left: 0;
    top: 0;
}

.slick-dots.dots_white li button::before {
	border: 1px solid #fff;
	background: #fff;
}

.slick-dots.dots_white li.slick-active button::before {
	color: #fff;
	background: #fff;
	border: 1px solid #fff;
}

.slick-dots.dots_main li button::before {
	border: 1px solid var(--colorMain);
	background: var(--colorMain);
}

.slick-dots.dots_main li.slick-active button::before {
	color: var(--colorMain);
	background: var(--colorMain);
	border: 1px solid var(--colorMain);
}
/**/


.dotsHeader .slick-dots {
	text-align: center;
}

/**/
.btn_manager {
	position: absolute;
	bottom: 50px;
	width: 100%;
	height: 0;
}
.btn_circle {
	position: absolute;
	right: 15px;
	background: var(--colorMain);
	border-radius: 50%;
	bottom: 0;
	overflow: hidden;
	display: grid;
	align-items: center;
	justify-items: center;
	text-align: center;
    border: 1px solid var(--colorMain);
}
.btn_circle::after {
  border-radius: 50%;
}
.btn_modal_circle {
	display: grid;
	width: 100%;
	height: 100%;
	padding: 8px;
	color: #fff;
	line-height: 1rem;
	font-size: 0.7rem;
}
@media (min-width:768px) {
	.btn_modal_circle {
		line-height: 1.1rem;
		font-size: 0.9rem;
		padding: 15px;
	}
}
@media (min-width:992px) {
	.btn_modal_circle {
		line-height: 1.2rem;
		font-size: 1rem;
		padding: 15px;
	}
}
.ic_btn_manager {
  font-size: 2rem;
  line-height: 0;
  display: grid;
  align-items: center;
}
@media (min-width:768px) {
	.ic_btn_manager {
		font-size: 2.3rem;
	}
}
@media (min-width:992px) {
	.ic_btn_manager {
		font-size: 2.5rem;
	}
}
/**/
.slide_video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
/**/
/*ABOUT*/
.about {
  z-index: 1;
  position: relative;
  background: var(--colorDark);
}
.about_content {
	display: grid;
	align-items: center;
}
.about_text {
  display: grid;
  align-items: center;
  height: 100%;
	max-width: 700px;
	padding: 15px;
}
@media only screen and (min-width: 768px) {
	.aboutInfo {
		max-height: 500px;
	}
}
.about_image {
	display: none;
}
@media only screen and (min-width: 768px) {
	.about_image{
		display: block;
		clip-path: ellipse(90% 100% at 0% 50%);
		-webkit-clip-path: ellipse(90% 100% at 0% 50%);
	}
}
/**/
.aboutInfo {
  display: grid;
  align-items: center;
  height: 100%;
	max-width: 700px;
	padding: 15px;
}
@media only screen and (min-width: 768px) {
	.aboutInfo {
		max-height: 700px;
	}
}
.aboutImg {
	display: none;
}
@media only screen and (min-width: 768px) {
	.aboutImg{
		display: block;
		clip-path: ellipse(90% 100% at 0% 50%);
		-webkit-clip-path: ellipse(90% 100% at 0% 50%);
	}
}

/*btn_site*/
.btn_width {
	max-width: 300px;
}

.btn_site {
	display: block;
	position: relative;
	transition: all .3s cubic-bezier(.2, 0, 0, 1);
	z-index: 0;
	background-color: var(--colorMain);
	color: #000;
	padding: 15px 25px;
	border: 2px solid var(--colorMain);
	border-radius: 30px;
	text-align: center;
}
.btn_site::after {
  border-radius: 30px;
}
.btn_site.btn_white {
	color: var(--colorMain);
	border: 2px solid  var(--colorMain);
	background: #fff;
}
.btn_site.btn_main {
	color: #fff;
	border: 2px solid  var(--colorMain);
	background: var(--colorMain);
}

.btn_site:hover {
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.btn_site.btn_main:hover {
	color: var(--colorMain);
}

.btn_site.btn_white:hover {
	color: #fff;
}
/**/
.btn_flex {
  display: flex;
  align-items: center;
	justify-content: center
}
.btn_ic {
  font-size: 2rem;
  line-height: 0;
  padding-right: 10px;
}


/**/
/*CATALOG*/
.catalog {
	background: #151618 url("../img/bgCatalog.png") no-repeat bottom left/contain;
}

.catalogImg {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
	z-index: 1;
}

.catalogImg img {
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  object-position: center;
	z-index: 0;
	
}
/***/
.catalogImg .imgNorm,
.catalogImg:hover .imgHover{
  opacity: 1;
}

.catalogImg .imgHover,
.catalogImg:hover .imgNorm{
  opacity: 0;
}

/****/
.catalogImg img.imgOver:first-child {
	z-index: 1;
	
}
.catalogImg:hover img.imgOver.img_site:first-child {
	opacity: 0;
	z-index: 1;
}
 /**/
.catProductName {
  position: absolute;
  z-index: 1;
  top: 15px;
  left: 50px;
	opacity: 0.7
}
.catalogLink:hover .catProductName {
	opacity: 1
}

/*NEWS*/

.news {
	background: #151618 url("../img/bgCatalog.png") no-repeat bottom left/cover;
}

.newsItem {
	width: 100%;
	display: grid;
	border: 1px solid var(--colorMain);
}
@media only screen and (min-width: 475px) {
	.newsItem{
		grid-template-columns: 35% auto;
	}
}

.dotsNews {
  position: relative;
}

.slick-dots.dots_site li button::before {
	background: none;
}

.slick-dots.dots_site li.slick-active button::before {
	color: var(--colorMain);
	background: var(--colorMain);
	border: 1px solid var(--colorMain);
}



/*FOOTER*/
.footer {
	position: relative;
	padding: 20px 0;
}

.logo_footer {
  height: 70px;
}
.logo_footer .logo_link {
	display: grid;
}

.logo_footer .slogan_site {
  display: block;
}
@media (max-width:991.99px) and (min-width: 576px){
	.logo_footer .logo_site {
		font-size: 2rem;
	}
}
.contact > * {
    font-size: 0.75rem;
    
}
@media (min-width: 992px){
	.contact > * {
		font-size: 0.9rem;
	}
}

.footer_menu {
	list-style: none;
	padding: 0;
}

.footer_menu li {
	padding: 5px 0;
}

.foot_link {
	opacity: 0.8;
}

.foot_link:hover {
	opacity: 1;
}
/**/

.foot_phone a {
	font-size: 1.2rem;
	padding-top: 10px;
	display: inline-block;
	line-height: 1.8rem;
}

@media (max-width:991px) {
	.foot_phone a {
		padding-top: 5px;
	}
}

.foot_email {
	padding-top: 10px;
}

.foot_address {
	padding-top: 10px;
	opacity: 0.8;
}

.foot_pay {
	padding-top: 10px;
}
/**/


.postfooter_copyright {
	font-size: 0.75rem;
	line-heght:1rem;
	padding: 15px 0;
}

@media only screen and (min-width:768px) {
	.copyright.right_copyright {
		text-align: right;
	}
}

.copyright,.copyright > * {
	opacity: 0.8;
}

.copyright > a:hover {
	opacity: 1;
}




/*foot_modil*/
.acc_footer {
	width: 100%;
	padding: 7px 0;
	background: none;
	position: relative;
	border: none;
	border-bottom: 1px solid var(--colorDark);
	font-size: 0.8rem;
	text-align: left;
	opacity: 0.8;
}

.acc_footer.active {
	opacity: 1;
}

.acc_footer::after {
	content: "\e978";
	font-family: FontAravana;
	position: absolute;
	top: 8px;
	right: 0;
	font-size: 0.6rem;
}

.acc_footer.active::after {
	content: "\e97a";
}
.acc_footer:focus:focus-visible {
  outline: 0;
}
.acc_footer:focus,.acc_footer:focus-visible {
  outline: 0;
}
.panel.acc_panel {
	background: none;
	padding: 0;
}

.panel {
	padding: 0 18px;
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

@media (min-width:768px) {
	.panel {
		max-height: 100%;
		overflow: inherit;
	}
}

@media only screen and (min-width:768px) {
	.acc_footer {
		display: none;
	}
}
.contact_tit {
	padding-top: 10px;
	display: none;
}
@media only screen and (min-width:768px) {
	.contact_tit {
		display: block;
	}
}
.foot_border {
  width: 100%;
  height: 1px;
  margin-top: 20px;
  background: var(--colorDark);
  opacity: 0.1;
}
/**/
a.scrollup, a.scrollup:focus {
	position: fixed;
	width: 38px;
	height: 34px;
	bottom: 45px;
	right: 53px;
	background: var(--colorDark);
	border: 1px solid var(--colorMain);
	display: none;
	z-index: 2;
	outline: 0;
	text-align: center;
	color: #fff;
	width: 45px;
	height: 45px;
	border-radius: 50%;
}

a.scrollup:hover,
a.scrollup:active {
	opacity: 1;
	text-decoration: none;
	background: #fff;
	border: 1px solid var(--colorMain);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

a.scrollup i {
	padding-bottom: 4px;
	color: var(--colorMain);
	font-size: 1.2rem;
	display: grid;
	width: 100%;
	height: 100%;
	justify-items: center;
	align-items: center;
	border-radius: 50%;
}

a.scrollup i:hover {
	text-decoration: none;
	color: var(--colorMain);
}
/**/


/*TOP_MAIN*/
.top_main {
  background: url("../img/bgTopMain.jpg") no-repeat center/ 100%;
	position: relative;
}
.top_main_box {
	padding: calc(3%) 0;
	z-index: 1;
	position: relative;
}
/**/
.top_main_img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.title_bg {
  position: relative;
}

/**/

.B_crumbBox {
	display: flex;
	align-items: center;
	flex-flow: row wrap;
	font-size: 0.6rem;
}
@media (min-width:768px) {
	.B_crumbBox {
		font-size: 0.8rem;
	}
}
.B_crumbBox span {
	white-space: nowrap;
}
.B_crumbBox a,.B_currentCrumb {
	opacity: 0.8
}
.B_crumbBox a:hover {
	opacity: 1;
    color:inherit;
}
.dost_brea {
	font-size: 8px;
	padding: 2px 5px 0;
}
.dost_brea i {
	opacity: 0.5
}


/*CATALOG_PAGE*/

/*FILTER_MENU*/
	
.filter_category {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
}

.filter_menu.flex {
    position: relative;
    margin: 0;
    list-style: none;
	padding: 0;
}

.filter_menu > li {
    float: left;
}
.filter_menu a {
  white-space: nowrap;
  
}
.filter_menu > li:first-child a {
	padding-left: 0;
}
.filter_menu > li > a {
     padding: 15px;
	display: grid;
}

.filter_menu a:after {
	content: '';
	display: block;
	height: 0px;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--colorYellow);
	transition: all .3s cubic-bezier(.2, 0, 0, 1);
	transform-origin: bottom center;
	z-index: -1;
}

.filter_menu a:hover:after,
li.active a:after {
	right: 0;
	left: 0;
	height: 100%;
}

.filter_category li.active  .effect_1bl::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}





/**/

.flex_filter {
  z-index: 5;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  width: auto;
  text-align: left;
  left: 0;
  padding: 10px;
  box-shadow: 0 0 7px 0 rgba(0,0,0, 0.1);
  margin-top: -10px;
  list-style: none;
}
.flexFilter-viewMore.flexFilter-allInPopup ul {
  margin-top: 0;
}

.flex_filter li {
	position: relative;
}

.flex_filter li a {
	padding: 2px 5px;
	position: relative;
	color: var(--colorDark);
    text-align: left;
}

.filter_menu li:hover > .flex_filter {
	transform: rotateX(0deg);
	visibility: visible;
	opacity: 1;
}

.flexFilter-viewMore > a::before {
  content: "•••";
  position: relative;
  font-size: 1.5rem;
  line-height: 1.5rem;
	padding: 0;
}

.filter_menu .a_active, 
.filter_menu .a_hover:hover {
  color: var(--colorMain);
}
.flexFilter-viewMore.flexFilter-allInPopup > a {
  display: flex;
  background: var(--colorMain);
	border: 1px solid var(--colorMain);
  padding: 7px 15px;
  color: #fff;
  font-weight: 100;
}
.flexFilter-viewMore.flexFilter-allInPopup > a::before {
	content: "\e909";
	font-family: 'FontAravanalora';
	padding-right: 5px;
	padding-left: 15px;
}
.flexFilter-viewMore.flexFilter-allInPopup > a:hover,
.flexFilter-viewMore.flexFilter-allInPopup > a.a_active {
	background: #fff;
	color: var(--colorMain);
}
.flex_filter li {
	border-bottom: 1px solid #fff;
}


.flexFilter-viewMore {
	cursor: pointer;
	position: relative;
}



.flexFilter-viewMore.active:hover {
	-webkit-transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}
/**/

.filter_menu.flex > li.active:first-child a::after {
    background: none;
}
.filter_menu.flex > li.active_all:first-child a::after {
    background:var(--colorMain);
	height: 100%;
}
/**/
.flex_label {
  padding: 15px;
  margin: 0;
	font-size: 1rem;
	cursor: pointer;
}
.filter_menu li:first-child:not(.flex_filter li) label.flex_label {
	padding-left: 0;
}
.flex_label input {
  position: absolute;
  opacity: 0;
  display: none;
}
.flex_label input:checked ~ .effect_1bl::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}

.flex_filter .flex_label {
  padding: 2px 5px;
  position: relative;
  color: var(--colorDark);
  text-align: left;
}

/**/
.cat_info {
  display: grid;
  align-items: center;
  justify-items: end;  
	padding-left: 30px;
}
/**/
.filter_sort_box {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
}
/**/
.sorting_item {
  max-width: 300px;
}

/*select*/
.sel_box {
	width: 100%;
}
.select2-container--default .select2-selection--single,.select2-dropdown {
	background-color: #fff;
	border: 1px solid var(--colorMain);
	border-radius: 0;
}
.select2-container .select2-selection--single {
	height: 40px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
	padding: 5px 20px 5px 8px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 100%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: var(--colorMain) transparent transparent transparent;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent var(--colorMain) transparent;
}
.select2-container--default .select2-results__option[aria-selected="true"] {
	background-color: #fff;
	color: var(--colorMain);
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: var(--colorMain);
	color: #fff;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
	border: 1px solid var(--colorLite);
}
.select2-dropdown {
	z-index: 1;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: none;
    border-width: 0;
    height: 100%;
    right: 0;
    margin-left: 0;
    margin-top: 0;
    position: absolute;
    top: 0;
    width: 0;
	
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: none;
    border-width: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b:before {
    content: "\e905";
    font-family: FontAravanalora;
	color: var(--colorMain);
	top: 50%;
	position: absolute;
	right: 0;
	font-size: 0.8rem;
	transform: translate(0, -50%)
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b:before {
	 content: "\e908";
}
.select2-container{
    font-size: 1rem;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--colorMain);
    display: grid;
    align-items: center;
    height: 100%;
}
/**/


/*catalog_preview*/



.product_item {
	position: relative;
	background: #fff;
	webkit-transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
	border: 2px solid #fff;
	margin: 0;
	padding: 10px;
}


.product_item:hover {
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
	border: 2px solid var(--colorMain);
}

/**/
.product_ic {
    position: absolute;
    z-index: 1;
    right: 20px;
    top: 15px;
}
.product_ic a {
    font-size: 1.5rem;
    color: #fff;
}
.product_ic a:hover,
.product_ic a.active{
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5)
	}
/**/
.product_title {
  position: absolute;
  z-index: 1;
  left: 15px;
  bottom: 15px;
  color: #fff;
}
/**/
.product_img {
	position: relative;
	overflow: hidden;
}



.product_scale {
	position: relative;
	z-index: 0;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	-webkit-transition: all .5s ease-in-out;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	height: 100%;
	width: 100%;
}

.product_item:hover .product_scale {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
}

.product_shortinfo {
	padding: 10px 0;
	color: var(--colorLight);
	font-size: 0.7rem;
}

@media (min-width:768px) {
	.product_shortinfo {
		font-size: 0.8rem;
	}
}


.old_price {
	text-decoration: line-through;
	font-size: 0.8rem;
	padding-right: 10px;
	font-weight: normal;
}
@media (min-width:576px) {
	.old_price {
		font-size: 0.9rem;
	}
}
@media (min-width:1200px) {
	.old_price {
		font-size: 1.1rem;
	}
}

.new_price,.price_ruble {
	font-size: 1.1rem;
	padding-right: 10px;
	font-weight: bold;
	color: var(--colorDark);
}
@media (min-width:576px) {
	.new_price {
		font-size: 1.2rem;
	}
}
@media (min-width:1200px) {
	.new_price {
		font-size: 1.3rem;
	}
}

/**/
.btn.btn_site.btn_page_catalog {
	font-size: 0.8rem;
	max-width: 250px;
	display: grid;
}
.btn.btn_site.btn_page_basket {
 font-size: 0.8rem;
	display: grid;
	width: calc(100% - 20px);
	cursor: pointer;
	padding: 12px 0;	
}

.btn_width_two_column {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 0 -10px;
}


/*PRODUCT_PAGE*/
.productSlider {
  overflow: hidden;
}
.slider {
	margin: -5px;
}
.slidImgProduct {
	margin: 5px;
}

/**/
.sortItem {
	display: grid;
	grid-template-columns: 50% 50%;
	align-items: center;
}
/**/

.selectSelectedAravana {
	background: var(--colorDark);
	border: 1px solid #fff;
}

.selectItems {
  background-color: var(--colorDark);
  border: 1px solid !important;
  padding: 10px;
}

.check.checkInput.checkSelect {
	padding: 0;
	font-size: 0.9rem;
	margin: 0;
}
.sizeOptions {
  margin: 5px 0;
}
/**/

/**/
.tabs_body {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	margin-top: 15px;
}
.card-body {
  padding: 15px;
}
.card {
  border: none;
}
.nav.nav-tabs{
	display: grid;
	grid-template-columns: auto auto;
	border: none;
}
@media only screen and (min-width:475px) {
	.nav.nav-tabs{
		display: flex;
		flex-flow: wrap row;
		border: none;
	}
}

.nav_link {
	font-size: 1rem;
	text-align: left;
	overflow: hidden;
}

.nav-item {
	 padding: 5px 0;
}

@media only screen and (min-width:475px) {
	.nav-item {
		padding: 10px 15px 10px 0;
	}
}
@media only screen and (min-width:768px) {
	.nav-item {
		padding: 10px calc(3vw) 10px 0;
	}
}

.nav_link.active,
.nav_link:hover,
.scrollto:hover{
	color: var(--colorMain);
}


.info_scrolltop{
	display: grid;
	grid-template-columns: auto auto;
}
@media only screen and (min-width:576px) {
	
	.info_scrolltop{
		display: flex;
		flex-flow: wrap row;
	}
}
/**/
@media (min-width:475px){
	.tabs_data_list.data_list li {
		font-size: 1rem;
		padding: 5px 0;
	}
	.tabs_data_list .data_list_left {
		margin-right: -50%;
		width: 49%;
	}
	.tabs_data_list .data_list_right {
		margin-left: 50%;
		width: 50%;
	}
}
/**/
.product {
	background: #151618 url("../img/bgCatalog.png") no-repeat bottom left/contain;
}
/**/
.individual {
  background: #101112;
}

/*16.11.2025*/
.card_tit {
    font-size: 1.3rem;
    color: #000;
}



.card_list {
    display: block;
	margin: 0;
	padding: 0;
}
.card_list li {
    display: block;
	padding: 5px 0;
	margin: 5px 0;
}
.card_list_left:after {
	content: '';
	display: inline-block;
	width: 100%;
	margin: 0 -99% 0 3px;
	vertical-align: baseline;
	border-bottom: 1px dashed #888;    
}
.card_list_left {
    margin-right: -50%;
	width: 49%;
	vertical-align: top;
	overflow: hidden;
	display: inline-block;
	letter-spacing: normal;
}
.card_list_right {
	display: inline-block;
	letter-spacing: normal;
	padding-left: 3px;
	margin-left: 50%;
	width: 50%;
	vertical-align: bottom;
}
.tovarList:not(:last-child):after {
	content: ',';
	margin-right: 10px;
}

/*07.12.2025*/
.sizeOptions:hover {
	opacity: 1;
}
.sizeOptions {
	opacity: 0.8;
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

/*modal*/

.modal {
    padding: 0 15px;
}
.modal-dialog {
	max-width: 450px;
	margin: 1.75rem auto;
}
.modal-dialog.modal_order {
  max-width: 800px;
}
.modal-content {
	padding: 0;
	background: none;
	border: none;
}
/*Modal_call*/


.modal_form {
    /*border-radius: 15px;*/
    overflow: hidden;
    background: #fff;
	color: var(--colorDark);
}
.form-control.modal_input {
    background: #fff;
    border-color: #bbb;
    margin-bottom: 20px;
    height: calc(2em + .75rem + 2px);
}

.modal-header .close {
	color: var(--colorMain);
}
.modal-header .close:hover {
	color: var(--colorDark);
}
.modal_btn {
    max-width: 300px;
}
.modal_close .close {
	position: absolute;
	right: 10px;
    z-index: 1;
    border: none;
    display: grid;
    align-items: center;
    justify-items: center;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    top: 10px;
}

.close i{
    font-size: 1rem;
	color: var(--colorMain);
}
.close:hover i{
    font-size: 1.2rem;
	color: var(--colorDark);
}
.modal_img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
/**/
.btn_form {
  width: 100%;
  border: 2px solid var(--colorMain);
  cursor: pointer;
  overflow: hidden;
  background: var(--colorMain);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  height: 60px;
}


.btn_form:hover {
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);

	
}
.btn_input {
  height: 100%;
  width: 100%;
  padding: 0;
  position: relative;
  font-size: 0.9rem;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.btn_input:hover {
	color:  var(--colorMain);
	
}
@media only screen and (min-width:768px) {
	.btn_input {
		font-size: 1.1rem;
	}
}
/**/
.btn_box.btn_box_modal {
  max-width: 300px;
}
.btn_big_box.btn_box.btn_box_modal {
  max-width: 100%;
}
.btn_form.btn_form_modal {
  height: 50px;
}

.w_checkbox {
	max-width: 350px
}
.w_checkbox .check {
	padding-right: 0
}


.btn_form {
    transition: all 0.3s ease;
}

.disabled_btn {
    pointer-events: none;
    transition: opacity 0.3s ease;
	cursor: not-allowed;
	opacity: 0.5; 
}


.cursorAuto {
    cursor: default !important;
    opacity: 0.6;
    transition: all 0.3s ease;
}


.btn_disabled {
    pointer-events: none;
    opacity: 0.5;
}


.effect_3w {
    transform: scale(1.03);
    cursor: pointer !important;
    transition: all 0.3s ease;
}

.input_form {
    height: calc(2.5em + .3em + 2px);
}
textarea.textarea_form {
    min-height: 120px;
    resize: none;
}
.form-control.input_form:focus,
.form-control.textarea_form:focus {
    border-color: var(--colorMain);
	
}
.checkmark::after {
  border-color: var(--colorMain) !important;
}
.checkmark {
	border-color: #ddd !important;
}
.btn_form.btn_form_modal::after {
  border-radius: 25px;
}



