html {
	scrollbar-width: thin;
	scrollbar-color: #888 #f1f1f1;
}

/* Для Chrome, Edge, Safari */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background-color: #888;
	border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
	background-color: #555;
}

.all-but {
	cursor: pointer;
	border: none;
	color: black;
	padding: 10px 20px;
	border-radius: 60px;
	/* box-shadow: inset -2px -2px 4px hsla(0, 0%, 100%, .1), inset 2px 2px 4px rgba(0, 0, 0, .35); */
	background-color: #eeeeee;
	transition: .3s;
}

.all-but:hover {
	box-shadow: inset -2px -2px 4px hsla(0, 0%, 100%, .1), inset 2px 2px 4px rgba(0, 0, 0, .35);
	transform: scale(1.03);
}

body {
	color: black;
	/* background-color: #ececec; */
	font-weight: 500;
	padding-top: 80px;
}

/*------------------------------ header ------------------------------*/
.header {
	top: 0;
	position: fixed;
	width: 100%;
	z-index: 1500;
	transition: .3s;
}

.header-top-section {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 10px 20px;
	align-items: center;
	background-color: white;
}

.header-buttons {
	display: flex;
	column-gap: 30px;
}

.modal {
	padding-top: 70px;
}

@media (max-width: 1225px) {
	.modal {
		padding-top: 140px;
	}
}

.header-min-logo {
	display: none;
}

.header-phones-list {
	margin: 0;
}

.header-phones-list a {
	color: black;
}

/*------------------------------ menu ------------------------------*/

.header-menu-list {
	display: flex;
	column-gap: 50px;
	list-style: none;
	margin-bottom: 0;
}

.header-menu-list-mobile {
	list-style: none;
	margin-bottom: 0;
	padding: 0;
	line-height: 75px;
}

.header-menu-link,
.header-menu-link-mobile {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 700;
	color: black;
	transition: .3s;
}

.header-menu-item-mobile a {
	font-size: 1.5em;
}

.header-menu-link:hover {
	font-size: 13px;
	text-shadow: #f4f4f4 1px 2px;
	color: black;
}

.menu-mobile-but {
	display: none;
}

.menu-mobile-but-lines {
	width: 15px;
	aspect-ratio: 1;
	border-top: 2px solid black;
	border-bottom: 2px solid black;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
}

.menu-mobile-but-line {
	border: 1px solid black;
	width: 100%;
	transition: .3s;
}

.mobile-menu-lines-anim {
	animation: mobiile-but-lines-anim 1 1s forwards linear;
}

@keyframes mobiile-but-lines-anim {
	0% {
		border-radius: 0;
		transform: rotate(0deg) scale(1);
	}

	50% {
		border-radius: 10%;
		transform: rotate(90deg) scale(1.02);
	}

	100% {
		border-radius: 20%;
		transform: rotate(180deg) scale(1);
	}
}

.menu-mobile-section {
	position: fixed;
	bottom: 100%;
	opacity: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1400;
	background-color: white;
	padding-top: 80px;
	transition: .3s;
}

.mobile-menu-active {
	bottom: 0;
	opacity: 1;
}

.menu-mobile-box {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 40px;
}
.mobile-footer-container{
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	justify-content: center;
}
/*------------------------------ header cart ------------------------------*/
.header-cart {
	position: relative;
	padding: 20px 0;
}

.header-cart-icon-quantity {
	position: absolute;
	right: 0;
	top: 0;
	background-color: #2d43c7;
	width: 20px;
	aspect-ratio: 1;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	z-index: 1;
	color: white;
}

.header-cart-hover-section {
	position: absolute;
	top: 100%;
	right: 0;
	min-height: 100px;
	width: 700px;
	display: none;
	opacity: 0;
	transform: rotateX(-90deg);
	z-index: 99;
	backdrop-filter: blur(9px);
	border-radius: 20px;
}

.header-cart-section {
	display: flex;
	flex-direction: column;
	background-color: rgba(228, 228, 228, 0.795);
	border-radius: 20px;
	padding: 10px 15px;
}

.header-cart:hover>.header-cart-hover-section {
	display: block;
	animation: menu-content-anim .2s linear forwards;
}

@media (max-width: 1000px) {

	.header-cart:hover>.header-cart-hover-section {
		display: none;
	}
}

@keyframes menu-content-anim {
	0% {
		opacity: 0;
		transform: rotateX(-90deg);
	}

	100% {
		opacity: 1;
		transform: rotateX(0deg);
	}
}

.header-cart-items {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-height: 500px;
	overflow-y: auto;
}

.header-cart-item {
	display: flex;
	height: 100px;
	gap: 10px;
}

.header-cart-img {
	height: 100%;
	width: 150px;
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.header-cart-img img {
	border-radius: 20px;
	overflow: hidden;
}

.header-cart-title-and-quantity {
	width: 400px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.header-cart-title {
	width: 100%;
	height: 70%;
}

.header-cart-quantity {
	width: 100%;
	height: 30%;
}

.header-cart-item-total-amount {
	width: 150px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.header-cart-item-remove {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;

}

.header-cart-item-remove-but {
	width: 100%;
	height: 100%;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff00;
	cursor: pointer;
	font-size: 24px;
}

.header-cart-bottom-section {
	width: 100%;
	height: 100px;
	display: flex;
	margin-top: 10px;
}

.header-cart-remove-all,
.header-cart-total-amount {
	width: 50%;
	height: 100%;
}

.header-cart-remove-all-but,
.header-cart-order-but {
	width: 100% !important;
	height: 100% !important;
	border-radius: 0 !important;
	background-color: #dcdcdc7a !important;
	font-size: 18px !important;
}

.header-cart-remove-all-but {
	border-bottom-left-radius: 20px !important;
	border-top-left-radius: 20px !important;
}

.header-cart-order-but {
	border-bottom-right-radius: 20px !important;
	border-top-right-radius: 20px !important;
}

.header-cart-order-but:hover,
.header-cart-remove-all-but:hover {
	box-shadow: none;
	transform: scale(1) !important;
}

.header-cart-remove-all-but::after,
.header-cart-order-but::before {
	position: absolute;
	content: '';
	height: 80%;
	width: 0%;
	top: 10%;
	transition: .3s;
	background-color: white;
}

.header-cart-bottom-section p {
	/* width: 100%; */
	position: relative;
	z-index: 1;
	margin: 0;
}

.header-cart-remove-all-but::after {
	right: 0;
}

.header-cart-order-but::before {
	left: 0;
}

.header-cart-remove-all-but:hover::after {
	width: 95%;
	border-bottom-left-radius: 20px;
	border-top-left-radius: 20px;
}

.header-cart-order-but:hover::before {
	width: 95%;
	border-bottom-right-radius: 20px;
	border-top-right-radius: 20px;
}

.header-cart-title a {
	color: black;
	text-decoration: none;
}



.cart-item {
	width: 300px;
	padding: 20px;
	border: 1px solid silver;
	border-radius: 20px;
}

.cart-img {
	width: 100%;
	overflow: hidden;
}

.cart-img img {
	border-radius: 20px;
}

.cart-quantity {
	display: flex;
	gap: 10px;
}

.cart-quantity p {
	margin: 0;
}

.cart-quantity>input {
	width: 50px;
	border: none;
}

.cart-buts {
	width: 30px;
	border: none;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.remove-cart {
	border: none;
	border-radius: 10px;
	padding: 10px;
}

.order-modal {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	background-color: white;
}

.cart-price {
	display: flex;
	gap: 5px;
	align-items: center;
	justify-content: left;
}

.cart-price p {
	font-size: 25px;
	margin: auto 0;
}

.cart-quantity-of-goods {
	color: green;
	font-size: 15px;
}

.order-quantity-of-goods {
	color: green;
	font-size: 15px;
}

.order-modal {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	background-color: white;
}


.order-quantity {
	display: flex;
	gap: 10px;
}

.order-quantity>input {
	width: 50px;
	border: none;
}

.order-buts {
	width: 30px;
	border: none;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.remove-order-item {
	border: none;
	border-radius: 10px;
	padding: 10px;
}

.order-total {
	width: 100%;
	display: flex;
	gap: 20px;
}

.order-massage {
	width: 100%;
}

.order-massage textarea {
	width: 100%;
	border-radius: 10px;
	padding: 10px;
}


@media (max-width: 677px) {

	.cart-item,
	.favorite-item {
		width: 48% !important;
	}
}

@media (max-width: 577px) {
	.cart-quantity p {
		display: none;
	}

	.cart-quantity {
		justify-content: space-between;
	}
}

@media (max-width: 430px) {

	.carts,
	.favorites_section {
		padding: 0 5px !important;
		gap: 5px !important;
	}

	.cart-item,
	.favorite-item {
		width: 49% !important;
		padding: 5px !important;
	}

	.remove-cart i,
	.remove-favorites i {
		display: none !important;
	}
}

@media (max-width: 1220px) {
	.order-add {
		width: calc(96% / 3);
	}

	.order-modal {
		gap: 2% !important;
		padding: 1rem 1%;
	}
}

@media (max-width: 650px) {
	.order-add {
		width: calc(99% / 2);
	}
}

@media (max-width: 530px) {
	.order-modal {
		gap: 1% !important;
	}
}

/*------------------------------ menu ------------------------------*/



.theme-but {
	--padding: 2px;
	--iconWrapperWidth: 42px;
	--iconWrapperHeight: 28px;
	--iconSize: 20px;
	background-color: #f4f4f4;
	border: 1px solid transparent;
	border-radius: 60px;
	/* box-shadow: inset -2px -2px 4px hsla(0, 0%, 100%, .1), inset 2px 2px 4px rgba(0, 0, 0, .35); */
	cursor: pointer;
	color: black;
}

.theme-bot-body {
	align-items: center;
	border-radius: inherit;
	display: flex;
	padding: 2px;
	position: relative;
}

.theme-buttons {
	align-items: center;
	display: flex;
	height: 42px;
	justify-content: center;
	position: relative;
	width: 42px;
	z-index: 1;
}

.theme-bot-body::after {
	background-color: #fff;
	border-radius: inherit;
	content: "";
	height: 42px;
	left: 44px;
	position: absolute;
	top: 50%;
	transform: translate3d(0, -50%, 0);
	width: 42px;
}

.white-mod::after {
	left: 2px;
}

.white-theme {
	transition: .3s;
}

.white-theme:hover {
	transform: rotate(90deg);
	color: orange;
}

.dark-theme {
	transition: .3s;
}

.dark-theme:hover {
	transform: rotateY(180deg);
	color: blue;
}

.mobile-sign {
	display: none;
}

/*------------------------------ media header ------------------------------*/
@media (max-width: 1500px) {
	.header-buttons {
		column-gap: 10px;
	}

	.header-menu-list {
		column-gap: 15px;
	}
	.header-menu ul{
		padding: 0;
	}
}

@media (max-width: 1225px) {
	.header-top-section {
		flex-wrap: wrap;
		padding: 10px;
	}

	.header-menu {
		order: 1;
		margin-top: 10px;
	}

	.theme-but {
		order: 1;
		margin-top: 10px;
	}
}

@media (max-width: 815px) {
	.header-top-section {
		justify-content: left;
		column-gap: 30px;
	}

	.theme-but {
		order: 0;
		margin-top: 0;
	}

	.header-buttons{
		order: 2;
	}
	.header-top-section{
		justify-content: space-between;
	}
}

@media (max-width: 710px) {
	.header-buttons {
		display: none;
	}
	
	.mobile-sign {
		display: block;
		order: 2;
	}
}
@media (max-width: 650px) {
	.header-menu-list {
		column-gap: 30px;
	}
	.header-menu-list {
		column-gap: 10px;
		flex-wrap: wrap;
		padding: 0;
	}
	
	.header-top-section {
		column-gap: 10px;
	}
	
	.header-buttons {
		column-gap: 10px;
	}
}

@media (max-width: 575px) {
	.header-logo {
		display: none;
	}
	
	.header-min-logo {
		display: block;
	}
	
	.header-menu {
		display: none;
	}
	
	.menu-mobile-but {
		display: block;
		order: 2;
	}
	.header-phones-section{
		display: none;
	}
	.order-a-call{
		display: none;
	}
	    .mobile-sign {
        display: block;
        order: 1;
    }
}

#order-a-call-modal{
	z-index: 1450;
	background-color: #ececec;
}
.call-modal{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
/*------------------------------ modal ------------------------------*/

@media (min-width: 576px) {
	.modal-dialog {
		max-width: 80%;
		margin: 1.75rem auto;
	}

}

.modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1050;
	display: none;
	overflow: hidden;
	outline: 0;
}

.modal-content {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: #f4f4f4;
	background-clip: padding-box;
	border: none;
	border-radius: 0.3rem;
	outline: 0;
}

.selector-switch {
	width: 100%;
	display: flex;
	justify-content: center;
}

.selectro-switch-case {
	display: flex;
	justify-content: space-between;
	width: 30%;
}

.selector-log-in,
.selector-sign-in {
	width: 50%;
	cursor: pointer;
	transition: .3s;
	background-color: #ececec;
}

.selector-log-in {
	text-align: left;
	border-bottom-left-radius: 60px;
	border-top-left-radius: 60px;
	padding-left: 10px;
}

.selector-log-in::after,
.selector-sign-in::before {
	position: absolute;
	content: '';
	height: 80%;
	width: 0%;
	top: 10%;
	transition: .3s;
	background-color: white;
}

.selector-log-in::after {
	right: 0;
}

.selector-sign-in::before {
	left: 0;
}

.selector-sign-in {
	text-align: right;
	border-bottom-right-radius: 60px;
	border-top-right-radius: 60px;
	padding-right: 10px;
}

.selector-but-text {
	/* width: 100%; */
	position: relative;
	margin: 10px 0;
	padding: 10px;
	z-index: 1;
}

.selector-log-in:hover,
.selector-sign-in:hover {
	/* box-shadow: inset -2px -2px 4px hsla(0, 0%, 100%, .1), inset 2px 2px 4px rgba(0, 0, 0, .35); */
	transform: scale(1.03);
}

.selector-log-in:hover::after {
	width: 95%;
	border-bottom-left-radius: 60px;
	border-top-left-radius: 60px;
}

.selector-sign-in:hover::before {
	width: 95%;
	border-bottom-right-radius: 60px;
	border-top-right-radius: 60px;
}

.selector-log-in-active {
	background-color: white;
	border-bottom-left-radius: 60px;
	border-top-left-radius: 60px;
}

.selector-sign-in-active {
	background-color: white;
	border-bottom-right-radius: 60px;
	border-top-right-radius: 60px;
}

.reg-container {
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 30px;
}

.reg-container-div {
	width: 60%;
	position: relative;
	overflow: hidden;
	height: 700px;
}

.log-in-inputs,
.sign-in-inputs {
	width: 100%;
	position: absolute;
	overflow: hidden;
	top: 0;
	transition: .3s;
	height: 100%;
}

.log-in-inputs {
	left: 0;
}

.sign-in-inputs {
	left: 100%;
}

.log-in-inputs>input {
	width: 100%;
	height: 60px;
	border-radius: 60px;
	background-color: #ececec;
	border: none;
	outline: none;
	padding: 0 30px;
}

.sign-in-inputs>input {
	width: 100%;
	height: 60px;
	border-radius: 60px;
	background-color: #ececec;
	border: none;
	outline: none;
	padding: 0 30px;
}

.log-in-inputs input:not(:nth-child(1)),
.sign-in-inputs input:not(:nth-child(1)) {
	margin-top: 10px;
}

.forgot-your-password {
	width: 100%;
	color: red;
}

.log-in-inp-but-div {
	width: 100%;
}

.modal-but {
	background-color: #ececec;
}

.Security-Policy-div {
	display: flex;
	align-items: center;
}

.Security-Policy-div p {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 10px;
}

.Security-Policy-div input {
	width: 20px;
	height: 20px;
	background-color: #ececec;
}

/*------------------------------ modal ------------------------------*/
/*------------------------------ media header modal ------------------------------*/
@media (max-width: 1060px) {
	.selectro-switch-case {
		width: 50%;
	}
}

@media (max-width: 800px) {
	.reg-container-div {
		width: 100%;
	}
}

@media (max-width: 670px) {
	.selectro-switch-case {
		width: 80%;
	}

	.reg-container {
		padding: 30px 0;
	}
}

/*------------------------------ footer ------------------------------*/
.footer {
	width: 100%;
	background-color: #ececec;
	display: flex;
	justify-content: space-evenly;
	padding: 10px 0;
}

.footer h4 {
	font-size: 20px;
}

.footer ul {
	margin: 0;
	margin-left: -22px;
}

.footer a {
	color: black;
}

/*------------------------------ media footer ------------------------------*/
@media (max-width: 1100px) {
	.footer {
		flex-wrap: wrap;
		gap: 30px;
	}

	.footer>div {
		width: 95%;
	}
}

.section-line {
	width: 250px;
	height: 4px;
	background-color: #ececec;
	border: none;
	border-radius: 60px;
}

main {
	min-height: 80vh;
}

.err {
	border: red solid 2px !important;
}

.valid {
	border: green solid 2px !important;
}

.sign-in-but {
	margin-left: 10px;
}

.password-err {
	display: none;
	color: red;
}

.success,
.failed {
	position: fixed;
	top: -100px;
	width: 100%;
	height: 80px;
	display: flex;
	justify-content: center;
	z-index: 999999999999999;
}

.log-anim {
	animation: 3s linear 1 log_anim forwards;
}

.success-contaoner {
	width: 300px;
	background-color: #008000ab;
	display: flex;
	color: white;
	backdrop-filter: blur(5px);
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	gap: 10px;
	padding: 0 10px;
}

.failed-contaoner {
	width: 320px;
	background-color: rgba(255, 0, 0, 0.673);
	display: flex;
	color: white;
	backdrop-filter: blur(5px);
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	gap: 10px;
}

@keyframes log_anim {
	0% {
		top: -100px;
	}

	10% {
		top: 10px;
	}

	90% {
		top: 10px;
	}

	100% {
		top: -100px;
	}
}

.header-menu-item a {
	font-size: 12px;
}

.pass-label {
	color: #888;
}

.download-price-but {
	display: flex;
	border: none;
	gap: 10px;
	padding: 0;
	background: none;
	cursor: pointer;
	font-weight: 600;
}

.download-price-modal-catalog,
.select-parent-category {
	border: none;
	height: 60px;
	border-radius: 0;
	border-radius: 20px;
	padding: 0 30px;
	background: linear-gradient(90deg, rgba(236, 236, 236, 1) 0%, rgba(236, 236, 236, 0.5) 51%, rgba(236, 236, 236, 0) 100%);
}

.download-price-modal-body p {
	color: #888;
	margin-left: 10px;
}

.download-price-list {
	background-color: #185c37;
	color: white;
}

.download-price-list span {
	display: inline-block;
	animation: Spinner 1s linear infinite;
}

@keyframes Spinner {
	0% {
		transform: rotate(0deg);
	}

	80% {
		transform: rotate(250deg);
	}

	100% {
		transform: rotate(360deg);
	}
}