/* ===================================
   GLOBAL STYLES - LOMBARD 888
   =================================== */

/* CSS Variables - Color Palette */
:root {
	/* Primary Colors */
	--color-silver: #EEEEEE;
	--color-silver-light: #F6F6F6;
	--color-silver-dark: #E0E0E0;

	--color-gold: #EDE2C3;
	--color-gold-light: #FDF9EE;
	--color-gold-dark: #DECB97;

	--color-white: #FFFFFF;
	--color-white-off: #F8F9FA;

	--color-red: #BC0D2A;
	--color-red-light: #960A22;
	--color-red-dark: #710819;

	--color-black: #130104;
	--color-header: #130104;
	--color-text: #636363;
	--color-text-1: #636363;
	--color-text-2: #8B8B8B;
	--color-text-3: #C0C0C0;

	/* Semantic Colors */
	--color-primary: var(--color-gold);
	--color-secondary: var(--color-silver);
	--color-accent: var(--color-red);
	--color-success: #28A745;
	--color-warning: #FFC107;
	--color-info: #17A2B8;
	--color-danger: var(--color-red);

	/* Background Colors */
	--bg-primary: var(--color-white);
	--bg-secondary: var(--color-gray-100);
	--bg-accent: var(--color-gold);
	--bg-dark: var(--color-gray-900);

	/* Text Colors */
	--text-primary: var(--color-gray-900);
	--text-secondary: var(--color-gray-600);
	--text-muted: var(--color-text-2);
	--text-light: var(--color-white);
	--text-accent: var(--color-gold);

	/* Border Colors */
	--border-color: var(--color-gray-300);
	--border-color-light: var(--color-gray-200);
	--border-color-dark: var(--color-gray-400);

	/* Shadow Colors */
	--shadow-color: rgba(0, 0, 0, 0.1);
	--shadow-color-dark: rgba(0, 0, 0, 0.2);

	/* Typography Scale */
	--font-family: "Montserrat", sans-serif;

}

/* ===================================
   RESET & BASE STYLES
   =================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	font-family: var(--font-family);
	font-size: 14px;
	line-height: 22px;
	color: var(--color-text);
	background-color: var(--color-silver-light);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-weight: bold;
	color: var(--color-header);
	margin-bottom: 12px;
}

h1,
.h1,
.fs-32 {
	font-size: 32px;
	line-height: 44px;
}

@media (max-width: 992px) {

	h1,
	.h1,
	.fs-32 {
		font-size: 24px;
		line-height: 32px;
	}
}

h2,
.h2,
.fs-24 {
	font-size: 24px;
	line-height: 32px;
}

@media (max-width: 992px) {

	h2,
	.h2,
	.fs-24 {
		font-size: 18px;
		line-height: 26px;
	}
}

h3,
.h3,
h4,
.h4,
.fs-18 {
	font-size: 18px;
	line-height: 26px;
}

@media (max-width: 992px) {

	h3,
	.h3,
	h4,
	.h4,
	.fs-18 {
		font-size: 18px;
		line-height: 26px;
	}
}

h5,
.h5,
h6,
.h6,
.fs-16 {
	font-size: 16px;
	line-height: 24px;
}

@media (max-width: 992px) {

	h5,
	.h5,
	h6,
	.h6,
	.fs-16 {
		font-size: 16px;
		line-height: 24px;
	}
}

.fs-14 {
	font-size: 14px;
	line-height: 22px;
}

small,
.small,
.fs-12 {
	font-size: 12px;
	line-height: 18px;
}

.fw-medium {
	font-weight: 500 !important;
}

a,
a:hover {
	color: inherit;
}

.form-control {
	font-size: 14px;
}

.form-control:placeholder {
	color: var(--color-text-2);
}

.form-control,
.form-control:focus {
	color: var(--color-text);
	background-color: #fff;
	border-color: #fff;
	outline: 0;
	box-shadow: none;
	max-height: 56px;
}

.form-control--silver-light,
.form-control--silver-light:focus {
	color: var(--color-black);
	background-color: var(--color-silver-light);
	border-color: var(--color-silver-light);
	outline: 0;
	box-shadow: none;
}

.form-select,
.form-select:focus {
	color: var(--color-black);
	background-color: #fff;
	border-color: #fff;
	outline: 0;
	box-shadow: none;
	max-height: 56px;
}

.form-control--sm {
	max-height: 36px;
}

.form-select--sm {
	max-height: 36px;
}

textarea.form-control,
textarea.form-control:focus {
	max-height: unset;
}

.form-check-input:checked {
	background-color: var(--color-black);
	border-color: var(--color-black);
}

.form-check-input:focus {
	box-shadow: none;
	border-color: var(--color-black);
}

.iti {
	width: 100%;
	border-radius: --bs-btn-border-radius;
}

.iti__selected-flag {
	background-color: transparent !important;
}

[aria-controls="topMenu"][aria-expanded="false"] .bi-list {
	display: inline;
}

[aria-controls="topMenu"][aria-expanded="false"] .bi-x-lg {
	display: none;
}

[aria-controls="topMenu"][aria-expanded="true"] .bi-list {
	display: none;
}

[aria-controls="topMenu"][aria-expanded="true"] .bi-x-lg {
	display: inline;
}


/* ===================================
   LAYOUT & CONTAINERS
   =================================== */

/* Container */
.container {
	width: 100%;
	max-width: 1600px;
	--bs-gutter-x: 3rem;
}

@media (max-width: 992px) {
	.container {
		--bs-gutter-x: 2rem;
	}
}

.breadcrumb-item+.breadcrumb-item {
	display: flex;
	align-items: center;
}

.breadcrumb-item+.breadcrumb-item:before {
	float: none;
	font-family: bootstrap-icons !important;
}

.breadcrumb-item.active {
	color: var(--color-text-3);
}

.header__menu .dropdown-menu.show {
	min-width: 320px;
	border: none;
}

.slider,
.slider-main {
	overflow: hidden;
	position: relative;
}

.slider .swiper-scrollbar.swiper-scrollbar--top {
	top: 0;
	height: 1.5px;
}

.slider .swiper-pagination {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.slider .swiper-pagination-bullet {
	margin: 0;
	flex: 1;
	height: 100%;
	border-radius: 0;
	background-color: transparent;
}

.swiper-wrapper .swiper-slide {
	width: auto;
}

.main-header {
	z-index: 101;
}

/* Text Colors */
.text-primary {
	color: var(--text-primary);
}

.text-secondary {
	color: var(--text-secondary);
}

.text-muted {
	color: var(--text-muted);
}

.text-light {
	color: var(--text-light);
}

.text-accent {
	color: var(--text-accent);
}

.text-silver {
	color: var(--color-silver);
}

.text-gold {
	color: var(--color-gold);
}

.text-gold-dark {
	color: var(--color-gold-dark);
}

.text-white {
	color: var(--color-white);
}

.text-red {
	color: var(--color-red);
}

.text-red-dark {
	color: var(--color-red-dark);
}

.text-header {
	color: var(--color-header);
}

.text-black {
	color: var(--color-black);
}

.text-color-1 {
	color: var(--color-text-1);
}

.text-color-2 {
	color: var(--color-text-2);
}

.text-color-3 {
	color: var(--color-text-3);
}

.text-success {
	color: var(--color-success);
}

/* ===================================
   BACKGROUND UTILITIES
   =================================== */

.bg-primary {
	background-color: var(--bg-primary);
}

.bg-secondary {
	background-color: var(--bg-secondary);
}

.bg-accent {
	background-color: var(--bg-accent);
}

.bg-dark {
	background-color: var(--bg-dark);
}

.bg-silver {
	background-color: var(--color-silver);
}

.bg-silver-light {
	background-color: var(--color-silver-light);
}

.bg-silver-dark {
	background-color: var(--color-silver-dark);
}

.bg-gold {
	background-color: var(--color-gold);
}

.bg-white {
	background-color: var(--color-white);
}

.bg-red {
	background-color: var(--color-red);
}

.bg-image-corner {
	background-image: url(../img/corner.svg);
	background-repeat: no-repeat;
	background-position: bottom right;
}

/* ===================================
   BUTTONS UTILITIES
   =================================== */

.btn {
	--bs-btn-font-size: 16px;
	min-height: 56px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
}

.btn-sm {
	--bs-btn-font-size: 14px;
	min-height: 36px;
}

.btn-lg {
	--bs-btn-font-size: 16px;
	min-height: 56px;
}

.btn-square {
	width: 56px;
	height: 56px;
	padding: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.btn-square.btn-sm {
	width: 36px;
	height: 36px;
	min-height: 36px;
}

.btn-square.btn-xs {
	width: 20px;
	height: 20px;
	min-height: 20px;
	font-size: 12px;
}

.btn-primary {
	background-color: var(--bg-primary);
}

.btn-secondary {
	background-color: var(--bg-secondary);
}

.btn-accent {
	background-color: var(--bg-accent);
}

.btn-dark {
	background-color: var(--bg-dark);
}

.btn-silver {
	background-color: var(--color-silver);
}

.btn-silver-dark {
	background-color: var(--color-silver-dark);
}

.btn-silver-light {
	background-color: var(--color-silver-light);
}

.btn-gold {
	background-color: var(--color-gold);
}

.btn.btn-white,
.btn.btn-white:hover,
.btn.btn-white:active {
	color: var(--color-black);
	background-color: var(--color-white);
	border-color: var(--color-white);
}

.btn.btn-white-gold {
	color: var(--color-black);
	background-color: var(--color-white);
	border-color: var(--color-white);

	&:hover {
		color: var(--color-black);
		background-color: var(--color-gold);
		border-color: var(--color-gold);
	}

	&:active {
		color: var(--color-black);
		background-color: var(--color-gold-light);
		border-color: var(--color-gold-light);
	}
}

.btn.btn-white-silver {
	color: var(--color-black);
	background-color: var(--color-white);
	border-color: var(--color-white);

	&:hover {
		color: var(--color-black);
		background-color: var(--color-silver-light);
		border-color: var(--color-silver-light);
	}

	&.active,
	&:active {
		color: var(--color-black);
		background-color: var(--color-silver-light);
		border-color: var(--color-silver-light);
	}
}

.btn.btn-silver-gold {
	color: var(--color-black);
	background-color: var(--color-silver-light);
	border-color: var(--color-silver-light);

	&:hover {
		color: var(--color-black);
		background-color: var(--color-gold);
		border-color: var(--color-gold);
	}

	&:active {
		color: var(--color-black);
		background-color: var(--color-gold-light);
		border-color: var(--color-gold-light);
	}
}

.btn.btn-silver {
	color: var(--color-black);
	background-color: var(--color-silver-light);
	border-color: var(--color-silver-light);

	&:hover {
		color: var(--color-black);
		background-color: var(--color-silver-light);
		border-color: var(--color-silver-light);
	}

	&:active {
		color: var(--color-black);
		background-color: var(--color-silver-light);
		border-color: var(--color-silver-light);
	}
}

.btn.btn-silver-dark {
	color: var(--color-black);
	background-color: var(--color-silver-dark);
	border-color: var(--color-silver-dark);

	&:hover {
		color: var(--color-black);
		background-color: var(--color-silver-dark);
		border-color: var(--color-silver-dark);
	}

	&:active {
		color: var(--color-black);
		background-color: var(--color-silver-dark);
		border-color: var(--color-silver-dark);
	}
}

.btn.btn-gold-silver {
	color: var(--color-black);
	background-color: var(--color-gold);
	border-color: var(--color-gold);

	&:hover {
		color: var(--color-black);
		background-color: var(--color-silver-light);
		border-color: var(--color-silver-light);
	}

	&:active {
		color: var(--color-black);
		background-color: var(--color-silver-light);
		border-color: var(--color-silver-light);
	}

}

.btn.btn-gold-white {
	color: var(--color-black);
	background-color: var(--color-gold);
	border-color: var(--color-gold);

	&:hover {
		color: var(--color-black);
		background-color: var(--color-white);
		border-color: var(--color-white);
	}

	&:active {
		color: var(--color-black);
		background-color: var(--color-white);
		border-color: var(--color-white);
	}
}


.btn.btn-gold-dark {
	color: var(--color-black);
	background-color: var(--color-gold-dark);
	border-color: var(--color-gold-dark);

	&:hover {
		color: var(--color-black);
		background-color: var(--color-gold-dark);
		border-color: var(--color-gold-dark);
	}

	&:active {
		color: var(--color-black);
		background-color: var(--color-gold-dark);
		border-color: var(--color-gold-dark);
	}
}

.btn.btn-red {
	color: var(--color-white);
	background-color: var(--color-red);
	border-color: var(--color-red);

	&:hover {
		color: var(--color-white);
		background-color: var(--color-red-light);
		border-color: var(--color-red-light);
	}

	&:active {
		color: var(--color-white);
		background-color: var(--color-red-dark);
		border-color: var(--color-red-dark);
	}
}

.btn.btn-black {
	color: var(--color-white);
	background-color: var(--color-black);
	border-color: var(--color-black);

	&:hover {
		color: var(--color-white);
		background-color: var(--color-red-light);
		border-color: var(--color-red-light);
	}

	&:active {
		color: var(--color-white);
		background-color: var(--color-red-dark);
		border-color: var(--color-red-dark);
	}
}

.btn.btn-accardion {
	text-align: left;
	padding: 1.5rem 50px 1.5rem 1.5rem;
	position: relative;
	justify-content: start;
}

.btn.btn-accardion:after {
	content: "\2212";
	position: absolute;
	top: 25px;
	right: 30px;
	font-size: 32px;
	font-weight: 400;
}

.btn.btn-accardion.collapsed:after {
	content: "+";
}

.btn.accordion-button {
	box-shadow: none;
}

.btn.accordion-button:not(.collapsed):after {
	background-image: var(--bs-accordion-btn-icon);
}

.border-dashed {
	border-bottom: 1px dashed var(--color-silver-dark);
	height: 100%;
}

.block {
	background-color: var(--color-white);
	padding: 32px;
	border-radius: 12px;
	overflow: hidden;
}

@media (max-width: 992px) {
	.block {
		padding: 24px;
	}
}

@media (max-width: 768px) {
	.block {
		padding: 16px;
	}
}

.block.block-white {
	background-color: var(--color-white);
}

.block.block-red {
	background-color: var(--color-red);
}

.block.block-silver {
	background-color: var(--color-silver);
}

.block.block-silver-light {
	background-color: var(--color-silver-light);
}

.block.block-gold {
	background-color: var(--color-gold);
}


.product-detail--image-min-block {
	width: 106px;
	height: 106px;
	padding: 0;
	border: 1px solid var(--color-silver);
}

.product-detail--image-min-container {
	max-height: 460px;
	overflow: hidden;
	position: relative;
}

.product-detail--descr-block,
.product-detail--image-block {
	min-height: 460px;
	overflow: hidden;
	position: relative;
}

.product-detail--image-block {
	min-height: 460px;
}

@media (min-width: 1200px) {
	.product-detail--image-container {
		width: calc(100% - 106px - 40px);
	}
}

@media (max-width: 1400px) {
	.product-detail--descr-block {
		min-height: 540px;
	}

	.product-detail--image-block {
		min-height: calc(540px - 1rem - 106px);
	}
}

@media (max-width: 768px) {
	.product-detail--descr-block {
		min-height: auto;
	}

	.product-detail--image-block {
		min-height: 375px;
	}
}

@media (max-width: 576px) {
	.product-detail--image-block {
		min-height: 275px;
	}
}

.product-detail--image-block {

	.swiper-button-prev,
	.swiper-button-next {
		color: var(--color-black);
	}

	.swiper-pagination-bullet {
		background: var(--color-black);
	}

	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 14px;
		font-weight: bold;
	}

	.swiper-button-prev,
	.swiper-button-next {
		top: auto;
		right: auto;
		bottom: 20px;
		left: 20px;

		width: 36px;
		height: 36px;
	}

	.swiper-button-next {
		left: 60px;
		right: auto;
	}

	.swiper-pagination {
		top: auto;
		right: 20px;
		bottom: 20px;
		left: auto !important;
		transform: none !important;
	}
}

.product-detail--image-block-btn {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	z-index: 100;
}

.slider-main {

	.swiper-button-prev,
	.swiper-button-next {
		color: var(--color-black);
	}

	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 14px;
		font-weight: bold;
	}

	.swiper-button-prev,
	.swiper-button-next {
		top: auto;
		left: auto;
		bottom: 3rem;
		right: 6.5rem;

		width: 3rem;
		height: 3rem;

		background: var(--color-white);
		border-radius: 0.5rem;


		@media (max-width: 768px) {
			top: 50%;
			left: 0.5rem;
		}
	}

	.swiper-button-next {
		right: 3rem;
		left: auto;

		@media (max-width: 768px) {
			top: 50%;
			right: 0.5rem;
		}
	}

	.swiper-pagination {
		top: 0.5rem;
		left: 1.5rem !important;
		bottom: auto;
		right: 1.5rem !important;
		width: calc(100% - 3rem);
		transform: none !important;
		display: flex;
		gap: 2px;
	}

	.swiper-pagination-bullet {
		width: 100%;
		height: 2px;
		border-radius: 0;
		margin: 0 !important;
		background: rgba(255, 255, 255, 0.3);
		opacity: 1;

		b {
			display: block;
			height: 100%;
			width: 0;
			background: #fff;
		}
	}
}

.product-favorite {
	position: absolute;
	top: 10px;
	left: auto;
	right: 10px;
	z-index: 100;
}


.filter-section {
	border-bottom: 1px solid #e9ecef;
	padding: 1rem 0;
}

.filter-section:last-child {
	border-bottom: none;
}

.filter-section-header {
	cursor: pointer;
	user-select: none;
	font-weight: 600;
	color: #212529;
	margin-bottom: 0.75rem;
}

.filter-section-header:hover {
	color: #0d6efd;
}

.filter-section-content {
	transition: all 0.3s ease;
}

.filter-checkbox {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.5rem 0;
	cursor: pointer;
}

.filter-checkbox:hover {
	background-color: #f8f9fa;
	border-radius: 0.375rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	margin-left: -0.5rem;
	margin-right: -0.5rem;
}

.filter-checkbox input[type="checkbox"] {
	margin-right: 0.75rem;
}

.filter-count {
	color: #6c757d;
	font-size: 0.875rem;
	font-weight: 500;
}

.price-range-slider {
	margin: 1rem 0;
}

.price-inputs {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.price-inputs input {
	flex: 1;
	border: 1px solid #ced4da;
	border-radius: 0.375rem;
	padding: 0.5rem;
	font-size: 0.875rem;
}

.toggle-switch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 24px;
}

.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

input:checked+.slider {
	background-color: #000;
}

input:checked+.slider:before {
	transform: translateX(26px);
}

.store-location {
	border: 1px solid #e9ecef;
	border-radius: 0.5rem;
	padding: 0.75rem;
	margin-bottom: 0.5rem;
	background-color: #f8f9fa;
}

.store-location:hover {
	background-color: #e9ecef;
	border-color: #0d6efd;
}

.metro-icon {
	color: #198754;
	margin-right: 0.5rem;
}

.search-box {
	position: relative;
	margin-bottom: 1rem;
}

.search-box input {
	padding-left: 2.5rem;
}

.search-box .bi-search {
	position: absolute;
	left: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	color: #6c757d;
}

.map-button {
	width: 100%;
	margin-bottom: 1rem;
}

.filter-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #212529;
}

.size-scroll {
	max-height: 200px;
	overflow-y: auto;
	border: 1px solid #e9ecef;
	border-radius: 0.375rem;
	padding: 0.5rem;
}

.size-scroll::-webkit-scrollbar {
	width: 6px;
}

.size-scroll::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 3px;
}

.size-scroll::-webkit-scrollbar-thumb {
	background: #c1c1c1;
	border-radius: 3px;
}

.size-scroll::-webkit-scrollbar-thumb:hover {
	background: #a8a8a8;
}

.nav-link,
.nav-link:focus,
.nav-link:hover {
	color: var(--color-black);
	border: none !important;
	font-size: 16px;
	padding: 12px 24px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
	color: var(--color-black);
	background: transparent;
	border: none !important;
	border-bottom: 1px solid var(--color-red) !important;
}

#offcanvasCart {
	width: 658px;
}

#offcanvasCart .offcanvas-title {
	font-size: 16px;
	font-weight: 500;
}

#offcanvasCart .offcanvas-body {
	padding: 1.5rem 1.5rem;
}

#offcanvasCart .offcanvas-header {
	border-bottom: 1px solid var(--color-silver-light);
}

.cartShort_item {
	img {
		max-width: 100%;
		height: auto;
	}
}

.modal-auth.show {
	display: block !important;
}

.popup {
	flex-direction: column;
	align-items: flex-start;
	padding: 26px;
	gap: 12px;
	isolation: isolate;
	position: fixed;
	width: 655px;
	height: fit-content;
	max-height: 80vh;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #FFFFFF;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
	overflow-y: auto;
	z-index: 999;
}

.popup .form-table.data-table thead,
.popup .form-table.data-table tbody td:first-child {
	display: none
}


.popup_tov_cont_verh,
.popup_tov_cont {
	display: flex;
	justify-content: space-between;
	gap: 12px
}

.popup_tov_cont_verh img,
.popup_tov_cont img {
	width: 112px;
	height: 100px;
}

form[name="vacancy"] .field,
form[name="CALL_REQUEST_2"] .field,
form[name="DESH_REQUEST_2"] .field {
	margin-bottom: 12px
}

form[name="vacancy"] [data-type="checkbox"],
form[name="CALL_REQUEST_2"] [data-type="checkbox"],
form[name="DESH_REQUEST_2"] [data-type="checkbox"] {
	display: flex;
	align-items: center;
	gap: 6px;
}

.popup_tov_cont_verh .popup_tov_cont_verh_right_name {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 120%;
	color: #181818;
}

.popup_tov_cont_verh_right_price {
	margin-top: 0;
}

.h2 {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 130%;
}

.popup .heading {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-size: 22px;
	line-height: 130%;

	color: #181818;

}

.popup_razmer img {
	max-width: 328px
}

.popup_razmer {
	color: #181818;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
	letter-spacing: -0.5px;
	overflow-y: auto;
	width: 825px;
}

input {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	height: 48px;
	border: 1px solid #E8E8E8;
	color: #0F0F0F;
	font-family: 'Mulish';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	letter-spacing: 0.25px;
	padding-left: 14px;
	padding-top: 4px;
	cursor: pointer;
}

input::placeholder,
.field label {
	font-family: 'Mulish';
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 0.2px;
	color: #8E8E93;
}

.field {
	position: relative;
	width: 100%;
}

.vacancy__desc {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 0;
	gap: 16px;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 130%;
	letter-spacing: -0.5px;
	color: #181818;
	margin-top: 18px;
	max-width: 779px;
}

.vacancy-page {
	background: #FAFAFA;
	padding-bottom: 60px;
}

.vacancy-page .bread-crumbs {
	padding-top: 12px;
}

.vacancy-page .h2 {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-size: 28px;
	line-height: 130%;
	color: #000000;
	margin-top: 30px;
	margin-bottom: 20px;
}

.vacancy-page .vacancies {
	margin-top: 14px;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.vacancy-page .vacancies .vacancy {
	background: #FFFFFF;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px 40px;
	max-width: 560px;
}

.vacancy-page .vacancies .vacancy .name {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 130%;
	color: #181818;
}

.vacancy-page .vacancies .vacancy .info {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 120%;
	color: #8E8E93;
}

.vacancy-page .vacancies .vacancy ol {
	display: flex;
	gap: 8px;
	flex-direction: column;
	margin-left: 18px
}

.vacancy-page .vacancies .vacancy .tasks,
.vacancy-page .vacancies .vacancy .requirement {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 130%;
	letter-spacing: -0.5px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	color: #181818;
}

.block-advantages {
	display: flex;
	gap: 30px;
}

.block-advantages .advantages-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.block-advantages .advantages-list .advantages-element {
	display: flex;
	flex-direction: column;
	background: #F4F4F4;
	padding: 20px;
	gap: 14px;
	max-width: 319px;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 130%;
	color: #181818;

}

.block-advantages .advantages-list .advantages-element .icon {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #FFFFFF;
	height: 50px;
	width: 50px;
	border-radius: 50%;

}

.field input {
	width: 100%;
}

.questions-page .questions__content-left {
	max-width: 400px
}

.questions-page .questions__content-left .spoiler-questions__title {
	margin-bottom: 0
}

.questions-page .questions__content-left .spoiler-questions__question {
	margin-bottom: 0
}

.questions-page .questions__content-left .spoiler-questions__title:before,
.questions-page .questions__content-left .spoiler-questions__title:after {
	content: none
}

.questions-page .questions__content-left svg.active path {
	fill: #ed1c24;
	color: #ed1c24;
}

.questions-page .questions__content-left ul li {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 16px;
	gap: 12px;

	border-bottom: 1px solid #E9E9E9;
	height: 56px;

	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 120%;
	color: #0F0F0F;
}

.field label {
	position: absolute;
	top: 1.2em;
	left: 17px;
	color: #8E8E93;
	font-weight: 500;
	transition: all 0.2s ease-in-out;
	display: none
}

.questions__content-right .questions__spoiler {
	display: none
}

.questions__content-right .questions__spoiler.active {
	display: block;
}

input:focus~label,
input:not(:placeholder-shown)~label {
	font-size: 12px;
	top: 2px;
	left: 14px;
	display: flex;
}

input:focus+label {
	display: flex;
}

.popup_tov_cont_form {
	display: flex;
	gap: 12px;
}

.flex-row {
	display: flex;
	gap: 12px;
}

.popup_tov_cont {
	flex-direction: column
}

.popup_dob_tov .popup_tov_cont {
	flex-direction: row;
	justify-content: left;
	flex-wrap: wrap;
}

.header_bottom_right_vhod,
.header__favorites,
.header__cart {
	cursor: pointer;
}

._container.p404 {
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 30px;
	text-align: center;
	margin-bottom: 120px
}

._container.p404 img {
	max-width: 812px;
	max-height: 366px;
	margin: 0 auto;
}

._container.p404 .desc {
	max-width: 484px;
	margin: 0 auto;
}

._container.p404 .subscribe__btn {
	max-width: 200px;
	margin: 0 auto;
}

._container.p404 .row {
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.popup_tov_cont_kn,
.popup_ob_bel_cont_kn,
.popup_aut button {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 15px 40px;
	background: #0F0F0F;
	border: 1px solid #0F0F0F;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 130%;
	color: #FFFFFF;
	max-width: 260px;
	cursor: pointer;
}

.popup_aut button[disabled] {
	background-color: #F4F4F4;
	color: #727272;
	padding: 12px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}

.popup_aut .popup_ob_bel_cont_kn,
.popup_aut button {
	max-width: 331px;
	width: 100%;

}

.popup_aut .popup_ob_bel_cont {
	max-width: 331px;
	gap: 20px;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}

.popup_ob_bel_cont_obr {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	letter-spacing: -0.5px;
	color: #727272;
}

.popup_ob_bel_cont_obr a {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	letter-spacing: -0.5px;
	text-decoration-line: underline;
	color: #181818;
}

.popup_aut .popup_ob_bel_cont h3 {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 130%;
	color: #181818;
	text-align: center;
	margin-bottom: 0;
}

.popup_aut .popup_ob_bel_label {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	letter-spacing: -0.5px;
	color: #727272;
	text-align: center;
}

input[type="file"]+label {
	top: 0;

}

input[type="file"] {
	padding-top: 17px;
}

.popup_aut .popup_ob_bel_label span {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	letter-spacing: -0.5px;
	color: #181818;
}

.popup_aut .error {
	color: red;
	font-size: 13px;
}

.popup_aut {
	justify-content: center;
	display: flex;
	align-items: center;
}

#getCodeButton {
	gap: 10px;
	display: flex;
}

.tabs {
	background: #FAFAFA;
	width: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 2px 0;
}

.tabs .tab {
	background: #FFFFFF;
	display: flex;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	/* or 18px */
	letter-spacing: -0.5px;
	color: #181818;

	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 192px;
	height: 42px;

	border-radius: 8px;
}

.tabs .tab.active {
	background: #181818;

	color: #ffffff;

}

.popup__close {
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 0;
	width: 30px;
	height: 30px;
	background-position: 4px 10px;
	background-repeat: no-repeat;
	height: 30px;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyLjY1NzUgMTIuNjU3NUwxLjM0Mzc1IDEuMzQzNzVNMTIuNjU3NSAxLjM0Mzc1TDEuMzQzNzUgMTIuNjU3NSIgc3Ryb2tlPSIjMEYwRjBGIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPC9zdmc+Cg==);
	background-position: 4px 10px;
	background-repeat: no-repeat;
}

.popup_razmer .tab-desc {
	display: none;
	flex-direction: column;
}

.popup_razmer .tab-desc.active {
	display: flex;

}

.code-input {
	display: flex;
	justify-content: center;
	gap: 15px;
	width: 100%;
	/*margin-bottom: 20px;*/
}

.code-input input {
	text-align: center;
	font-size: 18px;

	padding: 10px;

	width: 67px;
	height: 67px;
	background: #FAFAFA;
	border-radius: 4px;
}

@media (max-width: 767.98px) {
	.code-input input {
		width: 29px;
		height: 33px;
		font-size: 15px;
		padding: 3px;
	}

	.popup_aut .popup_ob_bel_cont h3 {
		font-size: 20px;
	}
}

input.err {
	border: 1px solid red;
}
form .btnTBank {
    padding: unset !important;
    display: flex;
    justify-content: center;
    align-items: center;
	font-family: var(--font-family);
}
.gap-3.button-section{
	flex-wrap: wrap;
}