@charset "UTF-8";

@font-face {
    font-family: 'Cambria Math';
    src: url("fonts/CambriaMath.woff2") format("woff2"), url("fonts/CambriaMath.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cambria';
    src: url("fonts/Cambria.woff2") format("woff2"), url("fonts/Cambria.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.title-section {
    font-size: 36px;
    color: #fff;
    font-weight: normal;
}

.logo-wrap {
    margin-top: 50px;
    margin-bottom: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.logo-wrap img {
    max-width: 220px;
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: -2;
    opacity: 0;
}

.layer.active {
    opacity: 1;
    z-index: 20;
}

.offset-container {
    max-width: 1110px;
    padding: 0 30px;
    margin: 0 auto;
    position: relative;
    left: 100px;
}

.section-title {
    text-transform: uppercase;
    font-size: 36px;
    color: #fff;
    font-weight: normal;
}

.section-subtitle {
    margin-bottom: 65px;
    font-size: 28px;
}

.not-main-page {
    position: relative;
}

.not-main-page .logo-wrap {
    display: none;
}

.input-checkbox {
    display: none;
}

.input-label-checkbox {
    position: relative;
    padding-left: 30px;
    color: #fff;
    cursor: pointer;
    display: flex;
}

.input-label-checkbox:before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    left: 0;
    top: 14px;
    border: 1px solid #fff;
}

.input-checkbox:checked+.input-label-checkbox:after {
    content: '';
    display: block;
    width: 6px;
    position: absolute;
    height: 6px;
    top: 14px;
    left: 4px;
    background: url(../img/check-mark.svg);
    background-size: contain;
    background-position: center;
}
.input-label-checkbox+.payment_box{
    display: none!important;
}
.input-checkbox:checked+.input-label-checkbox+.payment_box{
    display: block!important;
}
.form-row-col-1 {
    display: grid;
    grid-template-columns: 1fr;
}

.form-row-col-2 {
    display: grid;
    grid-gap: 34px;
    grid-template-columns: repeat(2, 1fr);
}

.form-row-col-3 {
    display: grid;
    grid-gap: 34px;
    grid-template-columns: 2fr 1fr;
}

* {
    outline: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.container {
    margin: 0 auto;
    padding: 0 50px;
    max-width: 1340px;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #fff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

a:hover {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

body {
    background: #33383D;
    font-family: "Cambria";
    margin: 0;
    position: relative;
}

button {
    -webkit-appearance: none;
    cursor: pointer;
    font-family: "Cambria";
}

input,
textarea {
    font-family: "Cambria";
    font-size: 14px;
}

img {
    max-width: 100%;
}

p {
    font-size: 21px;
    color: #fff;
}

html,
body {
    overflow-x: hidden;
}

header {
    padding: 24px 0;
    position: relative;
    z-index: 2;
}

header .left-angle {
    position: absolute;
    font-size: 36px;
    color: #fff;
    width: 100%;
    max-width: 485px;
    max-height: 100vh;
    height: 100%;
    top: 0;
    z-index: -1;
}

header .left-angle .left-logo {
    max-width: 126px;
    display: inline-block;
    position: absolute;
    top: 75px;
    left: 80px;
}

header .left-angle .left-logo-note {
    position: absolute;
    top: 0;
    left: 0;
}

header .left-angle .left-logo-note-mob {
    display: none;
}

header .head-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

header .head-wrap .wrap-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

header .head-wrap .search-wrap {
    position: absolute;
    right: -260px;
    /* position: fixed;
    right: 30px; */
}

header .head-wrap .search-wrap form input[type="search"] {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    padding: 0 10px;
}

header .head-wrap .search-wrap form input[type="text"] {
    border: 0.5px solid #fff;
    background: transparent;
    color: #fff;
    padding: 0 10px;
}

header .head-wrap .menu-search {
    background: transparent;
    border: 0;
    display: none;
}

header .head-wrap .search-wrap button {
    border: 0;
    background: none;
    color: #B7B7B7;
    font-size: 16px;

}

header .head-wrap .wrap-menu nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

header .head-wrap .wrap-menu nav ul a {
    text-transform: uppercase;
    margin-right: 15px;
}

header .head-wrap .wrap-menu nav ul a.active {
    font-weight: bold;
    text-decoration: underline;
}

header .head-wrap .wrap-menu nav ul a:hover {
    text-decoration: underline;
}

header .head-wrap .wrap-menu .profile-wrap a {
    color: #B7B7B7;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

header .head-wrap .wrap-menu .profile-wrap a:hover {
    color: #fff;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

header .head-wrap .wrap-menu .profile-wrap a.active {
    font-weight: bold;
    text-decoration: underline;
    color: #fff;
}

header .head-wrap .wrap-menu .profile-wrap .link-profile {
    margin-right: 15px;
}

footer {
    border-top: 1px solid #fff;
    margin-top: auto;
}

footer .foot-wrap {
    height: 75px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

footer .foot-wrap .foot-logo-mob {
    display: none;
}

.main-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 900px;
    padding-bottom: 120px;
}

.main-section .logo-wrap {
    margin-bottom: 140px;
    margin-top: 150px;
}

.main-section .cars-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 13vh 80px;
}

.main-section .cars-wrap .car {
    position: relative;
    max-height: 110px;
    max-width: 250px;
}


/* .main-section .cars-wrap .car__model {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 140px;
    border-bottom: 1px solid #fff;
    text-align: center;
    position: absolute;
    background: #33383D;
    -webkit-transform: rotate(-64deg);
    -ms-transform: rotate(-64deg);
    transform: rotate(-64deg);
    text-transform: uppercase;
    height: 50px;
    top: 0;
    left: -30px;
    padding-bottom: 7px;
    z-index: 1;
} */

.main-section .cars-wrap .car__subtitle,
.main-section .cars-wrap .car__model {
    white-space: nowrap;
}

.main-section .cars-wrap .car__title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 140px;
    border-bottom: 1px solid #fff;
    text-align: center;
    position: absolute;
    background: #33383D;
    -webkit-transform: rotate(-64deg);
    -ms-transform: rotate(-64deg);
    transform: rotate(-64deg);
    text-transform: uppercase;
    height: 50px;
    top: 0;
    left: -30px;
    padding-bottom: 7px;
    z-index: 1;
}

.main-section .cars-wrap .car .img-wrap {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.main-section .cars-wrap .car:hover .img-wrap {
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.main-props {
    padding-top: 120px;
}

.main-props .title-section {
    margin-bottom: 80px;
}

.main-props .main-props-info {
    max-width: 990px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
    margin-bottom: 100px;
}

.main-props+.main-picture-block:before {
    display: none;
}

.main-picture-block {
    height: 450px;
    position: relative;
    margin-bottom: 150px;
    z-index: -2;
}

.main-picture-block .pic-main-sec {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
    /* width: 100%; */
    width: calc(100% - 357px);
    height: calc(100% - 40px);
    top: 50%;
    transform: translateY(calc(-50% + 0px));
}

.post-type-archive-news .main-picture-block .pic-main-sec {
    width: 100%;
}

.main-picture-block .text-block {
    width: 570px;
    margin-right: 0;
    margin-left: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    height: 100%;
    background: url(../img/bg-main-sec.svg);
    background-position: left;
    background-repeat: no-repeat;
    height: -webkit-calc(100% + 80px);
    height: calc(100% + 80px);
    position: relative;
    top: -35px;
}

.main-picture-block .text-block p {
    max-width: 160px;
    margin-left: 110px;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 50px;
}

.main-picture-block:before {
    content: '';
    width: 300px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background: #33383D;
    height: 100%;
    -webkit-clip-path: polygon(0 0%, 100% 0%, 28% 100%, 0% 100%);
    clip-path: polygon(0 0%, 100% 0%, 28% 100%, 0% 100%);
}

.main-picture-block:after {
    content: '';
    display: block;
    background: url(../img/shadow.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 20px;
    height: 100px;
    width: 100%;
    z-index: -1;
}

.main-picture-block-reverse {
    z-index: -2;
    margin-bottom: 0;
    position: relative;
}

.main-picture-block-reverse .text-block {
    margin-left: 0;
    margin-right: auto;
    background: url(../img/news/news-img.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    left: -240px;
}

.main-picture-block.main-picture-block-reverse.main-picture-news-block {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    right: 35px;
    overflow: hidden;
}

.current-new .text-new p {
    text-align: justify;
}

.title-mob {
    display: none;
}

.main-picture-block-reverse:after {
    right: -100px;
}

.main-picture-block-reverse:before {
    content: '';
    max-width: 316px;
    width: 100%;
}

.news-page {
    color: #fff;
    padding-top: 120px;
    padding-bottom: 80px;
}

.news-page .logo-wrap {
    display: none;
}

.news-page .current-new {
    margin: 80px 0;
}

.news-page .current-new h2 {
    margin-top: 45px;
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: normal;
}

.news-page .current-new .date-new {
    font-size: 12px;
    margin-bottom: 45px;
}

.news-page .current-new .text-new {
    font-size: 21px;
    max-width: 470px;
}

.news-page .news .news-tabs-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.news-page .news .news-tabs-wrap .news-tab {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.news-page .news .news-tabs-wrap .news-tab__title {
    display: grid;
    grid-template-columns: 96px 1fr;
    grid-gap: 124px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 85px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    cursor: pointer;
    position: relative;
}

.news-page .news .news-tabs-wrap .news-tab__title__date {
    font-size: 12px;
}

.news-page .news .news-tabs-wrap .news-tab__title__name {
    font-size: 26px;
    padding-right: 30px;
}

.news-page .news .news-tabs-wrap .news-tab__title:after {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background: url(../img/arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    right: 0;
    position: absolute;
    background-position: center center;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.4;
    -webkit-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
}

.news-page .news .news-tabs-wrap .news-tab__title.active {
    border-bottom: 0;
}

.news-page .news .news-tabs-wrap .news-tab__title.active:after {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 1;
}

.news-page .news .news-tabs-wrap .news-tab__hidden {
    display: none;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    grid-template-columns: 380px 1fr;
    grid-gap: 45px;
    padding-bottom: 35px;
}

.news-page .news .news-tabs-wrap .news-tab__hidden__text {
    max-width: 470px;
    font-size: 18px;
    line-height: 28px;
}

.news-page .news .news-tabs-wrap .news-tab .news-tab__title.active+.news-tab__hidden {
    display: grid;
}

.vehicules-page {
    padding-bottom: 430px;
    padding-top: 190px;
    position: relative;
}

.vehicules-page .bottom-img-car {
    position: absolute;
    right: 0;
    bottom: 61px;
    max-width: 677px;
    z-index: -1;
}

.vehicules-page .logo-wrap {
    display: none;
}

.vehicules-page .vehicules-section .section-title {
    margin-bottom: 65px;
}

.vehicules-page .vehicules-section .vehicules-wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
    max-width: 788px;
}

.vehicules-page .vehicules-section .vehicules-wrap .vehicule-block {
    display: grid;
    grid-template-columns: 300px 1fr;
    border: 1px solid #fff;
}

.vehicules-page .vehicules-section .vehicules-wrap .vehicule-block img {
    display: block;
}

.vehicules-page .vehicules-section .vehicules-wrap .vehicule-block__info {
    padding: 20px 25px;
}

.vehicules-page .vehicules-section .vehicules-wrap .vehicule-block__info__title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.vehicules-page .vehicules-section .vehicules-wrap .vehicule-block__info__description {
    font-size: 18px;
}

.vehicules-page .vehicules-section .vehicules-wrap .vehicule-block__info__description p {
    margin-bottom: 5px;
}

.vehicules-page .vehicules-section .vehicules-wrap .vehicules-link {
    margin-top: 70px;
    margin-left: auto;
    margin-right: 0;
    display: inline-block;
    border: 1px solid #fff;
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
    font-size: 18px;
    text-transform: uppercase;
}

.vehicules-page .vehicules-section .vehicules-wrap .vehicules-link:hover {
    background: #4c5056;
}

.demandes-page {
    padding-top: 190px;
    padding-bottom: 70px;
}

.demandes-page .bottom-img-car {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.demandes-page .demandes-section form br {
    display: none;
}

.demandes-page .demandes-section .section-title {
    margin-bottom: 60px;
}

.demandes-page .demandes-section .form-wrap {
    max-width: 788px;
}

.demandes-page .demandes-section .form-wrap #fileList {
    color: #fff;
}

.demandes-page .demandes-section .form-wrap p {
    font-size: 18px;
}

.demandes-page .demandes-section .form-wrap .form-info {
    margin-bottom: 50px;
}

.demandes-page .demandes-section .form-wrap .form-field {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px;
}

.demandes-page .demandes-section .form-wrap .form-field .form-label {
    color: #fff;
    margin-bottom: 10px;
}

.demandes-page .demandes-section .form-wrap .form-field input[type="email"],
.demandes-page .demandes-section .form-wrap .form-field input[type="text"] {
    height: 50px;
    padding: 0 20px;
}

.demandes-page .demandes-section .form-wrap .form-field textarea {
    padding: 20px;
    height: 270px;
    resize: none;
}

.demandes-page .demandes-section .form-wrap .form-field input[type="submit"] {
    max-width: 290px;
    width: 100%;
    height: 50px;
    border: 1px solid #fff;
    background: #33383D;
    color: #fff;
    cursor: pointer;
    display: block;
    margin-left: auto;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.demandes-page .demandes-section .form-wrap .form-field input[type="submit"]:hover {
    background: #4c5056;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.demandes-page .demandes-section .form-wrap .form-field.form-field-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.demandes-page .demandes-section .form-wrap .form-field.form-field-row .form-label {
    margin-bottom: 0;
    margin-top: 6px;
}

.demandes-page .demandes-section .form-wrap .form-field.form-field-row #file_input::-webkit-file-upload-button {
    visibility: hidden;
}

.demandes-page .demandes-section .form-wrap .form-field.form-field-row #file_input::before {
    content: 'Parcourir';
    display: inline-block;
    background: #838383;
    border: 0;
    padding: 5px 8px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    color: #fff;
    margin-left: 10px;
    width: 148px;
    text-align: center;
    font-size: 18px;
}

.demandes-page .demandes-section .form-wrap .form-field.form-field-row #file_input:hover::before {
    border-color: black;
}

.demandes-page .demandes-section .form-wrap .form-field.form-field-row #file_input:active::before {
    background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}

.catalog-wrap {
    padding-top: 120px;
    padding-bottom: 80px;
}

.catalog-model-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 35px;
}

.catalog-model-wrap .catalog-model {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.catalog-model-wrap .catalog-model__title {
    font-size: 36px;
    position: relative;
    margin-right: 40px;
}

.catalog-model-wrap .catalog-model__title:after {
    content: '';
    height: 125px;
    display: block;
    width: 1px;
    background: #fff;
    position: absolute;
    right: -30px;
    -webkit-transform: translateY(-50%) rotate(20deg);
    -ms-transform: translateY(-50%) rotate(20deg);
    transform: translateY(-50%) rotate(20deg);
    top: 50%;
}

.catalog-model-wrap .catalog-model__img {
    max-width: 270px;
}

.catalog-model-wrap .catalog-model__mob {
    min-width: 200px;
}

.catalog {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.catalog .catalog__filter {
    max-width: 200px;
    width: 100%;
    padding-right: 10px;
    position: relative;
    height: max-content;
}

.catalog .catalog__filter .model-label {
    display: none;
}

.catalog .catalog__filter .catalog__filter__mob {
    display: none;
}

.catalog .catalog__filter>ul li {
    margin-bottom: 8px;
    color: #fff;
}

.catalog .catalog__filter>ul li .submenu {
    padding: 10px 0 0;
    display: none;
    padding-left: 24px;
}

.catalog .catalog__filter>ul li .submenu li {
    margin-bottom: 8px;
}

.catalog .catalog__filter>ul li .submenu li a {
    color: #B7B7B7;
}

.catalog .catalog__filter>ul li .submenu li a:hover {
    color: #fff;
}

.catalog .catalog__filter>ul li .submenu>li:last-child {
    margin-bottom: 15px;
}

.catalog .catalog__filter>ul>li:last-child {
    margin-top: 20px;
    margin-bottom: 5px;
}
.catalog .catalog__filter>ul li.active>a+a.spoiler-category+.submenu{
/* .catalog .catalog__filter>ul li.active a+.submenu { */
    display: block;
}

.catalog .catalog__filter:after {
    content: '';
    display: block;
    background: #fff;
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.catalog .catalog__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

.catalog .catalog__content__body {
    padding-left: 48px;
}

.catalog .catalog__content__body .breadcrumbs {
    margin-bottom: 40px;
}

.catalog .catalog__content__body .breadcrumbs ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.catalog .catalog__content__body .breadcrumbs ul li {
    color: #fff;
}

.catalog .catalog__content__body .breadcrumbs ul li a {
    color: #fff;
    position: relative;
    margin-right: 20px;
}

.catalog .catalog__content__body .breadcrumbs ul li a:hover {
    text-decoration: underline;
}

.catalog .catalog__content__body .breadcrumbs ul li a:after {
    content: '/';
    position: absolute;
    right: -15px;
}

.catalog .catalog__content__body .breadcrumbs ul li:last-child a {
    pointer-events: none;
}

.catalog .catalog__content__body .breadcrumbs ul li:last-child a:after {
    display: none;
}

.catalog .catalog__content__body .categoryes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px 11px;
}

.catalog .catalog__content__body .categoryes .category__img {
    overflow: hidden;
}

.catalog .catalog__content__body .categoryes .category__img img {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: block;
}

.catalog .catalog__content__body .categoryes .category__title {
    text-align: center;
    /* padding-top: 8px; */
    padding-top: 3px;
}

.catalog .catalog__content__body .categoryes .category:hover .category__img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.catalog .catalog__content__body .category-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 32px;
}

.catalog .catalog__content__body .category-products .product {
    border: 1px solid #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 320px;
}

.catalog .catalog__content__body .category-products .product__img {
    max-height: 320px;
    overflow: hidden;
    min-height: 300px;
}

.catalog .catalog__content__body .category-products .product__img a {
    display: block;
    max-height: 320px;
    height: 100%;
}

.catalog .catalog__content__body .category-products .product__img img {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.catalog .catalog__content__body .category-products .product .product-info {
    color: #fff;
    text-align: center;
    background: #33383D;
    padding: 15px 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    /* max-height: 180px; */
}

.catalog .catalog__content__body .category-products .product .product-info__title {
    margin-bottom: 12px;
    padding: 0 50px;
}

.catalog .catalog__content__body .category-products .product .product-info__price {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: auto;
}

.catalog .catalog__content__body .category-products .product .product-info__stock {
    margin-bottom: 10px;
    font-size: 14px;
}

.catalog .catalog__content__body .category-products .product .product-info__stock__out {
    color: #FF0000;
}

.catalog .catalog__content__body .category-products .product .product-info__stock__label {
    /* color: #00FF00!important; */
    /* color: #CD601C !important; */
}

.catalog .catalog__content__body .category-products .product .product-info__button {
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    /* border: 1px solid #fff; */
    border-top: 1px solid #fff;
}

.catalog .catalog__content__body .category-products .product .product-info__button input {
    background: #B4B4B4;
    max-width: 44px;
    height: 100%;
    width: 100%;
    color: #33383D;
    border: 0;
    text-align: center;
}

.catalog .catalog__content__body .category-products .product .product-info__button .add-to-cart {
    width: 100%;
    border: 0;
    cursor: pointer;
    background: #33383D;
    color: #fff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    padding-right: 40px;
    font-size: 16px;
    line-height: 38px;
    display: block;
}

.catalog .catalog__content__body .category-products .product .product-info__button .add-to-cart:hover {
    background: #4c5056;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.catalog .catalog__content__body .category-products .product:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.catalog .catalog__content__body .product-wrap {
    display: grid;
    grid-template-columns: 55% 45%;
}

.catalog .catalog__content__body .product-wrap .product-slider {
    max-width: 575px;
    /* height: 500px; */
}

.catalog .catalog__content__body .product-wrap .product-slider .gallery-top {
    height: 500px;
    overflow: hidden;
}

.catalog .catalog__content__body .product-wrap .product-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog .catalog__content__body .product-wrap .gallery-thumbs {
    margin-top: 14px;
    height: 40px;
    position: absolute;
}

.catalog .catalog__content__body .product-wrap .gallery-thumbs .swiper-slide {
    width: 40px !important;
}

.catalog .catalog__content__body .product-wrap .product-info {
    padding-top: 48px;
    color: #fff;
    border: 1px solid #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.catalog .catalog__content__body .product-wrap .product-info__name {
    max-width: 385px;
    width: 100%;
    margin: 0 auto 5px;
    font-size: 36px;
    font-weight: bold;
    padding: 0 20px;
}

.catalog .catalog__content__body .product-wrap .product-info__ref {
    font-size: 10px;
    max-width: 385px;
    width: 100%;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.catalog .catalog__content__body .product-wrap .product-info__description {
    max-width: 385px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    padding: 0 20px;
}

.catalog .catalog__content__body .product-wrap .product-info__description ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 10px;
    font-size: 14px;
}

.catalog .catalog__content__body .product-wrap .product-info__description ul li p {
    margin-top: 5px;
    font-size: 14px;
}

.catalog .catalog__content__body .product-wrap .product-info__description ul li:before {
    content: '·';
    position: absolute;
    left: 0;
    top: 0;
}

.catalog .catalog__content__body .product-wrap .product-info__description .bottom-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: auto;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 15px;
    justify-content: space-between;
}

.catalog .catalog__content__body .product-wrap .product-info__description .bottom-info__price {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 45px;
}

.catalog .catalog__content__body .product-wrap .product-info__description .bottom-info__stock .bottom-info__stock__label__val {
    white-space: nowrap;
}

.catalog .catalog__content__body .product-wrap .product-info__description .bottom-info__price__value {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.catalog .catalog__content__body .product-wrap .product-info__description .bottom-info__price__value span:nth-child(1) {
    margin-right: 10px;
}

.catalog .catalog__content__body .product-wrap .product-info__description .bottom-info__price__discount {
    font-size: 12px;
}

.catalog .catalog__content__body .product-wrap .product-info__description .bottom-info__stock {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    flex-wrap: wrap;
}

.catalog .catalog__content__body .product-wrap .product-info__description .bottom-info__stock__out {
    color: #FF0000;
    margin-right: 5px;
    white-space: nowrap;
}

.catalog .catalog__content__body .product-wrap .product-info__description .bottom-info__stock__label {
    color: #00FF00;
    margin-right: 5px;
    white-space: nowrap;
}

.catalog .catalog__content__body .product-wrap .product-info .button-wrap {
    border-top: 1px solid #fff;
    /* border-right: 0;
    border-left: 0;
    border-bottom: 0; */
}

.catalog .catalog__content__body .product-wrap .product-info .button-wrap .button-wrap-container {
    /* max-width: 385px; */
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    /* padding: 0 20px; */
}

.catalog .catalog__content__body .product-wrap .product-info .button-wrap .button-wrap-container .minus,
.catalog .catalog__content__body .product-wrap .product-info .button-wrap .button-wrap-container .plus {
    border: 0;
    display: flex;
    font-size: 22px;
    align-items: center;
    background: none;
    width: 25px;
}

.catalog .catalog__content__body .product-wrap .product-info .button-wrap .button-wrap-container .plus {
    color: #00FE00;
    padding-right: 30px;
    border-right: 2px solid #fff;
}

.catalog .catalog__content__body .product-wrap .product-info .button-wrap .button-wrap-container .minus {
    color: #FF0000;
    margin-left: 20px;
}

.catalog .catalog__content__body .product-wrap .product-info .button-wrap .button-wrap-container .input-text.qty.text {
    background: none;
    color: #fff;
    margin-left: 10px;
}

.catalog .catalog__content__body .product-wrap .product-info .button-wrap .button-wrap-container input {
    width: 50px;
    text-align: center;
    border: 0;
    height: 40px;
    background: #B4B4B4;
}

.catalog .catalog__content__body .product-wrap .product-info .button-wrap .button-wrap-container .add-to-cart {
    width: 100%;
    border: 0;
    background: #33383D;
    color: #fff;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    height: 40px;
}

.catalog .catalog__content__body .product-wrap .product-info .button-wrap .button-wrap-container .add-to-cart:hover {
    background: #4c5056;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.contact-page {
    padding-top: 190px;
    padding-bottom: 170px;
}

.contact-page .section-title {
    margin-bottom: 65px;
}

.contact-page .wrap-contact-info {
    display: grid;
    grid-template-columns: 255px 1fr;
    grid-gap: 140px;
}

.contact-page .wrap-contact-info__img {
    position: relative;
    top: -100px;
}

.contact-page .wrap-contact-info__text .contact-group-title {
    margin-bottom: 20px;
}

.contact-page .wrap-contact-info__text h4.contact-group-title {
    color: #fff;
    font-size: 18px;
    font-weight: normal;
    text-transform: uppercase;
    font-weight: bold;
}

.contact-page .wrap-contact-info__text p.contact-group-title {
    font-weight: bold;
}

.contact-page .wrap-contact-info__text p {
    font-size: 18px;
}

.contact-page .wrap-contact-info__text .contact-group {
    padding-bottom: 20px;
    padding-top: 20px;
}

.contact-page .wrap-contact-info__text .contact-group:not(:last-child) {
    border-bottom: 1px solid #fff;
}

.login-page {
    /* padding-top: 190px; */
    padding-top: 100px;
    padding-bottom: 85px;
}

.login-page .section-title {
    margin-bottom: 30px;
    /* margin-bottom: 70px; */
}

.login-page .wrap-login {
    display: grid;
    grid-template-columns: 350px 350px;
    grid-gap: 85px;
    color: #fff;
}

.lost-password-page .wrap-lost-password {
    display: grid;
    grid-template-columns: 350px;
    grid-gap: 85px;
    color: #fff;
}

.login-page .wrap-login .enter-form,
.lost-password-page .wrap-lost-password .enter-form {
    padding: 25px 30px 25px;
    /* padding: 40px 30px 25px; */
    border: 1px solid #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.login-page .wrap-login .enter-form h4.form-title {
    font-size: 28px;
    text-transform: uppercase;
    text-align: center;
    /* margin-bottom: 55px; */
    margin-bottom: 25px;
    font-weight: 500;
}

.password-input {
    position: relative;
    display: block;
}

.show-password-input {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../img/show-pass.svg) no-repeat;
    background-position: center;
    position: absolute;
    top: 10px;
    cursor: pointer;
    right: 10px;
    background-size: contain;
}

.login-page .wrap-login .enter-form form,
.lost-password-page .wrap-lost-password .enter-form form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 0;
    height: 100%;
}

.login-page .wrap-login .enter-form form .form-field {
    margin-bottom: 15px;
}

.login-page .wrap-login .enter-form form .form-field label {
    font-size: 14px;
    margin-bottom: 10px;
    display: inline-block;
}

.login-page .woocommerce-privacy-policy-text p {
    padding-left: 0
}

.login-page .wrap-login .enter-form form .form-field input:not([type="submit"]) {
    height: 40px;
    width: 100%;
    padding: 0 15px;
}

.login-page .wrap-login .enter-form form .form-field label[for="rememberme"] {
    position: relative;
    padding-left: 20px;
    cursor: pointer;
}

.login-page .wrap-login .enter-form form .form-field label[for="rememberme"]:before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border: 1px solid #fff;
    position: absolute;
    left: 0;
}

.login-page .wrap-login .enter-form form .form-field #rememberme:checked+label[for="rememberme"]:after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: url(../img/check-mark.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 3px;
    top: 3px;
}

.login-page .wrap-login .enter-form form .form-field #rememberme {
    display: none;
}

.login-page .wrap-login .enter-form .woocommerce-privacy-policy-text p,
.login-page .wrap-login .enter-form form .form-field .confidential {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 18px;
}

.login-page .wrap-login .enter-form .woocommerce-privacy-policy-text a,
.login-page .wrap-login .enter-form form .form-field .confidential a {
    color: #8C8C8C;
}

.login-page .wrap-login .enter-form .woocommerce-privacy-policy-text a:hover,
.login-page .wrap-login .enter-form form .form-field .confidential a:hover {
    color: #fff;
}

.login-page .wrap-login .enter-form form .form-field .remind-pass {
    margin-bottom: 40px;
    display: inline-block;
}

.login-page .wrap-login .enter-form form .form-field .remind-pass:hover {
    color: #8C8C8C;
}

.login-page .wrap-login .enter-form form .form-field:last-of-type {
    margin-bottom: 0;
}

.login-page .wrap-login .enter-form form .rememberme {
    margin-bottom: 10px;
}

.login-page .wrap-login .enter-form form button[type='submit'] {
    height: 30px;
    max-width: 225px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #fff;
    background: none;
    color: #fff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin-top: auto;
}

.login-page .wrap-login .enter-form form button[type='submit']:hover {
    background: #4c5056;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.profile-page {
    padding-top: 190px;
    padding-bottom: 85px;
}

.profile-page .section-title {
    margin-bottom: 70px;
}

.profile-page .profile-section {
    min-height: 80vh;
    /* overflow: hidden; */
}

.profile-page .wrap-profile {
    display: grid;
    grid-template-columns: 350px 1fr;
    grid-gap: 100px;
}

.profile-page .wrap-profile__tabs ul {
    border: 1px solid #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.profile-page .wrap-profile__tabs ul li {
    height: 58px;
}

.profile-page .wrap-profile__tabs ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: 25px;
    font-size: 23px;
}

.profile-page .wrap-profile__tabs ul li.is-active {
    background: #4c5056;
}

.profile-page .wrap-profile__tabs ul li:not(:first-of-type) {
    border-top: 1px solid #fff;
}

.profile-page .wrap-profile__content__block {
    /*opacity: 0;*/
    /*z-index: -1;*/
    position: absolute;
    top: 0;
}

.profile-page .wrap-profile__content__block a:hover {
    text-decoration: underline;
}

.profile-page .wrap-profile__content__block.show {
    opacity: 1;
    z-index: unset;
    position: relative;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.profile-page .wrap-profile__content__block-1 {
    max-width: 390px;
}

.profile-page .wrap-profile__content__block-1 h4 {
    font-size: 28px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 10px;
}

.profile-page .wrap-profile__content__block-1 p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 32px;
}

.profile-page .wrap-profile__content__block-2 {
    display: grid;
    grid-gap: 28px;
}

.profile-page .wrap-profile__content__block-2 .table-head {
    background: #4c5056;
    text-align: center;
}

.profile-page .wrap-profile__content__block-2 .table-head .table-head-col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 0;
}

.profile-page .wrap-profile__content__block-2 .table-head .table-row,
.profile-page .wrap-profile__content__block-2 .table-body .table-row {
    display: grid;
    grid-template-columns: 160px 1fr 1fr 1fr 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.profile-page .wrap-profile__content__block-2 .table-body {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}

.profile-page .wrap-profile__content__block-2 .table-body .table-body-col {
    border: 1px solid #fff;
    padding: 33px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    color: #fff;
    text-align: center;
}

.profile-page .wrap-profile__content__block-2 .table-body .table-body-col .table-body-mob-label {
    display: none;
}

.profile-page .wrap-profile__content__block-2 .table-body .table-body-col__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.profile-page .wrap-profile__content__block-2 .table-body .table-body-col__wrap__price {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: row;
    -webkit-flex: row;
    -ms-flex: row;
    flex: row;
}

.profile-page .wrap-profile__content__block-2 .table-body .table-body-col__wrap__value {
    margin-right: 5px;
}

.profile-page .wrap-profile__content__block-3 .adresses-note {
    position: absolute;
    top: -40px;
    font-size: 14px;
}

.profile-page .wrap-profile__content__block-3 .wrap-addreses {
    display: grid;
    grid-template-columns: 350px 350px;
    grid-gap: 85px;
    height: 100%;
}

.profile-page .wrap-profile__content__block-3 .wrap-addreses .addres-block {
    padding: 45px 25px 28px;
    color: #fff;
    border: 1px solid #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.profile-page .wrap-profile__content__block-3 .wrap-addreses .addres-block__title {
    margin-bottom: 50px;
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
    /* text-decoration: underline; */
}

.profile-page .wrap-profile__content__block-3 .wrap-addreses .addres-block__text {
    font-size: 18px;
    margin-bottom: 20px;
}

.profile-page .wrap-profile__content__block-3 .wrap-addreses .addres-block .button-modify {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 225px;
    width: 100%;
    height: 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: auto;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    text-transform: uppercase
}

.profile-page .wrap-profile__content__block-3 .wrap-addreses .addres-block .button-modify:hover {
    background: #4c5056;
}

.profile-page .wrap-profile__content__block-4 {
    padding: 40px 40px 40px 25px;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 1px solid #fff;
    color: #fff;
}

.profile-page .wrap-profile__content__block-4 .button-a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: 0;
    max-width: 225px;
    width: 100%;
    height: 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 50px;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

.woocommerce-MyAccount-paymentMethods.shop_table.shop_table_responsive.account-payment-methods-table {
    text-align: left;
}

.profile-page .wrap-profile__content__block-4 .wrap-payments .payment-row {
    margin-bottom: 20px;
}

.profile-page .wrap-profile__content__block-4 .wrap-payments .payment-row label {
    font-size: 28px;
    display: inline-block;
}

.profile-page .wrap-profile__content__block-4 .wrap-payments .payment-row label img {
    max-width: 65px;
    margin-left: 15px;
    position: absolute;
}

.profile-page .wrap-profile__content__block-4 .wrap-payments .payment-row .input-checkbox:checked+.input-label-checkbox:after {
    top: 18px;
}

.profile-page .wrap-profile__content__block-4 .wrap-payments .add-payment-method {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: auto;
    margin-left: auto;
    min-height: 30px;
    padding: 5px 25px;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

.profile-page .wrap-profile__content__block-4 .wrap-payments .add-payment-method:hover {
    background: #4c5056;
}

.profile-page .wrap-profile__content__block-5 .add-details {
    display: grid;
    grid-template-columns: minmax(500px, 780px);
    position: relative;
    top: -40px;
}

.profile-page .wrap-profile__content__block-5 .add-details form h4 {
    margin-top: 35px;
    margin-bottom: 22px;
    font-size: 23px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
}

.profile-page .wrap-profile__content__block-5 .add-details form .form-row {
    display: grid;
    margin-bottom: 20px;
}

.profile-page .wrap-profile__content__block-5 .add-details form .form-row label {
    color: #fff;
    margin-bottom: 12px;
    display: block;
    font-size: 23px;
}

.profile-page .wrap-profile__content__block-5 .add-details form .form-row input {
    width: 100%;
    height: 40px;
    border: 1px solid #fff;
    background: #33383D;
    color: #fff;
    padding: 0 20px;
}

.profile-page .wrap-profile__content__block-5 .add-details form .form-row .after-field {
    font-size: 14px;
    color: #fff;
    margin-top: 8px;
}

.profile-page .wrap-profile__content__block-5 .add-details form button[type='submit'] {
    margin-top: 30px;
    margin-left: auto;
    border: 0;
    cursor: pointer;
    display: block;
    height: 30px;
    padding: 0 25px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    text-transform: uppercase;
}

.profile-page .wrap-profile__content__block-5 .add-details form button[type='submit']:hover {
    background: #4c5056;
}

.cart-page {
    padding-top: 190px;
    /* min-height: 90vh; */
    /* min-height: calc( 100vh - 143px); */
}

.cart-page .section-title {
    margin-bottom: 70px;
}

.wrap-cart {
    display: grid;
    grid-template-columns: 1fr 220px;
    grid-gap: 28px;
    color: #fff;
}

.wrap-cart .cart-items-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.wrap-cart .cart-items-wrap .cart-items {
    display: grid;
    grid-template-columns: 1fr;
}

.wrap-cart .cart-items-wrap .cart-items .items-head {
    margin-bottom: 28px;
    background: #4E5156;
    border-right: 1px solid #fff;
}

.wrap-cart .cart-items-wrap .cart-items .items-head .row {
    display: grid;
    grid-template-columns: minmax(250px, 420px) minmax(100px, 125px) minmax(200px, 290px) minmax(100px, 170px);
}

.wrap-cart .cart-items-wrap .cart-items .items-head .row .col {
    text-align: center;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #fff;
    border-right: 0;
    font-size: 14px;
}

.wrap-cart .cart-items-wrap .cart-items .items-body .row {
    display: grid;
    grid-template-columns: minmax(250px, 420px) minmax(100px, 125px) minmax(200px, 290px) minmax(100px, 170px);
    margin-bottom: 24px;
    border-right: 1px solid #fff;
}

.wrap-cart .cart-items-wrap .cart-items .items-body .row .col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #fff;
    border-right: 0;
}

.wrap-cart .cart-items-wrap .cart-items .items-body .row .col .product-img {
    max-width: 150px;
    display: block;
}

.wrap-cart .cart-items-wrap .cart-items .items-body .row .col a:hover {
    text-decoration: underline;
}

.wrap-cart .cart-items-wrap .cart-items .items-body .row .col__product {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 0 15px;
}

.wrap-cart .cart-items-wrap .cart-items .items-body .row .col__product__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.wrap-cart .cart-items-wrap .cart-items .items-body .row .col__mobile {
    display: none;
}

.wrap-cart .cart-items-wrap .cart-items .items-body .row .col__total,
.wrap-cart .cart-items-wrap .cart-items .items-body .row .col__price {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.wrap-cart .cart-items-wrap .cart-items .items-body .row .col__total__value,
.wrap-cart .cart-items-wrap .cart-items .items-body .row .col__price__value {
    margin-right: 5px;
    font-weight: bold;
}

.wrap-cart .cart-items-wrap .cart-items .items-body .row .col__quantity__wrap {
    padding: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #fff;
    margin: 50px 15px;
    max-width: 120px;
}

.wrap-cart .cart-items-wrap .cart-items .items-body .row .col__quantity__wrap input {
    color: #fff;
    background: transparent;
    border: 0;
    text-align: center;
    width: 100%;
    min-width: 50px;
    position: relative;
    right: -5px;
    z-index: -1;
    font-size: 18px;
}

.wrap-cart .cart-items-wrap .cart-items .items-body .row .col__quantity__wrap__value {
    border: 0;
    background: none;
    text-align: center;
    color: #fff;
    max-width: 100%;
    width: 100%;
}

.wrap-cart .cart-items-wrap .cart-items .items-body .row .col__quantity__wrap button {
    background: none;
    border: 0;
    font-size: 18px;
}

.wrap-cart .cart-items-wrap .cart-items .items-body .row .col__quantity__wrap .plus {
    color: #00FE00;
}

.wrap-cart .cart-items-wrap .cart-items .items-body .row .col__quantity__wrap .minus {
    color: #FF0000;
}

.wrap-cart .cart-items-wrap .refresh-cart {
    height: 30px;
    background: none;
    border: 1px solid #fff;
    color: #fff;
    max-width: 225px;
    display: block;
    margin-left: auto;
    margin-bottom: 40px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    padding: 0 20px;
}

.wrap-cart .cart-items-wrap .refresh-cart:hover {
    background: #4c5056;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.wrap-cart .cart-result .result-head {
    background: #4E5156;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #fff;
    border-bottom: 0;
}

.wrap-cart .cart-result .result-body {
    padding: 13px;
    border: 1px solid #fff;
    font-size: 16px;
}

.wrap-cart .cart-result .result-body .result-label {
    text-align: center;
    margin-bottom: 10px;
}

.wrap-cart .cart-result .result-body .items-sum {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #fff;
}

.wrap-cart .cart-result .result-body .delivery-sum {
    border-bottom: 1px solid #fff;
    padding-bottom: 24px;
    margin-bottom: 14px;
}

.wrap-cart .cart-result .result-body .items-sum,
.wrap-cart .cart-result .result-body .total-sum,
.wrap-cart .cart-result .result-body .delivery-sum {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.wrap-cart .cart-result .result-body .items-sum .result-items,
.wrap-cart .cart-result .result-body .items-sum .result-delivery,
.wrap-cart .cart-result .result-body .items-sum .result-total,
.wrap-cart .cart-result .result-body .total-sum .result-items,
.wrap-cart .cart-result .result-body .total-sum .result-delivery,
.wrap-cart .cart-result .result-body .total-sum .result-total,
.wrap-cart .cart-result .result-body .delivery-sum .result-items,
.wrap-cart .cart-result .result-body .delivery-sum .result-delivery,
.wrap-cart .cart-result .result-body .delivery-sum .result-total {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.wrap-cart .cart-result .result-body .items-sum .result-items__val,
.wrap-cart .cart-result .result-body .items-sum .result-delivery__val,
.wrap-cart .cart-result .result-body .items-sum .result-total__val,
.wrap-cart .cart-result .result-body .total-sum .result-items__val,
.wrap-cart .cart-result .result-body .total-sum .result-delivery__val,
.wrap-cart .cart-result .result-body .total-sum .result-total__val,
.wrap-cart .cart-result .result-body .delivery-sum .result-items__val,
.wrap-cart .cart-result .result-body .delivery-sum .result-delivery__val,
.wrap-cart .cart-result .result-body .delivery-sum .result-total__val {
    font-size: 20px;
    margin-right: 5px;
    font-weight: bold;
}

.wrap-cart .cart-result .result-body .items-sum .delivery-img,
.wrap-cart .cart-result .result-body .total-sum .delivery-img,
.wrap-cart .cart-result .result-body .delivery-sum .delivery-img {
    max-width: 36px;
    margin-bottom: 10px;
}

.wrap-cart .cart-result .result-body .items-sum .result-note,
.wrap-cart .cart-result .result-body .total-sum .result-note,
.wrap-cart .cart-result .result-body .delivery-sum .result-note {
    font-size: 14px;
    margin-top: 10px;
}

.wrap-cart .cart-result .result-body .items-sum .delivery-note,
.wrap-cart .cart-result .result-body .total-sum .delivery-note,
.wrap-cart .cart-result .result-body .delivery-sum .delivery-note {
    margin-bottom: 10px;
}
.wrap-cart .cart-result .result-body .result-label{
    display: none;
}
.wrap-cart .cart-result .result-body .send-order {
    height: 30px;
    width: 100%;
    background: #4c5056;
    border: 1px solid #fff;
    color: #fff;
    margin-top: 16px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.wrap-cart .cart-result .result-body .send-order:hover {
    background: transparent;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.checkout-section .offset-container,
.cart-section .offset-container {
    left: 92px;
}

.checkout-section {
    padding-bottom: 80px;
}

.checkout-section .wrap-cart .cart-result .result-body .total-sum .result-total__val {
    font-size: 32px;
}

.checkout-section .wrap-cart+.section-subtitle {
    margin-bottom: 30px;
    margin-top: 20px;
}

.checkout-section .wrap-payment {
    color: #fff;
    font-size: 18px;
}

.checkout-section .wrap-payment form a {
    color: #9F9F9F;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.checkout-section .wrap-payment form a:hover {
    color: #fff;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.checkout-section .wrap-payment form .form-field {
    margin-bottom: 30px;
}

.checkout-section .wrap-payment form .form-field .input-label-checkbox:before {
    top: 5px;
}

.checkout-section .wrap-payment form .form-field .input-checkbox:checked+.input-label-checkbox:after {
    top: 9px;
}

.checkout-section .wrap-payment form .form-field .pay-method {
    position: relative;
    top: 6px;
}

.checkout-section .wrap-payment form .form-field .pay-method:first-of-type {
    margin-left: 25px;
}

.checkout-section .wrap-payment form .text-policy {
    margin-bottom: 30px;
    line-height: 23px;
}

.checkout-section .wrap-payment form .form-button {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    height: 33px;
    width: 320px;
    display: block;
    color: #fff;
    background: rgba(159, 0, 0, 0.5);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    border: 1px solid #707070;
    font-size: 20px;
}

.checkout-section .wrap-payment form .form-button:hover {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    background: #9f0000;
}

.checkout-section .checkout-wrap {
    /* max-width: 780px; */
}

.checkout-section .checkout-wrap form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #fff;
}

.checkout-section .checkout-wrap form .form-field {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 18px;
}

.checkout-section .checkout-wrap form .form-field input {
    height: 40px;
    padding-left: 16px;
    font-size: 14px;
}

.checkout-section .checkout-wrap form .form-field label {
    font-size: 14px;
    margin-bottom: 10px;
}

.checkout-section .checkout-wrap form .form-field .input-label-checkbox {
    display: inline-block;
    font-size: 18px;
    padding-left: 25px;
}

.checkout-section .checkout-wrap form .input-label-checkbox:before {
    top: 4px;
}

.checkout-section .checkout-wrap form .input-label-checkbox:after {
    top: 8px;
}

.checkout-section .checkout-wrap form .continue-order {
    height: 30px;
    width: 225px;
    margin-left: auto;
    margin-right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    margin-top: 50px;
    font-size: 14px;
}

.checkout-section .checkout-wrap form .continue-order:hover {
    background: #4c5056;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

@media screen and (max-width: 1680px) {
    header .left-angle {
        max-width: 300px;
    }

    header .left-angle .left-logo {
        top: 35px;
        left: 50px;
        max-width: 80px;
    }

    .profile-page .wrap-profile__content__block-3 .wrap-addreses {
        grid-gap: 40px;
        grid-template-columns: repeat(2, minmax(200px, 350px));
    }
}

@media screen and (max-width: 1440px) {
    header .left-angle {
        max-width: 200px;
    }

    header .left-angle .left-logo {
        top: 25px;
        left: 25px;
        max-width: 60px;
    }

    .main-picture-block-reverse .text-block {
        left: -15%;
    }

    .checkout-section .offset-container,
    .cart-section .offset-container {
        padding: 0
    }

    .checkout-section .offset-container,
    .cart-section .offset-container,
    .offset-container {
        left: 0;
    }

    .main-picture-block:before {
        display: none;
    }

    .lost-password-section h1 {
        text-align: center
    }

    .lost-password-page .wrap-lost-password {
        justify-content: center;
    }
}

@media screen and (max-width: 1200px) {
    .main-section .logo-wrap {
        margin-bottom: 70px;
        /* margin-top: 0; */
    }

    .checkout-section .checkout-wrap {
        max-width: 100%;
    }

    header .left-angle .left-logo-note,
    header .left-angle .left-logo {
        display: none;
    }

    header .left-angle .left-logo-note-mob {
        display: block;
    }

    header .left-angle {
        left: -10px;
    }

    .main-section .logo-wrap img {
        max-width: 120px;
    }

    .main-section .cars-wrap {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 10vh 80px;
        margin-top: 80px;
    }

    .main-picture-block {
        margin-bottom: 170px;
    }

    /* .main-picture-block .text-block {
        width: 370px;
    } */

    .main-section .cars-wrap .title {
        top: 15px;
        width: 125px;
        height: 40px;
    }

    .main-section .cars-wrap .car:hover .img-wrap {
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px);
    }

    .catalog .catalog__content__body .category-products .product .product-info__title {
        padding: 0 20px;
    }

    .catalog .catalog__content__body .category-products {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog .catalog__content__body .product-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog .catalog__content__body .product-wrap .product-slider {
        max-width: 375px;
    }

    .catalog .catalog__content__body .product-wrap .product-info__description .bottom-info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .catalog .catalog__content__body .product-wrap .product-info__description .bottom-info__price {
        margin-bottom: 10px;
    }

    .catalog .catalog__content__body .product-wrap .product-info {
        padding-top: 20px;
    }

    .catalog .catalog__content__body .product-wrap .product-slider .gallery-top {
        height: 350px;
    }

    .catalog .catalog__content__body .product-wrap .product-slider {
        height: 350px;
    }

    .catalog .catalog__content__body .product-wrap .product-info__name {
        font-size: 28px;
    }

    .main-picture-block-reverse {
        margin-bottom: 0;
    }

    .main-picture-block-reverse .text-block {
        width: unset;
    }

    .vehicules-page .bottom-img-car {
        bottom: 0;
    }

    .vehicules-page .bottom-img-car {
        max-width: 477px;
    }

    .demandes-page .bottom-img-car {
        max-width: 700px;
    }

    .not-main-page .logo-wrap {
        display: block;
        position: absolute;
        top: -50px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .not-main-page .logo-wrap img {
        max-width: 110px;
    }

    .profile-page .wrap-profile {
        grid-gap: 40px;
        display: grid;
        grid-template-columns: 250px 1fr;
    }

    .profile-page .wrap-profile__tabs ul li {
        height: 70px;
    }

    .profile-page .wrap-profile__tabs ul li a {
        font-size: 18px;
    }

    .profile-page .wrap-profile__content__block-3 .wrap-addreses .addres-block__title {
        font-size: 22px;
    }

    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-body .row,
    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-head .row {
        grid-template-columns: minmax(250px, 420px) minmax(60px, 125px) minmax(80px, 290px) minmax(60px, 170px);
    }
}

@media screen and (max-width: 1024px) {
    p {
        font-size: 18px;
    }

    header .head-wrap .wrap-menu {
        position: absolute;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        opacity: 0;
        -webkit-transform: translate(100%);
        -ms-transform: translate(100%);
        transform: translate(100%);
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        padding: 65px 45px 55px 30px;
        top: -24px;
        border: 1px solid #fff;
        z-index: 11;
        background: #33383D;
    }

    header .head-wrap .wrap-menu nav ul {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    header .head-wrap .wrap-menu nav ul li {
        margin-bottom: 15px;
    }

    header .head-wrap .wrap-menu nav ul li a {
        margin-right: 0;
    }

    header .head-wrap .wrap-menu .profile-wrap {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    header .head-wrap .wrap-menu .profile-wrap .link-profile {
        margin-bottom: 10px;
    }

    header .head-wrap {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    header .head-wrap .buttons-wrap {
        z-index: 20;
        position: relative;
    }

    header .head-wrap .menu-mobile-button {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        cursor: pointer;
    }

    header .head-wrap .menu-mobile-button .line {
        display: block;
        height: 1px;
        width: 100%;
        background: #fff;
        position: relative;
    }

    header .head-wrap .menu-mobile-button .line:before {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: #fff;
        position: absolute;
        top: -8px;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

    header .head-wrap .menu-mobile-button .line:after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: #fff;
        position: absolute;
        bottom: -8px;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

    header .head-wrap .menu-mobile-button.active .line {
        background: transparent;
    }

    header .head-wrap .menu-mobile-button.active .line:before {
        content: '';
        top: 0px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

    header .head-wrap .menu-mobile-button.active .line:after {
        content: '';
        bottom: 0px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

    header .head-wrap .wrap-menu.search-active,
    header .head-wrap .wrap-menu.active {
        opacity: 1;
        -webkit-transform: translate(50px);
        -ms-transform: translate(50px);
        transform: translate(50px);
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

    .catalog .catalog__content__head__model:after {
        top: -15px;
    }

    .catalog {
        padding-top: 20px;
    }

    .not-main-page .logo-wrap {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 80px;
        position: relative;
        -webkit-transform: unset;
        -ms-transform: unset;
        transform: unset;
        left: unset;
    }

    .not-main-page {
        padding-top: 0;
    }

    .vehicules-page .vehicules-section .vehicules-wrap {
        margin: 0 auto;
    }

    .vehicules-page .vehicules-section .vehicules-wrap .vehicules-link {
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
    }

    .main-props {
        padding-top: 0px;
    }
}

@media screen and (max-width: 991px) {
    header{
        z-index: 3;
    }
    .not-main-page .logo-wrap {
        top: 0;
    }

    .main-section .logo-wrap {
        margin-top: -50px;
    }

    .logo-wrap {
        margin-top: -50px;
        margin-bottom: 100px;
    }

    .container {
        padding: 0 30px;
    }

    .main-section {
        max-height: unset;
    }

    .main-picture-block {
        height: 350px;
    }

    .main-section .cars-wrap {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 10vh 80px;
    }

    .main-section .cars-wrap .car__subtitle,
    .main-section .cars-wrap .car__model {
        font-size: 14px;
        left: -40px;
        top: -8px;
    }

    .catalog .catalog__content__body {
        padding-left: 30px;
    }

    .catalog .catalog__content__body .categoryes {
        grid-template-columns: repeat(3, 1fr);
    }

    .catalog .catalog__content__head__model {
        font-size: 32px;
    }

    .catalog-model-wrap .catalog-model__mob {
        display: none;
    }

    .catalog-model-wrap .catalog-model__title {
        font-size: 32px;
    }

    .catalog .catalog__content__body .category-products .product__img {
        min-height: 250px;
    }

    .catalog .catalog__content__body .category-products {
        grid-gap: 15px;
    }

    .catalog .catalog__content__body .product-wrap .product-slider {
        max-width: 250px;
        height: 250px;
    }

    .catalog .catalog__content__body .product-wrap .product-slider .gallery-top {
        height: 250px;
    }

    .catalog .catalog__content__body .product-wrap .product-info__name {
        font-size: 22px;
    }

    .catalog .catalog__content__body .product-wrap .product-info__ref {
        margin-bottom: 20px;
    }

    .catalog .catalog__content__body .product-wrap .product-info__description .bottom-info {
        margin-top: 20px;
    }

    .main-picture-block-reverse .text-block {
        left: -20%;
    }

    .news-page .news .news-tabs-wrap .news-tab__title__name {
        font-size: 22px;
    }

    .news-page .news .news-tabs-wrap .news-tab__title {
        grid-gap: 50px;
    }

    .news-page .news .news-tabs-wrap .news-tab__hidden {
        grid-template-columns: repeat(2, 1fr);
    }

    .demandes-page .bottom-img-car {
        max-width: 600px;
    }

    .contact-page .wrap-contact-info {
        grid-gap: 50px;
    }

    .login-page .wrap-login {
        grid-gap: 30px;
        grid-template-columns: repeat(auto-fill, minmax(300px, 350px));
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .profile-page .wrap-profile__content__block-2 .table-head .table-row,
    .profile-page .wrap-profile__content__block-2 .table-body .table-row {
        font-size: 12px;
        grid-template-columns: 120px 1fr 1fr 1fr 1fr;
    }

    .profile-page .wrap-profile__content__block-3 .wrap-addreses {
        grid-template-columns: repeat(1, minmax(300px, 350px));
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .profile-page .wrap-profile__content__block-5 .add-details form .form-row label {
        font-size: 18px;
    }

    .profile-page .wrap-profile__content__block-4 .wrap-payments .payment-row label {
        font-size: 22px;
    }

    .input-label-checkbox:before {
        top: 7px;
    }

    .profile-page .wrap-profile__content__block-4 .wrap-payments .payment-row .input-checkbox:checked+.input-label-checkbox:after {
        top: 11px;
    }

    .input-checkbox:checked+.input-label-checkbox:after {
        top: 9px;
    }

    .profile-page .wrap-profile__content__block-5 .add-details {
        top: -35px;
        grid-template-columns: 1fr;
    }

    .profile-page .wrap-profile {
        grid-gap: 20px;
    }

    .profile-page .wrap-profile__content__block-3 .wrap-addreses {
        height: unset;
    }

    .cart-page .wrap-cart {
        grid-template-columns: 1fr;
    }

    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-body .row,
    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-head .row {
        grid-template-columns: minmax(150px, 420px) minmax(60px, 125px) minmax(125px, 90px) minmax(60px, 170px);
    }

    .cart-result {
        max-width: 350px;
        width: 100%;
        margin: 0 auto 50px;
    }

}

@media screen and (max-width: 768px) {
    .main-section .cars-wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10vh 50px;
    }

    .main-section .cars-wrap .car__subtitle,
    .main-section .cars-wrap .car__model {
        font-size: 12px;
        left: -40px;
        top: 15px;
    }

    .main-picture-block {
        margin-bottom: 150px;
    }



    .main-picture-block .text-block {
        top: 0;
        background: unset;
        width: 100%;
    }

    .main-picture-block .text-block p {
        margin-left: auto;
        margin-right: 20px;
    }

    .main-picture-block .pic-main-sec {
        width: 100%;
        height: 100%;
        top: 0;
        position: relative;
        transform: unset;
    }

    .main-picture-block:after {
        top: 0;
    }

    .main-props+.main-picture-block {
        position: relative;
    }

    .catalog .catalog__content__body {
        padding-left: 30px;
    }

    .catalog .catalog__content__body .categoryes {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog .catalog__content__head__model {
        font-size: 32px;
    }

    .catalog .catalog__content__head__img {
        max-width: 170px;
    }

    .catalog .catalog__content__head__model:after {
        height: 70px;
    }

    .catalog-model-wrap .catalog-model__title {
        font-size: 24px;
    }

    .catalog-model-wrap .catalog-model__img {
        max-width: 170px;
    }

    .catalog-model-wrap .catalog-model__title:after {
        height: 70px;
    }

    .catalog-model-wrap {
        margin-bottom: 20px;
    }

    .catalog .catalog__content__body .category-products .product .product-info__price {
        font-size: 20px;
    }

    .catalog .catalog__content__body .category-products .product .product-info__title {
        font-size: 14px;
    }

    .catalog .catalog__content__body .product-wrap {
        grid-template-columns: repeat(1, 1fr);
    }

    .catalog .catalog__content__body .product-wrap .product-info {
        margin-top: 100px;
    }

    .main-picture-block-reverse .text-block {
        left: -20%;
    }

    .main-picture-block-reverse {
        margin-bottom: 0;
    }

    .main-picture-block {
        /* height: 250px; */
        height: fit-content;
    }

    .news-page .news .news-tabs-wrap .news-tab__hidden {
        grid-template-columns: repeat(1, 1fr);
    }

    .news-page .news .news-tabs-wrap .news-tab__hidden__text {
        max-width: 100%;
    }

    .news-page .current-new .text-new {
        font-size: 18px;
    }

    .vehicules-page .vehicules-section .vehicules-wrap {
        max-width: 375px;
        margin: 0 auto;
    }

    .vehicules-page .vehicules-section .vehicules-wrap .vehicule-block {
        grid-template-columns: 100%;
    }

    .vehicules-page .vehicules-section .vehicules-wrap .vehicules-link {
        margin-left: auto;
        margin-right: auto;
    }

    /* .main-picture-block .text-block p {
        margin-left: 140px;
    } */

    .profile-page .wrap-profile {
        grid-template-columns: 1fr;
        grid-gap: 45px;
    }

    .profile-page .wrap-profile__content__block-3 .adresses-note {
        position: relative;
        margin-bottom: 30px;
        top: unset;
    }

    .profile-page .wrap-profile__content__block-5 .add-details {
        top: unset;
    }

    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-body .row .col .product-img {
        width: 100%;
    }
}

@media screen and (max-width: 720px) {
    .catalog .catalog__content__body .category-products {
        grid-template-columns: repeat(1, 1fr);
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        max-width: 320px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 576px) {
    .title-section {
        font-size: 28px;
    }

    header .head-wrap .menu-mobile-button.active+.wrap-menu {
        -webkit-transform: translate(15px);
        -ms-transform: translate(15px);
        transform: translate(15px);
    }

    .offset-container,
    .container {
        padding: 0 15px;
    }

    .main-props .title-section {
        margin-bottom: 50px;
    }

    .main-picture-block .text-block {
        width: 270px;
    }

    .main-section .cars-wrap .car__title {
        width: 100px;
    }

    .main-section .cars-wrap .car__subtitle,
    .main-section .cars-wrap .car__model {
        font-size: 10px;
        left: -30px;
        top: 0px;
    }

    .logo-wrap {
        margin-bottom: 50px;
    }

    .logo-wrap img {
        max-width: 110px;
    }

    .main-section .logo-wrap img,
    .not-main-page .logo-wrap img {
        max-width: 110px;
    }

    .main-section .cars-wrap {
        grid-gap: 6vh 50px;
    }

    .main-props .main-props-info {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
    }

    .main-picture-block {
        margin-bottom: 100px;
    }

    .main-picture-block {
        height: 260px;
    }

    .main-picture-block .pic-main-sec {
        position: relative;
        height: 160px;
        transform: unset;
        top: unset;
    }

    .main-picture-block.main-picture-block-reverse.main-picture-news-block {
        right: 0;
    }

    .main-picture-block .text-block {
        height: unset;
        top: 0;
        width: unset;
        margin-top: 20px;
        background: none;
    }

    .main-picture-block .text-block p {
        max-width: 160px;
        margin-left: auto;
        margin-right: 20px;
    }

    .catalog {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .catalog .catalog__filter {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .catalog-model-wrap {
        display: none;
    }

    .catalog-model-wrap .catalog-model {
        width: 100%;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        display: none;
    }

    .catalog .catalog__filter .catalog__filter__mob {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .catalog .catalog__filter .catalog__filter__mob .filter__mob__img {
        max-width: 170px;
        margin: 20px auto;
    }

    .catalog .filter__mob__top {
        max-width: 100%;
        padding-right: 0;
        display: grid;
        grid-gap: 11px;
        grid-template-columns: repeat(2, 1fr);
    }

    .filter__mob__top__model__label,
    .filter__mob__top__category__label {
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .filter__mob__top__model__value,
    .filter__mob__top__category__value {
        height: 50px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        border: 1px solid #fff;
        cursor: pointer;
    }

    .catalog .catalog__filter .model-label {
        display: block;
    }

    .catalog .catalog__filter:after {
        display: none;
    }

    .catalog .catalog__content__body {
        padding-left: 0;
    }

    .catalog .catalog__content__body .breadcrumbs {
        display: none;
    }

    .catalog .catalog__filter>ul li .submenu {
        padding-left: 0;
    }

    .filter-links {
        display: none;
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 300px;
        background: #33383D;
        z-index: -2;
        overflow-y: auto;
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .filter-links.active {
        display: block;
        z-index: 21;
    }

    footer .foot-wrap .foot-logo-mob {
        display: block;
    }

    footer .foot-wrap .foot-logo {
        display: none;
    }

    .catalog .catalog__content__body .category-products {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
    }

    .catalog .catalog__content__body .product-wrap .product-slider {
        max-width: 320px;
        height: 320px;
        margin: 0 auto;
    }

    .catalog .catalog__content__body .product-wrap .product-slider .gallery-top {
        height: 320px;
    }

    .catalog .catalog__content__body .product-wrap .product-info {
        max-width: 320px;
        margin: 0 auto;
    }

    .catalog .catalog__content__body .product-wrap .gallery-thumbs {
        display: none;
    }

    .catalog .catalog__content__body .product-wrap .product-info__name {
        font-size: 36px;
    }

    .catalog .catalog__content__body .product-wrap .product-info__description .bottom-info__stock,
    .catalog .catalog__content__body .product-wrap .product-info__description .bottom-info__price {
        width: 100%;
        margin-right: 0;
        text-align: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .catalog .catalog__content__body .product-wrap .product-info .button-wrap .button-wrap-container {
        width: 100%;
        padding: 0;
    }

    .catalog .catalog__content__body .product-wrap .product-info .button-wrap .button-wrap-container .add-to-cart {
        padding-right: 50px;
    }

    .catalog .catalog__content__body .product-wrap .product-info__ref {
        margin-bottom: 40px;
    }

    .main-picture-block-reverse .text-block {
        display: none;
    }

    .main-picture-block-reverse:after {
        right: 0;
    }

    .main-picture-block-reverse .container {
        padding: 0;
    }

    .main-picture-block-reverse .pic-main-sec {
        margin-left: -15px;
        margin-right: -15px;
        left: unset;
        right: -15px;
    }

    .main-picture-block-reverse {
        margin-bottom: 0;
    }

    .main-picture-block:after {
        width: -webkit-calc(100% + 30px);
        width: calc(100% + 30px);
        right: -15px;
        top: 0;
    }

    .title-mob {
        display: block;
        margin-bottom: 45px;
        margin-left: 30px;
        color: #fff;
        margin-top: 100px;
        font-size: 28px;
        font-weight: normal;
        text-transform: uppercase;
    }

    .news-page .current-new {
        margin: 40px 0;
    }

    .news-page .news .news-tabs-wrap .news-tab__title {
        grid-template-columns: 1fr;
        grid-gap: 10px;
        padding-bottom: 60px;
        padding-right: 0;
        padding-top: 30px;
    }

    .news-page .news .news-tabs-wrap .news-tab__title:after {
        right: -webkit-calc(50% - 9px);
        right: calc(50% - 9px);
        bottom: 20px;
    }

    .news-page .news .news-tabs-wrap .news-tab__title.active:after {
        bottom: 10px;
    }

    .news-tab__hidden__image {
        width: -webkit-calc(100% + 60px);
        width: calc(100% + 60px);
        margin-left: -30px;
        margin-right: -30px;
    }

    .main-picture-block-reverse {
        height: 165px;
    }

    .news-page .current-new h2 {
        font-size: 22px;
        margin-top: 15px;
    }

    .news-page .current-new {
        margin-top: 0;
    }

    .news-page .current-new .date-new {
        margin-bottom: 28px;
    }

    .news-page .news .news-tabs-wrap .news-tab__hidden {
        grid-gap: 25px;
    }

    .news-page .news .news-tabs-wrap .news-tab__title__name {
        font-size: 26px;
        padding-right: 0;
    }

    .news-page .news .news-tabs-wrap .news-tab__hidden__text {
        line-height: 25px;
    }

    .news-page .news .news-tabs-wrap .news-tab__title.active:after {
        display: none;
    }

    .news-page .news .news-tabs-wrap .news-tab .news-tab__title.active+.news-tab__hidden {
        position: relative;
        padding-bottom: 60px;
    }

    .news-page .news .news-tabs-wrap .news-tab__title.active {
        padding-bottom: 30px;
    }

    .news-page .news .news-tabs-wrap .news-tab .news-tab__title.active+.news-tab__hidden:after {
        content: '';
        display: block;
        width: 18px;
        height: 18px;
        background: url(../img/arrow.png);
        background-repeat: no-repeat;
        background-size: contain;
        right: -webkit-calc(50% - 9px);
        right: calc(50% - 9px);
        bottom: 25px;
        position: absolute;
        background-position: center center;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        opacity: 1;
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
    }

    .vehicules-page .vehicules-section .section-title,
    .section-title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .vehicules-page .vehicules-section .vehicules-wrap .vehicule-block {
        margin-left: -30px;
        width: -webkit-calc(100% + 60px);
        width: calc(100% + 60px);
    }

    .vehicules-page .vehicules-section .vehicules-wrap .vehicule-block__info__title {
        margin-bottom: 20px;
    }

    .demandes-page .bottom-img-car {
        display: none;
    }

    .demandes-page .demandes-section .form-wrap .form-field input[type="submit"] {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-page .wrap-contact-info {
        grid-template-columns: 1fr;
    }

    .contact-page .wrap-contact-info__img {
        top: unset;
    }

    .contact-page {
        padding-bottom: 75px;
    }

    .contact-page .section-title {
        margin-bottom: 40px;
    }

    .login-page .wrap-login .enter-form h4.form-title {
        font-size: 24px;
        font-weight: 400;
        margin-bottom: 40px;
    }

    .login-page .wrap-login .enter-form {
        padding-top: 35px;
    }

    .login-page .wrap-login .enter-form form button[type='submit'] {
        height: 50px;
    }

    .login-page .wrap-login .enter-form .woocommerce-privacy-policy-text p,
    .login-page .wrap-login .enter-form form .form-field .confidential {
        margin-bottom: 40px;
        font-size: 13px;
    }

    .login-page .wrap-login .enter-form form .form-field {
        margin-bottom: 25px;
    }

    .login-page .wrap-login .enter-form form .form-field input:not([type="submit"]) {
        height: 34px;
    }

    .login-page .wrap-login .enter-form form .rememberme {
        margin-bottom: 0;
    }

    .login-page .wrap-login .enter-form form .form-field label {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .remind-pass {
        margin-bottom: 40px;
        display: inline-block;
        font-size: 18px;
        margin-top: 10px;
    }

    .login-page .wrap-login .enter-form form .form-field label[for="rememberme"]:before {
        top: 4px;
    }

    .login-page .wrap-login .enter-form form .form-field #rememberme:checked+label[for="rememberme"]:after {
        top: 6px;
    }

    .profile-page .wrap-profile__content__block-2 .table-head {
        display: none;
    }

    .profile-page .wrap-profile__content__block-2 .table-body .table-body-col {
        display: grid;
        grid-template-columns: 120px 1fr;
        padding: 0;
        border-bottom: 0;
    }

    .profile-page .wrap-profile__content__block-2 .table-body .table-body-col .table-body-mob-label {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        border-right: 1px solid #fff;
        height: 70px;
        text-transform: uppercase;
        padding-left: 22px;
    }

    .profile-page .wrap-profile__content__block-2 .table-head .table-row,
    .profile-page .wrap-profile__content__block-2 .table-body .table-row {
        grid-template-columns: 1fr;
        border-bottom: 1px solid #fff;
    }

    .profile-page .wrap-profile__content__block-2 .table-head .table-row,
    .profile-page .wrap-profile__content__block-2 .table-body .table-row {
        font-size: 14px;
    }

    .profile-page .wrap-profile__content__block-2 .table-body .table-body-col .facture-link {
        display: block;
        margin-left: auto;
        padding-right: 20px;
    }

    .profile-page .wrap-profile__content__block-2 .table-body .table-body-col__wrap,
    .profile-page .wrap-profile__content__block-2 .table-body .table-body-col__status,
    .profile-page .wrap-profile__content__block-2 .table-body .table-body-col__date,
    .profile-page .wrap-profile__content__block-2 .table-body .table-body-col__prod {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-right: 20px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .profile-page .wrap-profile__tabs ul li {
        height: 65px;
    }

    .profile-page .wrap-profile__content__block-2 .table-body .table-body-col .table-body-mob-label {
        min-height: 45px;
        height: 100%;
    }

    .profile-page .wrap-profile__content__block-3 .wrap-addreses .addres-block__text {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .profile-page .wrap-profile__content__block-3 .wrap-addreses .addres-block .button-modify {
        margin-top: 100px;
        height: 50px;
    }

    .profile-page .wrap-profile__content__block-3 .wrap-addreses .addres-block__title {
        margin-bottom: 40px;
    }

    .input-label-checkbox:before {
        top: 3px;
    }

    .input-checkbox:checked+.input-label-checkbox:after {
        top: 5px;
    }

    .profile-page .wrap-profile__content__block-4 .wrap-payments .payment-row label {
        font-size: 16px;
    }

    .profile-page .wrap-profile__content__block-4 .wrap-payments .add-payment-method {
        margin-top: 50px;
        margin-right: auto;
        min-height: 50px;
    }

    .profile-page .wrap-profile__content__block-4 .wrap-payments {
        padding: 25px;
    }

    .profile-page .wrap-profile__content__block-4 .wrap-payments .payment-row .input-checkbox:checked+.input-label-checkbox:after {
        top: 7px;
    }

    .profile-page .wrap-profile__content__block-5 .add-details form button[type='submit'] {
        margin-top: 40px;
        margin-right: auto;
        min-height: 50px;
    }

    .form-row-col-1,
    .form-row-col-2,
    .form-row-col-3 {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }

    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-head {
        display: none;
    }

    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-body .row .col__mobile {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 12px 20px;
        height: 100%;
        border-right: 1px solid #fff;
        font-size: 14px;
    }

    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-body .row,
    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-head .row {
        grid-template-columns: 1fr;
        border-bottom: 1px solid #fff;
    }

    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-body .row {
        margin-bottom: 50px;
    }

    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-body .row .col__product,
    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-body .row .col {
        display: grid;
        grid-template-columns: 120px 1fr;
    }

    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-body .row .col__total,
    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-body .row .col__price {
        padding-right: 20px;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-body .row .col__quantity__wrap {
        max-width: 80px;
        margin-left: auto;
        margin-right: 0;
        border: 0;
        padding: 0;
    }

    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-body .row .col {
        border-bottom: 0;
    }

    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-body .row .col__quantity__wrap button {
        padding: 0;
    }

    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-body .row .col__quantity,
    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-body .row .col__total,
    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-body .row .col__price {
        padding: 12px 20px;
        text-align: right;
    }

    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-body .row .col.col-prod-info {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .cart-page .wrap-cart .cart-items-wrap {
        font-size: 14px;
        max-width: 350px;
        width: 100%;
        margin: 0 auto;
    }

    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-body .row .col .product-img {
        max-width: 350px;
        max-height: 320px;
        object-fit: cover;
    }

    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-body .row .col__product__wrap {
        padding: 12px 20px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .cart-page .wrap-cart .cart-items-wrap .refresh-cart {
        height: 50px;
        max-width: 250px;
        margin-top: 0;
        margin-right: auto;
    }

    .cart-result {
        max-width: 220px;
        margin-bottom: 150px;
        position: relative;
    }

    .cart-page .wrap-cart .cart-result .result-body .send-order {
        position: absolute;
        bottom: -70px;
        width: 220px;
        height: 50px;
        margin-left: -13px;
        background: #33383D;
    }

    .checkout-section .wrap-payment form .form-field {
        margin-bottom: 25px;
    }

    .checkout-section .wrap-payment {
        font-size: 16px;
    }

    .checkout-section .wrap-payment form .form-field .input-label-checkbox:before {
        top: 3px;
    }

    .checkout-section .wrap-payment form .form-field .input-checkbox:checked+.input-label-checkbox:after {
        top: 7px;
    }

    .checkout-section .cart-result {
        margin-bottom: 50px;
    }

    .input-label-checkbox {
        padding-left: 35px;
    }

    .section-subtitle {
        margin-bottom: 30px;
    }

    .checkout-section .checkout-wrap form .continue-order {
        margin-right: auto;
        height: 50px;
        font-size: 16px;
    }

    .profile-page .wrap-profile__content__block-3 .wrap-addreses {
        grid-template-columns: repeat(1, minmax(250px, 350px));
    }

    .profile-section .offset-container {
        padding: 0;
    }

    .profile-page .wrap-profile__content__block-4 {
        padding: 20px;
    }

    .main-section {
        padding-bottom: 50px;
    }

    .vehicules-page .vehicules-section .vehicules-wrap .vehicule-block__info {
        padding: 30px 35px;
    }

    .show-password-input {
        top: 7px;
    }

    .wrap-cart .cart-items-wrap .cart-items .items-body .row .col__product{
        padding: 0;
    }
}

@media screen and (max-width: 480px) {
    .main-section .cars-wrap {
        grid-gap: 10vh 30px;
    }

    .main-section .cars-wrap .car:hover .img-wrap {
        -webkit-transform: translateX(15px);
        -ms-transform: translateX(15px);
        transform: translateX(15px);
    }

    .main-section .cars-wrap .car__title {
        width: 80px;
        top: -10px;
    }

    .main-section .cars-wrap .car__subtitle,
    .main-section .cars-wrap .car__model {
        /* height: 36px; */
        font-size: 9px;
    }

    .catalog .catalog__content__body .categoryes {
        grid-template-columns: repeat(1, 290px);
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .link-logo {
        position: absolute;
        right: 0;
        bottom: 15px;
    }

    .link-company,
    .link-copyright {
        width: 100%;
        display: block;
        font-size: 12px;
    }

    footer .foot-wrap {
        padding: 15px 0;
        position: relative;
    }

    .catalog .catalog__content__body .product-wrap .product-info {
        max-width: 290px;
    }

    .catalog .catalog__content__body .product-wrap .product-slider {
        max-width: 290px;
        height: 290px;
    }

    .catalog .catalog__content__body .product-wrap .product-slider .gallery-top {
        height: 290px;
    }

    .news-page .news .news-tabs-wrap .news-tab__title {
        padding-top: 21px;
    }

    .vehicules-page .bottom-img-car {
        display: none;
    }

    .vehicules-page {
        padding-bottom: 50px;
    }

    .vehicules-page .vehicules-section .vehicules-wrap .vehicules-link {
        font-size: 16px;
    }

    .cart-page .wrap-cart .cart-items-wrap .cart-items .items-body .row .col__quantity__wrap {
        max-width: 60px;
    }

    .checkout-section .wrap-payment form .form-button {
        width: 280px;
    }

    .main-section .cars-wrap .car__title {
        padding-bottom: 3px;
    }
}

@media screen and (max-width: 400px) {
    .profile-page .wrap-profile__content__block-4 .wrap-payments .payment-row label img {
        position: relative;
        margin-top: 10px;
        margin-left: 0;
    }
}

@media screen and (max-width: 360px) {
    .offset-container {
        padding: 0 20px;
    }
}

@media screen and (max-height: 900px) and (min-width: 576px) {
    .login-page {
        padding-top: 40px;
    }
}

@media screen and (max-height: 810px) and (min-width: 576px) {
    .main-section .logo-wrap {
        margin-top: 30px;
        margin-bottom: 130px;
    }

    /* .main-section .logo-wrap img {
        max-width: 120px;
    } */
    .login-page {
        padding-top: 50px;
    }
}

#ship-to-different-address .woocommerce-form__label-for-checkbox:before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    left: 0;
    top: 14px;
    border: 1px solid #fff;
}

#ship-to-different-address-checkbox:checked+#ship-to-different-address .woocommerce-form__label-for-checkbox:after {
    content: '';
    display: block;
    width: 6px;
    position: absolute;
    height: 6px;
    top: 14px;
    left: 4px;
    background: url(/wp-content/themes/etolies/img/check-mark.svg);
    background-size: contain;
    background-position: center;
}

#ship-to-different-address .woocommerce-form__label-for-checkbox {
    position: relative;
    padding-left: 30px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 18px;
}

.catalog-wrap,
.main,
.hentry {
    min-height: calc(100vh - 163px);
    z-index: 2;
}

.hentry {
    min-height: calc(100vh - 143px);
}

.woocommerce-order {
    padding-top: 120px;
    color: #fff;
}

.woocommerce-thankyou-order-details,
.woocommerce-notice--success {
    margin-bottom: 20px;
}

.woocommerce-order-details .woocommerce-order-details__title {
    margin-bottom: 20px;
    margin-top: 20px;
}

.woocommerce-table.woocommerce-table--order-details.shop_table.order_details thead tr th,
.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tbody tr td,
.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tfoot tr td,
.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tfoot tr th {
    text-align: left;
    border: 1px solid #fff;
    padding: 5px;
}

.lost-password-page {
    padding-top: 120px;
}

.lost-password-page .button {
    max-width: 225px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #fff;
    background: none;
    color: #fff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-transform: uppercase;
}

.lost-password-page form p {
    font-size: 16px;
}

.lost-password-page form .woocommerce-form-row label {
    margin-bottom: 10px;
    font-size: 14px;
    display: inline-block;
}

.lost-password-page form .woocommerce-form-row {
    margin: 15px 0;
}

.lost-password-page form .woocommerce-form-row input {
    height: 40px;
    width: 100%;
    padding: 0 15px;
}

.lost-password-section h1 {
    margin-bottom: 30px;
}

@media screen and (max-width: 1025px) {
    .lost-password-page {
        padding-top: 0;
    }

    .main,
    .hentry {
        min-height: calc(100vh - 196px);
    }

    .woocommerce-checkout.woocommerce-page.woocommerce-order-received .hentry {
        min-height: calc(100vh - 143px);
    }
}

@media screen and (max-width: 991px) {
    .hentry {
        min-height: calc(100vh - 96px);
    }

    .main {
        min-height: calc(100vh - 143px);
    }
}

@media screen and (max-height: 890px) {
    header .left-angle {
        max-width: 300px;
    }

    header .left-angle .left-logo {
        top: 35px;
        left: 50px;
        max-width: 80px;
    }
}

.woocommerce-notices-wrapper {
    color: #00FF00;
    margin-bottom: 20px;
    max-width: 850px;
    margin: 0 auto;
}

.woocommerce-MyAccount-content form h3 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 23px;
    text-transform: uppercase;
}

.woocommerce-MyAccount-content form .woocommerce-address-fields p {
    margin-bottom: 15px;
}

.woocommerce-MyAccount-content form .woocommerce-address-fields p input {
    height: 40px;
    padding: 0 15px;
    width: 100%;
}

.select2-container .select2-selection--single {
    height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
}

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

.select2-container--default .select2-selection--single {
    border-radius: 0;
}

.woocommerce-MyAccount-content form .button {
    margin-top: 30px;
    margin-left: auto;
    border: 0;
    cursor: pointer;
    display: block;
    height: 30px;
    padding: 0 25px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
}

.woocommerce-PaymentMethods {
    color: #fff;
}

#stripe-payment-data>p {
    font-size: 18px;
    margin: 20px 0;
}

.woocommerce-PaymentMethod--stripe.woocommerce-PaymentMethod label {
    margin-bottom: 15px;
}

.codedropz-upload-inner,
.woocommerce-MyAccount-content,
.woocommerce-message.woocommerce-message--info.woocommerce-Message.woocommerce-Message--info.woocommerce-info {
    color: #fff;
}

.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li {
    margin-bottom: 10px;
}

.woocommerce-order {
    padding-top: 60px;
}

.result-delivery {
    flex-direction: column;
    align-items: flex-start !important;
}

.woocommerce-shipping-destination {
    font-size: 14px;
}

.woocommerce-cart-form {
    padding-bottom: 50px;
}

.woocommerce-cart-form .woocommerce-notices-wrapper {
    margin-bottom: 15px;
}

.wrapper-checkout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
    position: relative;
    padding-bottom: 150px;
}

.checkout-section.shop_table.woocommerce-checkout-review-order-table .container {
    padding-left: 0;
    padding-right: 0;
}

.checkout-section p.section-subtitle {
    margin-bottom: 15px;
}

#customer_details .woocommerce-billing-fields h3 {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 400;
}

#customer_details .woocommerce-billing-fields .form-row .woocommerce-input-wrapper {
    width: 100%;
    display: block;
}

#customer_details .woocommerce-billing-fields .form-row {
    margin-bottom: 15px;
    font-size: 14px;
}

#customer_details .woocommerce-billing-fields .form-row label {
    margin-bottom: 5px;
    display: inline-block;
}

#customer_details .woocommerce-billing-fields .form-row .woocommerce-input-wrapper input {
    width: 100%;
    height: 40px;
    padding: 0 15px;
}

#customer_details #ship-to-different-address {
    margin-bottom: 15px;
}

#customer_details #ship-to-different-address .woocommerce-form__label-for-checkbox:before {
    top: 4px;
}

#payment,
#customer_details {
    max-width: 645px;
    width: 100%;
    /* margin: 0 auto; */
}

.woocommerce-terms-and-conditions-checkbox-text,
.woocommerce-privacy-policy-text p,
.payment_box.payment_method_cod p {
    font-size: 18px;
    /* padding-left: 25px; */
}

.woocommerce-privacy-policy-text p {
    margin-bottom: 30px;
}

.woocommerce-checkout-payment .button.alt {
    /* margin-top: 30px;
    border: 0;
    cursor: pointer;
    display: block;
    height: 30px;
    padding: 0 25px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff; */
    /* display: none; */
    margin-top: 50px;
    /* margin-left: auto; */
    margin-right: auto;
    height: 33px;
    max-width: 320px;
    width: 100%;
    display: block;
    color: #fff;
    background: rgba(159, 0, 0, 0.5);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    border: 1px solid #707070;
    font-size: 20px;
    /* position: absolute; */
    /* left: 50%; */
    bottom: 50px;
    /* transform: translateX(-50%); */
}

.product-wrap .button-wrap .button-wrap-container .cart {
    display: flex;
    width: 100%;
}

#wc-stripe-payment-request-wrapper,
#wc-stripe-payment-request-button-separator {
    display: none !important;
}

.woocommerce form .form-row .required {
    text-decoration: none !important;
}

.woocommerce-privacy-policy-text a,
.woocommerce-terms-and-conditions-checkbox-text a {
    text-decoration: underline;
    color: #9F9F9F;
}

.woocommerce-terms-and-conditions-checkbox-text {
    padding-left: 0;
}

.woocommerce-form__label.woocommerce-form__label-for-checkbox .input-checkbox {
    display: inline;
}

.woocommerce-shipping-fields__field-wrapper .form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    font-size: 14px;
}

.woocommerce-shipping-fields__field-wrapper .form-row input {
    height: 40px;
    width: 100%;
    padding: 0 15px;
}


/* #customer_details #ship-to-different-address .woocommerce-form__label-for-checkbox:before{
    display: none;
} */


/* #customer_details #ship-to-different-address .woocommerce-form__label.woocommerce-form__label-for-checkbox{
    padding-left: 0;
} */

#customer_details #ship-to-different-address .woocommerce-form__label.woocommerce-form__label-for-checkbox .input-checkbox {
    display: inline;
}

.codedropz-upload-inner h3 {
    margin: 5px 0;
    font-size: 14px;
    line-height: 14px;
}

.codedropz-upload-container {
    padding: 10px 15px;
}

@media screen and (max-width: 576px) {
    .demandes-page .demandes-section .form-wrap .form-field.form-field-row {
        flex-direction: column;
    }

    .codedropz-upload-wrapper {
        width: 100%
    }

    .wrap-cart .cart-items-wrap .cart-items .items-body .row .col__total__value,
    .wrap-cart .cart-items-wrap .cart-items .items-body .row .col__price__value {
        margin-right: 0
    }
}

.privacy-policy h1,
.privacy-policy h2,
.privacy-policy h3,
.privacy-policy h4,
.privacy-policy h5,
.privacy-policy h6,
.privacy-policy p {
    color: #fff;
    margin-bottom: 10px;
}

.dnd-upload-counter,
.codedropz-upload-inner h3+span,
.codedropz-upload-inner h3 {
    display: none;
}

.codedropz-upload-container {
    display: inline-block;
    background: #838383;
    border: 0;
    padding: 5px 8px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    color: #fff;
    margin-left: 10px;
    width: fit-content;
    text-align: center;
    font-size: 18px;
}

.codedropz-upload-handler {
    border: 0
}

@media screen and (max-width: 576px) {
    .codedropz-upload-container {
        margin-left: 0;
        margin-top: 10px;
    }
}

.tax-product_cat .quantity .input-text.qty {
    display: none;
}

.tax-product_cat .added_to_cart {
    display: none !important;
}

.tax-product_cat .catalog .catalog__content__body .category-products .product .product-info__button .add-to-cart {
    padding-right: 0
}

.privacy-block {
    padding-top: 100px;
    padding-bottom: 50px;
}

#ship-to-different-address {
    font-weight: 400;
}

.wc_payment_method {
    font-size: 18px;
    margin-bottom: 30px;
}

.payment_box p {
    font-size: 18px;
    line-height: 23px;
    margin: 10px 0;
    padding-left: 0px;
}

#customer_details .create-account .form-row {
    display: flex;
    flex-direction: column;
}

#customer_details .create-account .form-row input {
    height: 40px;
    width: 100%;
    padding-left: 15px;
}

#customer_details .woocommerce-form__label-for-checkbox {
    margin-bottom: 15px;
    display: inline-block;
}

#billing_last_name_field,
#billing_first_name_field {
    width: calc(50% - 10px);
    float: left
}

#billing_first_name_field {
    margin-right: 20px;
}

.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout .woocommerce-error {
    background: #2D353B;
    position: absolute;
    bottom: 170px;
    right: 100px;
    height: 150px;
    width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    padding: 0 40px;
    z-index: 1;
}

.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout .woocommerce-error li:not(:last-of-type) {
    display: none;
}

.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout .woocommerce-error .close-error {
    position: absolute;
    top: 15px;
    right: 15px;
}

.payment_method_paypal img,
.payment_method_eh_paypal_express img {
    margin-left: 30px;
    max-height: 27px;
}

#add_payment_method #payment ul.payment_methods li img.stripe-icon,
.woocommerce-checkout #payment ul.payment_methods li img.stripe-icon {
    max-width: 45px;
}

.woocommerce-checkout #payment ul.payment_methods li .stripe-visa-icon.stripe-icon {
    margin-left: 25px;
}

#shipping_method li {
    margin-bottom: 10px;
}

.ups-img {
    display: none;
    max-width: 36px;
    margin-bottom: 20px;
}

.woocommerce-order .woocommerce-column__title,
.woocommerce-order .woocommerce-order-details .woocommerce-order-details__title {
    font-weight: 400;
}

.woocommerce-order .woocommerce-column__title {
    margin: 10px 0;
}

.woocommerce-order {
    padding-left: 10px;
}

@media screen and (max-width: 768px) {
    .wrapper-checkout {
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
}

@media screen and (max-width: 576px) {
    .woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout .woocommerce-error {
        right: 7px;
        height: 150px;
        width: 280px;
    }

    .wrapper-checkout {
        padding-bottom: 120px;
    }

    .form-row.place-order .total-sum .result-total__val,
    .checkout-section .wrap-cart .cart-result .result-body .total-sum .result-total__val {
        font-size: 20px;
    }
}

.catalog__content__body .woocommerce-notices-wrapper {
    max-width: unset;
    margin-bottom: 15px;
}

.cart-section .cart-empty.woocommerce-info,
.cart-section .return-to-shop {
    text-align: center;
}

.woocommerce-SavedPaymentMethods-token {
    margin-bottom: 15px;
}

.woocommerce-SavedPaymentMethods-new {
    margin-bottom: 15px;
}

@media screen and (max-width: 480px) {

    #billing_last_name_field,
    #billing_first_name_field {
        width: 100%;
    }
}

@media screen and (max-width: 1440px) {
    .woocommerce-notices-wrapper {
        max-width: 100%;
    }
}

/* popular slider */

.popular-product {
    padding-top: 70px;
    max-width: 990px;
    margin-left: auto;
}

.popular-product .popular-product__titles {
    color: #fff;
    margin-bottom: 47px;
    font-size: 28px;
}

.popular-product .slider-wrap {
    position: relative;
}

.popular-product .slider-wrap .arrows {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: calc(100% + 80px);
    left: -40px;
    display: flex;
    justify-content: space-between;
}

.popular-next,
.popular-prev {
    background: none;
    border: 0;
}

.popular-prev svg {
    transform: rotate(180deg);
}

.popular-product .slider-popular .swiper-slide .slide__img {
    margin-bottom: 15px;
}

.popular-product .slider-popular .swiper-slide img {
    width: 100%;
}

.popular-product .slider-popular .swiper-slide .slide__text {
    text-align: center;
}

.popular-product .slider-popular .swiper-slide .slide__text .slide__text__name {
    margin-bottom: 10px;
}

.popular-product .slider-popular .swiper-slide .slide__text .slide__text__price {
    font-size: 24px;
    font-weight: bold;
}

@media screen and (max-width: 991px) {
    .popular-product .slider-wrap .arrows {
        width: calc(100% + 40px);
        left: -20px;
        top: 40%;
    }

    .popular-product .slider-wrap {
        position: relative;
        padding: 0 30px;
    }
}

@media screen and (max-width: 576px) {
    .popular-product .slider-wrap .arrows {
        width: calc(100%);
        left: 0px;
    }

    .popular-product .popular-product__titles {
        margin-bottom: 36px;
        font-size: 22px;
    }
}





.form-row.place-order .total-sum {
    text-align: center;
    padding-top: 30px;
}

.form-row.place-order .total-sum .result-total__val {
    font-size: 32px;
}

@media screen and (max-width: 576px) {
    .form-row.place-order .total-sum .result-total__val {
        font-size: 20px;
    }
}



#payment .total-sum ,
#customer_details .total-sum {
    max-width: 220px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
    border: 1px solid #fff;
    padding-top: 15px;
    padding-bottom: 15px;
}

.total-sum .woocommerce-Price-amount.amount {
    font-size: 32px;
}

.includes_tax {
    display: block;
}

.includes_tax,
.includes_tax .woocommerce-Price-amount.amount {
    font-size: 14px !important;
    font-weight: 400;
}

.total-sum .result-total__val {
    text-align: center;
}

.woocommerce-checkout .woocommerce-NoticeGroup-updateOrderReview {
    margin-top: 30px;
    margin-bottom: 30px;
}

.woocommerce-checkout .woocommerce-NoticeGroup-updateOrderReview .woocommerce-error {
    display: flex;
}

.woocommerce-checkout .woocommerce-NoticeGroup-updateOrderReview .woocommerce-error .close-error {
    max-width: 10px;
    margin-right: 10px;
}

.total-sum .woocommerce-Price-amount {
    margin-bottom: 10px;
    display: inline-block;
}

@media screen and (max-width: 768px) {
    #customer_details .total-sum {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 576px) {
    #customer_details .total-sum {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .result-body .total-sum .woocommerce-Price-amount {
        font-size: 20px;
    }
}




@media screen and (max-width: 1760px) {
    header .head-wrap .search-wrap {
        right: -120px;
    }
}

@media screen and (max-width: 1515px) {
    header .head-wrap .search-wrap {
        right: 0;
        bottom: -50px;
    }

}

@media screen and (max-width: 1025px) {

    header .head-wrap .menu-mobile-button.active+.menu-search {
        display: none;
    }

    header .head-wrap .menu-search {
        display: block;
        position: absolute;
        padding: 0;
        top: 40px;
    }

    header .head-wrap .menu-search.search-active .search-lupa,
    header .head-wrap .menu-search .search-close {
        display: none;
    }

    header .head-wrap .menu-search.search-active .search-close {
        display: block;
        max-width: 18px;
    }

    header .head-wrap .search-wrap {
        transform: translateX(100%);
        opacity: 0;
        transition: 0.2s;
        padding: 40px 35px;
        background: #33383D;
        bottom: unset;
        top: 26px;
        padding: 60px 35px 50px;
        border: 1px solid #fff;
        z-index: 11;
    }

    header .head-wrap .search-wrap.search-active {
        transform: translateX(12px);
        opacity: 1;
        transition: 0.2s;
        max-width: 320px;
        width: calc(100% + 24px);
    }

    header .head-wrap .search-wrap form {
        display: flex;
        flex-direction: column-reverse;
    }


    header .head-wrap .search-wrap form input[type="text"] {
        height: 34px;
    }

    header .head-wrap .search-wrap button[type="submit"] {
        font-size: 18px;
        font-weight: bold;
        margin-top: 35px;
    }
}







.catalog-model__search,
.catalog-model__search-value {
    font-size: 36px;
}

.catalog-model__search-value {
    margin-left: 10px;
}

.woocommerce-info.not-found {
    color: #FF0000;
}

@media screen and (max-width: 991px) {

    .catalog-model-wrap.search-block,
    .catalog-model__mob.search-block {
        display: block;
    }

    .catalog-model-wrap.search-block .catalog-model,
    .catalog-model__mob.search-block .catalog-model {
        display: block
    }


}

@media screen and (max-width: 576px) {
    .catalog-model__search-value {
        margin-left: 0;
    }

    .catalog-model__search,
    .catalog-model__search-value {
        font-size: 24px;
    }
}

.wpcf7 .screen-reader-response>ul li a {
    color: #e8600a;
}

.wpcf7-response-output {
    display: none;
}

.wpcf7 .screen-reader-response>p {
    color: #e8600a;
}


.popup-holiday {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: fit-content;
    width: fit-content;
    max-width: 700px;
    background: #33383D;
    text-align: center;
    padding: 70px 75px 15px;
    border: 1px solid #fff;
    opacity: 0;
    z-index: -5;
    visibility: hidden;
    transition: 0.2s;
}

.popup-holiday.show {
    opacity: 1;
    z-index: 11;
    visibility: visible;
    transition: 0.2s;
}

.popup-holiday .holiday-img {
    max-width: 138px;
}

.close-popup-holiday {
    position: absolute;
    right: 25px;
    top: 25px;
}

.popup-holiday p {
    color: #fff;
    line-height: 46px;
    font-size: 26px;
}

/*.holiday-text-orange {
    color: #CD601C;
    line-height: 46px;
    font-size: 26px;
    margin-bottom: 20px;
    text-transform: uppercase;
}*/

@media screen and (max-width: 768px) {
    .popup-holiday {
        padding-left: 25px;
        padding-right: 25px;
        padding-top: 65px;
    }
}

@media screen and (max-width: 576px) {
    .popup-holiday {
        width: calc(100% - 40px);
    }


    .popup-holiday p {
        font-size: 23px;
        line-height: 26px;
        margin-bottom: 30px;
    }

    .close-popup-holiday {
        max-width: 20px;
        right: 16px;
        top: 16px;
    }


    .catalog-wrap>.layer{
        display: none;
    }
    .catalog-wrap>.layer.active{
        display: block;
    }
}

/*#shipping_method_0_flexible_shipping_ups107,
#shipping_method_0_flexible_shipping_ups107+label,
#shipping_method_0_flexible_shipping_ups165,
#shipping_method_0_flexible_shipping_ups165+label{
    display: none;
}*/

.blockOverlay{
    display: none!important;
}

#wc-stripe-cc-form+fieldset{
    display: none;
}

.main-section .container {
	z-index: 5;
}

.hidden-fields-container {
  display: none;
}
