:root {
	--la-grey-basic: #121212;
	
	--la-grey-basic-60: #12121299;
	--la-grey-basic-50: #12121280;
	--la-grey-basic-40: #12121266;
	--la-grey-basic-20: #12121233;
	--la-grey-basic-10: #1212121a;
	--la-grey-basic-05: #1212120d;

	--la-text-color-accent: #de262f;
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	height: 100%;
	width: 100%;
	display: flex;
	box-sizing: border-box;

}
body {
	font-family: tahoma;
	margin: 0;
}
body.menu-open {
	overflow: hidden;
}
h1 {
	color: var(--la-grey-basic);
	font-family: 'Geologica';
	font-size: 30px;
	font-weight: normal;
	letter-spacing: -0.01em;
	line-height: 1.17;
	margin: 0;
	text-align: center;
	width: 100%;
}

/* @media (max-width: 1200px) {
	h1 { font-size: 45px; line-height: 52px; }
}
@media (max-width: 900px) {
	h1 { font-size: 35px; line-height: 38px; }
}
@media (max-width: 650px) {
	h1 { font-size: 25px; line-height: 28px; }
} */

.like-h2 {
	color: var(--la-grey-basic);
	font-family: 'Geologica';
	font-size: 21px;
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.65;
	margin: 0;
	text-align: left;
	width: 100%;
}

.dark_overlay {
    background: #000;
    bottom: 0;
    display: none;
    height: 100%;
    left: 0;
    opacity: 0.7;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 20000;
}
.main-wrapper {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	width: 100%;
}

.flex-row, .flex_row {
	align-items: flex-start;
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.flex-column, .flex_column {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.common-text {
	color: #6c6c6c;
	font-family: tahoma;
	font-size: 13px;
	line-height: 17px;
}

.page-text {
	color: #444;
	font-size: 16px;
	line-height: 20px;
	margin: 30px 0;
}

.zoom_image{
	overflow: hidden;
	position: relative;
}

.zoom_image > img{
	transition: .2s;
}

.zoom_image:hover > img{
	transform: scale(1.15);
}

.totop {
	background: url("/images/site/cm_footer_totop.png") no-repeat left center;
	bottom: 100px;
	height: 95px;
	left: 5%;
	opacity: 0;
	outline: none;
	position: fixed;
	transition: 0.7s;
	width: 95px;
	z-index: -1;
}
.totop_visible {
	bottom: 40px;
	opacity: 1;
	transition: 0.7s;
	z-index: 1000;
}

#start{
	position: relative;
	top: -105px;
}


header {
	width: 100%;
}
main {
	flex: 1 0 auto;
	width: 100%;
}
.main > div{
	flex-direction: column !important;
}
footer {
	flex: 0 0 auto;
	width: 100%;
}

/* modal form */

.modal-form {
	background: #eee;
	border-radius: 6px;
	box-sizing: border-box;
	left: 50%;
	margin: 0 auto;
	max-width: 400px;
	opacity: 0;
	padding: 0 0 5px;
	position: absolute;
	top: 0;
	transform: translateX(-50%) translateY(-40px);
	transition: opacity .4s, transform .4s, visibility .4s;
	visibility: hidden;
	width: 95%;
	z-index: 30000;
}
.modal-form.visible {
	transform: translateX(-50%) translateY(0px);
	opacity: 1;
	visibility: visible;
}
.modal-form h2 {
	border: 0;
	color: #fff;
	font-size: 22px;
	font-weight: normal;
	line-height: 30px;
	margin: 15px 0;
	padding: 0 20px;
	text-transform: none;
}

.modal-form h2::after{
	display: none;
}

.modal-form .mf-form-close {
	align-items: center;
	color: var(--la-grey-basic-60);
	cursor: pointer;
	display: flex;
	font-size: 24px;
	height: 40px;
	justify-content: center;
	position: absolute;
	right: 20px;
	top: 16px;
	width: 40px;
	z-index: 10;
}
.modal-form .mf-input-wrapper {
	box-sizing: border-box;
	margin: 0 0 15px 0;
	padding: 0 20px;
	position: relative;
	width: 100%;
	z-index: 30001;
}
.modal-form .mf-input,
.modal-form .mf-textarea,
.modal-form select {
	background: #fff;
	border: 1px solid #fff;
	border-radius: 5px;
	box-sizing: border-box;
	color: var(--la-grey-basic);
	font-family: 'Geologica';
	font-size: 16px;
	outline: none;
	padding: 6px 12px;
	width: 100%;
}
.modal-form .mf-input,
.modal-form select { height: 36px; }
.modal-form .mf-textarea { height: 175px; resize: none; }
.modal-form .mf-input-wrapper input.red-border,
.modal-form .mf-input-wrapper textarea.red-border,
.modal-form .mf-input-wrapper select.red-border {
	border: 1px solid #f00;
}
.modal-form .red-text::-webkit-input-placeholder { color: #f00; opacity: 1; }
.modal-form .red-text::-moz-placeholder { color: #f00; opacity: 1; }
.modal-form .red-text:-ms-input-placeholder { color: #f00; opacity: 1; }
.modal-form .mf-submit {
	background: #fff;
	border: 1px solid #aaa;
	border-radius: 5px;
	clear: both;
	color: #aaa;
	cursor: pointer;
	display: block;
	font-family: 'Tahoma';
	font-size: 18px;
	height: 43px;
	margin: 15px auto;
	overflow: hidden;
	position: relative;
	text-align: center;
	transition: .3s;
	width: 100%;
	z-index: 1;
}
.modal-form .mf-submit:hover {
	background: #aaa;
	color: #fff;
}
.modal-form .mf-submit.success {
	cursor: default;
	pointer-events: none;
}
.modal-form .mf-submit::after {
	align-items: center;
	background-color: #ffc804;
	color: #fff;
	content: attr(data-success);
	display: flex;
	font-family: inherit;
	font-size: inherit;
	height: 100%;
	justify-content: center;
	left: 0;
	position: absolute;
	top: -100%;
	transition: 0.3s cubic-bezier(0.42, 0, 0.58, 1);
	width: 100%;
}
.modal-form .mf-submit.success::after {
	top: 0;
}

/* modal form end */


/* menu-slide */


.menu-slide {
	height: 100%;
	left: 0;
	overflow: hidden;
	position: fixed;
	top: 0;
	transform: translateX(-100%);
	transition: 0.4s;
	width: 100%;
	z-index: 10000;
}
.menu-slide.active {
	transform: translateX(0);
}
.menu-slide .m-control-buttons {
	background: #fffe;
	height: 60px;
	position: relative;
	width: 100%;
}
.menu-slide .m-control-buttons .close-arrow,
.menu-slide .m-control-buttons .close-cross {
	align-items: center;
	cursor: pointer;
	display: flex;
	height: 100%;
	justify-content: center;
	position: absolute;
	top: 0;
	width: 50px;
}
.menu-slide .m-control-buttons .close-arrow { left: 0; }
.menu-slide .m-control-buttons .close-cross { right: 0; }
.menu-slide .m-control-buttons .close-arrow i.fa-chevron-left,
.menu-slide .m-control-buttons .close-cross i.fa-times {
    color: var(--ob-blue);
	font-size: 26px;
}
.menu-slide .m-content {
	background: #fffe;
	height: calc(100% - 60px);
	overflow-y: scroll;
	width: 100%;
}
.menu-slide ul {
	list-style: outside none none;
	margin: 0;
	padding: 0;
}
ul.m-items li {
	position: relative;
}
ul.m-items li.m-item::after {
	border-top: 1px solid var(--ob-blue);
	bottom: 0;
	content: '';
	display: block;
	left: 20px;
	position: absolute;
	width: calc(100% - 40px);
}
ul.m-items li.m-item:last-child::after { display: none; }
.m-item a,
.m-item > .sm-wrap {
	align-items: flex-start;
	box-sizing: border-box;
	color: var(--ob-blue);
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	font-weight: 500;
	justify-content: flex-start;
	padding: 15px 45px 15px 20px;
	text-align: left;
	text-decoration: none;
	width: 100%;
}
.m-item a br,
.m-item > div br { display: none; }
.m-item i.fa-chevron-down {
	color: var(--ob-blue);
	cursor: pointer;
	font-size: 16px;
	padding: 10px 20px;
	position: absolute;
	right: 0;
	top: 6px;
	-webkit-text-stroke: 1px;
}
.m-item .sm-wrap i.fa-chevron-down {
	top: 0;
}
.m-item i.fa-chevron-down.rotated {
	transform: rotateX(180deg);
}
.m-item .sm-wrap {
	display: none;
	padding: 0 0 10px;
}
.m-item .sm-wrap .sm-wrap {
	padding-bottom: 0;
}
.m-item ul {
	position: relative;
}
.m-item ul a {
	padding: 10px 45px 10px 45px;
}
ul.m-items .cr > a,
ul.m-items .cr > div > a {
	background: var(--ob-blue);
	color: #fff;
}
ul.m-items .cr > i,
ul.m-items .cr > div > i {
	color: #fff;
}
.m-item ul ul a {
	padding: 10px 20px 10px 70px;
}

.ms-search {
	height: 100%;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: calc(100% - 100px);
	z-index: 10;
}
.ms-search form {
	background: none;
	border: none;
	border-radius: 50px;
	top: 50%;
	height: 42px;
	left: 0;
	position: absolute;
	transform: translateY(-50%);
	width: 100%;
}
.ms-search form input[type=text] {
	background: none;
	border: 1px solid var(--ob-blue);
	border-radius: 50px;
	box-sizing: border-box;
	color: var(--ob-blue);
	font-size: 14px;
	height: 100%;
	outline: none;
	padding: 0px 45px 0px 15px;
	position: relative;
	transition: 0.3s;
	width: 100%;
}
.ms-search form input[type=text]:focus {
	border-color: var(--ob-blue);
}
.ms-search form *[type=submit] {
	background: none;
	border: none;
	color: var(--ob-blue);
	cursor: pointer;
	font-size: 14px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 46px;
}
.ms-search form *[type=submit]:active {
	color: var(--ob-blue);
}
.ms-search form input[type=text]::-webkit-input-placeholder { color: var(--ob-blue); opacity: 1; }
.ms-search form input[type=text]::-moz-placeholder		  { color: var(--ob-blue); opacity: 1; }
.ms-search form input[type=text]:-ms-input-placeholder	  { color: var(--ob-blue); opacity: 1; }

/* menu-slide end */


/* feedback form */

.fb-open {
	background: var(--ob-orange);
	border-radius: 25px 0 0 25px;
	cursor: pointer;
	height: 290px;
	position: fixed;
	right: -3px;
	top: 50%;
	transform: translateY(-50%);
	transform-origin: 100% 0%;
	transition: right .1s, transform .6s;
	width: 70px;
	z-index: 1000;
}
.fb-open:hover {
	right: 0px;
}
.fb-open.fb-hidden {
	transform: translateY(-50%) translateX(100%);
}
.fb-open-text {
	color: #fff;
	font-family: 'Tahoma';
	font-size: 26px;
	position: absolute;
	left: -66px;
	text-transform: uppercase;
	top: 115px;
	transform: rotate(-90deg);
	width: 200px;
}
.fb-open i.fa-envelope {
	bottom: 15px;
	color: #fff;
	font-size: 30px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}
.fb-hide {
	background: none;
	border: none;
	cursor: pointer;
	height: 50px;
	padding: 0;
	position: fixed;
	right: 5px;
	top: 50%;
	transform: translateY(-200px);
	transition: .6s;
	width: 50px;
	z-index: 1000;
}
.fb-hide i.fa-arrow-right {
    color: #298c2b;
	font-size: 35px;
}

.fb-form .font-common{
	color: #fff;
	font-family: 'Tahoma';
	font-size: 13px;
}

.fb-form .font-common a{
	color: #fff;
	text-decoration: underline;
}

.fb-form .font-common a:hover{
	color: #fff;
	text-decoration: none;
}

.fb-form {
	background: #298c2b;
}
.fb-form .mf-submit {
	background: #298c2b;
	border: 2px solid #fff;
	color: #fff;
}
.fb-form .mf-submit:hover {
	background: #fff;
	color: #298c2b;
}

@media (max-width: 1000px) {
	.fb-open { transform: scale(0.8) translateY(-50%); }
	.fb-open.fb-hidden { transform: scale(0.8) translateY(-50%) translateX(100%); }
	.fb-hide { right: 0px; transform: translateY(-165px); }
	.fb-hide i.fa-arrow-right { font-size: 28px; }
}
@media (max-width: 640px) {
	.fb-open { transform: scale(0.6) translateY(-50%); }
	.fb-open.fb-hidden { transform: scale(0.6) translateY(-50%) translateX(100%); }
	.fb-hide {
		height: 40px;
		transform: translateY(-126px);
		width: 40px;
	}
	.fb-hide i.fa-arrow-right { font-size: 24px; }
}

/* feedback form end */

.for-header {
	gap: 40px 0;
	padding: 40px 0;
}

/* breadcrumbs */

.breadcrumbs {
	box-sizing: border-box !important;
	gap: 0 11px;
	justify-content: flex-start;
	display: flex;
	 flex-wrap: wrap;
	max-width: 2560px;
	padding: 0 40px;
	width: 100%;
}
.bc-text,
a.bc-text {
	color: var(--la-grey-basic);
	font-family: 'Geologica';
	font-size: 15px;
	line-height: 1.6;
	text-decoration: none;
}
a.bc-text {
	color: var(--la-grey-basic-60);
}
a.bc-text:hover {
	color: var(--la-grey-basic);
}

/* breadcrumbs end */

/* shobsi-countercalc */

.shobsi-countercalc-decr,
.shobsi-countercalc-incr{
	align-items: center;
	background-color: #ffffff;
	border: 1px solid #d6d6d6;
	box-sizing: border-box;
	color: #676767;
	cursor: pointer;
	height: 30px;
	justify-content: center;
	user-select: none;
	width: 30px;
}

.shobsi-countercalc-count{
	align-items: center;
	background: #f2f2f2;
	border: 0px;
	border-bottom: 1px solid #d6d6d6;
	border-top: 1px solid #d6d6d6;
	box-sizing: border-box;
	color: #676767;
	font-family: 'Tahoma';
	font-size: 13px;
	height: 30px;
	justify-content: center;
	padding: 0px 5px;
	text-align: center;
	width: 55px;
}

/* shobsi-countercalc end */

/* grecaptcha-badge */

.grecaptcha-badge {
	visibility: collapse !important;
}

/* grecaptcha-badge end */

/* shobsi */

	/* shobsi-admin */

	.shobsi-admin-info{
		background: #C6FFFA;
		color: #444444;
		font-family: 'Tahoma';
		font-size: 12px;
		height: 30px;
		overflow: hidden;
		text-align: center;
		width: 100%;
	}

	/* shobsi-admin end */

/* shobsi end */

/* mpage-product-carousel */

.mpage-product-new,
.mpage-product-hit {
    align-items: center;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 120px;
    width: 100%;
}
.mpage-product-carousel-wrapper {
    box-sizing: border-box;
    gap: 40px 0;
    max-width: 2560px;
    padding: 0 40px;
    width: 100%;
}
.mpage-product-carousel-title {
    align-self: flex-start;
}
.mpage-product-carousel-title span {
    color: var(--la-grey-basic);
    display: block;
    font-family: 'Geologica';
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
}
.mpage-product-carousel-items,
.mpage-product-carousel-items > div,
.mpage-product-carousel-items .products {
    width: 100%;
}
.mpage-product-carousel-items .product-list {
    padding: 0 0;
}
.mpage-product-carousel-items .product-element {
    width: 100%;
}
.mpage-product-carousel-items .product-list.owl-theme .owl-nav {
    align-items: center;
    display: flex;
    gap: 0 24px;
    height: 30px;
    right: 0;
    top: -70px;
    width: fit-content;
}
.mpage-product-carousel-items .product-list.owl-theme .owl-nav [class*='owl-'] {
    background-color: #f5f5f5;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50px;
    height: 24px;
    left: unset;
    opacity: 1;
    position: relative;
    right: unset;
    width: 24px;
}
.mpage-product-carousel-items .product-list.owl-theme .owl-nav .owl-prev{
    background-image: url(/images/site/slider_btn_left_small.svg);
}
.mpage-product-carousel-items .product-list.owl-theme .owl-nav .owl-next{
    background-image: url(/images/site/slider_btn_right_small.svg);
}
.mpage-product-carousel-all {
	align-items: center;
	align-self: center;
	background: #f5f5f5;
	border-radius: 100px;
	color: var(--la-grey-basic);
	display: flex;
	font-family: 'Geologica';
	font-size: 15px;
	justify-content: center;
	line-height: 24px;
	margin-top: 40px;
	padding: 8px 22px;
	text-decoration: none;
	transition: .1s;
}
.mpage-product-carousel-all:hover {
	background: var(--la-grey-basic);
	color: #f5f5f5;
}

/* @media(max-width: 1400px) {
    .mpage-product-carousel-items .product-list.owl-theme .owl-nav .owl-prev{
        bottom: calc(50% - 40px);
        left: -90px;
    }
    .mpage-product-carousel-items .product-list.owl-theme .owl-nav .owl-next{
        bottom: calc(50% - 40px);
        left: auto;
        right: -8px;
    }
}
@media(max-width: 1024px) {
    .mpage-product-carousel-items .product-list.owl-carousel{
        width: 415px;
    }
    .mpage-product-carousel-items .product-list.owl-theme .owl-nav .owl-prev{
        bottom: -50px;
        left: -5px;
        width: 80px;
    }
    .mpage-product-carousel-items .product-list.owl-theme .owl-nav .owl-next{
        bottom: -50px;
        left: auto;
        right: 30px;
        width: 80px;
    }
}
@media(max-width: 450px) {
    .mpage-product-carousel-items .product-list.owl-carousel{
        width: 360px;
    }
} */

/* mpage-product-carousel-items end */

/* buy-one-click-form */

.buy-one-click-form {
	background: #fff;
	border-radius: 12px;
	box-sizing: border-box;
	max-width: 720px;
	padding: 20px;
}
.buy-one-click-form .like-h2 {
	margin-bottom: 15px;
}
.buy-one-click-form .boc-form-body {
	justify-content: space-between;
}
.buy-one-click-form .left-part {
	align-items: flex-start;
	gap: 15px;
	width: 320px;
}
.buy-one-click-form .product-name {
	color: var(--la-grey-basic);
	font-family: 'Geologica';
	font-size: 16px;
	line-height: 1.3;
}
.buy-one-click-form .product-pic {
	border: 1px solid var(--la-grey-basic-20);
	border-radius: 12px;
	box-sizing: border-box;
	display: block;
	width: 100%;
}
.buy-one-click-form .product-price {
	color: var(--la-text-color-accent);
	font-family: 'Geologica';
	font-size: 18px;
	font-weight: 600;
}
.buy-one-click-form form {
	width: 320px;
}
.buy-one-click-form .mf-input-wrapper {
	padding: 0;
}
.buy-one-click-form label {
	color: var(--la-grey-basic-60);
	display: block;
	font-size: 14px;
	font-family: 'Geologica';
	margin-bottom: 3px;
}
.buy-one-click-form label sup {
	color: red;
}
.buy-one-click-form .mf-input,
.buy-one-click-form .mf-textarea {
	border: 1px solid var(--la-grey-basic-20);
	border-radius: 12px;
	height: 40px;
}
.buy-one-click-form .mf-textarea {
	height: 150px;
}
.buy-one-click-form .mf-submit {
	align-items: center;
	background: var(--la-grey-basic);
	border: 2px solid var(--la-grey-basic);
	border-radius: 100px;
	box-sizing: border-box;
	cursor: pointer;
	justify-content: center;
	padding: 10px 22px;
	transition: .2s;
	width: 100%;
}
.buy-one-click-form .mf-submit span {
    color: #fff;
	font-family: 'Geologica';
	font-size: 15px;
	line-height: 1.6;
	transition: .2s;
}
.buy-one-click-form .mf-submit:hover {
	background: #fff;
}
.buy-one-click-form .mf-submit:hover span {
	color: var(--la-grey-basic);
}
.buy-one-click-form .mf-submit::after {
	background-color: #00a329;
}
.buy-one-click-form .note {
	margin-top: 10px;
}

/* buy-one-click-form end */

/* order page */

.order-descr {
	color: var(--la-grey-basic);
	font-size: 18px;
	font-family: 'Geologica';
	line-height: 1.6;
}
.order-table {
	box-sizing: border-box;
	font-family: 'Geologica';
	gap: 80px;
	justify-content: space-between;
	max-width: 1920px;
	padding: 40px 0;
	width: 100%;
}
.order-rows {
	gap: 40px 0;
	max-width: 1340px;
	width: 100%;
}
.order-rows .order-row {
	gap: 40px;
	width: 100%;
}
.order-item-image {
	border-radius: 10px;
	max-width: 170px;
	overflow: hidden;
	width: 100%;
}
.order-item-image a {
	display: block;
	text-decoration: none;
	width: 100%;
}
.order-item-image img {
	display: block;
	width: 100%;
}
.order-item-col {
	align-items: flex-start;
	height: 170px;
	justify-content: space-between;
	width: 100%;
}
.order-item-col-bottom {
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.order-item-name {
	color: var(--la-grey-basic);
	font-size: 15px;
	line-height: 1.6;
}
.order-item-name a {
	color: inherit;
	display: inline-block;
	text-decoration: none;
}
.order-item-name a:hover {
	color: var(--la-grey-basic-60);
}
.order-item-vc {
	color: var(--la-grey-basic-60);
	display: flex;
	font-size: 15px;
	gap: 0 8px;
	line-height: 1.6;
}
.order-item-buttons {
	align-items: center;
	gap: 0 24px;
	justify-content: flex-start;
}
.order-item-count {
	align-items: center;
	background: #f5f5f5;
	border-radius: 100px;
	display: flex;
	height: 40px;
	overflow: hidden;
	padding: 0 5px;
}
.order-item-count .count-value {
	background: none;
	border: none;
	box-sizing: border-box;
	color: var(--la-grey-basic);
	font-family: 'Geologica';
	font-size: 18px;
	height: 100%;
	outline: none;
	pointer-events: none;
	text-align: center;
	width: 35px;
}
.order-item-count .inc-count,
.order-item-count .dec-count {
	align-items: center;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	height: 100%;
	justify-content: center;
	width: 40px;
}
.order-item-delete {
	background: #f5f5f5;
	border: 0;
	border-radius: 100px;
	cursor: pointer;
    height: 40px;
	width: 40px;
}
.order-item-price {
	align-items: center;
	font-family: 'Geologica';
	gap: 0 20px;
}
.order-item-price .price-basic {
	color: var(--la-grey-basic);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
}
.order-item-price .price-old {
	color: var(--la-grey-basic-60);
	font-size: 15px;
	line-height: 1.6;
	position: relative;
}
.order-item-price .price-old::after {
	background: #717171;
	content: '';
	height: 1px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: rotate(-5deg);
	width: 100%;
}
.order-item-price .price-new {
	color: var(--la-text-color-accent);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
}

.order-result {
	background: #f5f5f5;
	border-radius: 12px;
	box-sizing: border-box;
	font-family: 'Geologica';
	gap: 45px;
	max-width: 500px;
	padding: 40px;
	width: 100%;
}
.order-result-title {
	color: var(--la-grey-basic);
	font-size: 21px;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 15px;
	text-align: center;
}
.order-result-row,
.order-result-last-row {
	justify-content: space-between;
	width: 100%;
}
.order-result-row > :first-child {
	font-size: 15px;
}
.order-result-row > :last-child {
	font-size: 18px;
	font-weight: 600;
}
.order-result-last-row > :first-child {
	font-size: 18px;
	font-weight: 600;
}
.order-result-last-row > :last-child {
	font-size: 21px;
	font-weight: 600;
}
.order-result button {
	align-items: center;
	background: var(--la-grey-basic);
	border: 2px solid var(--la-grey-basic);
	border-radius: 100px;
	box-sizing: border-box;
    cursor: pointer;
	justify-content: center;
	padding: 10px;
	transition: .2s;
	width: 100%;
}
.order-result button span {
    color: #fff;
	font-family: 'Geologica';
	font-size: 15px;
	line-height: 1.6;
	transition: .2s;
}
.order-result button:hover {
	background: #fff;
}
.order-result button:hover span {
	color: var(--la-grey-basic);
}
.order-kpLink{
  box-sizing: border-box;
  cursor: pointer;
  padding: 0;
  transition: 0.2s;
  width: 100%;
  text-decoration: none; 
  color: black;
  text-align: center; 
}

.form-order {
	background: #fff;
	border-radius: 12px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 30px;
	max-width: 580px;
	padding: 40px;
	width: 100%;
}
.form-order .mf-form-close {
	right: 35px;
	top: 35px;
}
.form-order .fo-header {
	margin-bottom: 20px;
}
.form-order h2 {
	color: var(--la-grey-basic);
	font-family: 'Geologica';
	font-size: 21px;
	font-weight: 600;
	line-height: 1.6;
	margin: 0 0 10px;
	padding: 0;
}
.form-order .under-h2 {
	color: var(--la-grey-basic);
	font-family: 'Geologica';
	font-size: 15px;
	line-height: 1.6;
}
.fo-input-wrapper {
	box-sizing: border-box;
	padding: 10px 0px;
	position: relative;
	width: 100%;
}
.fo-input-wrapper label {
	background: #fff;
	color: var(--la-grey-basic-60);
	font-family: 'Geologica';
	font-size: 12px;
	left: 12px;
	padding: 0 5px;
	position: absolute;
	top: 2px;
}
.fo-input-wrapper input[type=text] {
	background: #fff;
	border: 2px solid var(--la-grey-basic-10);
	border-radius: 12px;
	box-sizing: border-box;
	color: var(--la-grey-basic);
	font-size: 18px;
	font-family: 'Geologica';
	height: 48px;
	padding: 0 18px;
	width: 100%;
}
.form-order .send-order {
	background: var(--la-grey-basic);
	border: 2px solid var(--la-grey-basic);
	border-radius: 100px;
	box-sizing: border-box;
    cursor: pointer;
	margin-top: 20px;
	padding: 10px;
	transition: .2s;
	width: 100%;
}
.form-order .send-order span {
    color: #fff;
	font-family: 'Geologica';
	font-size: 15px;
	line-height: 1.6;
	transition: .2s;
}
.form-order .send-order:hover {
	background: #fff;
}
.form-order .send-order:hover span {
	color: var(--la-grey-basic);
}

.form-order .title-lines {
	align-items: center;
	gap: 20px;
}
.form-order .title-lines .grey-line {
	background: var(--la-grey-basic-10);
	height: 1px;
	width: calc(50% - 34px);
}
.form-order .title-lines .text {
	color: var(--la-grey-basic);
	font-family: 'Geologica';
	font-size: 15px;
	line-height: 1.6;
}

.form-order .social-networks {
	align-items: center;
	gap: 8px;
	justify-content: center;
	margin: 20px 0 40px;
}
.form-order .social-networks a {
	align-items: center;
	background: #f5f5f5;
	border-radius: 50px;
	box-sizing: border-box;
	display: flex;
	gap: 10px;
	height: 48px;
	padding: 0 16px;
	text-decoration: none;
	transition: .1s;
	width: calc((100% - 20px) / 3);
}
.form-order .social-networks a:hover {
	background: var(--la-grey-basic);
}
.form-order .social-networks a span {
	color: var(--la-grey-basic);
	font-family: 'Geologica';
	font-size: 16px;
	transition: .1s;
}
.form-order .social-networks a:hover span {
	color: #f5f5f5;
}
.form-order .social-networks a img {
	transition: .1s;
}
.form-order .social-networks a:hover img {
	filter: invert(100%);
}
.form-order .agreement-text {
	color: var(--la-grey-basic-60);
	font-family: 'Geologica';
	font-size: 13px;
	line-height: 1.6;
}
.form-order .agreement-text a {
	color: var(--la-grey-basic);
}
.form-order .agreement-text a:hover {
	color: var(--la-grey-basic-60);
}

.success-large-text {
	color: var(--la-text-color-accent);
	font-family: 'Geologica';
	font-size: 24px;
}
.success-small-text {
	color: var(--la-grey-basic);
	font-family: 'Geologica';
	font-size: 18px;
}

/*adaptive order page*/
/* =====================
   АДАПТИВ КОРЗИНЫ
   ===================== */

/* --- Планшеты (до 1024px) --- */
@media (max-width: 1024px) {
  .order-table {
    gap: 40px;
}

.order-item-price .price-basic {
    font-size: 16px;
    white-space: nowrap;
	padding: 0 0 0 20px;
	}

.order-result {

    gap: 25px;
	max-width: 300px;
    padding: 40px;
}	
.order-item-col-bottom {
    padding-top: 10px;
}

}
/* --- Мобильные (до 768px) --- */
@media (max-width: 820px) {

.page-item > div >.order-table .flex-row {
    all: unset;
    display: flex;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center;
}


.order-table {
		all:unset;

	}
.order-item-col {
    height: 150px;
}

.order-rows .order-row {
    gap: 40px;

}

.order-item-image {
    width: 120px;

}

.order-item-count {
    height: 40px;
}

.order-item-price .price-basic {
    font-size: 16px;
    white-space: nowrap;
	padding: 0 0 0 20px;
	}

.order-item-delete {
    height: 40px;
    width: 40px;
}

.order-result {
    gap: 25px;
    padding: 20px;
	    max-width: 100%;
    margin: 50px auto;


   
}


}

/* --- Маленькие смартфоны (до 480px) --- */
@media (max-width: 480px) {
.page-item {
    padding: 0px 20px !important;
	box-sizing: border-box !important;
}


	.order-table {
		all:unset;

	}
.order-item-col {
    height: 130px;
}

.order-rows .order-row {
    gap: 20px;

}

.order-item-image {
    width: 80px;

}

.order-item-count {
    height: 30px;
}

.order-item-price .price-basic {
    font-size: 14px;
    white-space: nowrap;
	padding: 0 0 0 10px;
	}

.order-item-delete {
    height: 30px;
    width: 30px;
}

.order-result {
    gap: 25px;
    padding: 20px;
	    max-width: 100%;
    margin-top: 50px;


   
}


}






/* order page end */

#cookie-note {
    align-items: center;
    background-color: #1212128a;
	color:#fff;
	font-family: 'Geologica';
    border: 1px solid #fff;
    bottom: 15px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
    display: none;
    gap: 15px 30px;
    justify-content: space-between;
    left: 50%;
    max-width: 650px;
    padding: 15px 20px;
    position: fixed;
    transform: translateX(-50%);
    width: 100%;
    z-index: 100000;
}
#cookie-note.show {
    display: flex
;
}
#cookie-note p a {
    color: #fff;
    text-decoration: underline;
    white-space: nowrap;
}


.cookie-accept {
    align-items: center;
    background: #fff;
    border: none;
    border-radius: 20px;
    box-sizing: border-box;
    color: #31424a;
    cursor: pointer;
    display: flex
;
    flex-shrink: 0;
    font-family: 'Tahoma';
    font-size: 14px;
    height: 38px;
    justify-content: center;
    text-shadow: 0 0 0 #31424a;
    transition: .2s;
    width: 160px;
}
.cookie-accept:hover {
    background-color: #e6e6e6; /* Чуть темнее фона */
    color: #222; /* Чуть темнее текста */
}

@media (max-width="768") {
	#cookie-note {
    left: 50%;
    max-width: 250px;
    padding: 15px 20px;
    position: fixed;
    transform: translateX(-50%);
    width: 100%;
    z-index: 100000;
}

.cookie-accept {
    height: 30px;
    max-width: 100px;
}	
}



.fo-footer-agreement{
	display: flex;
	justify-content: space-between;
	align-items: start;
}
/*стили поиска*/

/*Стили для страницы возврата*/


.container-refund {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  color: #333;
  line-height: 1.7;
}

.container-refund h1 {
  font-size: 28px;
  color: #1a1a1a;
  border-bottom: 2px solid #121212;
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.container-refund h2 {
  font-size: 22px;
  color: #2c3e50;
  margin: 30px 0 15px 0;
}

.container-refund h3 {
  font-size: 18px;
  color: #444;
  margin: 20px 0 10px 0;
}

.container-refund p {
  margin: 12px 0;
  text-align: justify;
}

.container-refund em {
  color: #666;
  font-style: italic;
  background-color: #f8f9fa;
  padding: 2px 6px;
  border-radius: 3px;
}

.container-refund ul {
  margin: 15px 0;
  padding-left: 30px;
}

.container-refund li {
  margin: 8px 0;
  list-style-type: disc;
}

.container-refund strong {
  color: #d9534f;
  font-weight: 600;
}

.container-refund a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.container-refund a:hover {
  text-decoration: underline;
  color: #0056b3;
}

.contact {
  background-color: #f1f8ff;
  border-left: 4px solid #007bff;
  padding: 15px 20px;
  margin: 25px 0;
  border-radius: 0 8px 8px 0;
}

.contact h3 {
  margin-top: 0;
  color: #007bff;
}


@media (max-width: 1000px) {
  .container-refund {

html, body {
overflow-x: hidden;

}

    padding: 15px;
    max-width: 100%;
  }
  
  .container-refund h1 {
    font-size: 24px;
  }
  
  .container-refund h2 {
    font-size: 20px;
  }
  
  .container-refund h3 {
    font-size: 16px;
  }

.breadcrumbs{
	padding: 0 20px;
}

.main-wrapper {
	overflow-x: hidden !important;
}
}




