/* Custom NotyJS - FLAT */
.noty_theme__flat.noty_bar {
	font: 16px/1.3 Arial, Liberation Sans, sans-serif;
	text-align: center;
	padding: 12px 15px 13px;
	position: relative;
	border: 1px solid #eee;
	background-color: #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.noty_theme__flat.noty_bar.noty_type__error {
	background-color: #e74c3c;
	border-color: #c0392b;
	color: #fff;
}
.noty_theme__flat.noty_bar.noty_type__warning {
	background-color: #f1c513;
	border-color: #f39c12;
	color: #fff;
}
.noty_theme__flat.noty_bar.noty_type__success {
	background-color: #2ecc71;
	border-color: #27ae60;
	color: #fff;
}
.noty_theme__flat.noty_bar.noty_type__information {
	background-color: #3498db;
	border-color: #2980b9;
	color: #fff;
}

/* Custom NotyJS - MODERN */
.noty_theme__modern.noty_bar {
	text-align: center;
	background-color: #ffff;
	position: relative;
	border-radius: 8px !important;
	box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.2);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.noty_theme__modern.noty_bar.noty_type__error .noty_title {
	background-color: #e74c3c;
	border-color: #c0392b;
}
.noty_theme__modern.noty_bar.noty_type__warning .noty_title {
	background-color: #f1c513;
	border-color: #f39c12;
}
.noty_theme__modern.noty_bar.noty_type__success .noty_title {
	background-color: #2ecc71;
	border-color: #27ae60;
}
.noty_theme__modern.noty_bar.noty_type__information .noty_title {
	background-color: #3498db;
	border-color: #2980b9;
}

.noty_theme__modern.noty_bar .noty_title {
	color: #fff;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	padding: 6px 12px;
}

.noty_theme__modern.noty_bar .noty_text {
	color: #1d1d1d;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	padding: 12px 12px;
}

/* Custom 404 Page */

.not-found-wrapper {
	padding-bottom: 0;
}
.not-found {
	background: #1a1a1a;
	width: 100vw;
	min-height: 100vh;
	margin-left: 50px;
}
.not-found__container {
	max-width: 1270px;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.not-found__wrapper {
	display: flex;
	align-items: center;
}
.not-found__info {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 0 0 150px;
	gap: 88px;
	width: 300px;
}
.not-found__image {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.not-found__image span {
	color: #000000;
	font-size: 124px;
	font-weight: 700;
	line-height: 151.16px;
}
.not-found__body {
	display: flex;
	flex-direction: column;
	gap: 25px;
	min-width: 300px;
}
.not-found__title {
	font-family: Onest;
	color: #ffffff;
	font-size: 52px;
	font-weight: 700;
	line-height: 66.3px;
}
.not-found__text {
	color: #797979;
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
}
.not-found__button-container {
	display: flex;
}
.not-found__button {
	display: flex;
	justify-content: space-between;
	gap: 35px;
	font-family: Onest;
	padding: 12px 30px;
	background: #2f68b8;
	color: #fff;
	margin-top: 30px;
	font-size: 16px;
	font-weight: 500;
	line-height: 20.4px;
	border-radius: 50px;
}
.not-found__button:hover {
	background: #2b5ca0;
}

@media screen and (max-width: 1000px) {
	.not-found__wrapper {
		flex-direction: column-reverse;
	}
	.not-found__container {
		min-height: 110vh;
	}
	.not-found__info {
		margin: 0;
	}
	.not-found {
		margin-left: 0;
		margin-top: 10px;
	}
	.not-found__body {
		align-items: center;
		gap: 15px;
	}
	.not-found__title {
		text-align: center;
		font-size: 32px;
		font-weight: 700;
		line-height: 40.8px;
	}
	.not-found__text {
		text-align: center;
		font-size: 16px;
		font-weight: 400;
		line-height: 18px;
	}
	.not-found__button {
		margin-top: 0;
		margin-bottom: 15px;
	}
	.not-found__image img {
		width: 165vw;
	}
}

/* Custom Validate JS */
.form__error {
	color: #f00;
	font-size: 12px;
}
.select__item._error {
	border: 1px solid #f00;
}

.payment-main-order__content._error {
	border-color: #f00;
}

.payment-main-order__circle._error {
	border-color: #f00;
}

.input-wrapper {
	position: relative;
}

.iti {
	width: 100%;
}

.file__input._error + .file__content {
	border-color: red;
}

/* Custom Loader */

.loader_centered {
	display: flex;
	justify-content: center;
	width: 100%;
}

@-webkit-keyframes dyinglight {
	15% {
		transform: scale(1.6);
	}
	50% {
		transform: rotate(-89deg);
	}
	100% {
		transform: rotate(-90deg);
	}
}

@keyframes dyinglight {
	15% {
		transform: scale(1.6);
	}
	50% {
		transform: rotate(-89deg);
	}
	100% {
		transform: rotate(-90deg);
	}
}
.dl {
	transform: translate(0, -25%);
	display: inline-block;
}

.dl__square {
	display: block;
	width: 50px;
	height: 50px;
	background: #4285f4;
}

.dl__container {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	transform-origin: 50% 50% 0;
	-webkit-animation: dyinglight 1s ease infinite;
	animation: dyinglight 1s ease infinite;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.dl__corner--top:before,
.dl__corner--top:after,
.dl__corner--bottom:before,
.dl__corner--bottom:after {
	position: absolute;
	width: 17px;
	height: 17px;
	color: #4285f4;
	content: '';
}

.dl__corner--top:before {
	border-left: 1px solid;
	border-top: 1px solid;
	top: -6px;
	left: -6px;
}
.dl__corner--top:after {
	border-right: 1px solid;
	border-top: 1px solid;
	top: -6px;
	right: -6px;
}

.dl__corner--bottom:before {
	border-left: 1px solid;
	border-bottom: 1px solid;
	bottom: -6px;
	left: -6px;
}
.dl__corner--bottom:after {
	border-right: 1px solid;
	border-bottom: 1px solid;
	bottom: -6px;
	right: -6px;
}

/* Custom Styles */

.banner__slider {
	min-width: 100%;
	width: 100%;
}

.product__price span._now {
	color: #d91616;
}

.product__price span._old {
	font-weight: 400;
	text-decoration: line-through;
}

.item-cart__total {
	flex-direction: row;
	gap: 3px;
}

body._no-pt .header:not(._scroll) .header__icon-fill {
	fill: #fff;
}
body._no-pt .header:not(._scroll) .cart-btn-header__icon .header__icon-stroke {
	stroke: #fff;
}

.header:not(._scroll) .header__icon-fill {
	fill: #1d1d1d;
}
.header:not(._scroll) .cart-btn-header__icon .header__icon-stroke {
	stroke: #1d1d1d;
}

.header._scroll .header__icon-fill {
	fill: #1d1d1d;
}
.header._scroll .header__icon-stroke {
	stroke: #1d1d1d;
}

.form-login__button {
	width: 150px;
}

.select__disabled {
	color: #b4b4b4;
	pointer-events: none;
}

._btn_disabled {
	pointer-events: none;
	opacity: 0.5;
}

.item-cart__total span {
	width: max-content;
}

.product__image img,
.product-cart-header__image img,
.item-cart__image img,
.item-orders-main-cabinet__image img {
	object-fit: contain;
}

.brands__slider {
	padding-top: 0;
}

.item-brand {
	justify-content: center;
	padding: 0;
}
.brands__item {
	flex: 0 0 calc((100% - 30px * 3) / 4);
}

@media (max-width: 721.98px) {
	.brands__item {
		flex: 0 0 230px;
	}
}

/* .brands__content {
	margin-top: 40px;
}

.brands__item:not(:last-child) {
	margin-right: 0;
}

.item-brand__image img {
	width: 90px;
	height: 210px;
	object-fit: cover;
} */
