@font-face {
    font-family: "Gothic No60";
    src: url("/template/font/Gothic60-Regular.woff2") format("woff2"),
        url("/template/font/Gothic60-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Houschka Pro";
    src: url("/template/font/HouschkaPro-Light.woff2") format("woff2"),
        url("/template/font/HouschkaPro-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Houschka Pro";
    src: url("/template/font/HouschkaPro-Medium.woff2") format("woff2"),
        url("/template/font/HouschkaPro-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Houschka Pro";
    src: url("/template/font/HouschkaPro-Bold.woff2") format("woff2"),
        url("/template/font/HouschkaPro-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

HTML,
BODY {
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100%;
}

BODY {
    margin: 0 auto;
    background-color: #222;
    color: #fff;
}

* {
    font-family: "Houschka Pro", serif;
    box-sizing: border-box;
}

HTML {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-weight: 300;
}

A {
    color: #fff;
    transition: all 0.3s ease-in-out;
}

IMG {
    vertical-align: middle;
}

H1,
H2,
H3,
.title {
    font-family: "Gothic No60";
}

A:hover {
    text-decoration: none;
    color: #00894E;
}

.wrapper {
    position: relative;
    min-width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.wrapper>.content {
    flex-grow: 1;
    padding: 100px 10px 10px 10px;
}

.wrapper.home>.content {
    padding: 0px;
}

.wrapper.home>.content {
    max-width: none;
}

.widther {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.half-widther {
    max-width: 700px;
}

/* Палитра */

.default-bg-gray {
    background-color: #F8F8F8;
}

.default-bg-gray-hover:hover {
    transition: background-color 0.3s linear;
    background-color: #eeeeee;
}

.default-bg {
    background-color: #00894E;
    color: #fff;
}

.default-bg-alt {
    background-color: #017d47;
    color: #fff;
}

.default-bg-hover:hover {
    transition: background-color 0.3s linear;
    background-color: #017d47;
}

.default-border {
    border: 2px solid #00894E;
}

.default-color {
    color: #00894E;
}

.default-padding {
    padding: 10px;
}

.default-border-radius {
    border-radius: 16px;
}

.default-shadow {
    box-shadow: -3px 8px 10px 2px rgba(0, 0, 0, 0.1);
}

.to-top {
    background-color: #00894E;
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background-image: url("/template/img/top.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    z-index: 2;
    border-radius: 50%;
}

/* Header */

.header {
    position: fixed;
    z-index: 3;
    top: 0px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    background-color: #222
}

.header a {
    text-decoration: none;
}

.header>div.widther {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
}

.header .menu {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.header .menu ul {
    padding: 0px;
    margin: 0px;
    display: flex;
}

.header .menu ul li {
    position: relative;
    list-style: none;
    margin-right: 20px;
    padding: 10px 0px;
    white-space: nowrap;
}

.header .menu ul li a.selected {
    font-weight: bold;
}

.header .menu ul li ul {
    position: absolute;
    top: 100%;
    flex-direction: column;
    padding: 20px 10px 10px 10px;
    margin-left: -20px;
    background-color: #fff;
    border-radius: 16px;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.5s ease-in-out;
}

.header .menu ul li:hover ul {
    visibility: visible;
    opacity: 1;
}

.header .menu ul li ul li {
    margin-bottom: 10px;
    margin-right: 10px;
    margin-left: 10px;
    padding: 0px;
}

.header .menu ul li ul li a {
    color: #000;
}

.header .logo {
    cursor: pointer;
}

.header .logo a {
    display: block;
    position: relative;
    margin: 0px;
    width: 250px;
    padding-right: 180px;
}

.header .logo img {
    width: 100px;
}

.header .mobile-menu-button {
    position: relative;
    display: none;
    background-image: url("/template/img/menu.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    width: 32px;
    min-width: 32px;
    height: 32px;
    margin-right: 20px;
}

.header .mobile-menu-button.opened {
    background-image: url("/template/img/menu-close.svg");
}

.header .phone {
    position: relative;
}

.header .phone a {
    position: relative;
    display: block;
    padding: 9px 10px 8px 40px;
    min-width: 32px;
    min-height: 32px;
    background-image: url("/template/img/phone.svg");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: left 10px center;
    font-weight: 500;
}

.header .phone p {
    padding: 0px;
    margin: 0px;
}

.home .header.scrolled .mobile-menu-button::before {
    display: none;
}

.header .lk {
    color: #00894E;
    font-weight: bold;
    padding: 10px 10px 9px 10px;
    margin-left: 20px;
    border-radius: 16px;
}

.slick-prev,
.slick-next {
    border-radius: 0px;
    width: 30px;
    height: 30px;
    top: -30px;
    background-color: #00894E;
    background-size: 18px;
    background-image: url("/template/img/arrow-left.svg");
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
}

.slick-prev {
    right: 60px;
    left: auto;
}

.slick-next {
    left: auto;
    right: 10px;
    background-image: url("/template/img/arrow-right.svg");
}

.slick-prev:before,
.slick-next:before {
    display: none;
    background-image: url("/template/img/left-arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
}

/* Home */

.bgg {
    background-color: #f8f8f8;
    margin: 40px 0px;
}

.home .header {
    /* background-color: transparent; */
    transition: top 0.5s, background-color 0.5s;
}

.home .header.scrolled {
    /* background-color: rgba(255, 255, 255, .8); */
}

.home .header>.widther {
    /* background-color: rgba(255, 255, 255, 1); */
    transition: padding 0.5s, background-color 0.5s;
}

.home .header.scrolled>.widther {
    /* background-color: rgba(255, 255, 255, 0); */
    /* padding: 0px 10px; */
}

.home>.widther {
    max-width: none;
}

.slider-1 {
    position: relative;
    background-color: #777;
    width: 100%;
    height: 80vh;
}

.slider-1>div {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.slider-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-1>div>div {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    filter: grayscale(.8);
}

.slider-1 div.on {
    transition: scale 14s linear, filter 14s linear;
    filter: grayscale(.2);
    scale: 110%;
}

.slider-1 .text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: bold;
    color: #fff;
    text-shadow: 0px 0px 15px #000000, 0px 0px 15px #000000;
}

.slider-1 .text h1 {
    font-size: 2.5em;
    margin: 0px;
}

.slider-1 .text h2 {
    font-size: 2em;
    margin: 0px;
}

.slider-1 .text h3 {
    max-width: 600px;
    font-size: 1.2em;
    font-weight: 500;
}

.home-1-wrapper {
    position: relative;
}

.home-1 {
    position: absolute;
    top: -140px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-1>div {
    display: flex;
}

.home-1>div:first-child {
    padding: 20px;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
}

.home-1 .cifri {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.home-1 .cifri>div {
    display: flex;
    align-items: center;
    font-size: 2em;
    padding: 30px;
    background-color: #fff;
    white-space: nowrap;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}

.home-1 .cifri>div>div:first-child {
    font-weight: bold;
    font-size: 1.2em;
    background-color: #00894E;
    color: #fff;
    padding: 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
}

.home-1 .cifri>div>div:last-child {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 0.8em;
}

.home-1 .cifri>div>div:last-child>div {
    font-size: initial;
    opacity: 0.5;
}

.home .vse {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px 10px 40px 10px;
}

.vse a {
    display: block;
    position: relative;
    color: #777;
    text-decoration: none;
}

.vse a:hover {
    color: #00894E;
}

.vse a:hover::before {
    width: 0px;
    background-color: #00894E;
}

.slider-3 img {
    width: 255px;
}

.slider-3 {
    margin: 40px 0px;
}

.slider-3 .slick-slide>div {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile Menu */

.mobile-menu {
    position: fixed;
    top: 52px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 3;
    overflow-y: auto;
    background-color: #222;
    display: none;
}

.mobile-menu ul,
.mobile-menu li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.mobile-menu>ul {
    width: 100%;
    font-size: 1.1em;
}

.mobile-menu ul li ul {
    margin-top: 10px;
    padding: 0px 0px 0px 15px;
    border-left: 2px solid #ddd;
}

.mobile-menu ul li ul li {
    padding-bottom: 10px;
    opacity: 0.6;
    font-size: 0.9em;
}

.mobile-menu ul li ul>li:last-child {
    padding-bottom: 0px;
}

.mobile-menu>ul>li {
    padding: 20px;
}

.mobile-menu>ul>li {
    border-top: 1px solid #eee;
}

.mobile-menu li a {
    display: block;
    font-size: 1.1em;
    text-decoration: none;
}

.home .header.scrolled+.mobile-menu {
    top: 52px;
}

/* Modal */

.modal {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 5;
}

.modal>div {
    position: relative;
    padding: 20px;
    background-color: #fff;
    border-radius: 0px;
    min-width: 200px;
    min-height: 50px;
    max-width: calc(100% - 30px);
    max-height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    border-radius: 16px;
}

.modal>div>div:last-child {
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
}

.modal>div>div:last-child::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.modal>div>.close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-color: transparent;
}

.modal>div>.close:after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background-color: #e63619;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal>div>.close:before {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background-color: #e63619;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Form */

.form input,
.form-input,
.form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #eee;
    border-radius: 16px;
}

.form input[type=checkbox] {
    width: auto;
    margin-right: 5px;
}

.form>div {
    margin: 20px 0px;
}

.form label {
    display: block;
    margin-bottom: 6px;
}

.form label.check {
    display: flex;
    align-items: center;
}

button,
.form-button {
    display: inline-flex;
    padding: 15px 20px;
    border: none;
    background-color: #00894E;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-size: 1em;
    border-radius: 16px;
}

button:hover,
.form-button:hover {
    background-color: #017d47;
}

.form .error {
    color: #e63619;
    margin: 10px 0px;
}

/* Page */

.page {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.page>a {
    color: #000;
    padding: 5px;
    margin: 5px;
    line-height: 20px;
    min-width: 30px;
    text-align: center;
}

.page>a:hover {
    text-decoration: none;
}

.page>a:first-child {
    margin-left: 0px;
}

.page .selected {
    color: #fff;
}

.page .first:before {
    content: "Первая";
}

.page .last:before {
    content: "Последняя (";
}

.page .last:after {
    content: ")";
}

/* Title */

.title {
    padding: 20px 0px;
    position: relative;
    font-size: 2.5em;
    font-weight: 500;
}

.title::before {
    content: "";
    display: block;
    width: 100%;
    background-color: #dddddd;
    height: 2px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    display: none;
}

.title::after {
    content: "";
    display: block;
    width: 40px;
    background-color: #00894E;
    height: 2px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    display: none;
}

/* Price */

.price {
    display: inline-flex;
    align-items: center;
    font-weight: bold;
    font-size: 0.9em;
}

.price::after {
    content: "\20BD";
    font-weight: bold;
    margin-left: 3px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-bottom: 3px;
}

/* Breadcrumb */

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.9em;
    margin: 10px 0px 20px 0px;
}

.breadcrumbs>div {
    position: relative;
    padding-right: 25px;
}

.breadcrumbs>div:last-child {
    padding-right: 0px;
}

.breadcrumbs>div::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #000;
    opacity: 0.5;
}

.breadcrumbs>div:last-child::after {
    display: none;
}

.breadcrumbs a {
    opacity: 0.5;
}

/* Shop */

.shop>.items {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.shop .items .items {
    display: none;
    grid-template-columns: 1fr auto auto auto;
}

.shop .items .items>div {
    padding: 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.shop .items div.category {
    padding: 15px 15px 15px 30px;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    background-image: url("/template/img/right-arrow.svg");
    background-position: left 10px center;
    background-repeat: no-repeat;
    background-size: 12px;
}

.shop .items div.category.opened {
    background-image: url("/template/img/top-arrow.svg");
}

.shop .items .sub {
    display: none;
}

.shop .items .sub .category {
    padding-left: 50px;
    background-position: left 30px center;
}

.shop .items .sub .items>div {
    padding-left: 30px;
}

.shop .items .price {
    min-width: 80px;
    justify-content: flex-end;
    font-weight: bold;
}

.shop .items .za {
    min-width: 70px;
    text-align: center;
}

/* Footer */

.footer-wrapper {
    margin-top: 100px;
    background-color: #000;
    background-image: url("/template/img/footerbg.webp");
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home+.footer-wrapper {
    margin-top: 0px;
}

.footer {
    padding: 100px 0px;
    color: #fff;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    opacity: 1;
}

.footer>div {
    padding: 20px 0px 20px 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.footer>div>div {
    padding-left: 60px;
}

.footer>div>div:first-child {
    padding-left: 0px;
}

.footer ul {
    display: flex;
    flex-direction: column;
}

.footer ul,
.footer li {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.footer li {
    padding: 12px;
}

.footer li a {
    text-decoration: none;
}

.footer p {
    margin: 0px;
    padding: 10px 0px;
}

.footer .logo img {
    width: 100%;
    max-width: 80px;
}

.footer .logo {
    margin-bottom: 20px;
    display: block;
}

.footer .phone,
.footer .email,
.footer .address {
    padding-left: 30px;
    line-height: 24px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 16px;
    background-image: url("/template/img/phone_w.svg");
}

.footer .email {
    background-image: url("/template/img/email_w.svg");
    background-size: 18px;
}

.footer .address {
    background-image: url("/template/img/address_w.svg");
    background-size: 20px;
}

.footer .social {
    margin: 15px 0px 10px 0px;
}

/* Custom*/

.custom-menu ul {
    display: flex;
    margin: 10px 0px 20px 0px;
    padding: 0px;
}

.custom-menu li {
    padding: 10px 10px 8px 10px;
    border-radius: 16px;
    margin-right: 20px;
    list-style: none;
}

.custom-menu li a {
    text-decoration: none;
}

.custom-menu li.selected {
    background-color: #00894E;
    color: #fff;
}

.custom-menu li.selected a {
    color: #fff;
    transition: none;
}

.custom-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 40px;
    row-gap: 40px;
}

.custom-items>div {
    position: relative;
}

.custom-items-block .item {
    padding: 10px;
}

.custom-items-block .item>a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.custom-items-block .item .name {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.custom-items .image,
.custom-items-block .image {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
}

.custom-items .item-40 .image,
.custom-items .item-39 .image,
.custom-items .item-38 .image,
.custom-items .item-37 .image {
    aspect-ratio: 3 / 4;
}

.custom-items img,
.custom-items-block img {
    transition: all 0.5s ease-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.custom-items .item:hover img,
.custom-items-block .item:hover img {
    width: 110%;
    height: 110%;
    border-radius: 16px;
}

.custom-items .name,
.custom-items-block .name {
    margin: 10px 0px;
    font-weight: 500;
    margin-top: 20px;
}

.custom-items .address,
.custom-items-block .address,
.custom-items .square,
.custom-items-block .square {
    font-size: 0.8em;
    opacity: 0.5;
}

.custom-items .date,
.custom-items-block .date {
    position: absolute;
    background-color: #00894E;
    color: #fff;
    font-size: 0.9em;
    font-weight: 500;
    padding: 5px 10px;
    margin: 8px;
    top: 0px;
    border-radius: 16px;
}

.custom-items .square,
.custom-items-block .square {
    margin: 10px 0px;
}

.custom-items .square::before,
.custom-items-block .square::before,
.custom-item .square::before {
    content: "Площадь: ";
}

.custom-items .square::after,
.custom-items-block .square::after,
.custom-item .square::after {
    content: " м²";
}

.custom-item .image {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 20px;
    column-gap: 20px;
}

.custom-item .image img {
    width: 100%;
}

.custom-item .date {
    opacity: 0.5;
    font-style: italic;
}

.custom-item .address {
    margin: 10px 0px;
    font-weight: bold;
}

.custom-item .square {
    opacity: 0.5;
}

.yslygi .category {
    position: relative;
    padding: 10px;
    border-radius: 16px;
    overflow: hidden;
}

.yslygi .category .image {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
}

.yslygi .category img {
    transition: all 0.3s ease-out;
    width: 100%;
    border-radius: 16px;
}

.yslygi .category:hover img {
    width: 105%;
}

.yslygi .category .name {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 10px 10px 20px 10px;
    font-size: 1.1em;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.yslygi .category .name a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

/* Cart */

.cart .cart-items:empty {
    display: block;
}

.cart:before {
    font-size: 2em;
    font-weight: 500;
}

.cart:empty::before {
    content: "Корзина пуста";
}

.cart .cart-items:empty+div {
    display: none;
}

.cart .cart-items {
    display: grid;
    border-top: 1px solid #ddd;
    grid-template-columns: 1fr auto auto auto auto auto;
    margin-top: 20px;
}

.cart .cart-items>div {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.cart .cart-items .delete {
    display: flex;
    align-items: center;
    position: relative;
    color: #e63619;
    background-image: url("/template/img/delete.svg");
    background-position: left center;
    background-size: 14px;
    width: 16px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.cart .cart-items .delete::after {
    display: none;
}

.cart .cart-items .price-cart,
.cart .cart-items .price-cart>div:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cart .sum {
    padding: 20px;
    font-size: 1.5em;
}

.cart .sum>div {
    display: flex;
    margin: 5px 0px;
    justify-content: flex-end;
}

.cart .sum .order-sum:before,
.cart .sum .order-sale:before {
    margin-right: 20px;
}

.cart .sum .order-sale {
    color: #e63619;
}

.cart .sum .order-sum.price>div:nth-child(1) {
    color: #fff;
}

.cart-order {
    padding: 10px;
}
.cart .cart-info {
    margin-top: 0px;
}

.cart .form>div.cart-info {
    margin-top: 0px;
}

.cart .form>div.cart-info p {
    font-style: italic;
    padding: 0px;
    margin: 0px;
}

.cart .check p {
    padding: 0px;
    margin: 0px;
}

.header-cart {
    cursor: pointer;
    position: relative;
    background-color: #00894E;
    border-radius: 50%;
    height: 20px;
    line-height: 22px;
    text-align: center;
    color: #fff;
    min-width: 20px;
    font-size: 0.9em;
    margin-bottom: 30px;
    margin-left: 35px;
}

.header-cart::before {
    content: "";
    display: block;
    background-image: url("/template/img/cart.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    width: 28px;
    height: 28px;
    position: absolute;
    right: 14px;
    top: 10px;
}

.header-cart:empty {
    display: none;
}

.to-cart button {
    padding: 9px 10px 7px 10px;
}

.cart-count {
    position: relative;
    display: flex;
    align-items: center;
    padding: 5px 0px;
}

.cart-count input {
    border: none;
    width: 90px;
    padding: 4px;
    text-align: center;
}

.cart-count>div.dec,
.cart-count>div.inc {
    position: absolute;
    left: 0px;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0px;
    background-color: #00894E;
    color: #fff;
    transition: all 0.1s ease-in-out;
}

.cart-count>div.inc {
    left: auto;
    right: 0px;
}

.cart-count>div.dec:before,
.cart-count>div.inc:before {
    font-family: Arial, Helvetica, sans-serif;
    display: block;
    content: "-";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15px;
    line-height: 15px;
}

.cart-count>div.dec:before {
    padding-bottom: 2px;
}

.cart-count>div.inc:before {
    content: "+";
}

/* Forma */

.forma form label {
    opacity: 0.5;
}

.forma form>div:first-child {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}

.forma form>div:nth-child(2)>div:last-child {
    display: inline-grid;
    grid-template-columns: auto auto auto;
    gap: 20px;
    margin-top: 5px;
}

.forma form>div:nth-child(2)>div:last-child label {
    opacity: 1;
}

.forma form>div:nth-child(2)>div:last-child label {
    display: flex;
    align-items: center;
}

.forma form>div:nth-child(2) input {
    width: auto;
    margin: 0px 8px 2px 0px;
}

.forma .soglasie input {
    margin: 2px 8px 0px 0px;
}

.forma a {
    text-decoration: underline;
}

.forma .select2-container--default .select2-selection--single {
    background-color: #eee;
    border: none;
}

.forma .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 34px;
}

.forma h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    font-weight: normal;
}

.forma-wrapper {
    padding: 60px 0px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 100px 0px;
}

.forma-wrapper>div:first-child {
    display: flex;
    justify-content: flex-end;
}

.forma-wrapper .forma {
    position: relative;
    padding: 20px;
    background-color: #fff;
}

.forma-wrapper .forma form>div:last-child {
    margin-bottom: 0px;
}

.forma form.success {
    position: relative;
}

.forma form.success::before {
    content: "";
    position: absolute;
    display: block;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #fff;
    z-index: 1;
}

.forma form.success::after {
    content: "Спасибо! Ваше обращение было отправлено.";
    font-size: 2em;
    position: absolute;
    display: block;
    top: 50%;
    left: 0px;
    right: 0px;
    transform: translateY(-50%);
    z-index: 1;
}

/* Cont */

.home .cont {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
}

.home .cont>div {
    width: 50%;
}

.home .cont>div:first-child>div {
    position: relative;
    max-width: 700px;
    padding: 40px;
    margin-left: -100px;
    background-color: #fff;
    z-index: 2;
}

.home .cont>div:first-child>div::before {
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    left: 0px;
    top: -100px;
    background-color: #00894E;
    background-image: url("/template/img/address_w.svg");
    background-size: 50px;
    background-position: center;
    background-repeat: no-repeat;
}

.map {
    /* filter: grayscale();
    -webkit-filter: grayscale(100%); */
}

.user-menu {
    display: flex;
}

.user-menu>div {
    padding: 10px 10px 0px 0px;
}

.user-menu .selected {
    font-weight: bold;
}

.orders {
    display: table;
    border-collapse: collapse;
    margin-top: 20px;
}

.orders>div {
    display: table-row;
}

.orders>div>div {
    display: table-cell;
    padding: 5px 10px;
    border: 1px solid #CCC;
    cursor: pointer;
}

.orders>div:first-child {
    text-align: center;
    font-weight: bold;
    cursor: inherit;
}

.orders>div:first-child>div {
    cursor: inherit;
}

.user .order {
    margin-top: 20px;
}

.user .order>div {
    margin: 10px 0px;
}

.user .order>div::before {
    font-weight: 500;
}

.user .order .id:before {
    content: "ID: ";
}

.user .order .date:before {
    content: "Дата: ";
}

.user .order .name:before {
    content: "ФИО: ";
}

.user .order .phone:before {
    content: "Номер телефона: ";
    color: inherit;
    font-size: inherit;
    font-family: inherit;
}

.user .order .email:before {
    content: "Электронная почта: ";
    color: inherit;
    font-size: inherit;
    font-family: inherit;
}

.user .order .comment:before {
    content: "Комментарий: ";
}

.user .order .items {
    margin: 20px 0px;
    display: table;
    border-collapse: collapse;
}

.user .order .items>div {
    display: table-row;
}

.user .order .items>div>div {
    display: table-cell;
    padding: 5px;
    border: 1px solid #ddd;
    text-align: center;
}

.user .order .items>div>div:first-child {
    text-align: left;
}

.user .order .sum {
    font-size: 1.2em;
}

.user .order .sum:before {
    content: "Сумма заказа:";
    margin-right: 5px
}

.pdf {
    display: inline-block;
    background-image: url("/template/img/pdf.svg");
    background-position: left 10px center;
    background-repeat: no-repeat;
    background-size: 32px;
    text-decoration: none;
    font-weight: 500;
    background-color: #f8f8f8;
    border-radius: 16px;
    padding: 10px 10px 10px 50px;
}

@media (max-width: 1024px) {

    .wrapper>.content {
        padding-top: 60px;
    }

    .header .menu {
        display: none;
    }

    .header .mobile-menu-button {
        display: block;
    }

    .header .logo {
        flex-grow: 1;
    }

    .home .header {
        top: 0px;
    }

    .header .phone a {
        background-size: 18px;
    }

    .header-cart {
        margin-bottom: 12px;
    }

    .header-cart::before,
    .header-cart::after,
    .home .header-cart::before,
    .home .header-cart::after {
        top: 2px;
        right: 16px;
    }

    .header .phone {
        font-size: 0px;
    }

    .custom-items {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
        row-gap: 20px;
    }

    .forma-wrapper {
        grid-template-columns: auto;
    }

    .forma h2 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .forma-wrapper>div {
        min-width: 200px;
    }

    .forma-wrapper .forma {
        padding: 10px 20px 0px 10px;
    }

    .footer>div {
        grid-template-columns: repeat(4, auto);
    }

    .footer>div>div {
        padding-left: 20px;
    }
}

@media (max-width: 768px) {

    .header .logo {
        width: 60px;
        padding: 0px;
    }

    .header .logo img {
        width: 40px;
    }

    .logo a::after {
        display: none;
    }

    .home .header .phone {
        margin-left: 20px;
    }

    .home .header>.widther {
        padding: 10px;
    }

    .header .lk {
        background-color: transparent;
        font-size: 0px;
        width: 32px;
        height: 32px;
        background-image: url("/template/img/user.svg");
        background-position: center;
        background-size: 20px;
        background-repeat: no-repeat;
        margin-left: 0px;
        border: none;
    }

    .title {
        font-size: 2em;
    }

    .slider-1 {
        height: calc(100vh - 180px);
    }

    .home-1-wrapper {
        height: auto;
    }

    .home-1 {
        top: auto;
        position: relative;
    }

    .home-1 .cifri {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .home-1 .cifri>div {
        padding: 0px;
        font-size: 1.6em;
    }

    .home-1 .cifri>div>div:first-child {
        font-size: 1em;
        width: 60px;
        height: 60px;
    }

    .vse a {
        font-size: 1em;
        white-space: nowrap;
    }

    .vse a::before {
        display: none;
    }

    .forma form>div:first-child {
        grid-template-columns: 1fr;
    }

    .forma form>div:nth-child(2)>div:last-child {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .forma-wrapper {
        margin: 0px;
        padding: 0px;
        background-color: transparent;
    }

    .forma-wrapper>div {
        margin-bottom: 40px;
    }

    .home .cont>div:first-child>div {
        margin-left: -70px;
        margin-top: 140px;
        padding: 20px;
    }

    .home .cont>div:first-child>div::before {
        width: 70px;
        height: 70px;
        background-size: 40px;
        top: -70px;
    }

    .home .cont>div {
        width: auto;
        min-width: 140px;
    }

    .footer {
        padding: 50px 0px;
    }

    .footer>div {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        grid-template-columns: none;
    }

    .footer>div>div {
        width: 320px;
        padding: 20px 0px;
        text-align: center;
    }

    .footer-cont {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

}

@media (max-width: 480px) {
    .shop .items .price {
        white-space: nowrap;
        min-width: 60px;
    }

    .shop .items>.items>div {
        padding: 10px 5px;
    }

    .shop .items .za {
        min-width: 40px;
        font-size: 0.9em;
    }

    .to-cart {
        min-width: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .to-cart button {
        font-size: 0px;
        min-width: 32px;
        min-height: 32px;
        background-image: url("/template/img/cart_w.svg");
        background-size: 16px;
        background-position: center;
        background-repeat: no-repeat;
    }

    .cart-count input {
        width: 70px;
    }
}