:root {
    --container-width: 1400px;
}
 @font-face {
    font-family: Gotham;
    src: url(../fonts/gotham/gothampro.ttf);
    font-weight: 100;
}
 @font-face {
    font-family: Gotham;
    src: url(../fonts/gotham/gothampro_medium.ttf);
    font-weight: 200;
}
 @font-face {
    font-family: Gotham;
    src: url(../fonts/gotham/gothampro_bold.ttf);
    font-weight: 300;
}
 @font-face {
    font-family: Gotham;
    src: url(../fonts/gotham/gothampro_black.ttf);
    font-weight: 400;
}
 p {
    margin: 0;
}
 a {
    text-decoration: none;
    color: #000;
}
 body {
    margin: 0;
    font-family: Gotham;
    font-weight: 100;
    position: relative;
}
 .container {
    width: var(--container-width);
    margin: 0 auto;
}
 header {
    padding: 25px 0;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}
 header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 header .logo {
}
 header .logo img {
    width: 100px;
}
 header .menu {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 40px;
    align-items: center;
}
 header .menu .drop {
    cursor: pointer;
    background: #4058af;
    color: #fff;
    padding: 10px 10px 10px 32px;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
}
 header .menu .drop a {
    color: #fff;
}
 header .menu .drop:before {
    content: '';
    display: block;
    width: 16px;
    height: 12px;
    position: absolute;
    left: 10px;
    background: linear-gradient(180deg, #fff 0%, #fff 20%, #4058af 20%, #4058af 40%, #fff 40%, #fff 60%, #4058af 60%, #4058af 80%, #fff 80%, #fff 100%);
}
 header .menu a {
}
 header .menu .title-menu {
    margin: 0;
    font-weight: 200;
}
 header .menu li {
}
 header .contacts {
    font-weight: 200;
}
 header .search {
    padding: 10px;
    border: 1px solid #CDCDCD;
    border-radius: 10px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}
 header .search.active {
     border-radius: 10px 10px 0 0;
     border-bottom: 1px solid #fff;
 }
 header .search input[type="text"] {
    font-family: 'Gotham';
    font-weight: 100;
    color: #000;
    border: none;
    padding: 0;
    width: 300px;
    outline: none;
}
 header .search input[type="submit"] {
    width: 20px;
    height: 20px;
    font-size: 0;
    border: none;
    background: transparent;
    background-image: url('../images/loop.svg');
    background-position: 50% 50%;
    background-size: contain;
    padding: 0;
}
 header .search .search-results {
     position: absolute;
     top: 100%;
     width: calc(100% + 2px);
     left: -1px;
     background: #fff;
     padding: 0 10px 10px 10px;
     font-size: 14px;
     border: 1px solid #CDCDCD;
     box-sizing: border-box;
     border-top: none;
     border-radius: 0 0 10px 10px;
     flex-direction: column;
     display: none;
}
 header .search.active .search-results {
      display: flex;
}
header .search .search-results .items {
     display: flex;
     flex-wrap: wrap;
     gap: 7px;
}
header .search .search-results .items .item {
    display: flex;
    width: 100%;
    padding: 8px 0 0;
    align-items: center;
    box-shadow: 0 -5px 5px -6px;
}
/* header .search .search-results .items .item:nth-last-of-type(1) {
	box-shadow: none;
} */
header .search .search-results .items .img {
    width: 50px;
    height: 50px;
    background-size: cover;
    border-radius: 5px;
    margin-right: 10px;
}
header .search .search-results .items .desc {
    
}
header .search .search-results .items .desc .name {
    margin-bottom: 5px;
}
header .search .search-results .items .desc .price {
    
}
header .search .search-results .items .title {
    width: 100%;
    font-weight: 200;
}
header .search .search-results .items .empty-search {
    
}
header .search .search-results .category-list {
    padding-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
header .search .search-results .category-list .title {
    width: 100%;
    font-weight: 200;
}
header .search .search-results .category-list a {
    padding: 4px 8px;
    border-radius: 5px;
    background: #4058af;
    color: #fff;
}
.fixed-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.95);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 100;
}
.fixed-menu.active {
    top: 0%;
}
.fixed-menu .container {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}
.fixed-menu .title {
    font-size: 36px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0 0 40px;
}
.fixed-menu .close {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.fixed-menu .close::before {
    content: '';
    display: flex;
    width: 100%;
    height: 3px;
    background: #000;
    position: absolute;
    transform: rotate(45deg);
}
.fixed-menu .close::after {
    content: '';
    display: flex;
    width: 100%;
    height: 3px;
    background: #000;
    position: absolute;
    transform: rotate(-45deg);
}
.fixed-menu .menu-content {
    display: flex;
	width: 100%;
}
.fixed-menu .menu-content .level_1 {
    margin: 0;
    padding: 0 20px 0 0;
    list-style: none;
    width: 25%;
	display: flex;
    flex: none;
    font-size: 18px;
    flex-direction: column;
    align-items: flex-start;
}
.fixed-menu .menu-content .level_1 li {
	padding: 5px 0;
    cursor: pointer;
}
.fixed-menu .menu-content .level_1 li.active {
	color: #4058af;
    font-weight: 200;
}
.fixed-menu .menu-content .level_2 {
    display: none;
	margin: 0;
    padding: 0 20px 0 0;
    list-style: none;
    width: 25%;
    flex: none;
    font-size: 18px;
    flex-direction: column;
    align-items: flex-start;
}
.fixed-menu .menu-content .level_2.active {
	display: flex;
}
.fixed-menu .menu-content .level_2 li {
	padding: 5px 0;
	cursor: pointer;
	font-size: 16px;
}
.fixed-menu .menu-content .level_2 li.active {
	color: #4058af;
}
.fixed-menu .menu-content .level_3 {
    width: 50%;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    height: 500px;
    overflow-y: auto;
}
.fixed-menu .menu-content .level_3 .item {
    width: calc(100% / 3 - 40px / 3);
    padding: 30px 5px 5px;
    background: #F5F5F5;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.fixed-menu .menu-content .level_3 .item::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 35px;
    background: #4058AF;
    z-index: 0;
    left: 0;
    bottom: 0;
}
.fixed-menu .menu-content .level_3 .item .inner-info {
    background: #fff;
    border-radius: 5px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    z-index: 1;
    min-height: 150px;
}
.fixed-menu .menu-content .level_3 .item .item-name {
    text-align: center;
    font-size: 14px;
}
.fixed-menu .menu-content .level_3 .item .item-icon {
    text-align: center;
    font-size: 50px;
    color: #4058AF;
    font-weight: 300;
    margin: 0;
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fixed-menu .menu-content .level_3 .item .item-icon.big-name {
	font-size: 30px;
}
.fixed-menu .menu-content .level_3 .item .price {
    font-weight: 300;
    text-align: center;
}
.fixed-menu .drop-menu {
    margin: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    padding: 0;
}
.fixed-menu .drop-menu li {
    width: calc(100% / 5 - 120px / 5);
    display: flex;
    flex-direction: column;
}
.fixed-menu .drop-menu li .parent {
    font-size: 18px;
    font-weight: 200;
    margin: 0 0 10px;
}
.fixed-menu .drop-menu li .child {
    padding-left: 20px;
    font-size: 16px;
    margin: 0 0 3px;
}
 .content-page {
    margin-bottom: 80px;
    min-height: calc(100vh - 390px);
}
 footer {
    padding: 25px 0 40px;
    background: #F5F5F5;
}
 footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 footer .logo {
}
 footer .logo img {
    width: 100px;
}
 footer .menu {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 40px;
    margin: 0;
    align-items: center;
}
 footer .menu .drop {
    background: #4058af;
    color: #fff;
    padding: 10px 10px 10px 32px;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}
 footer .menu .drop:before {
    content: '';
    display: block;
    width: 16px;
    height: 12px;
    position: absolute;
    left: 10px;
    background: linear-gradient(180deg, #fff 0%, #fff 20%, #4058af 20%, #4058af 40%, #fff 40%, #fff 60%, #4058af 60%, #4058af 80%, #fff 80%, #fff 100%);
}
 footer .menu a {
}
 footer .menu .title-menu {
    margin: 0;
    font-weight: 200;
}
 footer .menu li {
}
 footer .contacts {
}
 footer .contacts a.mail {
    font-weight: 200;
    padding: 0 0 0 25px;
    display: flex;
    align-items: center;
    position: relative;
}
 footer .contacts a.mail::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    background-image: url('../images/icons/mail.svg');
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
 footer .social-icons {
    padding: 0;
    list-style: none;
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 20px;
    margin: 20px 0 0;
}
 footer .social-icons img {
}
 footer .copyright {
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #606060;
    margin-top: 20px;
}
 .title-block {
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 300;
    padding: 80px 0 30px;
}
 .breadcrumbs {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 30px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 200;
}
 .breadcrumbs li a {
    color: #8C8C8C;
}
.popup-basket {position: fixed;top: 0;left: 0;z-index: 100;width: 100%;height: 100%;display: none;justify-content: center;align-items: center;background: rgba(255,255,255,.8);}
.popup-basket.active {
	display: flex;
}
.popup-basket .popup-form {width: 500px;padding: 30px;background: #fff;position: relative;border-radius: 20px;box-shadow: 0 0 20px -10px;display: flex;flex-wrap: wrap;justify-content: space-between;}
.popup-basket .popup-form .title {font-family: 'Gotham';font-weight: 200;text-transform: uppercase;text-align: center;margin: 0 0 20px;font-size: 18px;width: 100%;}
.popup-basket .popup-form .user-info {width: 180px;display: flex;flex-direction: column;gap: 16px;}
.popup-basket .popup-form .user-info input{border: 1px solid #b2b2b2;padding: 10px;box-sizing: border-box;width: 100%;border-radius: 10px;font-family: 'Gotham';font-weight: 100;outline:  none;}
.popup-basket .popup-form .delivery-block input[type="text"] {border: 1px solid #b2b2b2;padding: 10px;box-sizing: border-box;width: 100%;border-radius: 10px;font-family: 'Gotham';font-weight: 100;outline:  none;margin-top: 10px;}
.popup-basket .checkbox {font-size: 12px;font-weight: 100;display: flex;align-items: center;gap: 5px;}
.popup-basket .checkbox input {margin: 0}
.popup-basket .popup-form .product-info {width: 300px;display: flex;flex-direction: column;gap: 15px;}
.popup-basket .popup-form .product-info .product {display: flex;gap: 10px;}
.popup-basket .popup-form .product-info .product img {height: 30px;}
.popup-basket .popup-form .product-info .product .description {
}
.popup-basket .popup-form .product-info .product .product-name {font-size: 14px;}
.popup-basket .popup-form .product-info .product .product-price {font-size: 12px;margin: 5px 0;font-weight: 300;}
.popup-basket .popup-form .product-info .product .quantity {display: flex;gap: 10px;align-items: center;}
.popup-basket .popup-form .product-info .product .quantity .text {font-weight: 100;font-size: 12px;}
.popup-basket .popup-form .product-info .product .quantity input {padding: 1px;width: 15px;height: 15px;border: 1px solid #b2b2b2;text-align: center;border-radius: 5px;font-size: 12px;outline:  none;}
.popup-basket .popup-form .product-info textarea {border: 1px solid #b2b2b2;padding: 10px;box-sizing: border-box;width: 100%;border-radius: 10px;font-family: 'Gotham';font-weight: 100;outline: none;resize: none;height: 70px;}
.popup-basket .popup-form .close {width: 25px;height: 25px;display: flex;justify-content: center;align-items: center;position: absolute;top: 11px;right: 10px;cursor: pointer;}
.popup-basket .popup-form .close::before {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: #000;
	position: absolute;
	transform: rotate(-45deg);
}
.popup-basket .popup-form .close::after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background: #000;
	position: absolute;
	transform: rotate(45deg);
}
.popup-basket .popup-form .submit {
	background: #4058AF;
    color: #fff;
    padding: 10px 0;
    border-radius: 10px;
    font-weight: 200;
    cursor: pointer;
    width: 200px;
    text-align: center;
    margin: 18px auto 0;
}
.owl-carousel .owl-nav {
	display: none;
}
@media screen and (max-width: 768px) {
	:root {
		--container-width: calc(100% - 20px);
	}
.container {
	padding:0 10px;
	}
header {
	padding: 10px 0 0;
	box-shadow: 0 5px 15px -10px;
	}
	header .container {
		flex-wrap: wrap;
	}
header .logo {
	order:  1;
	width: 60px;
	margin-right: 20px;
	display: flex;
	}
header .logo img {
	width: 100%;
	}
header .menu {
	order: 4;
	gap: 0;
	justify-content: space-between;
	width: 100%;
	margin: 10px 0;
	}
header .menu .title-menu {
	font-size: 14px;
	}
header .search {
	order: 2;
	justify-content: space-between;
	width: calc(100% - 80px);
	box-sizing: border-box;
	}
header .contacts {
	display: none;
	}
header .search input[type="text"] {
	width: calc(100% - 20px);
	}
.fixed-menu .close {
	width: 30px;
	top: -7px;
	right: 10px;
	}
.fixed-menu .title {
	font-size: 26px;
	margin: 0 0 20px;
	}
.fixed-menu .drop-menu {
	gap: 15px;
	overflow: auto;
	height: calc(100vh - 100px);
	}
.fixed-menu .drop-menu li {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 5px;
	}
.fixed-menu .drop-menu li .parent {
	display: flex;
	width: 100%;
	margin: 0 0 5px;
	font-size: 16px;
	}
.fixed-menu .drop-menu li .child {
	padding: 2px 5px;
	background: #eee;
	border-radius: 5px;
	font-size: 14px;
	}
	footer {
		        padding: 15px 0;
	}
	footer .menu {
		display: none;
	}
	footer .logo img {
		width: 60px;
	}
	footer .contacts a.mail {
		font-size: 14px;
	}
	.title-block {
		padding: 25px 0 15px;
	}
	.breadcrumbs {
	overflow: auto;
	gap: 15px;
	padding: 10px 0 5px;
	}
	.breadcrumbs li {
	white-space: nowrap;
	font-weight: 200;
	font-size: 12px;
	}
	.content-page {
	margin-bottom: 15px;
	}
	.popup-basket .popup-form {
	width: calc(100% - 20px);
	padding: 15px;
	box-sizing: border-box;
	}
	.popup-basket .popup-form .close {
	width: 20px;
	height: 20px;
	opacity: .5;
	top: 15px;
	right: 15px;
	}
	.popup-basket .popup-form .title {
	}
	.popup-basket .popup-form .user-info {
	width: 100%;);)%;);
	}
	.popup-basket .popup-form .product-info {
	margin-top: 15px;
	width: 100%;
	}
	.popup-basket .popup-form .product-info .product {
	order: 1;
	align-items: center;
	}
	.popup-basket .popup-form .product-info textarea {
	}
	.popup-basket .popup-form .product-info .product img {
	height: 60px;
	}
}