@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"] {
    border: 1px solid #121313;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    border: 1px solid #000;
    outline: none;
}

.fw500 {
    font-weight: 500;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
    margin-right: 1px;

    width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #121313;
    border-radius: 13px;

    width: 3px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #121313;
}

:root {
}

* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: auto;
}

body {
    font-family: "Inter", sans-serif !important;
}

.container-local {
    width: 100%;
    max-width: 1440px;
}

a {
    text-decoration: none !important;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

.text--main-color {
    color: var(--main-color);
}

.text--bold {
    font-weight: 700;
}

.text--uppercase {
    text-transform: uppercase;
}

/* USE TEXT HIGHLIGHT WITH INLINE ELEMENTS */
.text--highlight {
    text-decoration: none;
    background: linear-gradient(
            0deg,
            rgb(205, 90, 90),
            rgb(205, 155, 90),
            rgb(205, 197, 90),
            rgb(94, 205, 90),
            rgb(90, 182, 205),
            rgb(90, 92, 205),
            rgb(149, 90, 205)
    ) no-repeat right bottom / 0 var(--bg-h);
    transition: background-size 350ms;
    --bg-h: 100%;
}

.text--highlight:where(:hover, :focus-visible) {
    background-size: 100% var(--bg-h);
    background-position-x: left;
}

.card-hover {
    bottom: auto;
    top: 0;
}

/* LOWER MENU */

.lower-menu-holder {
    width: 100%;

    position: fixed;
    bottom: 40px;

    z-index: 9;

    display: none;
    align-items: center;
    justify-content: center;
}

.lower-menu {
    background: #ffffff;
    display: flex;

    width: fit-content;

    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}

.lower-menu-button {
    padding: 12px 14px 13px 14px;

    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    text-align: center;

    color: #000000;

    border-top: 2px solid #ffffff;
}

.lower-menu-button--active {
    border-top: 2px solid #000000;
}

/* MENU */

.menu {
    position: absolute;

    top: 75px;
    left: 0;

    width: 100%;

    background: #ffffff;

    padding-left: 80px;
    padding-right: 80px;
    padding-top: 35px;
    padding-bottom: 60px;

    z-index: 9;

    display: none;
}

.menu__upper {
    width: 100%;

    display: flex;
    justify-content: space-between;
}

.menu__upper-group {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    max-width: 100px;

    cursor: pointer;
}

.menu__upper-circle {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 85px;

    height: 85px;
    aspect-ratio: 1 / 1;

    border-radius: 50%;

    background: #f2f3f4;

    position: relative;

    transition: 0.3s linear;
}

.menu__upper-circle::before {
    opacity: 0;

    content: "";
    position: absolute;

    width: calc(100% + 10px);
    height: calc(100% + 10px);

    border: 1.4px solid #ecedee;

    border-radius: 50%;

    z-index: -1;

    transition: 0.3s linear;
}

.menu__upper-circle:hover {
    box-shadow: 0px 0px 14px 0px #adadad66;
}

.menu__upper-circle:hover::before {
    opacity: 1;
}

.menu__upper-group:nth-child(2) .menu__upper-circle {
    background: #000000;
}

.menu__upper-group:nth-child(7) .menu__upper-circle {
    background: #f6525c;
}

.menu__upper-text {
    text-align: center;

    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;

    color: #121313;

    margin-top: 14px;

    display: flex;
}

.menu__upper-text-arrow {
    margin-left: 8px;
}

.menu__lower {
    width: 100%;

    display: flex;
    justify-content: space-between;

    display: none;

    padding-top: 56px;

    transition: 0.3s linear;
}

.menu__lower-cols {
    display: grid;
    justify-content: space-between;
    grid-auto-flow: column;
    grid-template-rows: repeat(6, auto);

    width: 100%;

    margin-top: -12px;

    cursor: pointer;
}

.menu__lower-row {
    display: flex;
    align-items: center;

    padding: 4px 14px;
    border-radius: 4px;

    transition: 0.3s linear;

    width: fit-content;
}

.menu__lower-row {
    margin-top: 4px;
}

.menu__lower-row:hover {
    background: #f2f3f4;
}

.menu__lower-row-icon-holder {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;
}

.menu__lower-row-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    text-align: left;
    color: #121313;

    margin-left: 12px;
}

.menu__lower-row.text-sale .menu__lower-row-text {
    color: #f6525c;
}

.menu__lower--plus-size .menu__lower-cols {
    display: grid;
    justify-content: space-between;
    grid-auto-flow: column;
    grid-template-rows: repeat(3, auto);

    max-width: 900px;
}

.menu__lower--info {
    padding-left: 30px;
    padding-right: 30px;
}

.menu__lower-info-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu__lower-info-circle {
    display: flex;
    align-items: center;
    justify-content: center;

    background: #f2f3f4;

    border-radius: 55px;

    width: 32px;
    height: 32px;
}

.menu__lower-info-circle img {
    max-width: 18px;
}

.menu__lower-info-text {
    max-width: 78px;
    margin-left: 14px;

    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
    text-align: left;

    color: #121313;
}

.menu__lower--accessories .menu__lower-cols {
    display: grid;
    justify-content: space-between;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
}

.menu__upper-circle--black {
    background: #000000;
}

.menu__upper-circle--red {
    background: #f6525c;
}

.menu__mobile {
    padding-top: 40px;
    padding-bottom: 30px;

    display: none;
}

.menu__mobile-circle {
    width: 55px;
    height: 55px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f2f3f4;

    border-radius: 50%;
}

.menu__mobile-row {
    width: 100%;
    justify-content: space-around;
    display: flex;
}

.menu__mobile-row:not(.menu__mobile-row:first-child) {
    margin-top: 40px;
}

.menu__mobile-circle .header__right-sector-likes {
    top: 8px;
    left: 29px;
}

/* HEADER */

.header__placement {
    height: 75px;
}

.header--none {
    width: 100%;
    height: 85px;
}

.header {
    display: flex;
    justify-content: center;
    background: #f2f3f4;
    z-index: 99;
    position: fixed;
    width: 100%;
    top: 0;
    height: 75px;
}

@media (max-width: 991px) {
    .header {
        height: 64px;
    }
}

.header__container {
    display: grid;
    grid-template-columns: 1fr 132px 1fr;

    width: 100%;

    padding-left: 40px;
    padding-right: 40px;
}

.header__left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header__burger {
    cursor: pointer;
    width: 16px;
}

.header__burger--closer {
    display: none;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__nav-link {
    position: relative;
    text-decoration: none;
}

.header__nav-link-area {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    text-align: center;
    color: #121313;
}

.header__right {
    display: flex;
    align-items: center;
    justify-content: end;
}

.header__right-sector-text {
    margin-right: 8px;

    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    text-align: left;
}

.header__right-sector {
    margin-left: 20px;

    display: flex;
    align-items: center;

    position: relative;

    cursor: pointer;
}

.header__right-sector-likes {
    position: absolute;

    top: -7px;
    left: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 17px;
    height: 17px;

    background: #f53f4a;
    color: #f2f3f4;

    font-size: 10px;
    font-weight: 500;
    line-height: 12.1px;
    text-align: center;

    border-radius: 50%;
}

@media screen and (max-width: 991px) {
    .header__right-sector-likes {
        text-indent: -9999px;
        overflow: hidden;
        width: 8px;
        height: 8px;
        top: 2px;
        left: 16px;
    }
    .header__right-sector-likes.js-wishlist-total {
        top: 0;
        left: 18px;
    }
}

.header__right-sector-popup {
    display: flex;
    align-items: start;
    flex-direction: column;

    position: absolute;

    top: 0px;

    padding: 24px;

    background: #f2f3f4;

    display: none;
}

.header__right-sector-popup-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__right-sector-popup-row:not(
    .header__right-sector-popup-row:first-child
  ) {
    margin-top: 10px;
}

.header__right-sector-popup-row svg {
    margin-left: 8px;
}

.header__right-sector-popup-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    text-align: left;

    color: #828383;
}

.header__right-sector-popup-text--selected {
    color: #121313;
    text-decoration: underline;
}

.header__search {
}

.header__search-form {
    position: relative;

    display: none;
    align-items: center;
    justify-content: center;
}

.header__search-input {
    border: none !important;

    padding-bottom: 8px;

    border-bottom: 1px solid #d9d9d9 !important;
    width: 319px;

    font-family: "Inter";
    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    text-align: left;

    background: #f2f3f4;
}

.header__search-submit {
    width: 19px;
    height: 19px;

    opacity: 0;

    cursor: pointer;
}

.header__search-submit-holder {
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;

    right: 0;
}

.header__search-submit-holder svg {
    position: absolute;

    pointer-events: none;
}

.header__search-dropdown {
    position: fixed;

    right: 0;

    top: 85px;

    background: #f2f3f4;

    width: 533px;

    max-height: 340px;
    overflow-y: scroll;

    display: none;
}

.header__search-dropdown-block {
    display: flex;

    width: 100%;

    border-bottom: 1px solid #dcdcdc;

    padding-bottom: 11px;

    padding-left: 14px;
    padding-right: 34px;

    padding-top: 20px;
}

.header__search-dropdown-block-right {
    margin-left: 14px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 100%;
}

.header__search-dropdown-block-right-row {
    display: flex;
    justify-content: space-between;

    width: 100%;
}

.header__search-dropdown-block-right-article {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    text-align: left;

    color: #bebebe;
}

.header__search-dropdown-block-right-available {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;

    color: #34b853;
}

.header__search-dropdown-block-right-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    text-align: left;

    color: #121313;

    max-width: 330px;
}

.header__search-dropdown-block-right-price {
    font-size: 20px;
    font-weight: 500;
    line-height: 24.2px;
    text-align: left;

    color: #121313;
}

.header__search-dropdown-block-right-look {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    text-align: left;

    color: #121313;

    border-bottom: 1px solid #121313;
}

.header__search-dropdown-block:hover {
    background: #eaeaea;
}

.header .header__right-sector button {
    white-space: nowrap;

    padding: 0;
}

.dropdown-language__block,
.dropdown-currency__block {
    padding: 24px !important;
    width: fit-content !important;

    background: #f2f3f4;
}

.header .header__right-sector .btn-link {
    color: #121313;
    transition: 0.3s linear;
    margin-top: 4px;
}

.header .header__right-sector .btn-link:hover {
    color: #eaeaea;
    background: #121313;
}

.current-currency,
.current-language {
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.current-currency i,
.current-language i {
    margin-left: 4px;
}

.current-currency span,
.current-language span {
    margin-left: 4px;
}

.language-item__current,
.currency-item__current {
    text-decoration: underline;
}

/* MAIN */

.main {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 733px;

    margin-top: 0px;

    position: relative;

    overflow: hidden;
}

.main__holder {
    position: relative;
}

.main__video-holder {
    position: absolute;
    width: 100%;

    display: flex;
    justify-content: center;
}

.main__video {
    min-height: 733px;
}

.main__video-holder {
    display: flex;
    justify-content: center;
}

.main__video-holder a {
    width: 100%;

    display: inline-flex;
    justify-content: center;
}

.main__video-holder img {
    width: fit-content;
    object-fit: cover;
    object-position: 50% 50%;
}

.main__video-buttons {
    position: absolute;
    bottom: 40px;
    right: 40px;

    display: flex;
}

.main__video-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    background: #f2f3f4;
    border: 1px solid #121313;

    border-radius: 50%;

    transition: 0.3s linear;

    cursor: pointer;
}

.main__video-button:hover {
    background: #121313;
}

.main__video-button img {
    transition: 0.3s linear;
    max-height: 14px !important;
}

.main__video-button:hover img {
    filter: invert(100%);
    -webkit-filter: invert(100%);
}

.main__video-button--play {
    margin-right: 10px;
}

.main__video-button--mute {
}

.main__container {
    position: relative;
}

.main__block {
    display: none;
    align-items: center;

    padding: 8px;

    border-radius: 6px;

    max-width: fit-content;

    position: fixed !important;

    z-index: 5;

    background: #ffffff;

    position: absolute;

    max-width: 294px;

    right: 40px;

    bottom: 100px;

    z-index: 4;

    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.main__block-closer {
    position: absolute;

    top: -9px;
    right: -9px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 5.85px;

    width: 19px;
    height: 19px;

    background: #f2f3f4;

    cursor: pointer;

    border-radius: 50%;

    transition: 0.3s linear;
}

.main__block-closer svg {
    transition: 0.3s linear;
}

.main__block-closer:hover {
    background: #bebebe;
}

.main__block-closer:hover svg {
    filter: invert(100%);
    -webkit-filter: invert(100%);
}

.main__block-right {
    margin-left: 8px;
}

.main__block-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;

    color: #121313;

    max-width: 250px;
}

.main__block-img {
    height: 100%;

    width: 100%;
    max-width: 100px;
}

.main__block-colors {
    display: flex;
    align-items: center;

    margin-top: 9px;
}

.main__block-color {
    width: 12px;
    height: 12px;

    cursor: pointer;

    border-radius: 50%;

    margin-right: 7px;
}

.main__block-color:nth-child(1) {
    background: #121313;
}

.main__block-color:nth-child(2) {
    background: #ab6038;
}

.main__block-color:nth-child(3) {
    background: #f2f3f4;
}

.main__block-lower {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.main__block-lower-prices {
    margin-top: 10px;
}

.main__block-lower-price {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    text-align: left;

    color: #121313;
}

.main__block-lower-price--old {
    margin-left: 8px;

    color: #a5b4cd;
    font-size: 14px;

    text-decoration: line-through;
}

.main__block-lower-button {
    display: flex;
    align-items: center;
    justify-content: center;

    background: #a5b4cd;
    border-radius: 3px;

    width: 30px;
    height: 30px;

    cursor: pointer;

    margin-left: 35px;
}

/* black-roll */

.black-roll {
    padding-bottom: 22px;
    padding-top: 22px;

    background: #121313;

    display: flex;
    justify-content: center;

    overflow-x: hidden;
}

.black-roll__text {
    font-size: 20px;
    font-weight: 400;
    line-height: 24.2px;
    text-align: left;

    color: #f2f3f4;

    text-transform: uppercase;

    margin-left: 22px;
    margin-right: 22px;

    white-space: nowrap;
}

/* NEW */

.new {
    display: flex;
    justify-content: center;

    margin-top: 120px;
}

.new__container {
    width: 100%;
}

.new__title {
    font-size: 65px;
    font-weight: 500;
    line-height: 78.66px;
    text-align: left;

    color: #121313;

    text-transform: uppercase;

    padding-left: 40px;
}

.new__items {
    margin-top: 60px;

    display: flex;
    width: 100%;
}

.new__item-outer {
    width: 100%;
}

.new__item {
    width: 100%;
}

.new__item-upper {
    position: relative;
    width: 100%;

    overflow: hidden;
}

.new__item-upper-upper {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-right: 22px;
    padding-left: 40px;

    margin-top: 22px;

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 4;
}

.new__item-upper-upper-tag {
    padding: 2px 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 700;
    line-height: 14.52px;
    text-align: center;

    color: #f2f3f4;

    background: #121313;

    text-transform: uppercase;

    border-radius: 3px;
}

.new__item-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: center;

    color: #121313;

    padding-left: 8px;
    padding-right: 8px;
}

.new__item-title {
    margin-top: 14px;
}

.new__item-price {
    font-weight: 600;
}

.new__item-upper-upper-like {
    cursor: pointer;

    transition: 0.3s linear;
}

.new__item-upper-upper-like:hover {
    filter: brightness(0%);
    -webkit-filter: brightness(0%);
}

.new__item-hover {
    width: 100%;
    height: 100%;

    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 42px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    text-transform: uppercase;

    padding-left: 12px;
    padding-right: 12px;

    background-color: rgba(0, 0, 0, 0.6);

    transition: 0.3s linear;

    z-index: 3;
    opacity: 0;
}

.new__item-upper:hover .new__item-hover {
    opacity: 1;
}

.new__item-img {
    width: 100%;

    min-width: 196px;

    transition: 0.3s ease;

    position: relative;
    z-index: 1;
}

.new__item-upper:hover .new__item-img {
    transform: scale(1.2);
}

/* SEASON */

.season {
    display: flex;
    justify-content: center;

    margin-top: 120px;
}

.season__container {
    width: 100%;
}

.season__images a {
    overflow: hidden;
}

.season__images a img {
    min-height: 100% !important;
}

.season__images {
    display: grid;

    column-gap: 3px;

    grid-template-columns: 479fr 343fr 612fr;

    margin-top: 60px;
}

.season__col {
    display: grid;
    flex-direction: column;

    row-gap: 3px;
}

.season__title {
    font-size: 65px;
    font-weight: 500;
    line-height: 78.66px;
    text-align: left;

    text-transform: uppercase;

    padding-left: 40px;
}

.season__showmore-holder {
    display: flex;
    justify-content: center;
    width: 100%;

    margin-top: 60px;
}

.season__showmore-button {
    display: flex;
    align-items: center;
    justify-content: center;

    background: #121313;
    color: #f2f3f4;

    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    text-align: left;

    padding: 18px 32px;

    border-radius: 3px;

    cursor: pointer;

    transition: 0.3s linear;

    border: 1px solid #121313;
}

.season__showmore-button:hover {
    background: #f2f3f4;
    color: #121313;
}

.season__row {
    margin-top: 3px;

    display: grid;
    grid-template-columns: 343fr 612fr 479fr;
    column-gap: 3px;
}

.season__img-outer {
}

.season__img {
    width: 100%;
}

/* .season__img-outer--3{
    max-height: 555px;
}

.season__img-outer--4{
    max-height: 437px;
} */

/* .season__img-outer--6{
    height: calc(100% + 1px);
}

.season__img-outer--7{
    margin-top: 1px;
    height: calc(100% - 42px);
} */

/* CATEGORIES */

.categories {
    display: flex;
    justify-content: center;

    margin-top: 120px;
}

.categories__container {
    width: 100%;
}

.categories__row {
    display: grid;

    column-gap: 24px;
}

.categories__row-to2 {
    grid-template-columns: 1fr 1fr;
}

.categories__row-to2-outer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories__row a {
    width: 100%;
}

.categories__row .categories__row-outer {
    width: 100%;
}

.categories__row-to2-outer:hover {
}

.categories__row-to2-text {
    font-size: 65px;
    font-weight: 600;
    line-height: 78.66px;
    text-align: center;

    color: #fff;

    position: absolute;

    text-transform: uppercase;
}

.categories__row-to3 {
    grid-template-columns: 1fr 1fr 1fr;

    column-gap: 24px;

    margin-top: 24px;
}

.categories__row-to2-outer,
.categories__row-to3-outer {
    position: relative;
}

.categories__row-to3-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 24.2px;
    text-align: left;

    text-transform: uppercase;

    color: #fff;

    text-decoration: underline;

    position: absolute;
    bottom: 40px;
    left: 40px;
}

.categories__img {
    width: 100%;
}

/* FUTURE */

.future {
    display: flex;
    justify-content: center;

    margin-top: 120px;
    height: 720px;

    position: relative;

    overflow: hidden;
}

.future__video-holder {
    position: absolute;
    width: 100%;

    display: flex;
    justify-content: center;
}

.future__video {
    position: absolute;

    min-height: 733px;
    width: 100%;

    object-fit: cover;
}

.future__video-buttons {
    position: absolute;
    bottom: 40px;
    right: 40px;

    display: flex;

    z-index: 5;
}

.future__video-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    background: #f2f3f4;
    border: 1px solid #121313;

    border-radius: 50%;

    transition: 0.3s linear;

    cursor: pointer;
}

.future__video-button:hover {
    background: #121313;
}

.future__video-button img {
    transition: 0.3s linear;
}

.future__video-button:hover img {
    filter: invert(100%);
    -webkit-filter: invert(100%);
}

.future__video-button--play {
    margin-right: 10px;
}

.future__container {
    position: relative;

    width: 100%;

    display: flex;
    align-items: end;

    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

    padding-left: 80px;
    padding-right: 40px;
    padding-bottom: 80px;

    z-index: 4;
}

.future__title {
    font-size: 65px;
    font-weight: 600;
    line-height: 78.66px;
    color: #f2f3f4;
}

.future__text {
    max-width: 529px;

    font-size: 18px;
    font-weight: 500;
    line-height: 21.78px;

    color: #f2f3f4;

    margin-top: 40px;
}

.future__button {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px 26px;

    margin-top: 40px;

    background: #f2f3f4;

    border-radius: 3px;

    max-width: fit-content;
}

.future__button-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;

    color: #121313;
}

.future__button-heart {
    margin-left: 8px;
}

/* INSTAGRAM */

.instagram {
    display: flex;
    justify-content: center;

    margin-top: 120px;
}

.instagram__container {
    width: 100%;
}

.instagram__table {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 24px;
    row-gap: 24px;
}

.instagram__block {
    max-width: 437px;
    max-height: 436px;

    padding-left: 40px;
    width: 100%;
    height: 100%;

    aspect-ratio: 437 / 436;
}

.instagram__title {
    font-size: 65px;
    font-weight: 500;
    line-height: 78.66px;
    text-align: left;

    text-transform: uppercase;

    margin-top: 105px;
}

.instagram__text {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;

    margin-top: 61px;

    color: #121313;
}

.instagram__button {
    margin-top: 60px;

    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    text-align: left;

    color: #f2f3f4;

    padding: 18px 32px;

    width: fit-content;

    background: #121313;

    cursor: pointer;
}

.instagram__img {
    width: 100%;

    height: auto;
    object-fit: scale-down;
    aspect-ratio: 1 / 1 !important;

}

.instagram__img:hover {
    cursor: pointer;
}

/* BLOG */

.blog {
    display: flex;
    justify-content: center;

    margin-top: 120px;
}

.blog__container {
    width: 100%;
}

.blog__sides {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;
}

.blog__upper-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 19.36px;

    color: #bebebe;

    text-transform: uppercase;
}

.blog__sides:nth-child(2n - 1) {
    display: flex;
    align-items: center;
}

.blog__sides:nth-child(2n - 1) img {
    width: 50%;
}

.blog__sides:nth-child(2n - 1) .blog__content {
    width: 50%;

    padding-top: 0;
}

.blog__content-title {
    font-size: 35px !important;
    font-weight: 700 !important;
    line-height: 42.36px !important;

    color: #121313 !important;

    margin-top: 60px !important;

    max-width: 596px !important;

    text-transform: uppercase;
}

.blog__text {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;

    margin-top: 43px;

    max-width: 456px;
}

.blog__row {
    margin-top: 60px;

    display: flex;
    align-items: center;
}

.blog__button {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 18px 26px;

    background: #121313;

    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;

    white-space: nowrap;
    color: #f2f3f4;

    border-radius: 3px;
}

.blog__link {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    text-align: left;

    margin-left: 43px;

    color: #121313;

    text-decoration: underline !important;
}

.blog__button svg {
    margin-left: 8px;
}

.blog__img {
    width: 100%;
}

.blog__content {
    padding-left: 40px;
}

.blog__sides .blog__content {
    padding-top: 40px;
}

/* FOOTER */

.footer__col-text *:before {
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    text-align: left;
    color: #ffffff;

    font-family: "Inter", sans-serif;
}

.fab {
    font-family: Font Awesome\5 Brands;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #121313;
    width: 100%;

    margin-top: 120px;

    padding-left: 40px;
    padding-right: 40px;
}

.footer__container {
    padding-top: 36px;
    padding-bottom: 36px;

    width: 100%;
}

.footer__cols {
    display: flex;
    justify-content: space-between;
}

.footer__col-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    text-align: left;

    color: #ffffff;

    margin-bottom: 16px;
}

.footer__col-link {
    color: #ffffff;
}

.footer__col-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    text-align: left;
    color: #ffffff;
}

.footer__col-text svg {
    margin-right: 11px;
}

.footer__form {
    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
}

.footer__submit {
    position: absolute;

    right: 2px;

    background: none;

    background-image: url("../img/footer/submit.svg");
    border: none;
    background-repeat: no-repeat;
    background-size: 100% 100%;

    width: 11px;

    cursor: pointer;
}

.footer__input {
    width: 100%;

    font-family: "Inter";

    padding-bottom: 4px;

    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;

    border: none !important;
    border-bottom: 1px solid #ffffff !important;

    color: #ffffff;

    background: none;
}

.footer__lower {
    margin-top: 38px;

    display: flex;
    justify-content: space-between;
}

.footer__col:nth-child(1) {
    max-width: 170px;
    width: 100%;
}

.footer__col:nth-child(2) {
    max-width: 160px;
    width: 100%;
}

.footer__col:nth-child(3) {
    max-width: 153px;
    width: 100%;
}

.footer__col:nth-child(4) {
    max-width: 105px;
    width: 100%;
}

.footer__col:nth-child(5) {
    width: 100%;
    max-width: 359px;
}

.footer__button-up {
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 3px;

    border: 1px solid #fff;

    padding: 8px 16px;

    position: relative;

    top: -6px;

    transition: 0.3s linear;
}

.footer__button-up svg {
    transition: 0.3s linear;
}

.footer__button-up:hover {
    background-color: #fff;
}

.footer__button-up:hover svg {
    filter: invert(100%);
    -webkit-filter: invert(100%);
}

.footer__lower .footer__col:nth-child(5) {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.cards4__title {
    font-size: 65px;
    font-weight: 500;
    line-height: 78.66px;
}

.menu__submenu-popup {
    position: fixed;
    top: 64px;
    left: 0;

    overflow-y: scroll;

    height: 100vh;
    width: 100%;
    background: #ffffff;

    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;

    z-index: 999;

    display: none;
}

.menu__submenu-popup-upper {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 14px;

    border-bottom: 1px solid #f2f3f4;
}

.menu__submenu-popup-upper-left {
    display: flex;
    align-items: center;

    cursor: pointer;
}

.menu__submenu-popup-upper-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    text-align: left;

    color: #000000;

    margin-left: 14px;
}

.menu__submenu-popup-upper-circle {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border-radius: 50%;
    background: #f2f3f4;
}

.menu__submenu-popup-upper-circle-icon {
    max-width: 16px;
}

.menu__submenu-popup-circles {
    margin-top: 10px;

    padding-bottom: 45px;
}

.menu__submenu-popup-circles-row {
    /*display: flex;*/
    justify-content: space-around;

    margin-top: 10px;
}

.menu__submenu-popup-circle-group {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 78px;
}

.menu__submenu-popup-circle-group.text-sale .menu__submenu-popup-circle-text {
    color: #f6525c;
}

.menu__submenu-popup-circle {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    background: #f2f3f4;
    border-radius: 50%;

    transition: 0.3s linear;
}

.menu__submenu-popup-circle-text {
    margin-top: 10px;

    font-size: 10px;
    font-weight: 400;
    line-height: 12.1px;
    text-align: center;

    color: #121313;
}

.menu__submenu-popup-circle-group:hover .menu__submenu-popup-circle {
    background: #bebebe;
}

.menu__submenu-popup-banner-outer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu__submenu-popup-banner {
    width: 100%;
}

.menu__submenu-popup-banner-text {
    position: absolute;

    z-index: 3;

    font-size: 24px;
    font-weight: 600;
    line-height: 29.05px;
    text-align: center;

    color: #ffffff;

    text-transform: uppercase;
}

.common-home .cards4,
.common-home .season,
.common-home .categories,
.common-home .future,
.common-home .instagram,
.common-home .blog {
    margin-top: 90px;
}

/* ADAPTIVE */

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

@media screen and (max-width: 1440px) {
    .menu {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media screen and (max-width: 1366px) {
    .blog__content {
        padding-left: 20px;

        padding-right: 20px;
    }

    .blog__content-title {
        margin-top: 40px !important;

        font-size: 20px !important;
        font-weight: 700 !important;
        line-height: 24.2px !important;
    }

    .blog__text {
        margin-top: 24px;
    }

    .blog__row {
        margin-top: 40px;
    }

    /*.header__nav-link-area {*/
    /*    margin-left: 12px;*/
    /*}*/

    /*.header__nav-link-area {*/
    /*    font-size: 12px;*/
    /*}*/
}

@media screen and (max-width: 1300px) {
    .instagram__title {
        font-size: 36px;
        font-weight: 500;
        line-height: 42px;

        margin-top: 36px;
    }

    .instagram__table {
        column-gap: 5px;
        row-gap: 5px;
    }
}

@media screen and (max-width: 1280px) {
    .header__right-sector {
        margin-left: 20px;
    }
}

.footer__logo {
    display: none;

    margin-top: 40px;
}

@media screen and (max-width: 1200px) {
    .menu__mobile {
        display: block;
    }

    /* .new__items{
          display: grid;
          grid-template-columns: 1fr 1fr;
      }

      .new__item-outer{
          width: 100%;
          display: flex;
          justify-content: center;
      } */
    .footer__container {
        position: relative;
    }

    .footer__col:nth-child(1) {
        grid-area: footer-col-1;
    }

    .footer__col:nth-child(2) {
        grid-area: footer-col-2;
    }

    .footer__col:nth-child(3) {
        grid-area: footer-col-3;
    }

    .footer__col:nth-child(4) {
        grid-area: footer-col-4;
    }

    .footer__col:nth-child(5) {
        grid-area: footer-col-5;
    }

    .footer__cols {
        display: grid;
        grid-template-areas:
      "footer-col-5 footer-col-5"
      "footer-col-2 footer-col-3"
      "footer-col-1 footer-col-4";

        row-gap: 40px;
    }

    .footer__col {
        max-width: 50%;
        width: 100%;
    }

    .footer__col:nth-child(3) {
        margin-right: 200px;
    }

    .footer__logo {
        display: block;
    }

    .footer__button-up {
        position: absolute;
        bottom: 27px;
        right: 0;
        left: auto;
        top: auto;
    }

    .footer__lower .footer__col:nth-child(1) {
        grid-area: footer--lower-col-1;
    }

    .footer__lower .footer__col:nth-child(2) {
        grid-area: footer--lower-col-2;
    }

    .footer__lower .footer__col:nth-child(3) {
        grid-area: footer--lower-col-3;
    }

    .footer__lower .footer__col:nth-child(4) {
        grid-area: footer--lower-col-4;
    }

    .footer__lower .footer__col:nth-child(5) {
        grid-area: footer--lower-col-5;
    }

    .footer__lower {
        display: grid;
        grid-template-areas:
      "footer--lower-col-3 footer--lower-col-5"
      "footer--lower-col-1 .";

        row-gap: 30px;
    }

    .footer__lower .footer__col:nth-child(3) {
        margin-right: 0;
    }
}

@media screen and (max-width: 1180px) {
    .header__right-sector:nth-child(1),
    .header__right-sector:nth-child(2) {
        display: none;
    }

    .menu__upper-circle {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
    }

    .menu__upper-circle-img {
        max-width: 18px;
    }

    .menu-popup {
        flex-direction: column;
    }
}

.blog__title {
    display: none !important;

    padding-left: 20px;

    font-size: 24px;
    font-weight: 500;
    line-height: 29.05px;

    text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
    .blog__title {
        display: block !important;
    }

    .blog__sides:nth-child(2n) .blog__content {
        padding-top: 0;
    }

    .blog__sides {
        display: flex;
        flex-direction: column;
    }

    .blog__sides:nth-child(2n) {
        flex-direction: column-reverse;
    }

    .blog__img {
        max-width: 100%;
    }

    .blog__content {
        margin-top: 25px;
    }

    .blog__sides:not(.blog__sides:first-child) {
        margin-top: 40px;
    }

    .blog__sides .blog__content {
        padding-top: 0;
    }

    .blog__content-title {
        max-width: 100% !important;
    }

    .blog__text {
        max-width: 100%;
    }

    .blog__sides:nth-child(2n - 1) {
        display: flex;
        align-items: center;
    }

    .blog__sides:nth-child(2n - 1) img {
        width: 100%;
    }

    .blog__sides:nth-child(2n - 1) .blog__content {
        width: 100%;
    }
}

.menu__upper-group-link--mobile {
    display: none;
}

@media screen and (max-width: 991px) {
    .header__placement {
        display: none;
    }

    .menu {
        top: 74px;

        overflow-y: scroll;
    }

    .lower-menu-holder {
        display: flex;
    }

    .future__video-buttons,
    .main__video-buttons {
        right: 20px;
        bottom: 20px;
    }

    .menu__upper-group-link--mobile {
        display: inline;
    }

    .menu {
        padding-top: 20px;
    }

    .menu__upper {
        flex-direction: column;
    }

    .menu__upper-group {
        width: 100%;
        display: flex;
        flex-direction: row;

        padding-top: 7px;
        padding-bottom: 7px;

        max-width: unset;

        border-bottom: 1px solid #f2f3f4;
    }

    .menu__upper-group-contacts {
        margin-top: 35px;
    }

    .header__nav {
        display: none;
    }

    .header__container,
    .menu {
        padding-left: 20px;
        padding-right: 20px;
    }

    .menu__upper-text {
        display: flex;
        align-items: center;

        margin-top: 0;

        margin-left: 19px;

        width: 100%;

        position: relative;
    }

    .menu__upper-text-arrow {
        position: absolute;
        right: 0;
    }

    .instagram__table {
        grid-template-columns: 1fr 1fr;
    }

    .instagram__block {
        padding-left: 20px;
    }

    .instagram {
        margin-top: 60px;
    }

    .blog,
    .future,
    .categories {
        margin-top: 60px;
    }

    .season {
        margin-top: 60px;
    }

    .season__showmore-holder {
        margin-top: 40px;
    }

    .season__showmore-button {
        font-size: 14px;
        font-weight: 600;
        line-height: 16.94px;
        text-align: left;

        padding: 12px 17px 13px 17px;
    }

    .season__title,
    .new__title {
        padding-left: 20px;

        font-size: 24px;
        font-weight: 500;
        line-height: 29.05px;
        text-align: left;
    }

    .season__images,
    .new__items {
        margin-top: 40px;
    }

    .cards4__title {
        font-size: 24px;
        font-weight: 500;
        line-height: 29.05px;
    }

    .future {
        height: 623px;
    }
}

@media screen and (max-width: 800px) {
    .new__item-title {
        margin-top: 10px;
    }

    .new__item-title,
    .new__item-text {
        font-size: 10px;
        line-height: 15px;
    }

    .categories__row-to2 {
        column-gap: 5px;
    }

    .categories__row-to3 {
        column-gap: 5px;
        margin-top: 5px;
    }

    .categories__row-to2-text {
        font-size: 24px;
        font-weight: 600;
        line-height: 29.05px;
    }

    .categories__row-to3-text {
        font-size: 10px;
        font-weight: 700;
        line-height: 12.1px;

        bottom: 16px;
        left: 26px;
    }

    .future__container {
        padding-left: 18px;
        padding-right: 20px;
        padding-bottom: 50px;
    }

    .future__title {
        font-size: 24px;
        font-weight: 600;
        line-height: 29.05px;
    }

    .future__text {
        margin-top: 20px;

        font-size: 14px;
        font-weight: 500;
        line-height: 16.94px;
    }

    .future__button {
        margin-top: 40px;
    }

    .future__content {
        max-width: 275px;
    }

    .instagram__title {
        font-size: 24px;
        font-weight: 500;
        line-height: 29.05px;
    }

    .footer {
        margin-top: 60px;
    }
}

@media screen and (max-width: 768px) {
    .footer__container {
        padding-top: 24px;
        padding-bottom: 47px;
    }

    .footer__col:nth-child(3) {
        margin-right: 0px;
    }
}

.instagram__mobile {
    display: none;

    padding-left: 20px;
}

@media screen and (max-width: 600px) {
    .instagram__column {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;

        justify-content: start;

        margin-top: 40px;
    }

    .instagram__title {
        margin-top: 0;
    }

    .instagram__mobile {
        display: block;
    }

    .instagram__block {
        display: none;
    }

    .instagram__text {
        font-size: 14px;
        font-weight: 500;
        line-height: 16.94px;
        text-align: left;
        margin-left: 22px;
    }

    .instagram__button {
        font-size: 14px;
        font-weight: 600;
        line-height: 16.94px;
        text-align: left;

        margin-top: 0;

        padding: 13px;
    }

    .instagram__table {
        margin-top: 40px;
    }

    .instagram__text {
        margin-top: 0;
    }

    .instagram__button {
    }
}

@media screen and (max-width: 550px) {
    .blog__upper-text {
        font-size: 10px;
        line-height: 12.1px;
    }

    .blog__content-title {
        margin-top: 20px !important;

        font-size: 20px !important;
        font-weight: 700 !important;
        line-height: 24.2px !important;
    }

    .blog__text {
        margin-top: 24px;

        font-size: 14px;
        font-weight: 500;
        line-height: 21px;
    }

    .blog__row {
        margin-top: 36px;
    }

    .blog__button {
        padding: 16px;

        font-size: 14px;
        line-height: 16.94px;
    }

    .blog__button svg {
        max-width: 10px;
    }

    .blog__link {
        font-size: 14px;
        font-weight: 500;
        line-height: 16.94px;
    }
}

@media screen and (max-width: 550px) {
    .menu__mobile-row {
        justify-content: space-between;
    }
}

@media screen and (max-width: 430px) {
    .menu-popup {
        width: 100%;

        right: 0;
    }

    .footer__col-text {
        font-size: 14px;
    }
}

@media screen and (max-width: 374px) {
    .footer__col-text {
        font-size: 12px;
    }
}

.black-roll__text-group {
    display: flex;
    align-items: center;
    animation: marquee 50s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(40%);
    }
    to {
        transform: translateX(-40%);
    }
}

@keyframes marqueeMobile {
    from {
        transform: translateX(30%);
    }
    to {
        transform: translateX(-30%);
    }
}

@media all and (max-width: 600px) {
    .black-roll__text-group {
        animation: marqueeMobile 45s linear infinite;
    }
}

.body-sizes__item {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px !important;
    width: auto !important;
    height: 34px;
    border-radius: 3px;
    border: 1px solid #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s linear;

    padding-left: 12px;
    padding-right: 12px;
}

.body-sizes__item label {
    position: absolute;

    margin-bottom: 0;
    pointer-events: none;

    white-space: nowrap;
}

.body-sizes__item input {
    opacity: 0;
    cursor: pointer;
}

.body-sizes__item:hover {
    background-color: #121313;
    border-color: #121313;
}

.body-sizes__item--active {
    background-color: #121313;
}

.bottom-header__tools {
    width: auto !important;
    margin-left: 20px !important;
}

.bottom-header__search {
    position: relative !important;
    top: 0 !important;
    right: -40px !important;

    z-index: 3 !important;
    background: #f2f3f4 !important;
}

.bottom-header__tools-search {
    height: auto !important;
    border: none !important;
}

/* .bottom-header__tools-search svg{
    filter: brightness(0%) !important;
    -webkit-filter:  brightness(0%) !important;
} */

.bottom-header__search {
}

.bottom-header__tools-search {
    box-shadow: none !important;
}

.iSearchBox {
    position: absolute !important;
    top: 63px !important;

    min-width: 533px;

    right: 0 !important;
}

footer .subscribes {
    background: none !important;

    padding-bottom: 0 !important;
    padding-top: 0 !important;
}

footer .subscribes__block {
    flex-direction: column !important;
    align-items: start !important;
}

footer .subscribes__left h3 {
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 19.36px !important;

    color: #fff !important;
}

footer .subscribes .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

footer .subscribes__right {
    margin-top: 16px !important;
}

footer .subscribes__input {
    padding: 0 !important;
    height: auto !important;
    padding-bottom: 11px !important;

    font-family: "Inter", sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 19.36px !important;
    text-align: left !important;

    color: #c5c5c5 !important;

    background: #121313 !important;

    border: none !important;

    border-bottom: 1px solid #ffffff !important;

    width: 100% !important;
}

footer .subscribes__button {
    position: absolute !important;
    right: 0 !important;
    height: 50px !important;
    background: #121313 !important;
    border: none !important;
    height: 25px !important;
}

footer .bottom-header__tools-search svg {
    fill: none !important;
}

footer .subscribes__button {
    width: auto !important;
    min-width: unset !important;
}

footer .subscribes__form,
footer .form-group.subscribes__filed,
footer .subscribes__right {
    width: 100% !important;
}

@media screen and (max-width: 700px) {
    .iSearchBox {
        left: auto !important;
        right: -120px !important;
        min-width: 343px !important;
    }
}

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

.category__pagination .pagination__block .pagination li.pagination__link {
    font-size: 16px !important;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.4em;
    text-align: center;
    width: fit-content;
    height: fit-content;
    border: none !important;
}

.category__pagination .pagination__block .pagination li.pagination__link:hover {
    background: none !important;
}

.category__pagination
.pagination__block
.pagination
li.pagination__link:hover
a {
    color: #121313 !important;
}

.category__pagination
.pagination__block
.pagination
li.pagination__link.active {
    border: none !important;
    width: fit-content !important;
    height: fit-content !important;
}

.category__pagination
.pagination__block
.pagination
li.pagination__link.active
span {
    color: #f53f4a !important;
}

.pagination__block .pagination li.next__page {
    display: none !important;
}

.information__title h1 {
    font-size: 35px !important;
    font-weight: 400 !important;
    line-height: 42.36px !important;
    text-align: left;

    margin-bottom: 0 !important;

    margin-right: 12px;
}

.information__title {
    display: flex;
    justify-content: space-between !important;
    flex-direction: row !important;

    border-bottom: none !important;

    margin-top: 60px !important;

    margin-bottom: 40px !important;
}

.information__title p {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    text-align: left;

    max-width: 679px;

    display: none;
}

@media screen and (max-width: 991px) {
    .information__title h1 {
        font-size: 24px !important;
        font-weight: 400 !important;
        line-height: 29.05px !important;
    }

    .information__title {
        flex-direction: column !important;
    }

    .information__title p {
        margin-top: 24px;
    }
}

.article__block .article__info {
    border: none !important;

    padding: 0 !important;
    margin-top: 20px !important;
}

.article__block .article__info h3 a {
    font-size: 20px !important;
    font-weight: 600;
    line-height: 24.2px;
    text-align: left;
}

.studio-addresses__left {
    width: auto !important;
    min-width: unset !important;

    border-right: none !important;

    margin-right: 16px;
}

.studio-addresses__pointer-img {
    min-width: unset !important;
    width: auto !important;

    display: inline-block;
}

.studio-addresses__left {
    justify-content: start !important;
}

.studio-addresses__title {
    display: flex;
}

.studio-addresses__left {
    padding: 0 !important;
}

.studio-nav-slider__item {
    border: 1px solid #f2f3f4;

    margin-right: 10px;

    width: fit-content !important;

    margin-top: 14px;
}

.studio-nav-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.studio-nav-slider__item .studio-nav-slider__name {
    padding: 4px 10px;

    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    text-align: center;

    text-transform: capitalize;
}

ul.breadcrumb {
    margin-top: 60px !important;
}

.studio-page__title {
    margin-bottom: 51px !important;
    margin-top: 60px !important;

    display: flex;
    justify-content: space-between;

    font-size: 35px !important;
    font-weight: 400 !important;
    line-height: 42.36px !important;
}

.studio-page__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    text-align: left;

    max-width: 679px;
}

@media screen and (max-width: 991px) {
    .studio-page__title h1 {
        font-size: 24px !important;
        font-weight: 400 !important;
        line-height: 29.05px !important;
    }

    .studio-page__title {
        flex-direction: column !important;
        margin-top: 24px !important;
    }

    .studio-page__text {
        margin-top: 24px;
    }
}

@media screen and (max-width: 768px) {
    .studio-nav-blocks {
        display: none;
    }
}

.studio-city-select__items {
    background: #f2f3f4 !important;

    padding: 14px 20px;

    width: 100% !important;
}

.studio-city-select
.select2-container
.select2-selection--single
.select2-selection__rendered {
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 15.48px;
    text-align: left;

    color: #121313 !important;
}

.select2-container--default .select2-selection--single {
    background: #f2f3f4 !important;
}

.categories__row .list-group {
    flex-direction: row !important;

    position: relative;
}

.categories {
    z-index: 4 !important;
}

.ocfilter-option {
    /* top: 0;
      left: 0; */
}

.ocfilter-option .ocf-option-name {
    font-family: "Inter";
    font-size: 14px !important;
    font-weight: 400;
    line-height: 21px !important;
    text-align: left;

    text-transform: uppercase !important;
}

.ocf-option-values {
    position: absolute;

    width: 100% !important;

    left: 0 !important;

    z-index: 4 !important;
}

.ocf-option-values .noUi-connect {
    background-color: #34b853 !important;
}

.ocf-option-values .noUi-horizontal .noUi-handle {
    border: 1px solid #ffffff !important;
    box-shadow: 0px 2px 1.6px 0px #e3e3e3 !important;

    width: 24px !important;
    height: 24px !important;

    background-color: #ffffff !important;

    top: -9px !important;
}

.ocf-option__block {
    flex-direction: row !important;

    flex-wrap: wrap !important;

    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr 1fr !important;
}

.ocf-option__value {
    width: fit-content !important;
}

.ocf-option-values .ocf-selected input[type="checkbox"] {
    background: #121313 !important;
}

.ocf-option-values input[type="checkbox"] {
    border: 1px solid #000000;
}

.ocf-option-values label a {
    font-size: 14px !important;
    font-weight: 400;
    line-height: 14px !important;
    text-align: left;

    color: #121313 !important;
}

.ocf-option-values .badge {
    color: #bebebe;
}

.ocf-option-name {
    background-color: initial;
}

.ocf-option-values .noUi-horizontal .noUi-handle {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.filter__arrow {
    margin-left: 10px !important;
}

@media screen and (max-width: 1600px) {
    .categories__row {
        flex-direction: column;
    }
}

.mobile__filter {
    margin-top: 14px !important;
}

.ocf-option-values input[type="checkbox"] {
    min-width: 20px;
    min-width: 20px;
}

.mobile__filter {
    background-color: none !important;
}

@media screen and (max-width: 768px) {
    .categories__row .list-group {
        flex-direction: column !important;
    }

    #ocfilter {
        width: 100%;
    }

    .ocf-option__block {
        grid-template-columns: 1fr !important;
    }
}

.ocf-option-values .price__form .form-inline input {
    width: 82px !important;
    height: 24px !important;
    border: 1px solid #000000 !important;
    border-radius: 3px !important;

    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 21px !important;
    text-align: left !important;
}

.card-hover-colors {
    width: 100%;

    padding-bottom: 0 !important;
}

.card-hover-colors::-webkit-scrollbar {
    width: 8px !important;
    margin-right: 1px;
    height: 8px !important;
}

.card-hover-color {
    height: 12px !important;
}

.card-hover-row {
}

.card-hover-sizes {
    margin-right: 8px;
}

/* .card-hover-size{
    padding: 5px 12px !important;
    width: auto !important;
    min-width: 43px !important;
} */

.card-hover-size label {
    white-space: nowrap;
}

.price__namedropdown .filter__ocarrow {
    margin-left: 10px;
}

.card-hover-colors {
}

.card-hover-size-radio:hover {
    border-radius: 3px !important;
}

.cards4__item .card-hover-size:hover {
    border-radius: 3px !important;
}

.card-hover-size-radio:checked + label,
.card-hover-size-radio + label:hover {
    border-radius: 3px !important;
    border: 1px solid #121313 !important;
}

.dropdown-language__block {
    align-items: start;
}

.product__option-quantity {
    display: none;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: none !important;
}

.oneclick {
    position: fixed;
    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    z-index: 100;

    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.4);
}

.oneclick__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    max-width: 705px;
    width: 100%;

    padding-top: 60px;
    padding-bottom: 69px;

    background: #f2f3f4;

    position: relative;
}

.oneclick__closer {
    position: absolute;

    top: 24px;
    right: 24px;

    cursor: pointer;
}

.oneclick__title {
    font-size: 35px;
    font-weight: 500;
    line-height: 42.36px;
    text-align: center;

    color: #121313;
}

.oneclick__form {
    width: 100%;

    max-width: 368px;

    margin-top: 14px;
}

.oneclick__input {
    width: 100%;

    height: 55px;
    border-radius: 3px;
    border: 1px solid #121313 !important;

    background: #f2f3f4;

    font-family: "Inter", sans-serif;

    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    text-align: left;

    padding-left: 20px;

    margin-top: 16px;
}

.oneclick__submit {
    width: 100%;

    height: 55px;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 17.69px;
    text-align: left;

    transition: 0.3s linear;
    background: #121313;
    color: #ffffff;

    border: 1px solid #121313;

    margin-top: 30px;

    text-align: center;

    cursor: pointer;
}

.oneclick__submit:hover {
    background: #f2f3f4;
    color: #121313;
}

@media screen and (max-width: 991px) {
    .oneclick {
        padding-left: 20px;
        padding-right: 20px;
    }

    .oneclick__block {
        max-width: 393px;
        width: 100%;

        padding-top: 30px;
        padding-bottom: 27px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .oneclick__closer {
        top: 21px;
        right: 24px;
    }

    .oneclick__title {
        font-size: 20px;
        font-weight: 500;
        line-height: 24.2px;
    }

    .oneclick__form {
        max-width: 353px;
    }

    .oneclick__input {
        height: 43px;

        font-size: 14px;
        font-weight: 500;
        line-height: 15.48px;

        margin-top: 16px;
    }

    .oneclick__submit {
        font-size: 14px;
        font-weight: 500;
        line-height: 15.48px;

        height: 43px;
    }
}

.item__button {
    cursor: pointer;
}

.price__ocfilter-holder {
    width: 100%;
    display: flex;
    justify-content: center;
}

.categories__row-center-button-holder {
    width: 100%;
    display: flex;
    justify-content: center;

    margin-top: 60px;
}
