/* NORMALIZING STYLES */

* {
	padding: 0;
	margin: 0;
	border: 0;
	box-sizing: border-box;
}

*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

nav,
footer,
header,
aside {
	display: block;
}

html,
body {
	height: 100%;
	line-height: 1;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	margin: 0;
	padding: 0;
}

input,
button,
textarea {
	font-family: inherit;
}

input::-ms-clear {
	display: none;
}

.input[type="file"] {
	display: none;
	/* Скрываем стандартный input */
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

/* ELEMENTS */

/** BUTTONS **/

button {
	font-family: inherit;
	cursor: pointer;
	width: 200px;
	height: 40px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background-color: #03cbe6;
}

button:hover {
	border: 2px solid #03cbe6;
	background-color: #fff;
	color: #03cbe6;
}

/** INPUTS **/

input,
textarea,
select {
	border: 1px solid #03cbe6;
	background-color: #fff;
}


/* GLOBAL STYLES */

@font-face {
	font-family: 'MyWebFont';
	src: url('../fonts/jaapokki-webfont/jaapokki-regular.eot');
	src: url('../fonts/jaapokki-webfont/jaapokki-regular.eot') format('eot'),
		url('../fonts/jaapokki-webfont/jaapokki-regular.woff') format('woff'),
		url('../fonts/jaapokki-webfont/jaapokki-regular.ttf') format('truetype'),
		url('../fonts/jaapokki-webfont/jaapokki-regular.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

body {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.container {
	max-width: 1920px;
	height: 100vh;
	margin: 0 auto;
	padding: 0 1%;
}

/* HEQDER */

.header {
	position: fixed;
	margin: 0 auto;
	top: 0;
	width: 98%;
	height: 130px;
	display: flex;
	flex-direction: column;
	/* Flex direction column to stack items vertically */
	background-color: #fff;
	background: #0056b3;
	z-index: 1000;
}

.header_top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 80px;
	overflow: visible;
	z-index: 2;
}

/** MENU **/

.menu_wraper {
	width: 80%;
	height: 80px;
	z-index: 2;
	background-color: rgba(255, 255, 255, 1);
}

.menu_container {
	width: 100%;
	margin: 0px auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 75px;
	flex-wrap: nowrap;
}

.upper_menu {
	width: 100%;
	z-index: 1000;
}

.menu_icon {
	display: none;
}

.menu_list>li {
	position: relative;
	margin: 0 20px 0px 0px;
	width: fit-content;
}

.menu_link {
	color: #000;
	font-family: 'Jaapokki regular', 'Times New Roman', Times, serif;
	font-size: 20px;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	border-top: 2px solid transparent;
	transition: border-bottom 1s ease, border-top 1s ease;
}

.menu_link:hover {
	color: #038596;
	border-bottom: 2px solid #038596;
	border-top: 2px solid #038596;
}

.special {
	color: red;
}

.special:hover {
	color: red;
	border-bottom: 2px solid red;
	border-top: 2px solid red;
}

.menu_sublist {
	position: fixed;
	left: 0;
	top: 55px;
	background-color: #fff;
	padding: 25px;
	width: 100vw;
	height: 100vh;
}

.menu_sublist li {
	margin: 0px 0px 30px 50px;
}

.menu_sublink {
	font-family: 'Jaapokki regular', 'Times New Roman', Times, serif;
	color: #000;
	text-decoration: none;
	font-size: 22px;
	border-bottom: 2px solid transparent;
	border-top: 2px solid transparent;
	transition: border-bottom 1s ease, border-top 1s ease;
}

.menu_sublink:hover {
	color: #038596;
	border-bottom: 2px solid #038596;
	border-top: 2px solid #038596;
}

.menu_arrow {
	display: none;
}

/* ----------------------- */
body._pc .menu_list>li:hover .menu_sublist {
	opacity: 1;
	visibility: visible;
	transform: translate(0px, 0px);
	pointer-events: all;
}

body._touch .menu_list>li {
	display: flex;
	align-items: center;
}

body._touch .menu_link {
	flex: 1 1 auto;
}

body._touch .menu_arrow {
	display: block;
	width: 0;
	height: 0;
	margin: 0px 0px 0px 5px;
	transition: transform 0.3s ease 0s;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 10px solid #000;
}

body._touch .menu_list>li._active .menu_sublist {
	opacity: 1;
	visibility: visible;
	transform: translate(0px, 0px);
	pointer-events: all;
}

body._touch .menu_list>li._active .menu_arrow {
	transform: rotate(-180deg);
}

/* ----------------------- */
@media (min-width: 991px) {
	.menu_list {
		display: flex;
	}

	.menu_list>li {
		padding: 10px 0;
	}

	.menu_sublist {
		transform: translate(0px, 10%);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: all 0.3s ease 0s;
	}
}

@media (max-width: 1200px) {

	.menu_icon {
		z-index: 20;
		display: block;
		position: relative;
		width: 30px;
		height: 18px;
		cursor: pointer;
		margin-left: 0px;
		margin-top: 0px;
	}

	.menu_icon span,
	.menu_icon::before,
	.menu_icon::after {
		left: 0;
		position: absolute;
		height: 10%;
		width: 100%;
		transition: all 0.3s ease 0s;
		background-color: #000;
	}

	.menu_icon::before,
	.menu_icon::after {
		content: "";
	}

	.menu_icon::before {
		top: 0;
	}

	.menu_icon::after {
		bottom: 0;
	}

	.menu_icon span {
		top: 50%;
		transform: scale(1) translate(0px, -50%);
	}

	.menu_icon._active span {
		transform: scale(0) translate(0px, -50%);
	}

	.menu_icon._active::before {
		top: 50%;
		transform: rotate(-45deg) translate(0px, -50%);
	}

	.menu_icon._active::after {
		bottom: 50%;
		transform: rotate(45deg) translate(0px, 50%);
	}

	.menu_body {
		position: fixed;
		top: 0px;
		left: -100%;
		width: 100%;
		height: 100%;
		background-color: #fff;
		padding: 100px 30px 30px 30px;
		transition: left 0.3s ease 0s;
		overflow: auto;
		z-index: 1000;
	}

	.menu_body._active {
		left: 0;
		z-index: 10;
	}

	.menu_body::before {
		content: "";
		position: fixed;
		width: 100%;
		top: 100px;
		left: 0;
		height: 10px;
		z-index: 20;
	}

	.menu_list>li {
		flex-wrap: wrap;
		margin: 0px 0px 30px 0px;
	}

	.menu_list>li:last-child {
		margin-bottom: 0;
	}

	.menu_list>li._active .menu_sublist {
		display: block;
	}

	.menu_link {
		font-size: 24px;
	}

	.menu_sublist {
		position: relative;
		flex: 1 1 100%;
		margin: 20px 0px 0px 0px;
		display: none;
		background-color: #9fe8d6;
	}

	.menu_sublink {
		font-size: 20px;
		color: #000;
	}
}

@media (max-width: 768px) {
	.menu_container {
		flex-wrap: wrap;
	}
}

@media (max-width: 460px) {
	.menu_container {
		justify-content: center;
	}
}

/* LOG IN / REGISTRATION POP UP */
.popup {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

.popup-content {
	display: flex;
	justify-content: left;
	align-items: flex-start;
	background: white;
	padding: 20px;
	border-radius: 8px;
	position: relative;
	width: 90%;
	max-width: 500px;
	text-align: left;
}

#email-section {
	width: 100%;
}

.account_create {
	margin: 10px 0;
	width: 100%;
	height: 30px;
	font-size: 16px;
	padding-left: 10px;
}

#email-section h3 {
	margin-top: 15px;
}

.login_btn {
	width: 100%;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		visibility: hidden;
	}

	to {
		opacity: 1;
		visibility: visible;
	}
}

/* Ключевые кадры для анимации исчезновения */
@keyframes fadeOut {
	from {
		opacity: 1;
		visibility: visible;
	}

	to {
		opacity: 0;
		visibility: hidden;
	}
}

/* Состояние элемента */
#popup {
	opacity: 0;
	visibility: hidden;
}

/* Плавное появление */
#popup.show {
	animation: fadeIn 0.5s forwards;
}

/* Плавное исчезновение */
#popup.hide {
	animation: fadeOut 0.5s forwards;
}

#close_btn {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 20px;
	cursor: pointer;
}

.hidden {
	display: none;
}

.account {
	position: relative;
	display: flex;
	justify-content: end;
	align-items: center;
	width: 30%;
	z-index: 5;
}

.user_menu_container {
	position: relative;
	display: flex;
	width: 75px;
	align-items: center;
	z-index: 5;
}

#user,
#cart {
	width: 18px;
	height: 18px;
}

#user {
	margin-right: 35px;
}

#close {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.5s ease;
}

#close img {
	width: 18px;
	height: 18px;
}

#user i,
#cart i {
	font-size: 18px;
	line-height: 18px;
}

#cart i {
	position: absolute;
	top: 0;
}

#user i {
	opacity: 1;
	transition: opacity 0.5s ease;
}

.checkbox {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	opacity: 0;
	pointer-events: all;
}

.menu_items {
	position: absolute;
	top: 35px;
	right: 0;
	box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
	height: 300px;
	width: 315px;
	transform: translate(150%);
	display: flex;
	flex-direction: column;
	margin-left: 0px;
	padding-left: 0px;
	transition: transform 0.5s ease-in-out;
	text-align: center;
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
	z-index: 5;
}

.user_menu_container input[type="checkbox"]:checked~.menu_items {
	transform: translateX(0);
}

.user_menu_container input[type="checkbox"]:checked~#user i {
	opacity: 0;
}

.user_menu_container input[type="checkbox"]:checked~#close {
	opacity: 1;
}

.login {
	margin: 20px auto;
}

.user_menu_items {
	margin-top: 15px;
	font-size: 20px;
	font-weight: 500;
}

.menu_items a {
	color: #000;
	text-decoration: none;
}

/** SEARCH BAR **/

header .search_container {
	position: relative;
	max-width: 1920px;
	height: 30px;
	border: 2px solid #03cbe6;
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	z-index: 1;
}

.input_container,
.input_container input {
	width: 100%;
	height: 100%;
}

.search_button {
	margin: 20px auto;
	width: 200px;
	height: 30px;
	font-size: 18px;
	font-weight: bold;
}

@media (max-width: 460px) {
	.search_button {
		width: 100px;
	}
}

main {
	margin-top: 130px;
}

/** LOGO **/

.logo-container {
	width: 100%;
	margin: 1% auto 0 auto;
	z-index: 1000;
}

.logo {
	width: 100%;
}




/*LOGO END */

/* CARDS CONTAINER */

.cards-container {
	margin: 50px auto;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}

@media (max-width: 640px) {
	.cards-container {
		grid-template-columns: repeat(2, minmax(100px, 1fr));
		gap: 15px;
	}
}

/* CARDS CONTAINER END */

/* CQRDS */

.card {
	flex: 1 1 auto;
	/* Grow, shrink, basis */
	/* min-width: 300px;
	max-width: 300px; */
	display: inline-block;
	margin-bottom: 10px;
	border-radius: 4px;
	box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
	transition: all 0.2s ease;
	background: #fff;
	position: relative;
	overflow: hidden;
}

.card:hover,
.card.hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.3), 0 0 1px 0 rgba(0, 0, 0, 0.25);
}

.card:hover .card-content,
.card.hover .card-content {
	box-shadow: inset 0 3px 0 0 #ccb65e;
	border-color: #ccb65e;
}

.card:hover .card-img .overlay,
.card.hover .card-img .overlay {
	background-color: rgba(25, 29, 38, 0.85);
	transition: opacity 0.2s ease;
	opacity: 1;
}

.card-img {
	position: relative;
	height: 300px;
	width: 100%;
	background-color: #fff;
	transition: opacity 0.2s ease;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.card-img .overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: 0;
}

.card-img .overlay .overlay-content {
	line-height: 300px;
	width: 100%;
	text-align: center;
	color: #fff;
}

.card-img .overlay .overlay-content a {
	color: #fff;
	padding: 0 2rem;
	display: inline-block;
	border: 1px solid rgba(255, 255, 255, 0.4);
	height: 40px;
	line-height: 40px;
	border-radius: 20px;
	cursor: pointer;
	text-decoration: none;
	font-size: 20px;
	font-weight: 600;
}

.card-img .overlay .overlay-content a:hover,
.card-img .overlay .overlay-content a.hover {
	background: #038596;
	border-color: #038596;
}

.overlay-new {
	position: absolute;
	top: 45px;
	left: -45px;
	background-color: #fff;
	color: red;
	font-size: 20px;
	font-weight: 600;
	padding: 8px 50px;
	transform: rotate(-45deg);
	display: inline-block;
}

.card-content {
	width: 100%;
	min-height: 104px;
	background-color: #fff;
	border-top: 1px solid #e9e9eb;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
	padding: 1rem 2rem;
	transition: all 0.2s ease;
}

.card-content a {
	text-decoration: none;
	color: #202927;
}

.card-content h2,
.card-content a h2 {
	font-size: 20px;
	font-weight: 500;
	margin-top: 25px;
}

.card-content p,
.card-content a p {
	font-size: 18px;
	white-space: nowrap;
	margin-top: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	color: rgba(32, 41, 28, 0.8);
}
.old-price {
	text-decoration: line-through;
  }

.separator {
	margin-top: 50px;
	width: 100%;
	height: 3px;
	background-color: #b4f6ff;
}

.separator_short {
	flex-grow: 1;
	/* Полоска будет занимать всё доступное пространство */
	height: 1.5px;
	background-color: rgba(32, 41, 28, 0.8);
	margin: 0 2%;
	/* Отступы между полосками и заголовком */
}

/* SLIDER */
/* main page */

.workshop {
	position: relative;
	width: 100%;
	max-height: 450px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	z-index: 0;
}

.workshop video {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.workshop_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.5;
	z-index: 2;
}

.workshop_text {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	height: 100%;
	z-index: 3;
	font-size: 24px;
	color: #fff;
	padding: 30px 15px;
	text-align: center;
}

.workshop_text h2 {
	font-size: calc(16px + (46 - 16) * ((100vw - 320px) / (1920 - 320)));
}

.workshop_text p {
	font-size: calc(14px + (36 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.slider {
	width: 100%;
	height: 450px;
	margin-top: 50px;
	display: flex;
	justify-content: start;
	align-items: center;
}

@media (max-width: 768px) {
	.slider {
		flex-direction: column;
		height: auto;
	}
}

@media (max-width: 460px) {
	.workshop_text {
		padding: 10px 8px;
	}

	.workshop_button {
		width: 150px;
		height: 30px;
		font-size: 16px;
	}
}

.swiper {
	width: 300px;
	height: 450px;
	overflow: hidden;
}

.swiper-slide {
	position: relative;
	width: 100%;

}

.swiper-slide img {
	width: 100%;
	position: relative;
}

.overlay-slide {
	position: absolute;
	background-color: rgba(76, 119, 124, 0.3);
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	color: #fff;
}

.overlay-slide-two {
	position: absolute;
	background-color: rgba(76, 119, 124, 0.9);
	bottom: 0;
	width: 100%;
	height: 34%;
}

.title {
	position: absolute;
	bottom: 90px;
	width: 100%;
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	z-index: 5;
}

.slide-link {
	color: #fff;
	text-decoration: none;
}

.subtitle {
	position: absolute;
	bottom: 50px;
	width: 100%;
	text-align: center;
	font-family: 'jaapokki-regular';
	font-size: 24px;
	font-weight: 600;
	z-index: 5;
}

.numbers {
	font-family: 'Playfair', serif;
	font-size: 25px;
}

.testimonial {
	flex: 1;
	height: 100%;
	font-family: 'Dynalight', cursive;
	font-size: 40px;
	padding-left: 30px;
}

@media (max-width: 768px) {
	.testimonial {
		padding: 0;
	}
}

.testimonial-text {
	margin: 0 auto;
	height: 100%;
	box-shadow: 5px 5px 15px 0 rgba(76, 119, 124, 0.3);
}

.testimonial-message {
	display: inline-block;
	position: relative;
	top: 20%;
	padding: 0 40px;
}

.testimonial-signature {
	display: inline-block;
	position: relative;
	top: 30%;
	width: 100%;
	padding: 0 110px;
	text-align: right;
}

@media (max-width: 991px) {
	.testimonial-message {
		top: 10%;
	}

	.testimonial-signature {
		top: 20%;
	}
}

@media (max-width: 768px) {
	.testimonial {
		height: auto;
		margin-top: 30px;
	}

	.testimonial-text {
		height: auto;
		padding: 10px 0;
	}
}

/*  category page */
/*.slider-category {
	width: 100%;
	height: 609px;
	margin-top: 50px;
	display: flex;
	justify-content: start;
	align-items: center;
}

@media (max-width: 768px) {
	.slider-category {
		flex-direction: column;
		height: auto;
	}
}

.swiper-category {
	width: 300px;
	height: 100%;
	overflow: hidden;
}

.swiper-slide-category {
	position: relative;
	width: 100%;
}

.swiper-slide-category img {
	width: 100%;
	position: relative;
}

.overlay-slide-category {
	position: absolute;
	background-color: rgba(76, 119, 124, 0.3);
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	color: #fff;
}

.overlay-slide-two-category {
	position: absolute;
	background-color: rgba(76, 119, 124, 0.9);
	bottom: 0;
	width: 100%;
	height: 100px;
}

.title-category {
	position: absolute;
	bottom: 60px;
	width: 100%;
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	z-index: 5;
}

.subtitle-category {
	position: absolute;
	bottom: 20px;
	width: 100%;
	text-align: center;
	font-family: 'jaapokki-regular';
	font-size: 24px;
	font-weight: 600;
	z-index: 5;
}
 */
/* SLIDER END */

/* FOOTER */
footer {
	margin-top: 30px;
	padding-bottom: 50px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	font-family: 'Jaapokki regular', 'Times New Roman', Times, serif;
}

@media (max-width: 480px) {
	footer {
		flex-direction: column;
		align-items: flex-start;

	}

	.footer_title {
		margin: 30px 0 10px 0;
	}
}

.footer_title {
	text-transform: uppercase;
	margin-bottom: 10px;
}

.footer_links {
	margin-top: 15px;
	font-size: 20px;
	font-size: 18px;
	font-weight: 500;
}

.footer_links a {
	color: #000;
	text-decoration: none;
	line-height: 1.3;
}

.footer_links a:hover {
	border-bottom: 2px solid #03cbe6;
	padding-bottom: 3px;
}

.social {
	width: 20px;
	height: 20px;
	margin: 8px 15px 0 0;
	color: #03cbe6;
}

/* FOOTER END */

/* FOOTER PAGES */

.footer_pages h1 {
	text-align: center;
	margin-bottom: 30px;
}

.footer_pages h3 {
	margin-top: 40px;
}

.footer_pages p {
	margin: 30px 0 20px 0;
	text-align: justify;
	font-size: 18px;
}

/* PRODUCT PAGE */

.product_container {
	margin: 0px auto 50px auto;
	padding-top: 0px;
	display: flex;
	justify-content: space-between;
	align-items: start;
}

.product_images_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 50%;
	overflow: hidden;
}

.product_image {
	width: 49%;
	height: auto;
	margin-bottom: 15px;
}

.product_image img {
	width: 100%;
	height: auto;
}

.product_info {
	width: 50%;
	height: auto;
	padding-left: 40px;
	color: #7a7a7a;

}

.product_info p {
	margin-top: 15px;
	font-size: 22px;
}

.add_to_cart {
	margin: 75px 0 25px 0;
	width: 100%;
	height: 50px;
}

@media (max-width: 991px) {
	.product_container {
		padding-top: 130px;
		position: relative;
		margin: -110px auto 50px auto;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.product_images_container {
		width: 100%;
	}

	.product_info {
		margin-top: 25px;
		padding-left: 0;
		width: 100%;
	}

	.add_to_cart {
		margin: 30px 0 25px 0;
	}
}

.similar_products_title {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.similar_products_title h2 {
	font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
	white-space: nowrap;
}

.similar_products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
	margin: 50px auto 50px auto;
}

@media (max-width: 640px) {
	.similar_products {
		grid-template-columns: repeat(2, minmax(100px, 1fr));
		gap: 15px;
	}
}

.similar_product {
	flex: 1 1 auto;
	margin-right: 0px;
	height: auto;
}

.similar_product_image {
	width: 100%;
	height: auto;
}

.similar_product_image img {
	width: 100%;
	height: 100%;
}

.similar_product p {
	margin-top: 15px;
	font-size: 18px;
}

/* DISCOUNTS */

.discount {
	text-decoration: line-through;
}

.new_price {
	color: red;
	font-size: 20px;
}

/* CATEGORY */
.category_title {
	margin-top: 15px;
	font-size: calc(14px + (28 - 14) * ((100vw - 320px) / (1920 - 320)));
	text-transform: uppercase;
}

/* CONTACT FORM */
.input {
	width: 300px;
	height: 30px;
	font-size: 16px;
	margin: 10px 0;
}

/* Стили для кастомного чекбокса */
.custom-check input[type="checkbox"] {
	display: none;
}

.custom-check label {
	display: inline-block;
	position: relative;
	padding-right: 30px;
	cursor: pointer;
	user-select: none;
}

.custom-check label::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 20px;
	height: 20px;
	border: 1px solid #03cbe6;
	/* Цвет обводки */
	background-color: #fff;
	/* Цвет фона */
}

.custom-check input[type="checkbox"]:checked+label::before {
	background-color: #03cbe6;
	/* Цвет фона при отметке */
	border-color: #0056b3;
	/* Цвет обводки при отметке */
}

.custom-check input[type="checkbox"]:checked+label::after {
	content: "✔";
	/* Символ для отмеченного чекбокса */
	position: absolute;
	right: 3px;
	top: 3px;
	color: #fff;
	/* Цвет символа */
}

#contact textarea {
	width: 100%;
	height: 300px;
	font-size: 16px;
}

#send {
	width: 100%;
}

/* ACCOUNT */
.acoount_section {
	margin-bottom: 30px;
	max-width: 100%;
	overflow: hidden;
}

.section_name {
	margin-bottom: 20px;
	color: #7a7a7a;
}

.personal_info,
.my_orders {
	margin: 30px 0;
	display: flex;
	justify-content: start;
	align-items: start;
	color: #7a7a7a;
}

.personal_info div:first-child {
	margin-right: 30px;
}

.account_line {
	margin-top: 10px;
}

#last_name {
	text-transform: uppercase;
}

#personal_modification,
#password_modification {
	width: 100%;
}

.my_orders {
	margin-top: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
}

.my_orders h2,
h3 {
	width: 100%;
}

.my_orders h3 {
	background-color: #7a7a7a;
	color: #fff;
	text-align: center;
	padding: 5px 0;
}

.my_order {
	margin-top: 10px;
	width: 100%;
	height: auto;
}

.my_order_details {
	margin-top: 10px;
	display: flex;
	justify-content: start;
	align-items: start;
}

.my_order_pic {
	width: 150px;
	height: 150px;
}

.my_order_details div {
	margin: 0 30px 10px 0;
}

.my_order_details a {
	color: inherit;
}

.my_order_details a:hover {
	color: #03cbe6;
}

@media (max-width: 639px) {
	.section_name {
		margin-bottom: 0;
	}

	.personal_info,
	.my_orders {
		margin-bottom: 30px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: start;
		color: #7a7a7a;
	}

	.personal_info h3 {
		margin-top: 20px;
	}

	.my_order_details {
		flex-direction: column;
	}
}

/* UPDATE ACCOUNT */
.account_update {
	margin-top: 10px;
	width: 300px;
	height: 35px;
	font-size: 18px;
	color: #7a7a7a;
}

#last_name_update {
	text-transform: uppercase;
}

/* PAGINATION */
.pagination {
	text-align: center;
}

.page-numbers {
	color: #000;
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	margin-right: 10px;
}

.page-numbers:visited {
	color: #000;
}

.current-page {
	color: red;
	font-weight: 700;
	font-size: 22px;
}

/*** DASHBOARD ***/
.logo-container_dash {
	margin: 0 auto;
	width: 300px;
}

.logo_dash {
	width: 100%;
	height: auto;
}

/* LOGIN PAGE */
.login-container {
	width: 300px;
	margin: 0 auto;
}

.password-container {
	position: relative;
	width: 100%;
}

.password-container span {
	position: absolute;
	right: 10px;
	top: 40%;
	transform: translateY(-50%);
	cursor: pointer;
}

.password-container img {
	width: 15px;
	color: #000;
}

#login,
#password,
#name,
#email,
#password-confirm {
	border: 2px solid #32c732;
}

#login:placeholder-shown,
#password:placeholder-shown,
#name:placeholder-shown,
#email:placeholder-shown,
#password-confirm:placeholder-shown {
	border-color: red;
}

.admin-login {
	width: 100%;
}

/* DASHBOARD */
.wraper {
	width: 100%;
}

.header-admin {
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: start;
	align-items: center;
	width: 99%;
	height: 100px;
}

.logo-container-admin {
	margin: 20px 0;
	width: 300px;
}

.main-admin {
	margin: 20px 0;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: start;
}

.menu-admin-title {
	text-align: center;
}

.menu-admin {
	width: 20%;
	/* background-color: #e6f6f8; */
}

.section {
	padding: 10px;
	font-size: 22px;
	font-weight: 500;
	background-color: #e6f6f8;
}

#analitics {
	margin-top: 20px;
}

.category-admin {
	padding: 10px 0 3px 10px;
	background-color: #fff;
	font-size: 20px;
	border-bottom: 1px solid #000;
}

.menu-admin-btn {
	width: 100%;
	height: 30px;
	text-align: left;
	padding-left: 10px;
	background-color: #fff;
	color: #000;
	font-weight: 400;
	margin-bottom: 2px;
}

.top {
	margin-top: 10px;
}

.menu-admin-btn:hover,
.menu-admin-btn .activ {
	background-color: #03cbe6;
	color: #000;
	border: none;

}

/* LOG IN / LOG OUT */
.login-admin {
	border: 0;
	width: 100%;
	height: 1px;
	background-color: #000;
	margin: 10px 0;
}

#logout {
	margin: 50px 0 0 10px;
	color: red;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
}

.subs-container {
	margin: 0 auto;
	width: fit-content;
}

.content-admin {
	display: flex;
	justify-content: flex-start;
	gap: 25px;
	width: 100%;
	padding-left: 20px;
}

.selection {
	display: flex;
	align-items: center;
}

#sort-products {
	width: 60px;
	height: 30px;
	margin-right: 25px;
}

#search-by-sku {
	width: 120px;
	height: 30px;
}

.table-container {
	display: flex;
	flex-direction: column;
	width: 79%;
	height: 900px;
	overflow-y: auto;
}

.products-table,
.users-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	margin-bottom: 30px;
	border-bottom: 1px solid #000;
}

thead {
	position: sticky;
	top: 0;
	background-color: #e6f6f8;
}

th {
	text-align: left;
	padding: 11px 0 12px 3px;
}

tbody {
	z-index: 0;
}

tr:nth-child(even) {
	background-color: #e6f6f8;
}

td {
	text-align: left;
}
td.status {
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
}

td.on-stock {
    background-color: green;
}

td.reserved {
    background-color: orange;
}

td.sold {
    background-color: red;
}
td:first-child {
	border-bottom: none;
}


.dash-image {
	width: 80px;
	height: 80px;
}

.update-link {
	color: #32c732;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.delete-link {
	color: red;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	background: none;
	border: none;
	cursor: pointer;
	width: fit-content;
	margin-left: 0px;
}

.delete-link:hover {
	color: red;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	background: none;
	border: none;
	cursor: pointer;
	width: fit-content;
	margin-left: 0px;
}

.delete-form {
	display: inline;
}

#product-category,
#product-subcategory,
#product-status {
	margin: 10px 15px 15px 0;
	width: 250px;
	height: 30px;
	font-size: 16px;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

#search-products {
	margin: 10px 15px 15px 0;
	width: 100px;
	height: 30px;
	font-size: 16px;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.alert {
	width: 300px;
	border: 2px solid red;
	padding: 5px;
	margin-bottom: 10px;
	text-align: justify;
}

.alert h3 {
	text-align: center;
	color: red;
}

#description {
	width: 300px;
	height: 100px;
}

#product-images,
#main-product-image {
	opacity: 0;
	/* Сделать input невидимым */
	position: absolute;
	/* Убрать его из потока документа */
	z-index: -1;
	/* Убедиться, что он не перекрывает другие элементы */
}

.custom-file-label {
	display: inline-block;
	font-family: inherit;
	text-align: center;
	cursor: pointer;
	width: 300px;
	height: 40px;
	font-size: 17.5px;
	font-weight: bold;
	padding: 12px;
	color: #fff;
	background-color: #03cbe6;
}

.custom-file-label:hover {
	border: 2px solid #03cbe6;
	background-color: #fff;
	color: #03cbe6;
}

.delete-photo {
	background-color: red;
}

.delete-photo:hover {
	border: 2px solid red;
	background-color: #fff;
	color: red;
}

.file-list {
	margin: 10px 0;
	font-size: 18px;
	color: #333;
}

.file-list div {
	margin-bottom: 8px;
}

#alt-field div,
#alt-fields div,
#new-fields div {
	width: 300px;
	height: 80px;
	font-size: 18px;
	color: #000;
	margin: 15px 0;
}

#alt-field input,
#alt-fields input,
#new-alt-fields input {
	margin: 15px 0;
	width: 300px;
	height: 40px;
}

#send-article,
#update-article {
	margin-top: 25px;
	width: 300px;
}

/* UPDATE PRODUCT */
.update-image {
	width: 300px;
	height: 300PX;
	margin: 10px 0;
}

.update {
	background-color: #32c732;
}

.update:hover {
	background-color: #fff;
	border: 2px solid #32c732;
	color: #32c732;
}

.delete {
	background-color: #ff0000;
}

.delete:hover {
	background-color: #fff;
	border: 2px solid #ff0000;
	color: #ff0000;
}

.delete-product-title {
	color: red;
	font-weight: 900;
}

.delete-product-btn {
	margin: 12px 0;
	background-color: red
}

.delete-product-btn:hover {
	background-color: #fff;
	border: 2px solid #ff0000;
	color: #ff0000;
}

/* USERS */
.users-table td {
	padding: 10px 0 10px 0;
}

#add-admin {
	width: 300px;
}

.error {
	color: red;
	font-weight: 700;
	margin-bottom: 0px;
}

#name-error,
#email-error,
#password-error,
#confirm-error {
	height: fit-content;
	margin-top: 5px;
}

.password-restore-message {
	margin-bottom: 5px;
}

/* SUCCESS PAGE */
.success-container {
	position: absolute;
	top: 100px;
	left: 0;
	z-index: 5;
	width: 100%;
	height: calc(100vh - 145px);
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
}

.success {
	margin: 0 auto;
	width: 300px;
	height: 200px;
	color: #202927;
	font-size: 16px;
	padding: 5px;
}

.success p {
	text-align: left !important;
}

#success-line {
	width: 100%;
	height: 3px;
	background-color: #b4f6ff;
}

.success p {
	margin-top: 15px;
	text-align: center;
	font-weight: 500;
}

/* SUCCESS MAIL PAGE */
.envelope-container {
	display: grid;
	place-items: center;
	height: 60vh;
}

.envelope {
	position: relative;
	width: calc(300px + (600 - 300) * ((100vw - 320px) / (1920 - 320)));
	height: calc(150px + (300 - 150) * ((100vw - 320px) / (1920 - 320)));
	border: 0.1px solid #000;
	background-color: #f0f6f7;
	box-shadow: 5px 3px 5px #bebdbd;
}

.sender {
	position: absolute;
	display: inline-block;
	top: calc(10px + (30 - 10) * ((100vw - 320px) / (1920 - 320)));
	left: calc(10px + (30 - 10) * ((100vw - 320px) / (1920 - 320)));
}

.sender div:nth-child(1) {
	margin-bottom: 8px;
	font-size: calc(12px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
}

.sender div:nth-child(2),
.sender div:nth-child(3) {
	font-family: "Dancing Script", serif;
	font-style: normal;
	font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
}

.sender div {
	margin-bottom: 0px;
}

.stamp {
	position: absolute;
	display: inline-block;
	top: calc(10px + (30 - 10) * ((100vw - 320px) / (1920 - 320)));
	right: calc(10px + (30 - 10) * ((100vw - 320px) / (1920 - 320)));
}

.stamp img {
	width: calc(50px + (100 - 50) * ((100vw - 320px) / (1920 - 320)));
	transform: rotate(57deg);
}

.thanks {
	position: absolute;
	display: inline-block;
	top: 40%;
	left: 12%;
	color: red;
	font-size: 24px;
	font-size: calc(15px + (24 - 15) * ((100vw - 320px) / (1920 - 320)));
	font-weight: 700;
	transform: rotate(-33deg);
}

.receiver {
	position: absolute;
	bottom: calc(10px + (50 - 10) * ((100vw - 320px) / (1920 - 320)));
	right: calc(10px + (30 - 10) * ((100vw - 320px) / (1920 - 320)));
}

.receiver div {
	margin-bottom: -5px;
	font-size: calc(12px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
}

.receiver img {
	margin-top: 10px;
	width: calc(150px + (350 - 150) * ((100vw - 320px) / (1920 - 320)));
	border-radius: 3px;
}

/*** RESERVATION CONFIRMATION PAGE ***/
.email-notification {
	color: #000;
	font-size: 14px !important;
	margin-bottom: 10px;
}

#reservation_button {
	width: 300px;
}

/*** COOKIE BANNER ***/
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #333;
	color: #fff;
	text-align: center;
	padding: 15px;
	z-index: 9999;
	display: none;
}

.cookie-banner p {
	margin: 15px 0;
}

.cookie-banner button {
	margin: 10px 10px;
	padding: 10px 10px;
	border: none;
	background-color: #4CAF50;
	color: white;
	cursor: pointer;
}

#decline-cookies,
#revoke-cookie-consent {
	background-color: #f7525a;
}

#decline-cookies:hover,
#revoke-cookie-consent:hover {
	background-color: #f83d46;
}

#revoke-cookie-consent {
	width: 250px;
	height: 40px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
}

#revoke-cookie-consent:hover {
	border: none;
}

.modal {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 10;
}

.modal-content {
	background-color: white;
	padding: 20px;
	margin: 20% auto;
	width: 400px;
	text-align: center;
	border-radius: 10px;
}

#close-modal {
	margin-top: 15px;
}

.privacy_link {
	color: #03cbe6;
	text-decoration: none;
	line-height: 1.3;
}

.privacy_link:hover {
	border-bottom: 2px solid #03cbe6;
	padding-bottom: 3px;
}

.cookie-banner button:hover {
	background-color: #45a049;
}

.cookie-banner a {
	color: #fff;
	text-decoration: underline;
	margin-left: 20px;
}

/*** PAGE 404 ***/
.not-found-container {
	position: absolute;
	top: 70px;
	left: 0;
	z-index: 5;
	width: 100%;
	height: calc(100vh - 150px);
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	padding: 0 10px;
}

/*** SEARCH PAGE ***/
.search-result-item {
	display: flex;
	justify-content: start;
	align-items: end;
	gap: 15px;
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 600;
}

.search-result-item img {
	width: 100px;
}

.search-result-item h2 {
	font-size: 20px;
}

.search-result-link {
	text-decoration: none;
	color: #075f6b;
	border-bottom: 2px solid #075f6b;
	padding-bottom: 3px;
}

.search-result-link:hover {
	color: #03cbe6;
	border-bottom: 2px solid #03cbe6;
}