@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap");
@font-face {
    font-family: "Triumvirate";
    src: url(TriumvirateCGInseratItalic.otf);
    font-display: swap;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Roboto Condensed", sans-serif;
}

html,
body {
    width: 100%;
    height: auto;
    min-height: 100%;
    background-color: #fff;
}
.dnone {
    display: none !important;
}
.container {
    width: 100%;
    height: auto;
    max-width: 1560px;
    margin: 0px auto;
}
.container-xs {
    width: 100%;
    height: auto;
    max-width: 960px;
    margin: 0px auto;
}

.container-x {
    width: 100%;
    height: auto;
    max-width: 1280px;
    margin: 0px auto;
}

a {
    text-decoration: none;
}

.tooltip {
    position: relative;
}

.cookie {
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: auto;
    padding: 50px 0px;
    background-color: #000;
    z-index: 99999;
}
.cookie .cookie__block {
    width: 100%;
    height: auto;
}

.cookie .cookie__block p {
    font-size: 16px;
    color: #fff;
}
.cookie .cookie__buttons {
    width: 100%;
    height: auto;
    padding-top: 20px;
    display: flex;
    align-items: center;
}
.cookie .cookie__buttons button,
.cookie .cookie__buttons a {
    min-width: 120px;
    padding: 0px 15px;
    height: 40px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #000;
    background-color: #fff;
    border: 1px solid #fff;
    margin-right: 15px;
    cursor: pointer;
}
.cookie .cookie__buttons a {
    background-color: transparent;
    color: #fff;
}
.cookie__content h3 {
    padding-left: 0px !important;
}
.cst__select {
    width: 100%;
    padding: 10px 0px;
    display: flex;
    flex-direction: column;
}
.cst__select b {
    width: 100%;
    height: auto;
    font-size: 16px;
}
.cst__select select {
    width: 200px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #000;
    padding: 0px 15px;
    margin-top: 10px;
}
.pc__box {
    width: 100%;
    height: auto;
    padding: 15px 0px;
}
.pc__box a.btn--save {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    background-color: #000;
    color: #fff;
    font-size: 16px;
    border: 0px;
    cursor: pointer;
}
.pc__box h5 {
    font-size: 16px;
    padding-bottom: 10px;
    padding-top: 10px;
}
.pc__box h4 {
    padding: 15px 0px !important;
}
.pc__box ul {
    padding: 10px 20px;
    margin-top: 0px;
}
.tooltip::before {
    content: attr(data-tooltip);
    font-size: 13px;
    position: absolute;
    left: 20%;
    top: 100%;
    background: #d4edf4;
    padding: 5px 10px;
    opacity: 0;
    color: #000;
    z-index: 5;
    border-radius: 5px;
    transition: 100ms opacity;
}

.tooltip::after {
    content: "";
    position: absolute;
    left: 25%;
    top: 92%;
    width: 8px;
    height: 8px;
    background: #d4edf4;
    opacity: 0;
    transform: rotate(45deg);
    transition: 100ms opacity;
}

.tooltip:hover::before,
.tooltip:hover::after {
    opacity: 1;
}

.noUi-horizontal .noUi-handle {
    width: 28px !important;
    height: 28px;
    border-radius: 50%;
}
.noUi-connect {
    background-color: #ec0e00 !important;
}
.noUi-handle:after,
.noUi-handle:before {
    display: none !important;
}
.loading {
    width: 100%;
    height: 100%;
    background-color: #ec0e00;
    min-height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: top 0.3s ease-out;
    display: none !important;
}
.loading.hide {
    top: -110vh;
}
.loading .loading__bar {
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}
.loading .loading__bar .bar {
    position: relative;
    height: 2px;
    width: 500px;
    margin: 0 auto;
    background: #fff;
    margin-top: 150px;
}
.loading .loading__bar .circle {
    position: absolute;
    top: -30px;
    margin-left: -30px;
    height: 60px;
    width: 60px;
    left: 0;
    background: #fff;
    border-radius: 30%;
    -webkit-animation: move 5s infinite;
}
.loading .loading__bar p {
    position: absolute;
    top: -25px;
    right: -95px;
    text-transform: uppercase;
    color: #ec0e00;
    font-family: helvetica, sans-serif;
    font-weight: bold;
}
@-webkit-keyframes move {
    0% {
        left: 0;
    }
    50% {
        left: 100%;
        -webkit-transform: rotate(450deg);
        width: 150px;
        height: 150px;
    }
    75% {
        left: 100%;
        -webkit-transform: rotate(450deg);
        width: 150px;
        height: 150px;
    }
    100% {
        right: 100%;
    }
}

.newsletter__popup {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999999999999;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
}
.newsletter__popup.active {
    display: flex;
}
.newsletter__popup .np__box {
    width: 100%;
    height: auto;
    max-width: 450px;
    border-radius: 5px;
    background-color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}

.newsletter__popup .np__box .np__close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ec0e00;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    cursor: pointer;
}
.newsletter__popup .np__box .np__close:hover {
    background-color: #000;
}
.newsletter__popup .np__box h3 {
    font-size: 24px;
    color: #282828;
    font-weight: 700;
    padding-bottom: 20px;
}
.newsletter__popup .np__box p {
    font-size: 16px;
    color: #282828;
    font-weight: 400;
    padding-bottom: 10px;
}
.newsletter__popup .np__box form {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}
.newsletter__popup .np__box form label {
    font-size: 16px;
    color: #000000;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.newsletter__popup .np__box form input {
    width: 100%;
    height: 50px;
    margin: 10px 0px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    padding-left: 15px;
}
.newsletter__popup .np__box form button {
    width: 100%;
    height: 50px;
    border: 0px;
    background-color: #ec0d00;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.prize_contest_popup {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999999999999;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
}
.prize_contest_popup.active {
    display: flex;
}
.prize_contest_popup .np__box {
    width: 100%;
    height: auto;
    max-width: 450px;
    border-radius: 5px;
    background-color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}

.prize_contest_popup .np__box .np__close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ec0e00;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    cursor: pointer;
}
.prize_contest_popup .np__box .np__close:hover {
    background-color: #000;
}
.prize_contest_popup .np__box h3 {
    font-size: 24px;
    color: #282828;
    font-weight: 700;
    padding-bottom: 20px;
}
.prize_contest_popup .np__box p {
    font-size: 16px;
    color: #282828;
    font-weight: 400;
    padding-bottom: 10px;
}
.prize_contest_popup .np__box form {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}
.prize_contest_popup .np__box form label {
    font-size: 16px;
    color: #000000;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.prize_contest_popup .np__box form input {
    width: 100%;
    height: 50px;
    margin: 10px 0px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    padding-left: 15px;
}
.prize_contest_popup .np__box form button {
    width: 100%;
    height: 50px;
    border: 0px;
    background-color: #ec0d00;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}


.header {
    width: 100%;
    height: auto;
    background-color: #fff;
    position: relative;
    box-shadow: 0px 3px 12px 4px rgb(0 0 0 / 10%);
}
.header .header__svg {
    width: 100%;
    height: auto;
    position: absolute;
    height: 100%;
    overflow: hidden;
}
.header .header__svg .header__svg-inside {
    width: 100%;
    height: auto;
    position: absolute;
}
.header .header__svg .header__svg-inside svg {
    position: absolute;
    top: -350px;
    left: -730px;
    z-index: 1;
}
.header .header__block {
    width: 100%;
    height: auto;
    z-index: 99999;
    position: relative;
}
.header .header__block .header__top {
    width: 100%;
    height: 60px;
    background-color: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.header .header__block .header__top::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background: rgb(255, 255, 255);
    background: -moz-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 34%,
        rgb(255, 255, 255) 55%,
        rgb(236, 14, 0) 100%
    );
    background: -webkit-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 34%,
        rgb(255, 255, 255) 55%,
        rgb(236, 14, 0) 100%
    );
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 34%,
        rgb(255, 255, 255) 55%,
        rgb(236, 14, 0) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ec0e00", GradientType=1);
}
.header .header__block .header__top .header__top-left .header__top--close {
    width: 50px;
    height: 50px;
    background-color: #506270;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: #fff;
    font-weight: 400;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
.header .header__block .header__top .header__top-left ul li {
    display: inline-flex;
    padding: 0px 8px;
}
.header .header__block .header__top .header__top-left ul li a {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
.header .header__block .header__top .header__top-right {
    display: flex;
    align-items: center;
}
.header .header__block .header__top .header__top-right img {
    filter: invert(12%) sepia(100%) saturate(7492%) hue-rotate(18deg)
        brightness(101%) contrast(108%);
    height: 24px;
    width: 24px;
    object-fit: contain;
}
.header .header__block .header__top .header__top-right a {
    display: flex;
    align-items: center;
    color: #ec0e00;
    font-size: 18px;
    font-weight: 600;
    margin-left: 10px;
}
.header .header__block .header__top .header__top-right a img {
    margin-right: 16px;
}
.header .header__block .header__top .header__top-right a:hover {
    color: #506270;
}
.header .header__block .header__main {
    width: 100%;
    height: auto;
    padding: 35px 0px;
    padding-bottom: 0;
    display: flex;
    position: relative;
    z-index: 99999;
    align-items: center;
    justify-content: space-between;
}
.header .header__block .header__main .header__main-left {
    display: flex;
    align-items: center;
}
.header .header__block .header__main .header__logo {
    margin-right: 45px;
}
.header .header__block .header__main .header__search {
    position: relative;
}
.header .header__block .header__main .header__search .header__search-box {
    width: 600px;
    max-width: 100%;
    position: relative;
    padding-right: 40px;
}
.header
    .header__block
    .header__main
    .header__search
    .header__search-box
    .header__search-box-input {
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    position: relative;
}
.header
    .header__block
    .header__main
    .header__search
    .header__search-box
    .header__search-box-input
    .custom__select {
    width: 130px;
    height: 30px;
    background-color: #fff;
    border: 0px;
    outline: none;
    border-right: 1px solid rgba(0, 0, 0, 0.3);
    position: relative;
}
.header
    .header__block
    .header__main
    .header__search
    .header__search-box
    .header__search-box-input
    .custom__select
    select {
    width: 130px;
    height: 30px;
    background-color: #fff;
    border: 0px;
    outline: none;
    padding: 0px 15px;
    border-right: 1px solid rgba(0, 0, 0, 0.3);
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
}
.header
    .header__block
    .header__main
    .header__search
    .header__search-box
    .header__search-box-input
    .custom__select::after {
    content: ">";
    color: rgba(0, 0, 0, 0.3);
    font-size: 18px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    right: 15px;
    background-color: #fff;
    pointer-events: none;
}
.header
    .header__block
    .header__main
    .header__search
    .header__search-box
    .header__search-box-input
    input {
    width: 100%;
    height: 30px;
    border: 0px;
    outline: none;
    padding-left: 20px;
    font-size: 18px;
    font-weight: 300;
    color: #ec0e00;
}
.header
    .header__block
    .header__main
    .header__search
    .header__search-box
    img.srch {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    right: 0px;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(326deg)
        brightness(114%) contrast(101%);
}
.header .header__block .header__main .header__search .header__search-list {
    width: 100%;
    height: auto;
    max-height: 280px;
    overflow-y: auto;
    position: absolute;
    top: 50px;
    left: 0px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #d7d7d7;
    display: none;
    z-index: 99999999999;
}
.header
    .header__block
    .header__main
    .header__search
    .header__search-list.active {
    display: block;
}
.header
    .header__block
    .header__main
    .header__search
    .header__search-list
    .header__search-item {
    width: 100%;
    height: auto;
    display: flex;
    padding: 10px 20px;
    border-bottom: 1px solid #d7d7d7;
    align-items: center;
    justify-content: space-between;
}
.header
    .header__block
    .header__main
    .header__search
    .header__search-list
    .category-item {
        font-weight: normal;
     font-size: 14px;
    }
    .header .header__block .header__main .header__search .header__search-list .category-item .hsi__left .hsi__info {
        padding-left: 0 !important;
    }
    .header .header__block .header__main .header__search .header__search-list .category-item .hsi__left .hsi__info h4 {
       font-size: 16px !important;
       font-weight: 500 !important;
    }
.header
    .header__block
    .header__main
    .header__search
    .header__search-list
    .header__search-item:last-child {
    border-bottom: 0px;
}
.header
    .header__block
    .header__main
    .header__search
    .header__search-list
    .header__search-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
.header
    .header__block
    .header__main
    .header__search
    .header__search-list
    .header__search-item:hover
    .hsi__left
    .hsi__info
    h4 {
    color: #ac0d02;
}
.header
    .header__block
    .header__main
    .header__search
    .header__search-list
    .header__search-item
    .hsi__left {
    display: flex;
    align-items: center;
}
.header
    .header__block
    .header__main
    .header__search
    .header__search-list
    .header__search-item
    .hsi__left
    .hsi__image {
    width: 50px;
    height: 50px;
}
.header
    .header__block
    .header__main
    .header__search
    .header__search-list
    .header__search-item
    .hsi__left
    .hsi__image
    img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.header
    .header__block
    .header__main
    .header__search
    .header__search-list
    .header__search-item
    .hsi__left
    .hsi__info {
    padding-left: 30px;
}
.header
    .header__block
    .header__main
    .header__search
    .header__search-list
    .header__search-item
    .hsi__left
    .hsi__info
    h4 {
    font-size: 18px;
    font-weight: 700;
    color: #282828;
}
.header
    .header__block
    .header__main
    .header__search
    .header__search-list
    .header__search-item
    .hsi__right
    span {
    font-size: 16px;
    color: #ec0e00;
    font-weight: 700;
}
.header .header__block .header__main .header__actions {
    display: flex;
    align-items: center;
}
.header .header__block .header__main .header__actions .categories_button {
    display: none !important;
}

.whirlpool__landing {
    width: 100%;
    height: auto;
    padding: 80px 0px;
}

.whirlpool__landing .wl__block {
    width: 100%;
    height: auto;
}

.whirlpool__landing .wl__block .wl__top {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
}
.whirlpool__landing .wl__block .wl__top img {
    height: 50px;
    object-fit: contain;
    margin-right: 100px;
}

.whirlpool__landing .wl__block .wl__top ul {
    display: flex;
    align-items: center;
}
.whirlpool__landing .wl__block .wl__top ul li {
    list-style: none;
    padding: 0px 10px;
}

.whirlpool__landing .wl__block .wl__top ul li a {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
.whirlpool__landing .wl__block .wl__top ul li a:hover {
    text-decoration: underline;
}
.whirlpool__landing .wl__block .wl__title {
    width: 100%;
    height: auto;
    padding-top: 70px;
    padding-bottom: 15px;
}

.whirlpool__landing .wl__block .wl__title h4 {
    font-size: 26px;
    font-weight: 800;
    color: #000;
}
.whirlpool__landing .wl__block .wl__list {
    width: 100%;
    height: auto;
}

.whirlpool__landing .wl__block .wl__list .wl__item {
    display: flex;
    width: 100%;
    height: auto;
    align-items: stretch;
}
.whirlpool__landing .wl__block .wl__list .wl__item:nth-child(even) .wli__image {
    order: 2;
}
.whirlpool__landing .wl__block .wl__list .wl__item .wli__image {
    width: 55%;
    /* height:100%; */
}
.whirlpool__landing .wl__block .wl__list .wl__item .wli__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.whirlpool__landing .wl__block .wl__list .wl__item .wli__content {
    width: 45%;
    height: auto;
    background-color: #ececec;
    padding: 55px 32px;
}
.whirlpool__landing .wl__block .wl__list .wl__item .wli__content h4 {
    font-size: 20px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}

.whirlpool__landing .wl__block .wl__list .wl__item .wli__content p {
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
    color: #000;
}

.whirlpool__landing .wl__block .wl__list .wl__item .wli__content a {
    background-color: #fdc100;
    margin-top: 15px;
    display: inline-flex;
    padding: 12px 16px;
    font-weight: bold;
    color: #fff;
    font-size: 18px;
}
.whirlpool__landing .wl__block .wl__list .wl__item .wli__content a:hover {
    text-decoration: underline;
    background-color: #d1a206;
}
.whirlpool__landing .wl__block .wl__list .wl__item .wli__content .wli__icons {
    width: 100%;
    height: auto;
    margin-top: 25px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.whirlpool__landing
    .wl__block
    .wl__list
    .wl__item
    .wli__content
    .wli__icons
    img {
    width: 25%;
    object-fit: contain;
}

.promos {
    width: 100%;
    height: auto;
    padding-top: 50px;
}
.promos .promos__block {
    width: 100%;
    height: auto;
}
.promos .promos__block .promos__title {
    width: 100%;
    height: auto;
}
.promos .promos__block .promos__title h3 {
    font-size: 28px;
    font-weight: 500;
    color: #282828;
}

.promos .promos__block .promos__items {
    width: 100%;
    height: auto;
    padding-top: 20px;
}

.promos .promos__block .promos__items .promos__item {
    width: 25%;
    height: auto;
    /* margin:0px 10px; */
    margin-right: 20px;
}
.promos .promos__block .promos__items .promos__item img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 8px;
}

.promos .promos__block .promos__items .promos__item h4 {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    padding-top: 15px;
}
.promos .promos__block .promos__items .promos__item p {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    padding-top: 5px;
}

.black-theme .newcats {
    top: 234px !important;
}

.warning {
    width: 100%;
    height: auto;
    padding: 15px;
    background-color: yellow;
    /* display: none; */
    text-align: center;
    animation: blinkIt 1.5s infinite;
}
.warning p {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
.pulsebtn {
    animation: pulse 1s infinite;
}
@keyframes blinkIt {
    0% {
        transform: scale(1);
        background-color: yellow;
    }
    50% {
        transform: scale(1.05);
        background-color: #fff;
    }
    100% {
        transform: scale(1);
        background-color: yellow;
    }
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}
@media screen and (max-width: 1120px) {
    .header .header__block .header__main .header__actions .categories_button {
        display: inline-flex !important;
    }

    .header .header__block .header__main .header__actions .products_button {
        display: none !important;
    }
}

.header .header__block .header__main .header__actions a.normal--action {
    padding: 0px 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #ec0e00;
    color: #ec0e00;
    font-weight: 400;
    font-size: 18px;
    margin-right: 45px;
}
.header .header__block .header__main .header__actions a.normal--action:hover {
    background-color: #ec0e00;
    color: #fff;
}
.header .header__block .header__main .header__actions a.icon--action {
    width: 55px;
    height: 55px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
    position: relative;
    margin: 0px 13px;
}
.header .header__block .header__main .header__actions a.icon--action img {
    height: 30px;
    width: 30px;
    filter: invert(36%) sepia(16%) saturate(491%) hue-rotate(158deg)
        brightness(96%) contrast(89%);
}
.header .header__block .header__main .header__actions a.icon--action:hover img {
    filter: invert(13%) sepia(91%) saturate(5945%) hue-rotate(5deg)
        brightness(93%) contrast(105%);
}
.header .header__block .header__main .header__actions a.icon--action span {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    top: -5px;
    right: -5px;
    background-color: #51626c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}
.header .header__block .header__main .header__actions a.icon--action--cart {
    background-color: #ec0e00;
}
.header .header__block .header__main .header__actions a.icon--action--cart img {
    height: 22px;
    width: 30px;
    filter: invert(88%) sepia(32%) saturate(0%) hue-rotate(253deg)
        brightness(109%) contrast(102%);
}
.header
    .header__block
    .header__main
    .header__actions
    a.icon--action--cart:hover
    img {
    filter: invert(88%) sepia(32%) saturate(0%) hue-rotate(253deg)
        brightness(109%) contrast(102%);
}
.header .header__block .header__main .header__actions a.icon--action--menu {
    display: none;
}
.header .header__block .header__main .header__actions a.icon--action--search {
    display: none;
}

.landing__page-image {
    width: 100%;
    height: auto;
    padding: 20px 0px;
}
.landing__page-image img {
    width: 100%;
    height: auto;
}
.landing__page-content {
    width: 100%;
    height: auto;
}
.landing__page-content p {
    font-size: 16px;
    color: #282828;
    font-weight: 500;
}

.slider {
    width: 100%;
    height: auto;
    padding-top: 55px;
    margin-bottom: 20px;
}
.slider .slider__block {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #fff;
}
.slider .slider__block .slider__items {
    width: 100%;
    height: auto;
}
.slider .slider__block .slider__items .slider__item {
    width: 100%;
    height: 370px;
    border-radius: 8px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 -1px 10px rgb(29 30 32 / 10%);
    border: 1px solid #e9e9e9;
}
.slider .slider__block .slider__items .slider__item .slider__price {
    font-size: 32px;
    color: #000;
    font-weight: 700;
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 12px 35px;
    border-radius: 5px;
    background-color: #ec0e00;
    z-index: 9;
    font-family: "Triumvirate", sans-serif;
    text-shadow: transparent 0px 0px 1em, rgb(255 255 255) 0px -0.04em 0px,
        rgb(255 255 255) 0.04em 0px 0px, rgb(255 255 255) 0px 0.04em 0px,
        rgb(255 255 255) -0.034em -0.024em 0px,
        rgb(255 255 255) -0.03em -0.04em 0px,
        rgb(255 255 255) -0.01em -0.04em 0px,
        rgb(255 255 255) 0.052em -0.04em 0px,
        rgb(255 255 255) 0.04em -0.04em 0px, rgb(255 255 255) 0.02em -0.04em 0px,
        rgb(255 255 255) 0.047em -0.025em 0px,
        rgb(255 255 255) -0.045em 0.016em 0px,
        rgb(255 255 255) -0.039em 0.038em 0px,
        rgb(255 255 255) -0.052em 0.04em 0px,
        rgb(255 255 255) -0.042em 0.04em 0px,
        rgb(255 255 255) 0.031em 0.028em 0px,
        rgb(255 255 255) 0.029em 0.04em 0px, rgb(0 0 0 / 20%) 0.05em 0px 0.05em,
        rgb(0 0 0 / 20%) 0px 0.05em 0.05em,
        rgb(0 0 0 / 20%) 0.05em 0.05em 0.05em;
    letter-spacing: 2px;
}
.slider .slider__block .slider__items .slider__item .slider__price span {
    font-size: 18px;
    margin-left: -5px;
}
.slider .slider__block .slider__items .slider__item .slider__price.price-pos-0 {
    display: none;
}
.slider .slider__block .slider__items .slider__item .slider__price.price-pos-2 {
    bottom: auto;
    left: auto;
    bottom: 20px;
    right: 500px;
}
.slider .slider__block .slider__items .slider__item .slider__price.price-pos-3 {
    bottom: auto;
    left: auto;
    right: 500px;
    top: 20px;
}
.slider .slider__block .slider__items .slider__item svg {
    position: absolute;
    top: 0px;
    left: -5px;
    height: 370px;
}
.slider .slider__block .slider__items .slider__item img {
    clip-path: ellipse(50% 140% at 50% 50%);
    width: calc(100% - 400px);
    height: 370px;
    left: -49px;
    position: absolute;
    top: 0px;
    object-fit: contain;
    object-position: right;
}
.slider .slider__block .slider__items .slider__item .slider__item-content {
    width: 420px;
    height: auto;
    position: absolute;
    padding-right: 20px;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
}
.slider
    .slider__block
    .slider__items
    .slider__item
    .slider__item-content
    ul
    li {
    display: inline-flex;
    padding: 5px 15px;
    border-radius: 5px;
    border: 1px solid #ec0e00;
    color: #ec0e00;
    font-size: 15px;
    font-weight: 300;
    margin-right: 8px;
    cursor: pointer;
}
.slider
    .slider__block
    .slider__items
    .slider__item
    .slider__item-content
    ul
    li.color--full {
    background-color: #ec0e00;
    color: #fff;
}
.monri-lightbox-button-el span {
    width: 100%;
    min-width: 220px;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #ec0e00 !important;
    position: relative !important;

    font-size: 18px !important;
    font-weight: 600 !important;
    text-indent: -9999px;
    line-height: 0;
}
.monri-lightbox-button-el span:hover {
    background-color: #000 !important;
}

.monri-lightbox-button-el span::after {
    content: "Potvrdi i nastavi >";
    text-indent: 0;
    font-size: 18px !important;
    font-weight: 700 !important;
    display: block;
    font-family: "Roboto Condensed", sans-serif !important;
    line-height: initial;
}

.giftcard-button-el {
    margin-top: 15px;
    width: 100%;
    min-width: 120px;
    height: 30px !important;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background-color: #ec0e00;
    border: 0px;
    cursor: pointer;
}

.giftcard-button-el span {
    width: 100%;
    min-width: 120px;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #ec0e00 !important;
    position: relative !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-indent: -9999px;
    line-height: 0;
}
.giftcard-button-el span:hover {
    background-color: #000 !important;
}

.giftcard-button-el span::after {
    content: "Iskoristi poklon karticu >";
    text-indent: 0;
    font-size: 18px !important;
    font-weight: 700 !important;
    display: block;
    font-family: "Roboto Condensed", sans-serif !important;
    line-height: initial;
}
.slider
    .slider__block
    .slider__items
    .slider__item
    .slider__item-content
    ul
    li.color--gray {
    background-color: #a5aeb7;
    color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
}
.slider .slider__block .slider__items .slider__item .slider__item-content h5 {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.75);
    padding: 40px 0px;
}
.slider .slider__block .slider__items .slider__item .slider__item-content h3 {
    font-size: 32px;
    color: #ec0e00;
    font-weight: bold;
}
.slider .slider__block .slider__items .slider__item .slider__item-content p {
    font-size: 22px;
    font-weight: 200;
    color: #000;
    padding-top: 20px;
}
.slider .slider__block .slider__items .slick-dots {
    position: absolute;
    right: 10px;
    bottom: -25px;
    display: inline-flex;
    align-items: center;
}
.slider .slider__block .slider__items .slick-dots li {
    display: inline-flex;
    margin: 0px 3px;
}
.slider .slider__block .slider__items .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4d4d4d;
    text-indent: -9999px;
    border: 0px;
    cursor: pointer;
}
.slider .slider__block .slider__items .slick-dots li.slick-active button {
    width: 15px;
    height: 15px;
    background-color: #ec0e00;
}
.slider .slider__block .slider__arrows {
    position: absolute;
    display: flex;
    align-items: center;
    right: 20px;
    bottom: 20px;
}
.slider .slider__block .slider__arrows .slider__arrow {
    width: 25px;
    height: 25px;
    background-color: #ec0e00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    cursor: pointer;
}
.slider .slider__block .slider__arrows .slider__arrow:hover {
    box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.25);
    transform: scale(1.1);
}
.slider .slider__block .slider__arrows .slider__arrow img {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg)
        brightness(103%) contrast(103%);
    width: 15px;
    height: 15px;
}

.brands__list {
    width: 100%;
    height: auto;
    padding: 20px 0px;
}
.brands__list .bl__items {
    width: 100%;
    height: auto;
}
.brands__list .bl__items .bl__item {
    width: 20%;
    padding: 20px;
    display: flex;
    justify-content: center;
    /* box-shadow: 0 -1px 10px rgb(29 30 32 / 10%);
    border: 1px solid #e9e9e9; */
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    width: 312px;
}
.brands__list .bl__items .bl__item.bl__item--lg {
    padding: 5px 20px;
}
.brands__list .bl__items .bl__item img {
    max-width: 100%;
    height: 60px;
    object-fit: contain;
}
.brands__list .bl__items .bl__item.bl__item--lg img {
    height: 65px;
}

.offers {
    width: 100%;
    height: auto;
    padding-top: 40px;
}
.offers .offers__block {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.offers .offers__block .offers__item {
    width: calc(50% - 35px);
    height: auto;
    border: 1px solid #ebe9e9;
    border-radius: 5px;
    /* padding: 20px; */
    /* background: rgb(215, 218, 223); */
    background: #f8f8f8;
    min-height: 440px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    /* background: -moz-linear-gradient(
        90deg,
        rgb(215, 218, 223) 0%,
        rgb(255, 255, 255) 100%
    );
    background: -webkit-linear-gradient(
        90deg,
        rgb(215, 218, 223) 0%,
        rgb(255, 255, 255) 100%
    );
    background: linear-gradient(
        90deg,
        rgb(215, 218, 223) 0%,
        rgb(255, 255, 255) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d7dadf", endColorstr="#ffffff", GradientType=1); */
}
.offers .offers__block .offers__item .offers__item-title {
    /* width: 100%;
    height: auto;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9e9e9;
    display: inline-flex;
    align-items: center;
    justify-content: space-between; */
    width: 100%;
    height: 60px;
    border-radius: 10px;
    background-color: #ec0e00;
    padding: 0px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

.offers .offers__block .offers__item .offers__item-title h4 {
    color: #fff;
    /* color: #ec0e00; */
    font-size: 23px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.offers .offers__block .offers__item .offers__item-title a {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    padding: 3px 12px;
    height: 43px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    font-weight: 400;
}
.offers .offers__block .offers__item .offers__item-title a:hover {
    background-color: transparent;
    text-decoration: underline;
    color: #fff;
}
.offers .offers__block .offers__item .offers__item-list {
    width: 100%;
    height: auto;
    padding: 20px;
    /* display:block; */
    /* display: flex;
    align-items: flex-start;
    justify-content: space-between; */
}
.offers .offers__block .offers__item .offers__item-list .oi-list__item {
    /* width: 33%;
    max-width:200px; */
    width: calc(33.33% - 10px);
    margin: 0px 5px;
    height: auto;
    transition: 0.2s all ease-in-out;
    cursor: pointer;
}
.offers .offers__block .offers__item .offers__item-list .oi-list__item:hover {
    transform: scale(1.05);
}
.offers
    .offers__block
    .offers__item
    .offers__item-list
    .oi-list__item
    .oi-list__item-image {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
}
.offers
    .offers__block
    .offers__item
    .offers__item-list
    .oi-list__item
    .oi-list__item-image
    img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    object-position: center;
}
.offers
    .offers__block
    .offers__item
    .offers__item-list
    .oi-list__item
    .oi-list__item-image
    span {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 2px;
    background-color: #ec0e00;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    top: 5px;
    right: 5px;
}
.offers
    .offers__block
    .offers__item
    .offers__item-list
    .oi-list__item
    .oi-list__item-content {
    padding-top: 15px;
}
.offers
    .offers__block
    .offers__item
    .offers__item-list
    .oi-list__item
    .oi-list__item-content
    h4 {
    font-size: 22px;
    font-weight: 400;
    height: 40px;
    color: #506270;
}

.offers
    .offers__block
    .offers__item
    .offers__item-list
    .oi-list__item
    .oi-list__item-content
    .oi-list__item-price {
    width: 100%;
    height: auto;
    text-align: center;
    position: relative;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: right;
    padding-bottom: 10px;
}
.offers
    .offers__block
    .offers__item
    .offers__item-list
    .oi-list__item
    .oi-list__item-content
    .oi-list__item-price
    .price__custom {
    margin: 0px 3px;
}
.offers
    .offers__block
    .offers__item
    .offers__item-list
    .oi-list__item
    .oi-list__item-content
    .oi-list__item-price
    p {
    font-size: 20px;
    color: #506270;
    font-weight: bold;
    font-style: normal;
    position: relative;
    display: inline-flex;
}
.offers
    .offers__block
    .offers__item
    .offers__item-list
    .oi-list__item
    .oi-list__item-content
    .oi-list__item-price
    p::after {
    content: "";
    width: 45px;
    height: 2px;
    background-color: #ec0e00;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}
.offers
    .offers__block
    .offers__item
    .offers__item-list
    .oi-list__item
    .oi-list__item-content
    .oi-list__item-price
    em {
    font-style: normal;
    font-size: 28px;
    font-weight: bold;
    color: #ec0e00;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.featured {
    width: 100%;
    height: auto;
    padding-top: 50px;
}
.featured .featured__block {
    width: 100%;
    height: auto;
}
.featured .featured__block .featured__title {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    position: relative;
    display: none;
}
.featured .featured__block .featured__title h3 {
    font-size: 22px;
    font-weight: 400;
    color: #51626c;
    /* background-color: #f2f3f7; */
    padding-right: 20px;
    z-index: 2;
    position: relative;
    display: inline-flex;
    letter-spacing: 1px;
}
.featured .featured__block .featured__box {
    width: 100%;
    height: auto;
    min-height: 420px;
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    border: 1px solid #ebe9e9;
    background-color: #f8f8f8;
}
.featured .featured__block .featured__box .featured__big {
    min-width: 350px;
    max-width: 350px;
    height: 420px;
    position: relative;
    cursor: pointer;
}
.featured .featured__block .featured__box .featured__big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.featured .featured__block .featured__box .featured__big::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 1;
    position: absolute;
    left: 0px;
    bottom: 0px;
    transition: 0.3s all ease-in-out;
}
.featured .featured__block .featured__box .featured__big:hover::after {
    bottom: 0px;
}
.featured
    .featured__block
    .featured__box
    .featured__big
    .featured__big-content {
    padding: 30px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 2;
}
.featured
    .featured__block
    .featured__box
    .featured__big
    .featured__big-content
    h3 {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.featured
    .featured__block
    .featured__box
    .featured__big
    .featured__big-content
    span {
    font-size: 24px;
    font-weight: bold;
    color: #ec0e00;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.featured .featured__block .featured__box .featured__content {
    width: 100%;
    height: auto;
    padding: 30px;
    display: flex;
    padding-bottom: 10px;
    flex-direction: column;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 25px;
    flex-wrap: wrap;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top
    .featured__category {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top
    .featured__category
    .featured__category-top {
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top
    .featured__category
    .featured__category-top
    h4 {
    font-size: 18px;
    font-weight: bold;
    color: #506270;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top
    .featured__category
    .featured__category-top
    a {
    font-size: 18px;
    font-weight: 400;
    color: #ec0e00;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top
    .featured__category
    .featured__category-items {
    display: flex;
    align-items: center;
    width: 100%;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top
    .featured__category
    .featured__category-items
    .featured__category-item {
    width: 33.33%;
    height: auto;
    margin-right: 25px;
    padding-bottom: 30px;
    cursor: pointer;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top
    .featured__category
    .featured__category-items
    .featured__category-item:last-child {
    margin-right: 0px;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top
    .featured__category
    .featured__category-items
    .featured__category-item:hover
    .featured__category-item-image {
    border: 1px solid #ec0e00;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top
    .featured__category
    .featured__category-items
    .featured__category-item:hover
    .featured__category-item-content
    h4 {
    color: #ec0e00;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top
    .featured__category
    .featured__category-items
    .featured__category-item
    .featured__category-item-image {
    width: 100%;
    height: 130px;
    position: relative;
    transition: 0.2s border ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top
    .featured__category
    .featured__category-items
    .featured__category-item
    .featured__category-item-image
    img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top
    .featured__category
    .featured__category-items
    .featured__category-item
    .featured__category-item-image
    span {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #ec0e00;
    padding: 5px;
    border-radius: 3px;
    background-color: #fff;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top
    .featured__category
    .featured__category-items
    .featured__category-item
    .featured__category-item-content {
    width: 100%;
    height: auto;
    padding-top: 10px;
    /* padding-bottom:30px; */
    position: relative;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top
    .featured__category
    .featured__category-items
    .featured__category-item
    .featured__category-item-content
    h4 {
    font-size: 16px;
    font-weight: 500;
    color: #506270;
    transition: 0.2s color ease-in-out;
}

.featured__category-item-content .cool__price .cp__np,
.featured__content-inline-category .cool__price .cp__np {
    font-size: 16px !important;
    justify-content: flex-end;
}
.featured__category-item-content .cool__price.cp--small .cp__op .cp__op-price,
.featured__content-inline-category
    .cool__price.cp--small
    .cp__op
    .cp__op-price {
    font-size: 15px !important;
    justify-content: flex-end;
}
.featured__category-item-content
    .cool__price.cp--small
    .cp__op
    .cp__op-discount,
.featured__content-inline-category
    .cool__price.cp--small
    .cp__op
    .cp__op-discount {
    height: 20px;
    font-size: 14px;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top
    .featured__category
    .featured__category-items
    .featured__category-item
    .featured__category-item-content
    span {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.4);
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top
    .featured__category
    .featured__category-items
    .featured__category-item
    .featured__category-item-content
    .content__price {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top
    .featured__category
    .featured__category-items
    .featured__category-item
    .featured__category-item-content
    .content__price
    em {
    font-size: 30px;
    font-weight: bold;
    color: #506270;
    font-style: normal;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top
    .featured__category
    .featured__category-items
    .featured__category-item
    .featured__category-item-content
    .content__price.content__price-discount {
    align-items: flex-end;
    padding-top: 65px;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top
    .featured__category
    .featured__category-items
    .featured__category-item
    .featured__category-item-content
    .content__price.content__price-discount
    p {
    font-size: 20px;
    font-weight: bold;
    color: #506270;
    position: relative;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top
    .featured__category
    .featured__category-items
    .featured__category-item
    .featured__category-item-content
    .content__price.content__price-discount
    p::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    width: 50px;
    height: 2px;
    background-color: #ec0e00;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top
    .featured__category
    .featured__category-items
    .featured__category-item
    .featured__category-item-content
    .content__price.content__price-discount
    em {
    font-size: 24px;
    font-style: italic;
    color: #ec0e00;
    margin-top: -5px;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-bottom {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-bottom
    .featured__content-inline-category {
    display: flex;
    align-items: center;
    max-width: calc(33.33% - 25px);
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-bottom
    .featured__content-inline-category
    .inline-category__title {
    margin-right: 20px;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-bottom
    .featured__content-inline-category
    .inline-category__title
    h4 {
    font-size: 18px;
    font-weight: bold;
    color: #506270;
    transition: 0.2s color ease-in-out;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-bottom
    .featured__content-inline-category
    .inline-category__title
    a {
    font-size: 18px;
    font-weight: 400;
    color: #ec0e00;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-bottom
    .featured__content-inline-category
    .inline-category__title:hover
    h4 {
    color: #ec0e00;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-bottom
    .featured__content-inline-category
    .inline-category__image {
    margin: 0px 18px;
    width: 122px;
    height: 82px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-bottom
    .featured__content-inline-category
    .inline-category__image
    img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-bottom
    .featured__content-inline-category
    .inline-category__item {
    position: relative;
    cursor: pointer;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-bottom
    .featured__content-inline-category
    .inline-category__item
    span {
    font-size: 18px;
    font-weight: bold;
    color: #ec0e00;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-bottom
    .featured__content-inline-category
    .inline-category__item
    h4 {
    font-size: 16px;
    font-weight: 500;
    color: #506270;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-bottom
    .featured__content-inline-category
    .inline-category__item
    b {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.4);
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-bottom
    .featured__content-inline-category
    .inline-category__item
    .price_custom {
    display: inline-flex;
    width: 120px;
    font-size: 30px;
    font-weight: bold;
    color: #506270;
    font-style: normal;
    position: absolute;
    top: 120%;
    /* transform: translateY(-50%); */
    /* left: calc(100% + 20px); */
    right: 0px;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-bottom
    .featured__content-inline-cta {
    text-align: right;
    width: calc(33.33% - 25px);
    display: inline-flex;
    justify-content: flex-end;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-bottom
    .featured__content-inline-cta
    a {
    font-size: 18px;
    font-weight: 400;
    color: #ec0e00;
    padding-right: 30px;
    position: relative;
    text-align: right;
    display: block;
    max-width: 250px;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-bottom
    .featured__content-inline-cta
    a:hover {
    color: #506270;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-bottom
    .featured__content-inline-cta
    a:hover::after {
    right: -10px;
}
.featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-bottom
    .featured__content-inline-cta
    a::after {
    content: ">";
    font-size: 30px;
    color: #ec0e00;
    font-weight: 300;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    transition: 0.2s right ease-in-out;
}

.categories {
    width: 100%;
    height: auto;
    margin: 20px 0px;
    padding-bottom: 40px;
    padding-top: 40px;
}
.categories .categories__block {
    width: 100%;
    height: auto;
    position: relative;
}
.categories .categories__block .categories__arrows .categories__arrow {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    cursor: pointer;
}
.categories
    .categories__block
    .categories__arrows
    .categories__arrow:hover
    img {
    transform: scale(1.4);
}
.categories .categories__block .categories__arrows .categories__arrow img {
    width: 50px;
    height: 50px;
    transition: 0.2s transform ease-in-out;
    filter: invert(30%) sepia(99%) saturate(7487%) hue-rotate(6deg)
        brightness(92%) contrast(110%);
}
.categories
    .categories__block
    .categories__arrows
    .categories__arrow:last-child {
    left: auto;
    right: 0px;
}
.categories .categories__block .categories__title {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    display: none;
}
.categories .categories__block .categories__title h4 {
    font-size: 22px;
    font-weight: 400;
    color: #51626c;
    background-color: #f2f3f7;
    padding-right: 20px;
    z-index: 2;
    position: relative;
    display: inline-flex;
    letter-spacing: 1px;
}
.categories .categories__block .categories__list {
    width: 100%;
    height: auto;
    padding: 25px;
    /* background-color: #f8f8f8; */
    border-radius: 8px;
    padding: 20px 0px;
}
.categories .categories__block .categories__list:last-child {
    margin-top: -20px;
    padding: 20px 0px;
}
.categories .categories__block .categories__list .categories__list-item {
    width: 25%;
    height: auto;
    display: flex;
    justify-content: center;
}
.categories
    .categories__block
    .categories__list
    .categories__list-item
    .categories__item {
    min-width: 290px;
    max-width: 270px;
    /* height: 290px; */
    border-radius: 5px;
    background-color: #fff;
    /* padding: 30px 25px; */
    cursor: pointer;
}
.categories
    .categories__block
    .categories__list
    .categories__list-item
    .categories__item:hover
    .categories__item-image
    img.ci--org {
    display: none;
    /* transform: scale(1.15); */
}
.categories
    .categories__block
    .categories__list
    .categories__list-item
    .categories__item:hover
    .categories__item-image
    img.ci--hov {
    display: inline-block;
    /* transform: scale(1.15); */
}
.categories
    .categories__block
    .categories__list
    .categories__list-item
    .categories__item:hover
    .categories__item-button
    a {
    color: #506270;
}
.categories
    .categories__block
    .categories__list
    .categories__list-item
    .categories__item
    .categories__item-title {
    width: 100%;
    height: auto;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.categories
    .categories__block
    .categories__list
    .categories__list-item
    .categories__item
    .categories__item-title
    h2 {
    font-size: 18px;
    font-weight: 400;
    color: #506270;
    padding-right: 11px;
    background-color: #fff;
    position: relative;
    z-index: 2;
    display: inline-flex;
    text-transform: uppercase;
}
.categories
    .categories__block
    .categories__list
    .categories__list-item
    .categories__item
    .categories__item-image {
    padding: 20px 0px;
    width: 100%;
    height: 260px;
}
.categories
    .categories__block
    .categories__list
    .categories__list-item
    .categories__item
    .categories__item-image
    img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: 0.5s transform ease-in-out;
    display: none;
}
.categories
    .categories__block
    .categories__list
    .categories__list-item
    .categories__item
    .categories__item-image
    img.ci--org {
    display: inline-block;
}
.categories
    .categories__block
    .categories__list
    .categories__list-item
    .categories__item
    .categories__item-button {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
}
.categories
    .categories__block
    .categories__list
    .categories__list-item
    .categories__item
    .categories__item-button
    a {
    /* font-size: 18px;
    color: #ec0e00;
    font-weight: 400; */
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    padding: 3px 7px;
    border-radius: 3px;
    background-color: #ec0e00;
    display: inline-flex;
    align-items: center;
}
.categories
    .categories__block
    .categories__list
    .categories__list-item
    .categories__item
    .categories__item-button
    a
    img {
    filter: invert(1);
    height: 15px;
}

/* MOBILE CATEGORIES */

.mcategories .mcategories__block .mcategories__list {
    width: 100%;
    height: auto;
}
.mcategories .mcategories__block .mcategories__title {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mcategories .mcategories__block .mcategories__title h4 {
    font-size: 26px;
    font-weight: 500;
}
.mcategories .mcategories__block .mcategories__list .mclist__item {
    width: 200px;
    height: auto;
    transition: 0.2s transform ease-in-out;
}
.mcategories .mcategories__block .mcategories__list .mclist__item.slick-slide {
    transform: scale(0.5);
}
.mcategories
    .mcategories__block
    .mcategories__list
    .mclist__item.slick-current {
    transform: scale(1);
}

.mcategories
    .mcategories__block
    .mcategories__list
    .mclist__item
    .categories__item {
    width: 100%;
    height: auto;
}
.mcategories
    .mcategories__block
    .mcategories__list
    .mclist__item
    .categories__item
    .categories__item-title {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    text-align: center;
}
.mcategories
    .mcategories__block
    .mcategories__list
    .mclist__item
    .categories__item
    .categories__item-title
    h2 {
    font-size: 20px;
    font-weight: 400;
    color: #4d4d4d;
}
.mcategories
    .mcategories__block
    .mcategories__list
    .mclist__item
    .categories__item
    .categories__item-image {
    width: 100%;
    height: 200px;
}

.mcategories
    .mcategories__block
    .mcategories__list
    .mclist__item
    .categories__item
    .categories__item-image
    img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.news__page .news .news__top {
    width: 100%;
    height: auto;
    padding-bottom: 30px;
}
.news__page .news .news__top h3 {
    font-size: 36px;
    color: #282828;
    font-weight: bold;
}
.news__page .news .news__block .news__items {
    flex-wrap: wrap;
}
.news__page .news .news__block .news__items .news__item {
    margin: 0px;
    margin-bottom: 20px;
}

.post {
    width: 100%;
    height: auto;
    margin-top: 30px;
}
.post .post__block {
    width: 100%;
    height: auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e9e9e9;
}
.post .post__block .post__title {
    width: 100%;
    height: auto;
    padding-bottom: 10px;
}
.post .post__block .post__title h1 {
    font-size: 28px;
    color: #282828;
    font-weight: 700;
    color: #ec0e00;
}
.post .post__block .post__thumbnail {
    width: 100%;
    height: auto;
}
.post .post__block .post__thumbnail img {
    width: 100%;
    object-fit: cover;
    border: 1px solid #d7d7d7;
}
.post .post__block .post__info {
    width: 100%;
    height: auto;
    padding: 10px 0px;
}
.post .post__block .post__info ul li {
    display: inline-flex;
    margin-right: 20px;
    align-items: center;
}
.post .post__block .post__info ul li img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.post .post__block .post__info ul li span {
    margin-left: 15px;
    font-size: 14px;
    color: #282828;
    font-weight: 400;
}
.post .post__block .post__content {
    width: 100%;
    height: auto;
    padding: 10px 0px;
}
.post .post__block .post__content p {
    font-size: 16px;
    font-weight: 500;
    color: #282828;
    padding: 10px 0px;
}
.post .post__block .post__content ul {
    padding: 10px 6px;
    padding-bottom: 13px;
    padding-left: 50px;
}
.brands {
    width: 100%;
    height: auto;
    margin-top: 30px;
}
.brands .brands__title {
    width: 100%;
    height: auto;
    padding-bottom: 10px;
}
.brands .brands__title h3 {
    font-size: 28px;
    color: #282828;
    font-weight: 700;
    color: #ec0e00;
}
.brands .brands__block {
    width: 100%;
    height: auto;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e9e9e9;
}
.brands .brands__block .brands__list {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.brands .brands__block .brands__list .brands__item {
    width: calc(25% - 30px);
    height: 100px;
    border: 1px solid #d7d7d7;
    border-radius: 3px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px;
}
.brands .brands__block .brands__list .brands__item:hover {
    border: 1px solid #ec0e00;
}
.brands .brands__block .brands__list .brands__item:hover img {
    filter: unset;
}
.brands .brands__block .brands__list .brands__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(9%) sepia(3%) saturate(10%) hue-rotate(322deg)
        brightness(94%) contrast(82%);
}

.news {
    width: 100%;
    height: auto;
    background-color: #fff;
    padding: 60px 0px;
    margin-top: 20px;
}
.news .news__block {
    width: 100%;
    height: auto;
}
.news .news__block .news__items {
    width: 100%;
    height: auto;
    /* display: flex;
    justify-content: space-between; */
    position: relative;
}
.news .news__block .news__items .news__item {
    width: calc(50% - 10px);
    /* width: 400px; */
    height: auto;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e9e9e9;
    margin: 0px 10px;
    overflow: hidden;
    display: flex;
    cursor: pointer;
}
.news .news__block .news__items .news__item:hover .news__item-content h3 {
    color: #fff;
    background-color: #ec0e00;
    padding-left: 10px;
}
.news .news__block .news__items .news__item:hover .news__item-content a {
    background-color: #ec0e00;
    color: #fff;
    border-radius: 5px;
    padding: 0px 10px;
}
.news .news__block .news__items .news__item .news__item-image {
    width: 45%;
    height: 360px;
}
.news .news__block .news__items .news__item .news__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news .news__block .news__items .news__item .news__item-content {
    width: 55%;
    height: auto;
    padding: 17px 30px;
}
.news .news__block .news__items .news__item .news__item-content span {
    padding: 7px 10px;
    border-radius: 5px;
    background-color: #ec0e00;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
}
.news .news__block .news__items .news__item .news__item-content em {
    width: 100%;
    height: auto;
    padding-top: 10px;
    font-size: 16px;
    font-weight: 200;
    color: rgb(0, 0, 0);
    font-style: normal;
    display: inline-flex;
}
.news .news__block .news__items .news__item .news__item-content h3 {
    font-size: 30px;
    font-weight: bold;
    color: #ec0e00;
    font-style: italic;
    padding: 20px 0px;
    max-height: 145px;
    transition: 0.3s all ease-in-out;
}
.news .news__block .news__items .news__item .news__item-content p {
    font-size: 18px;
    font-weight: 300;
    color: #4d4d4d;
}
.news .news__block .news__items .news__item .news__item-content a {
    display: inline-flex;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 300;
    color: #ec0e00;
    opacity: 0.8;
    transition: 0.2s all ease-in-out;
}
.news .news__block .news__items .slick-dots {
    position: absolute;
    right: 10px;
    bottom: -35px;
    display: inline-flex;
    align-items: center;
}
.news .news__block .news__items .slick-dots li {
    display: inline-flex;
    margin: 0px 3px;
}
.news .news__block .news__items .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4d4d4d;
    text-indent: -9999px;
    border: 0px;
    cursor: pointer;
}
.news .news__block .news__items .slick-dots li.slick-active button {
    width: 15px;
    height: 15px;
    background-color: #ec0e00;
}

.prices {
    width: 100%;
    height: auto;
    padding: 20px 0px;
}
.prices .prices__block {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
}
.prices .prices__block p {
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

.footer {
    width: 100%;
    height: auto;
    background-color: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer .footer__block {
    width: 100%;
    height: auto;
    padding: 40px 0px;
    display: flex;
    align-items: flex-start;
}
.footer .footer__block .footer__left {
    flex-basis: 25%;
    display: flex;
    flex-direction: column;
}
.footer .footer__block .footer__left h4 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}
.footer .footer__block .footer__left .footer__item {
    width: 100%;
    height: auto;
}
.footer .footer__block .footer__left .footer__item .footer__item-inside {
    display: inline-flex;
    flex-direction: column;
    height: auto;
    padding: 12px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 275px;
}
.footer .footer__block .footer__left .footer__item .footer__item-inside h5 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}
.footer .footer__block .footer__left .footer__item .footer__item-inside h5 b {
    color: #ec0e00;
}
.footer .footer__block .footer__left .footer__item .footer__item-inside span {
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    margin-top: 3px;
}
.footer
    .footer__block
    .footer__left
    .footer__item:last-child
    .footer__item-inside {
    border-bottom: 0px;
}
.footer .footer__block .footer__mid {
    flex-basis: 41.66%;
}
.footer .footer__block .footer__mid h4 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 26px;
}
.footer .footer__block .footer__mid ul li {
    display: inline-flex;
    /* width: 30%; */
    height: auto;
    padding: 6px 0px;
    width: 100%;
}
.footer .footer__block .footer__mid ul li a {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
}
.footer .footer__block .footer__mid ul li a:hover {
    color: #ec0e00;
}
.footer .footer__block .footer__right {
    width: 33.33%;
    height: auto;
    padding-left: 40px;
}
.footer .footer__block .footer__right h4 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 32px;
}
.footer .footer__block .footer__right p {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
}
.footer .footer__block .footer__right .footer__cards {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    padding: 15px 0px;
    flex-wrap: wrap;
}
.footer .footer__block .footer__right .footer__cards img {
    height: 50px;
    border-radius: 10px;
    margin-right: 10px;
    /* filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(110deg)
        brightness(103%) contrast(102%); */
}
.footer .footer__block .footer__right img {
    max-width: 350px;
}

.footer__social {
    width: 100%;
    height: auto;
    background-color: #000;
    padding: 20px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer__social .footer__social-block {
    /* width: 100%; */
    height: auto;
    display: flex;
    align-items: center;
}
.footer__social .fs__block {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer__social .fs__block .fs__logos {
    display: flex;
    align-items: center;
}
.footer__social .fs__block .fs__logos img {
    height: 60px;
    object-fit: contain;
    margin-left: 15px;
}
.footer__social .footer__social-block h4 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-right: 30px;
}
.footer__social .footer__social-block a {
    /* margin-right: 30px; */
}
.footer__social .footer__social-block a img {
    height: 30px;
    /* filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(110deg)
        brightness(103%) contrast(102%); */
    transition: 0.2s transform ease-in-out;
}
.footer__social .footer__social-block a:hover img {
    transform: translateY(-5px);
}
#add_newsletter .form__consent {
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: auto;
    margin-top: 15px;
}
#add_newsletter .form__consent input {
    width: 25px;
    height: 25px;
    margin-right: 20px;
}

#add_newsletter .form__consent label {
    font-size: 12px;
    font-weight: 300;
    text-transform: unset;
    text-align: left;
}
#add_newsletter .form__consent label span {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 300;
}
#add_newsletter img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 15px;
}
.footer__nav {
    width: 100%;
    height: auto;
    background-color: #000;
    padding-top: 30px;
    padding-bottom: 20px;
}
.footer__nav .footer__nav-block {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}
.footer__nav .footer__nav-block p {
    color: rgba(255, 255, 255, 0.7);
}
.footer__nav .footer__nav-block p a {
    color: #fff;
    font-weight: bold;
}
.footer__nav .footer__nav-block ul li {
    display: inline-flex;
}
.footer__nav .footer__nav-block ul li a {
    font-size: 18px;
    font-weight: 200;
    color: #fff;
    margin-right: 20px;
}
.footer__nav .footer__nav-block ul li a:hover {
    color: red;
}
.footer__nav .footer__nav-block span {
    font-size: 18px;
    font-weight: 200;
    color: #fff;
    margin-right: 20px;
}

.breadcrumb {
    width: 100%;
    height: auto;
}
.breadcrumb ul {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
}
.breadcrumb ul li {
    font-size: 15px;
    color: #282828;
    list-style: none;
    font-weight: 600;
    padding-right: 10px;
    text-transform: uppercase;
}
.breadcrumb ul li::after {
    content: "-";
    padding-left: 10px;
    font-size: 18px;
}
.breadcrumb ul li:last-child {
    color: #757575;
}
.breadcrumb ul li:last-child::after {
    content: "";
}

.shop {
    width: 100%;
    height: auto;
    background-color: #fff;
    padding-top: 30px;
    margin-top: 40px;
}
.shop .shop__top {
    width: 100%;
    height: auto;
}
.shop .shop__top .shop__title {
    padding-top: 20px;
}
.shop .shop__top .shop__title h1 {
    font-size: 36px;
    font-weight: bold;
    color: #282828;
    display: inline-block;
}
.shop .shop__top .shop__title span {
    margin-left: 5px;
    font-size: 36px;
    color: #757575;
    font-weight: 400;
    display: inline-block;
}
.shop .shop__block {
    width: 100%;
    height: auto;
    padding-top: 30px;
    display: flex;
}
.shop .shop__block .shop__sidebar {
    min-width: 255px;
    height: auto;
    margin-right: 40px;
}
.shop .shop__block .shop__sidebar .sidebar__close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: none;
}
.shop .shop__block .shop__sidebar .sidebar__close img {
    width: 30px;
}
.shop .shop__block .shop__sidebar .sidebar__special {
    width: 100%;
    height: auto;
    padding-bottom: 10px;
}
.shop .shop__block .shop__sidebar .sidebar__special .special__filter {
    display: flex;
    padding: 5px 0px;
    justify-content: space-between;
    align-items: center;
    /* Hide default HTML checkbox */
    /* The slider */
    /* Rounded sliders */
}
.shop .shop__block .shop__sidebar .sidebar__special .special__filter span {
    font-size: 16px;
    color: #757575;
}
.shop .shop__block .shop__sidebar .sidebar__special .special__filter .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__special
    .special__filter
    .switch
    input {
    opacity: 0;
    width: 0;
    height: 0;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__special
    .special__filter
    .switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__special
    .special__filter
    .switch-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__special
    .special__filter
    input:checked
    + .switch-slider {
    background-color: #ec0e00;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__special
    .special__filter
    input:focus
    + .switch-slider {
    box-shadow: 0 0 1px #ec0e00;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__special
    .special__filter
    input:checked
    + .switch-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__special
    .special__filter
    .switch-slider.round {
    border-radius: 34px;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__special
    .special__filter
    .switch-slider.round:before {
    border-radius: 50%;
}
.shop .shop__block .shop__sidebar .sidebar__collapse {
    width: 100%;
    height: auto;
    border-top: 1px solid #e9e9e9;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse.sidebar__collapse--more
    .collapse__body
    ul
    li {
    display: none;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse.sidebar__collapse--more
    .collapse__body.active
    ul
    li[data-show="yes"] {
    display: block;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse.sidebar__collapse--more
    .collapse__body.active
    ul
    li[data-show="no"] {
    display: none;
}
/* .shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse.sidebar__collapse--more
    .collapse__body.filtered
    ul
    li[data-show="yes"] {
    display: block;
} */
.shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse.sidebar__collapse--more
    .collapse__body.filtered
    ul
    li[data-show="yes"]:nth-child(-n + 5) {
    display: block;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse.sidebar__collapse--more
    .collapse__body.filtered.active
    ul
    li[data-show="yes"] {
    display: block;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse.sidebar__collapse--more
    .collapse__body.filtered
    ul
    li[data-show="no"] {
    display: none;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse.sidebar__collapse--more
    .collapse__body
    ul
    li:nth-child(-n + 5) {
    /* background-color: red; */
    display: block;
}
/* .shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse.sidebar__collapse--more
    .collapse__body.filtered
    ul
    li {
    display: none;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse.sidebar__collapse--more
    .collapse__body.filtered
    ul
    li.filtered {
    display: none;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse.sidebar__collapse--more
    .collapse__body.filtered
    ul
    li.filtered:nth-of-type(-n + 5) {
    display: block !important;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse.sidebar__collapse--more
    .collapse__body.active.filtered
    ul
    li.filtered {
    display: block;
} */

.shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse.sidebar__collapse--more
    .collapse__body
    .cb__btn
    span {
    font-size: 12px;
    color: #ec0e00;
    padding-top: 15px;
    cursor: pointer;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse.sidebar__collapse--more
    .collapse__body
    input[type="text"] {
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #d7d7d7;
    padding-left: 15px;
    outline: none;
}
.shop .shop__block .shop__sidebar .sidebar__collapse:nth-child(2) {
    border-top: 0px;
}
.shop .shop__block .shop__sidebar .sidebar__collapse .collapse__title {
    width: 100%;
    height: auto;
    padding: 15px 0px;
    position: relative;
    cursor: pointer;
}
.shop .shop__block .shop__sidebar .sidebar__collapse .collapse__title::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
}
/* .shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse.active
    > .collapse__title::after {
    content: "-";
} */
.shop .shop__block .shop__sidebar .sidebar__collapse .collapse__title h4 {
    font-weight: 700;
    text-transform: uppercase;
}
.shop .shop__block .shop__sidebar .sidebar__collapse.active .collapse__body {
    display: block;
}
.shop .shop__block .shop__sidebar .sidebar__collapse.active .collapse__title {
    border-bottom: 1px solid #e9e9e9;
}
.shop .shop__block .shop__sidebar .sidebar__collapse .collapse__body {
    padding: 20px 0px;
    display: none;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse
    .collapse__body
    .sidebar__price-input {
    width: 100%;
    height: auto;
    position: relative;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse
    .collapse__body
    .sidebar__price-input
    input {
    width: 100%;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse
    .collapse__body
    .sidebar__price {
    width: 100%;
    height: auto;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse
    .collapse__body
    .sidebar__price
    input {
    width: 40%;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    text-align: center;
    font-size: 14px;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse
    .collapse__body
    .sidebar__search {
    width: 100%;
    height: auto;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse
    .collapse__body
    .sidebar__search
    input {
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #d7d7d7;
    padding-left: 15px;
    outline: none;
}
.shop .shop__block .shop__sidebar .sidebar__collapse .collapse__body ul li {
    list-style: none;
    padding: 5px 0px;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse
    .collapse__body
    ul
    li
    input {
    margin-right: 5px;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse
    .collapse__body
    ul
    li
    label {
    font-size: 16px;
    color: #282828;
    font-weight: 500;
}
.shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse
    .collapse__body
    ul
    li
    label
    em {
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
}
.shop .shop__block .shop__content {
    width: 100%;
    height: auto;
}
.shop .shop__block .shop__content .shop__content-top {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.shop .shop__block .shop__content .shop__content-top .sc__top-left {
    display: flex;
    align-items: center;
    width: 100%;
    /* justify-content: space-between; */
}
.shop .shop__block .shop__content .shop__content-top .sc__top-left select {
    width: 250px;
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding-left: 10px;
    margin-right: 20px;
}
.shop .shop__block .shop__content .shop__content-top .sc__top-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}
.shop .shop__block .shop__content .shop__content-top .sc__top-right-inside {
    display: flex;
    align-items: center;
}
.shop
    .shop__block
    .shop__content
    .shop__content-top
    .sc__top-right
    .sc__top--left {
    height: 15px;
    object-fit: contain;
    margin-right: 15px;
    transform: rotate(180deg);
}
.shop .shop__block .shop__content .shop__content-top .sc__top-right input {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: center;
}
.shop .shop__block .shop__content .shop__content-top .sc__top-right span {
    font-size: 14px;
    color: #fff;
    display: block;
}
.shop .shop__block .shop__content .shop__content-top .sc__top-right img {
    height: 15px;
    object-fit: contain;
    cursor: pointer;
}
.shop .shop__block .shop__content .shop__list {
    width: 100%;
    height: auto;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    border-left: 1px solid #e9e9e9;
    border-top: 1px solid #e9e9e9;
}
.shop .shop__block .shop__content .shop__list .shop__item {
    width: 33.33%;
    border: 1px solid #e9e9e9;
    padding: 15px 0px;
    border-left: 0px;
    border-top: 0px;
    position: relative;
    height: 780px;
}
.shop .shop__block .shop__content .shop__list .shop__item.si--orange{
    background-color: #E8901A;
}
.shop .shop__block .shop__content .shop__list .shop__item.si--orange .shop__item-top h3{
    color:#fff;
}
.shop .shop__block .shop__content .shop__list .shop__item.si--orange .shop__item-content ul li p{
    color:#fff;
}
.shop .shop__block .shop__content .shop__list .shop__item.si--orange .shop__item-content ul li p b{
    color:#fff;
}
.shop .shop__block .shop__content .shop__list .shop__item.si--orange .shop__item-info .shop__item-extra{
    background-color: #E8901A;
    box-shadow: unset;
    border-left:1px solid #fff;
    border-bottom:1px solid #fff;
}
.shop .shop__block .shop__content .shop__list .shop__item.si--orange .shop__item-info .shop__item-extra .shop__item-extra-item img{
    filter:invert(1);
}
.shop .shop__block .shop__content .shop__list .shop__item.si--orange .shop__item-info .shop__item-extra .shop__item-extra-item p{
    color:#fff;
}
.shop .shop__block .shop__content .shop__list .shop__item.shop__item--ad {
    padding: 0px;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item.shop__item--ad
    .shop__item-ad-image {
    width: 100%;
    height: 664px;
    padding: 20px;
    padding-bottom: 0px;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item.shop__item--ad
    .shop__item-ad-image
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shop .shop__block .shop__content .shop__list .shop__item:hover {
    box-shadow: 0 -1px 10px rgba(29, 30, 32, 0.1);
}
.shop .shop__block .shop__content .shop__list .shop__item .shop__item-top {
    padding: 0px 15px;
    height: 64px;
    max-height: 64px;
}
.shop .shop__block .shop__content .shop__list .shop__item .shop__item-top h2,
.shop .shop__block .shop__content .shop__list .shop__item .shop__item-top h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 900;
    color: #282828;
    cursor: pointer;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-top
    h2:hover {
    text-decoration: underline;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-top
    .shop__item-top-review {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-top
    .shop__item-top-review
    .review__stars {
    display: flex;
    align-items: center;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-top
    .shop__item-top-review
    .review__stars
    ul {
    display: inline-flex;
    align-items: center;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-top
    .shop__item-top-review
    .review__stars
    ul
    li {
    margin-right: 2px;
    list-style: none;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-top
    .shop__item-top-review
    .review__stars
    ul
    li
    img {
    height: 15px;
    filter: invert(98%) sepia(0%) saturate(0%) hue-rotate(139deg)
        brightness(94%) contrast(84%);
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-top
    .shop__item-top-review
    .review__stars
    ul
    li.red
    img {
    filter: invert(12%) sepia(97%) saturate(4469%) hue-rotate(0deg)
        brightness(102%) contrast(107%);
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-top
    .shop__item-top-review
    .review__stars
    span {
    font-size: 12px;
    font-weight: 400;
    color: #ec0e00;
    margin-left: 5px;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-top
    .shop__item-top-review
    .review__code
    p {
    font-size: 12px;
    font-weight: 300;
    color: #757575;
}
.shop .shop__block .shop__content .shop__list .shop__item .shop__item__extra {
    position: absolute;
    top: 60px;
    right: 10px;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item__extra
    ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item__extra
    ul
    li {
    list-style: none;
    margin-bottom: 10px;
}

.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item__extra
    ul
    li.extra__manual {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #ec0e00;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item__extra
    ul
    li
    img {
    width: 55px;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-actions
    .si__action {
    font-weight: bold !important;
}
.shop .shop__block .shop__content .shop__list .shop__item .shop__item-actions {
    width: 100%;
    height: auto;

    padding: 0px 15px;
    padding-top: 15px;
    position: absolute;
    top: 62px;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-actions
    .si__action {
    display: inline-flex;
    padding: 5px 10px;
    border: 1px solid #e9e9e9;
    font-size: 14px;
    font-weight: 400;
    color: #282828;
    position: relative;
    cursor: pointer;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-actions
    .si__action.blackfriday {
    display: inline-flex;
    padding: 5px 10px;
    border: 1px solid #282828;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    position: relative;
    cursor: pointer;
    background-color: #282828;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-actions
    .si__action.blackfriday
    .si__action-box
    .si__action-box-inside
    h4 {
    font-size: 22px;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-actions
    .si__action.blackfriday
    .si__action-box
    .si__action-box-inside
    p {
    font-size: 20px;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-actions
    .si__action
    b {
    color: #ec0e00;
    margin-left: 3px;
    font-weight: 700;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-actions
    .si__action:hover {
    border: 1px solid #282828;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-actions
    .si__action:hover
    .si__action-box {
    display: block;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-actions
    .si__action
    .si__action-box {
    width: 300px;
    height: auto;
    position: absolute;
    top: 20px;
    left: 0px;
    padding-top: 25px;
    display: none;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-actions
    .si__action
    .si__action-box::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 18px;
    left: 20px;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    background-color: #fff;
    box-shadow: -2px -2px 2px 0px #e9e9e9;
    z-index: 3;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-actions
    .si__action
    .si__action-box
    .si__action-box-inside {
    width: 100%;
    height: auto;
    border: 1px solid #e9e9e9;
    box-shadow: 0px 1px 3px #e9e9e9;
    padding: 30px;
    background-color: #fff;
    position: relative;
    z-index: 2;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-actions
    .si__action
    .si__action-box
    .si__action-box-inside
    h4 {
    font-size: 16px;
    font-weight: 700;
    color: #282828;
    padding-bottom: 15px;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-actions
    .si__action
    .si__action-box
    .si__action-box-inside
    p {
    font-size: 14px;
    color: #757575;
    font-weight: 400;
}
.shop .shop__block .shop__content .shop__list .shop__item .shop__item-image {
    width: 100%;
    height: 300px;
    padding: 20px 15px;
    display: flex;
    justify-content: center;
    padding-top: 33px;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-image
    img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.shop .shop__block .shop__content .shop__list .shop__item .shop__item-content {
    width: 100%;
    height: 110px;
    padding: 0px 15px;
    overflow-y: auto;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-content
    ul
    li {
    list-style: none;
    padding: 5px 0px;
    padding-left: 15px;
    position: relative;
}

.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-content
    ul
    li:after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #ec0d00;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-content
    ul
    li
    p {
    font-size: 14px;
    color: #757575;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-content
    ul
    li
    p
    b {
    color: #282828;
}
.shop .shop__block .shop__content .shop__list .shop__item .shop__item-info {
    width: 100%;
    height: auto;
    margin-top: 30px;
    border-top: 1px solid #e9e9e9;
    display: flex;
    min-height: 145px;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-info
    .shop__item-price {
    width: 54%;
    height: auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-info
    .shop__item-price
    .old {
    max-width: 70px;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-info
    .shop__item-price
    .cprice {
    font-size: 30px;
    color: red;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-info
    .shop__item-price
    .cprice.cprice--normal {
    color: #000;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-info
    .shop__item-price
    .cprice.cprice--old {
    color: #000;
    margin-top: 10px;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-info
    .shop__item-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-info
    .shop__item-price
    .si__price-text {
    width: 100%;
    height: auto;
    padding-top: 10px;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-info
    .shop__item-price
    .si__price-text
    p {
    font-size: 16px;
    color: #ec0e00;
    font-weight: 600;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-info
    .shop__item-extra {
    width: 46%;
    cursor: pointer;
    background: #f6f6f9;
    box-shadow: inset 4px -4px 4px #ddd;
    padding: 15px;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-info
    .shop__item-extra
    .shop__item-extra-item {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-info
    .shop__item-extra
    .shop__item-extra-item
    img {
    height: 40px;
    object-fit: contain;
    margin-right: 7px;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-info
    .shop__item-extra
    .shop__item-extra-item
    p {
    font-size: 14px;
    color: #757575;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-info
    .shop__item-extra
    .shop__item-extra-brand {
    width: 100%;
    height: auto;
    margin-top: 20px;
    height: 50px;
    max-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-info
    .shop__item-extra
    .shop__item-extra-brand
    img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.shop .shop__block .shop__content .shop__list .shop__item .shop__item-buttons {
    width: 100%;
    height: auto;
    padding: 25px 15px;
    text-align: center;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-buttons
    .button-main {
    width: 100%;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 2px;
    background-color: #ec0e00;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding-top: 0px;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-buttons
    .button-main:hover {
    background-color: #282828;
    color: #fff;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-buttons
    a {
    color: #ec0e00;
    display: inline-flex;
    padding-top: 15px;
    align-items: center;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-buttons
    a:hover:last-child {
    color: #fff;
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-buttons
    a:hover:last-child
    img {
    filter: invert(13%) sepia(5%) saturate(21%) hue-rotate(13deg)
        brightness(94%) contrast(92%);
}
.shop
    .shop__block
    .shop__content
    .shop__list
    .shop__item
    .shop__item-buttons
    a
    img {
    height: 15px;
    margin-right: 10px;
    filter: invert(12%) sepia(97%) saturate(4469%) hue-rotate(0deg)
        brightness(102%) contrast(107%);
}

.product {
    width: 100%;
    height: auto;
    background-color: #fff;
    padding-top: 45px;
}
.product .product__top {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 99 !important;
}
.product .product__top .breadcrumb {
    width: 100%;
    height: auto;
}
.product .product__top .breadcrumb ul {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
}
.product .product__top .breadcrumb ul li {
    font-size: 14px;
    color: #282828;
    list-style: none;
    font-weight: 600;
    padding-right: 10px;
}
.product .product__top .breadcrumb ul li::after {
    content: "-";
    padding-left: 10px;
    font-size: 18px;
}
.product .product__top .breadcrumb ul li:last-child {
    color: #757575;
}
.product .product__top .breadcrumb ul li:last-child::after {
    content: "";
}
.product .product__block {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}
.product .product__block .product__content {
    width: calc(100% - 420px);
    height: auto;
    padding-right: 50px;
}
.product .product__block .product__content img {
    max-width: 100%;
}
.product .product__block .product__content .product__top {
    width: 100%;
    height: auto;
}
.product .product__block .product__content .product__top h1 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 900;
    color: #282828;
    cursor: pointer;
}
.product .product__block .product__content .product__top .product__title h2 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: #282828;
    cursor: pointer;
    text-transform: uppercase;
}
.product__short .product__title span {
    font-size: 9px;
}
.product__short .product__title h2 {
    font-size: 9px;
    display: inline-flex;
    margin-bottom: 7px;
}
.product__short .product__title h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: #282828;
    cursor: pointer;
    text-transform: uppercase;
}
.product .product__block .product__content .product__top h1:hover {
    text-decoration: underline;
}
.product .product__block .product__content .product__top .product__top-review {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
}
.product
    .product__block
    .product__content
    .product__top
    .product__top-review
    .review__stars {
    display: flex;
    align-items: center;
}
.product
    .product__block
    .product__content
    .product__top
    .product__top-review
    .review__stars
    ul {
    display: inline-flex;
    align-items: center;
}
.product
    .product__block
    .product__content
    .product__top
    .product__top-review
    .review__stars
    ul
    li {
    margin-right: 2px;
    list-style: none;
}
.product
    .product__block
    .product__content
    .product__top
    .product__top-review
    .review__stars
    ul
    li
    img {
    height: 15px;
    filter: invert(98%) sepia(0%) saturate(0%) hue-rotate(139deg)
        brightness(94%) contrast(84%);
}
.product
    .product__block
    .product__content
    .product__top
    .product__top-review
    .review__stars
    ul
    li.red
    img {
    filter: invert(12%) sepia(97%) saturate(4469%) hue-rotate(0deg)
        brightness(102%) contrast(107%);
}
.product
    .product__block
    .product__content
    .product__top
    .product__top-review
    .review__stars
    span {
    font-size: 12px;
    font-weight: 400;
    color: #ec0e00;
    margin-left: 5px;
}
.product
    .product__block
    .product__content
    .product__top
    .product__top-review
    .review__code {
    margin-left: 100px;
}
.product
    .product__block
    .product__content
    .product__top
    .product__top-review
    .review__code
    p {
    font-size: 12px;
    font-weight: 300;
    color: #757575;
}

.product .product__block .product__short .product__top {
    width: 100%;
    height: auto;
    padding: 20px;
}
.product .product__block .product__short .product__top h1 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 900;
    color: #282828;
    cursor: pointer;
}
.product .product__block .product__short .product__top .product__title h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: #282828;
    cursor: pointer;
    text-transform: uppercase;
}
.product .product__block .product__short .product__top h5 {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 300;
}
.product .product__block .product__short .product__top h1:hover {
    text-decoration: underline;
}
.product .product__block .product__short .product__top .product__top-review {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
}
.product
    .product__block
    .product__short
    .product__top
    .product__top-review
    .review__stars {
    display: flex;
    align-items: center;
}
.product
    .product__block
    .product__short
    .product__top
    .product__top-review
    .review__stars
    ul {
    display: inline-flex;
    align-items: center;
}
.product
    .product__block
    .product__short
    .product__top
    .product__top-review
    .review__stars
    ul
    li {
    margin-right: 2px;
    list-style: none;
}
.product
    .product__block
    .product__short
    .product__top
    .product__top-review
    .review__stars
    ul
    li
    img {
    height: 15px;
    filter: invert(98%) sepia(0%) saturate(0%) hue-rotate(139deg)
        brightness(94%) contrast(84%);
}
.product
    .product__block
    .product__short
    .product__top
    .product__top-review
    .review__stars
    ul
    li.red
    img {
    filter: invert(12%) sepia(97%) saturate(4469%) hue-rotate(0deg)
        brightness(102%) contrast(107%);
}
.product
    .product__block
    .product__short
    .product__top
    .product__top-review
    .review__stars
    span {
    font-size: 12px;
    font-weight: 400;
    color: #ec0e00;
    margin-left: 5px;
}
.product
    .product__block
    .product__short
    .product__top
    .product__top-review
    .review__code {
    margin-left: 100px;
}
.product
    .product__block
    .product__short
    .product__top
    .product__top-review
    .review__code
    p {
    font-size: 12px;
    font-weight: 300;
    color: #757575;
}

.product .product__block .product__content .product__info {
    width: 100%;
    height: auto;
    display: flex;
    /* padding-top: 15px; */
    order: 1;
}
.product .product__block .product__content .product__info .product__images {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 15px;
    display: block;
}
.product
    .product__block
    .product__content
    .product__info
    .product__images
    .product__main-image {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product
    .product__block
    .product__content
    .product__info
    .product__images
    .product__main-image
    .product__main-image-block {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product
    .product__block
    .product__content
    .product__info
    .product__images
    .product__main-image
    .product__main-image-block
    img {
    max-width: 100%;
    max-height: 100%;
    margin: 0px;
    object-fit: contain;
    left: 50%;
    top: 0px;
    /* transform: translateX(-50%); */
}
.product
    .product__block
    .product__content
    .product__info
    .product__images
    .product__images-list {
    width: 100%;
    height: auto;
    /* display: flex; */
    display: block;

    padding: 0px 50px;
    padding-right: 51px;
}
.product
    .product__block
    .product__content
    .product__info
    .product__images
    .p-cont {
    max-width: 100vw;
    width: 100%;
    overflow: hidden;
    display: block;
}
/* .product
    .product__block
    .product__content
    .product__info
    .product__images
    .product__images-list
    .slick-list {
    display: flex !important;
    justify-content: center !important;
} */
.product
    .product__block
    .product__content
    .product__info
    .product__images
    .product__images-list
    .slick-track {
    /* display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: 100% !important; */
}
.product
    .product__block
    .product__content
    .product__info
    .product__images
    .product__images-list
    .product__images-image {
    /* width: 25%; */
    /* width: 120px !important; */
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}
.product
    .product__block
    .product__content
    .product__info
    .product__images
    .product__images-list
    .product__images-image
    img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product
    .product__block
    .product__content
    .product__info
    .product__images
    .product__images-arrows {
    width: 100%;
    height: auto;
}
.product
    .product__block
    .product__content
    .product__info
    .product__images
    .product__images-arrows
    img {
    position: absolute;
    left: 0px;
    bottom: 30px;
    height: 40px;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
}
.product
    .product__block
    .product__content
    .product__info
    .product__images
    .product__images-arrows
    img:hover {
    background-color: #e9e9e9;
}
.product
    .product__block
    .product__content
    .product__info
    .product__images
    .product__images-arrows
    img.arrow-right {
    left: auto;
    right: 0px;
    transform: rotate(180deg);
}
.product .product__block .product__content .product__info .product__about {
    width: 35%;
    height: auto;
    padding: 0px 25px;
    padding-top: 50px;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    box-shadow: 0 -1px 10px rgb(29 30 32 / 10%);
    border: 1px solid #e9e9e9;
    display: none;
}
.product
    .product__block
    .product__content
    .product__info
    .product__about
    .pa__list {
    width: 100%;
    height: auto;
    padding-top: 50px;
    /* max-width: 350px; */
}
.product
    .product__block
    .product__content
    .product__info
    .product__about
    .pa__list
    li {
    width: 100%;
    height: auto;
    padding: 10px 0px;
    list-style: none;
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid #e9e9e9;
}
.product
    .product__block
    .product__content
    .product__info
    .product__about
    .pa__list
    li
    p {
    font-size: 16px;
    color: #757575;
    width: 220px;
}
.product
    .product__block
    .product__content
    .product__info
    .product__about
    .pa__list
    li
    b {
    color: #282828;
}
.product .product__block .product__description {
    width: calc(100% - 460px);
    height: auto;
    /* padding-top: 50px; */
    border: 1px solid #e9e9e9;
    padding: 0px 0px;
    /* margin-top: 50px; */
    padding-bottom: 30px;
    margin-bottom: 20px;
    order: 3;
    /* margin-top: -130px; */
}
.product .product__block .product__description img {
    max-width: 100%;
    margin: 10px 0px;
}
.product .product__block .product__description h4 {
    font-size: 18px;
    color: #282828;
}
.product .product__block .product__description h3 {
    font-size: 26px;
    font-weight: bold;
    color: #282828;
    margin-top: 50px;
}
.product .product__block .product__description p {
    font-size: 14px;
    padding: 10px 0px;
    font-weight: 400;
}
.product .product__block .product__description .pt-2 p {
    width: 165px;
    min-width: 165px;
    max-width: 50%;
}
.product .product__block .product__description ul {
    padding: 15px 0px;
}
.product .product__block .product__description ul li {
    padding: 3px 0px;
    /* list-style: none; */
    position: relative;
    margin-left: 15px;
}
.product .product__block .product__description .pt-2 ul li {
    padding: 0px;
    list-style: none;
    position: relative;
    /* border: 1px solid rgba(0, 0, 0, 0.1); */
    border: 1px solid #c9c9c9;
    border-bottom: 0px;
    min-height: 40px;
    height: auto;
    padding: 2px 0px;
}
.product .product__block .pt-2 ul li:last-child {
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
    border-bottom: 1px solid #c9c9c9;
}

.product .product__block .product__content ul li a {
    color: #ec0e00;
}
.product .product__block .pd__tabs {
    width: 100%;
    height: auto;
    display: flex;
    border-bottom: 1px solid #e9e9e9;
}
.product .product__block .pd__tab.pt-2 ul li {
    display: flex;
    align-items: center;
}
.product .product__block .pd__tab.pt-2 ul li:nth-child(odd) {
    background-color: #d8d8d8;
}
.product .product__block .pd__tab.pt-2 ul li p {
    padding: 3px 10px;
    min-height: 40px;
    background-color: #e6e6e6;
    display: inline-flex;
    align-items: center;
    border-right: 1px solid #c9c9c9;
}
.product .product__block .pd__tab.pt-2 ul li b {
    margin-left: 10px;
}
.product .product__block .pd__tabs .pd__item {
    height: 50px;
    padding: 0px 20px;
    border-right: 1px solid #e9e9e9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #4d4d4d;
    font-weight: 500;
    cursor: pointer;
}
.product .product__block .pd__tabs .pd__item.active {
    background-color: #ec0e00;
    color: #fff;
    font-weight: 600;
}
.product .product__block .pd__tab {
    padding: 30px;
    display: none;
}
.product .product__block .pd__tab.active-tab {
    display: block;
}
.product .product__block .product__short {
    min-width: 420px;
    width: 420px;
    position: sticky;
    top: 20px;
    position: -webkit-sticky;
    height: auto;
    box-shadow: 0 -1px 10px rgba(29, 30, 32, 0.1);
    border: 1px solid #e9e9e9;
    order: 2;
    padding-bottom: 20px;
    background-color: #fff;
}

.cool__price {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}
.cool__price.cp--padding {
    padding-top: 20px;
}
.cool__price .cp__op {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cool__price .cp__op .cp__op-discount {
    height: 40px;
    padding: 0px 10px;
    border-radius: 5px;
    background-color: #ec0e00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    font-family: "Source Sans Pro", sans-serif;
}

.cool__price.cp--small .cp__op .cp__op-discount {
    height: 25px;
    padding: 0px 5px;
    font-size: 16px;
    margin-right: 5px;
}
.cool__price .cp__op .cp__op-span {
    margin: 0px 7px;
    display: inline-flex;
    width: 45px;
}
.cool__price.cp--small .cp__op .cp__op-span {
    display: none;
}
.cool__price .cp__op .cp__op-span span {
    font-size: 16px;
    color: #000;
    font-style: italic;
    font-family: "Source Sans Pro", sans-serif;
}
.cool__price.cp--small .cp__op .cp__op-span span {
    font-size: 14px;
}

.cool__price .cp__extraop {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.cool__price .cp__extraop .cp__op-span {
    margin: 0px 7px;
    display: inline-flex;
    width: 45px;
}
.cool__price.cp--small .cp__extraop .cp__op-span {
    display: none;
}
.cool__price .cp__extraop .cp__op-span span {
    font-size: 16px;
    color: #000;
    font-style: italic;
    font-family: "Source Sans Pro", sans-serif;
}
.cool__price.cp--small .cp__extraop .cp__op-span span {
    font-size: 14px;
}

.cool__price.cp--small .cp__op .cp__op-price {
    font-size: 20px;
}
.cool__price .cp__op .cp__op-price {
    font-size: 28px;
    font-weight: 400;
    color: #000;
    position: relative;
    font-family: "Source Sans Pro", sans-serif;
}
.cool__price .cp__op .cp__op-price::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #ec0e00;
    transform: rotate(25deg);
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%) rotate(-15deg);
}

.cool__price.cp--small .cp__extraop .cp__op-price {
    font-size: 20px;
    margin-top: 20px;
}
.cool__price .cp__extraop .cp__op-price {
    font-size: 28px;
    font-weight: 400;
    color: #000;
    position: relative;
    font-family: "Source Sans Pro", sans-serif;
}
.cool__price .cp__extraop .cp__op-price::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #ec0e00;
    transform: rotate(25deg);
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%) rotate(-15deg);
}

.cool__price .cp__nc {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    font-size: 18px;
    font-weight: 300;
    color: #000;
}
.cool__price .cp__np {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    font-family: "Triumvirate", sans-serif;
    text-shadow: transparent 0px 0px 1em, rgb(255 255 255) 0px -0.04em 0px,
        rgb(255 255 255) 0.04em 0px 0px, rgb(255 255 255) 0px 0.04em 0px,
        rgb(255 255 255) -0.034em -0.024em 0px,
        rgb(255 255 255) -0.03em -0.04em 0px,
        rgb(255 255 255) -0.01em -0.04em 0px,
        rgb(255 255 255) 0.052em -0.04em 0px,
        rgb(255 255 255) 0.04em -0.04em 0px, rgb(255 255 255) 0.02em -0.04em 0px,
        rgb(255 255 255) 0.047em -0.025em 0px,
        rgb(255 255 255) -0.045em 0.016em 0px,
        rgb(255 255 255) -0.039em 0.038em 0px,
        rgb(255 255 255) -0.052em 0.04em 0px,
        rgb(255 255 255) -0.042em 0.04em 0px,
        rgb(255 255 255) 0.031em 0.028em 0px,
        rgb(255 255 255) 0.029em 0.04em 0px, rgb(0 0 0 / 20%) 0.05em 0px 0.05em,
        rgb(0 0 0 / 20%) 0px 0.05em 0.05em,
        rgb(0 0 0 / 20%) 0.05em 0.05em 0.05em;
    letter-spacing: 2px;
    color: #000;
    font-size: 40px;
}

.cool__price.cp--small .cp__np {
    font-size: 22px;
    padding-top: 3px;
}
.cool__price .cp_gt {
    width: 100%;
    height: auto;
    padding-top: 10px;
    font-size: 14px;
    color: #000;
    font-weight: 400;
    display: flex;
    justify-content: center;
    text-align: center;
}
.product .product__block .product__short .product__short-top {
    width: 100%;
    height: auto;
    display: flex;
    border-bottom: 1px solid #e9e9e9;
    flex-wrap: wrap;
}
.product
    .product__block
    .product__short
    .product__short-top
    .product__short-price {
    width: 100%;
    height: auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    border-top: 1px solid #e9e9e9;
}
.product
    .product__block
    .product__short
    .product__short-top
    .product__short-price
    .price
    .price__number {
    margin-right: 0px !important;
}
.product
    .product__block
    .product__short
    .product__short-top
    .product__short-price
    .old {
    max-width: 70px;
}
.product
    .product__block
    .product__short
    .product__short-top
    .product__short-price
    .si__price-text {
    width: 100%;
    height: auto;
    padding-top: 10px;
}
.product
    .product__block
    .product__short
    .product__short-top
    .product__short-price
    .si__price-text
    p {
    font-size: 16px;
    color: #ec0e00;
    font-weight: 600;
}
.product
    .product__block
    .product__short
    .product__short-top
    .product__short-shortly {
    width: 100%;
    cursor: pointer;
    border-top: 1px solid #e9e9e9;
    padding: 15px;
}
.product
    .product__block
    .product__short
    .product__short-top
    .product__short-shortly
    .shortly__item {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.product
    .product__block
    .product__short
    .product__short-top
    .product__short-shortly
    .shortly__item
    img {
    height: 60px;
    object-fit: contain;
    margin-right: 7px;
}
.product
    .product__block
    .product__short
    .product__short-top
    .product__short-shortly
    .shortly__item
    p {
    font-size: 14px;
    color: #757575;
}
.product
    .product__block
    .product__short
    .product__short-top
    .product__short-shortly
    .shortly__brand {
    width: 100%;
    height: auto;
    /* margin-top: 20px; */
    display: flex;
    justify-content: center;
}
.product
    .product__block
    .product__short
    .product__short-top
    .product__short-shortly
    .shortly__brand
    img {
    max-width: 100%;
    max-height: 40px;
}
.product__short-extra {
    width: 100%;
    height: auto;
    /* padding: 0px 20px; */
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 99;
}
.product__short-extra ul {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.product__short-extra ul li {
    display: inline-flex;
    align-items: center;
    list-style: none;
    margin: 0px 5px;
}
.product__short-extra ul li img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.product .product__block .product__short .product__short-description {
    width: 100%;
    height: auto;
    padding: 20px;
}
.product .product__block .product__short .product__short-description h4 {
    font-size: 16px;
    color: #282828;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid #e9e9e9;
    padding: 8px 0px;
    position: relative;
}
.product .product__block .product__short .product__short-description h4 img {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.product .product__block .product__short .product__short-description ul {
    max-height: 100px;
    overflow-y: auto;
}
.product .product__block .product__short .product__short-description ul li {
    width: 100%;
    height: auto;
    padding: 8px 0px;
    border-bottom: 1px solid #e9e9e9;
    list-style: none;
    display: flex;
    align-items: center;
}
.product .product__block .product__short .product__short-description ul li p {
    min-width: 130px;
    font-size: 13px;
    width: 130px;
    display: inline-flex;
}
.product .product__block .product__short .product__short-description ul li b {
    font-size: 13px;
}
.product .product__block .product__short .product__short-buttons {
    width: 100%;
    height: auto;
    padding: 0px 15px;
    padding-top: 15px;
    text-align: center;
}

.product
    .product__block
    .product__short
    .product__short-buttons
    .shortly__item {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.product
    .product__block
    .product__short
    .product__short-buttons
    .shortly__item
    img {
    height: 40px;
    object-fit: contain;
    margin-right: 7px;
}
.product .product__block .product__short .product__short-buttons .main-button {
    width: 100%;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 2px;
    background-color: #ec0e00;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding-top: 0px;
}
.product
    .product__block
    .product__short
    .product__short-buttons
    .main-button:hover {
    background-color: #282828;
}
.product .product__block .product__short .product__short-buttons a {
    font-size: 16px;
    color: #ec0e00;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
}
.product
    .product__block
    .product__short
    .product__short-buttons
    a.dodaj__wishlist {
    width: 100%;
    justify-content: center;
}
.product
    .product__block
    .product__short
    .product__short-buttons
    a:hover:last-child {
    color: #fff;
}
.wishlist-add {
    width: 100%;
    height: auto;
    padding: 7px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.wishlist-add span {
    font-size: 16px;
    font-weight: 500;
    color: #ec0e00;
}
.wishlist-add img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: invert(11%) sepia(100%) saturate(6777%) hue-rotate(10deg)
        brightness(97%) contrast(103%);
    margin-right: 5px;
}
.wishlist-add:hover > span {
    color: #000;
}
.wishlist-add:hover > img {
    filter: invert(0%) sepia(94%) saturate(7456%) hue-rotate(216deg)
        brightness(76%) contrast(93%);
}
.product
    .product__block
    .product__short
    .product__short-buttons
    a:hover:last-child
    img {
    filter: invert(13%) sepia(5%) saturate(21%) hue-rotate(13deg)
        brightness(94%) contrast(92%);
}
.product .product__block .product__short .product__short-buttons a img {
    margin-right: 10px;
    height: 15px;
    filter: invert(12%) sepia(97%) saturate(4469%) hue-rotate(0deg)
        brightness(102%) contrast(107%);
}

.newcats {
    width: 100%;
    height: auto;
    position: absolute;
    /* top: 200px; */
    top:169px;
    left: 0px;
    background-color: #fff;
    /* padding: 30px 0px; */
    z-index: 9999;
    padding-top: 0px;
    display: none;
}

.newcats .newcats__close {
    display: none;
}
.newcats.active {
    display: block;
}
.newcats .newcats__top {
    width: 100%;
    height: auto;
    /* box-shadow: 0 -1px 10px rgb(29 30 32 / 10%);
    border-bottom: 1px solid #e9e9e9; */
}
.newcats .newcats__top ul {
    display: flex;
    flex-wrap: wrap;
}
.newcats .newcats__top ul li {
    display: inline-flex;
    width: 12.5%;
    height: 45px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -1px 10px rgb(29 30 32 / 10%);
    border: 1px solid #e9e9e9;
    border-top: 0px;
    cursor: pointer;
    /* border-bottom: 0px; */
}
.newcats .newcats__top ul li img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.newcats .newcats__top ul li.active {
    background-color: #000;
}
.newcats .newcats__top ul li.active h4 {
    color: #fff;
}
.newcats .newcats__top ul li.active img {
    /* filter: grayscale(1) invert(1); */
}
.newcats .newcats__top ul li h4 {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    margin-left: 10px;
}

.newcats .newcats__block {
    width: 100%;
    height: auto;
}
.newcats .newcats__content {
    width: 100%;
    height: auto;
    border: 1px solid #e9e9e9;
    box-shadow: 0 -1px 10px rgb(29 30 32 / 10%);
    border-top: 0px;
    display: flex;
    /* flex-wrap: wrap; */
    display: none;
}
.newcats .newcats__content .newcats__list {
    width: 100%;
    height: auto;
    padding-right: 15px;
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
}
.newcats .newcats__content .newcats__images {
    display: flex;
    align-items: flex-start;
    background-color: #ededed;
    padding: 15px;
}
.newcats .newcats__content .newcats__images .newcats__image {
    width: 300px;
    /* width:16.66%; */
    height: 400px;
    margin: 0px 10px;
    position: relative;
}
.newcats .newcats__content.nc-9999 .newcats__images .newcats__image{
    width: 16.66%;
}
.newcats .newcats__content .newcats__images .newcats__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.newcats
    .newcats__content
    .newcats__images
    .newcats__image
    .newcats__image-content {
    width: 100%;
    height: auto;
    padding: 15px 10px;
    background-color: rgba(0, 0, 0, 0.75);
    position: absolute;

    left: 0px;
    bottom: 0px;
}
.newcats
    .newcats__content
    .newcats__images
    .newcats__image
    .newcats__image-content
    h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
}
.newcats
    .newcats__content
    .newcats__images
    .newcats__image
    .newcats__image-content
    h5 {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}
.newcats .newcats__content.active {
    display: flex;
}
.newcats .newcats__content .newcats__item {
    width: calc(20% - 20px);
    margin: 10px;
}

.newcats .newcats__content .newcats__item .newcats__item-title {
    width: 100%;
    height: auto;
    margin-bottom: 5px;
    height: 47px;
}
.newcats .newcats__content .newcats__item .newcats__item-title a {
    font-size: 20px;
    color: #000;
    font-weight: 600;
}

.newcats .newcats__content .newcats__item .newcats__item-list {
    width: 100%;
    height: auto;
    padding-left: 5px;
}
.newcats .newcats__content .newcats__item .newcats__item-list ul li {
    display: inline-flex;
    width: 100%;
    height: auto;
    padding: 2px 0px;
}
.newcats .newcats__content .newcats__item .newcats__item-list ul li a {
    font-size: 15px;
    font-weight: 300;
    color: #000;
}

.acats {
    width: 100%;
    height: auto;
    position: absolute;
    top: 200px;
    background-color: #fff;
    padding: 50px 0px;
    z-index: 9999;
    display: none;
}
.acats.active {
    display: block;
}

.acats .acats__block {
    width: 100%;
    height: auto;
}
.acats .acats__block .acats__title {
    width: 100%;
    height: auto;
    padding-left: 10px;
}
.acats .acats__block .acats__title h3 {
    font-size: 30px;
    color: #000;
    padding-bottom: 20px;
}
.acats .acats__block .acats__items {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}
.acats .acats__block .acats__items .acats__item {
    width: calc(25% - 20px);
    margin: 10px;
    height: auto;
}

.acats .acats__block .acats__items .acats__item .acats__item-top {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    padding-left: 50px;
    position: relative;
    margin-bottom: 10px;
}
.acats .acats__block .acats__items .acats__item .acats__item-top img {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.acats .acats__block .acats__items .acats__item .acats__item-top h4 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
}
.acats .acats__block .acats__items .acats__item .acats__item-end {
    width: 100%;
    height: auto;
    padding-top: 5px;
    padding-left: 50px;
}
.acats .acats__block .acats__items .acats__item .acats__item-end span {
    font-size: 16px;
    color: #ec0e00;
    font-weight: 400;
    cursor: pointer;
}
.acats .acats__block .acats__items .acats__item .acats__item-end span:hover {
    color: #000;
}
.acats .acats__block .acats__items .acats__item .acats__item-list {
    width: 100%;
    height: auto;
    padding-left: 50px;
}
.acats
    .acats__block
    .acats__items
    .acats__item
    .acats__item-list
    ul
    li:nth-child(1),
.acats
    .acats__block
    .acats__items
    .acats__item
    .acats__item-list
    ul
    li:nth-child(2),
.acats
    .acats__block
    .acats__items
    .acats__item
    .acats__item-list
    ul
    li:nth-child(3),
.acats
    .acats__block
    .acats__items
    .acats__item
    .acats__item-list
    ul
    li:nth-child(4) {
    display: inline-flex;
}
.acats .acats__block .acats__items .acats__item.active .acats__item-list ul li {
    display: inline-flex;
}
.acats .acats__block .acats__items .acats__item .acats__item-list ul li {
    display: none;
    width: 100%;
    height: auto;
    padding: 3px 0px;
    flex-wrap: wrap;
}
.acats .acats__block .acats__items .acats__item .acats__item-list ul li a {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    display: inline-flex;
    width: 100%;
    height: auto;
}

.acats
    .acats__block
    .acats__items
    .acats__item
    .acats__item-list
    ul
    li
    .ai__dropdown
    a:hover {
    color: #ec0e00;
}
.acats
    .acats__block
    .acats__items
    .acats__item
    .acats__item-list
    ul
    li
    .ai__dropdown {
    width: 100%;
    height: auto;
    height: auto;
    max-height: 0px;
    transition: all 0.3s;
    overflow: hidden;
    padding-left: 20px;
    padding-top: 5px;
}
.acats
    .acats__block
    .acats__items
    .acats__item
    .acats__item-list
    ul
    li
    a:first-child {
    position: relative;
    padding-left: 20px;
}
.acats
    .acats__block
    .acats__items
    .acats__item
    .acats__item-list
    ul
    li
    a:first-child::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    background-image: url("../img/arrow-down.svg");
    width: 15px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
}
.acats
    .acats__block
    .acats__items
    .acats__item
    .acats__item-list
    ul
    li
    .ai__dropdown.active {
    max-height: 500px;
}
.acats
    .acats__block
    .acats__items
    .acats__item
    .acats__item-list
    ul
    li
    .ai__dropdown
    a {
    display: inline-flex;
    width: 100%;
    height: auto;
    padding: 4px 0px;
}

.all__categories {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    overflow-y: auto;
    padding: 30px;
    padding-top: 0px;
    background-color: #fff;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    display: none;
}
.all__categories .al__box {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}
.all__categories .al__box .al__title {
    width: 100%;
    height: auto;
    position: sticky;
    top: 0px;
    left: 0px;
    background-color: #fff;
    padding-top: 30px;
    padding-bottom: 15px;
    z-index: 99;
}
.all__categories .al__box .al__title h3 {
    font-size: 32px;
    font-weight: 600;
    color: #282828;
}
.all__categories .al__box .al__title span {
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
    font-weight: bold;
    font-size: 32px;
    position: absolute;
    top: 10px;
    right: 0px;
    width: 50px;
    height: 50px;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.all__categories .al__box .al__title span:hover {
    background-color: #ec0e00;
}
.all__categories .al__box .al__list {
    width: 100%;
    height: auto;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    /* border-top: 1px solid #a5aeb7; */
}
.all__categories .al__box .al__list .al__items {
    width: calc(25% - 20px);
    margin-bottom: 0px;
    margin-top: 0px;
    padding: 35px;
    border: 1px solid #d7d7d7;
    /* height: 300px; */
    height: auto;
    overflow-y: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 10px;
    box-shadow: 0 -1px 10px rgb(29 30 32 / 10%);
    border: 1px solid #e9e9e9;
    position: relative;
    min-height: 831px;
}

.all__categories .al__box .al__list .al__items:nth-child(1):after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 350px;
    background-image: url("https://technoshop.ba/uploads/files/8d9a59ae44768a9537bbee6c5646702e582b205f.jpeg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.2;
}
.all__categories .al__box .al__list .al__items:nth-child(1):before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 350px;
    background-image: url("https://technoshop.ba/uploads/files/0dc00fde6d4f8f8fbbf0ce2dd323ec1c554e7d00.jpeg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.2;
    display: none;
}

.all__categories .al__box .al__list .al__items:nth-child(2):after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 350px;
    background-image: url("https://technoshop.ba/uploads/files/eeb1f3cc666f843cf405a456cf36ed7646a5cbb6.jpeg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.2;
}
.all__categories .al__box .al__list .al__items:nth-child(2):before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 350px;
    background-image: url("https://technoshop.ba/uploads/files/9400ed9bee5e7f71697e31a9f4ecb37afb3d6690.jpeg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.2;
    display: none;
}

.all__categories .al__box .al__list .al__items:nth-child(5):after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 350px;
    background-image: url("https://technoshop.ba/uploads/files/fd18d0af94b163f08560e0acf828564a52a62a0b.jpeg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.2;
}
.all__categories .al__box .al__list .al__items:nth-child(5):before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 350px;
    background-image: url("https://technoshop.ba/uploads/files/b645cd096238af87f35902688279999bfdbab603.jpeg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.2;
    display: none;
}

.all__categories .al__box .al__list .al__items:nth-child(3):after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 350px;
    background-image: url("https://technoshop.ba/uploads/files/430a5270b2a5e5ef83b13bfe5908889d5e64e361.jpeg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.2;
}
.all__categories .al__box .al__list .al__items:nth-child(3):before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 350px;
    background-image: url("https://technoshop.ba/uploads/files/b9535438fc753c794d6cbb6abbb1615eca815b09.jpeg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.2;
    display: none;
}

.all__categories .al__box .al__list .al__items:nth-child(4):after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 350px;
    background-image: url("https://technoshop.ba/uploads/files/c69ce5a4dc46d36b0435c622a3cbaf9e30d58a22.jpeg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.2;
}
.all__categories .al__box .al__list .al__items:nth-child(4):before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 350px;
    background-image: url("https://technoshop.ba/uploads/files/0085944aaa3b47e79af48032014da50f6ce78d1a.jpeg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.2;
    display: none;
}
.all__categories .al__box .al__list .al__items:nth-child(6):after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 350px;
    background-image: url("https://technoshop.ba/uploads/files/dc1c2d59a0c0a8007e9f906c5e900d099b9b7eb7.jpeg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.2;
}
.all__categories .al__box .al__list .al__items:nth-child(6):before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 350px;
    background-image: url("https://technoshop.ba/uploads/files/8b0e68cf8b59f61f189bdfbcd5c82b9106804b54.jpeg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.2;
    display: none;
}
.all__categories .al__box .al__list .al__items:nth-child(7):after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 350px;
    background-image: url("https://technoshop.ba/uploads/files/32f3e90955b87d25d9f3010e28b3007d3fae61f8.jpeg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.2;
}
.all__categories .al__box .al__list .al__items:nth-child(7):before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 350px;
    background-image: url("https://technoshop.ba/uploads/files/1fa5f706471aa15bb6c706f87b268d55829a4f25.jpeg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.2;
    display: none;
}
.all__categories .al__box .al__list .al__items:nth-child(8):after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 350px;
    background-image: url("https://technoshop.ba/uploads/files/a79bfc5ed5d94d6d1f125d655a1fa81d9a6e7a5b.jpeg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.2;
}
.all__categories .al__box .al__list .al__items:nth-child(8):before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 350px;
    background-image: url("https://technoshop.ba/uploads/files/fc2444206f9660180783972f19993b8febc7a136.jpeg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.2;
    display: none;
}

.all__categories .al__box .al__list .al__items:hover:after {
    display: none;
}
.all__categories .al__box .al__list .al__items:hover:before {
    display: block;
}
.all__categories .al__box .al__list .al__items.active {
    height: auto;
}

/* .all__categories .al__box .al__list .al__items:hover {
    height: auto;
} */
.all__categories .al__box .al__list .al__items .al__items-top {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    position: relative;
    padding-top: 5px;
    z-index: 9;
}
.all__categories .al__box .al__list .al__items .al__items-top a {
    font-size: 24px;
    font-weight: 700;
    color: #ec0e00;
    text-transform: uppercase;
}
.all__categories .al__box .al__list .al__items .al__items-top span {
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    padding: 5px 9px;
    border-radius: 2px;
    background-color: #ec0e00;
    position: absolute;
    top: -30px;
    right: -30px;
    cursor: pointer;
    display: none;
}
.all__categories .al__box .al__list .al__items .al__items-top span:hover {
    opacity: 0.8;
}
.all__categories .al__box .al__list .al__items .al__items-content {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    /* margin-bottom: 20px; */
    flex-wrap: wrap;
    z-index: 9;
    position: relative;
}
.all__categories .al__box .al__list .al__items .al__items-content a {
    font-size: 16px;
    width: 50%;
    font-weight: 500;
    color: #282828;
    padding: 4px 0px;
}
.all__categories .al__box .al__list .al__items .al__items-content a.title {
    font-size: 20px;
    color: #ec0e00;
}

.cart {
    width: 100%;
    height: auto;
    padding: 50px 0px;
}
.cart .cart__block {
    width: 100%;
    height: auto;
}
.cart .cart__block h3 {
    font-size: 30px;
    font-weight: 700;
    color: #282828;
}
.cart .cart__block .cart__box {
    width: 100%;
    height: auto;
    display: flex;
    padding-top: 25px;
    align-items: flex-start;
    justify-content: space-between;
}
.cart .cart__block .cart__box .cart__left {
    width: calc(65% - 15px);
    height: auto;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #e7e7e7;
}
.cart .cart__block .cart__box .cart__left .cart__list {
    width: 100%;
    height: auto;
    padding: 7px 0px;
}
.cart .cart__block .cart__box .cart__left .cart__list .cart__item {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 15px;
    border-bottom: 1px solid #e7e7e7;
}
.cart
    .cart__block
    .cart__box.complete__box
    .cart__left
    .cart__list
    .cart__item:last-child {
    border-bottom: 0px !important;
}
.cart .cart__block .cart__box .cart__left .cart__list .cart__item .ci__left {
    display: flex;
    align-items: center;
}
.cart
    .cart__block
    .cart__box
    .cart__left
    .cart__list
    .cart__item
    .ci__left
    .ci__image {
    width: 120px;
    height: 100px;
    margin-right: 15px;
}
.cart
    .cart__block
    .cart__box
    .cart__left
    .cart__list
    .cart__item
    .ci__left
    .ci__image
    img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cart
    .cart__block
    .cart__box
    .cart__left
    .cart__list
    .cart__item
    .ci__left
    .ci__content
    h4 {
    font-size: 18px;
    color: #282828;
    font-weight: 300;
}
.cart .cart__block .cart__box .cart__left .cart__list .cart__item .ci__right {
    display: flex;
    align-items: center;
}
.cart
    .cart__block
    .cart__box
    .cart__left
    .cart__list
    .cart__item
    .ci__right
    .ci__quantity {
    width: 100px;
    height: 35px;
    border: 1px solid #d7d7d7;
    padding: 3px 20px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 20px;
}

.complete__message {
    width: 100%;
    height: auto;
    padding: 50px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.complete__message .cm__image {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}
.complete__message .cm__image img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: none;
}
.complete__message .cm__text {
    width: 100%;
    height: auto;
    padding-top: 30px;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
}
.complete__message .cm__text h4 {
    font-size: 42px;
    font-weight: 500;
    color: #282828;
}

.show--password {
    position: relative;
}
.show--password img {
    position: absolute;
    bottom: 10px;
    right: 15px;
    width: 25px;
    height: 25px;
    object-fit: contain;
    filter: invert(13%) sepia(0%) saturate(0%) hue-rotate(115deg)
        brightness(91%) contrast(90%);
}
.login__group.show--password img {
    bottom: 20px !important;
}
.show--password img.sp--on {
    display: none;
}
.show--password img.sp--off {
    display: inline-flex;
}
.show--password.show--password--active img.sp--on {
    display: inline-flex;
}
.show--password.show--password--active img.sp--off {
    display: none;
}
.complete__message .cm__text p {
    font-size: 18px;
    font-weight: 400;
    color: #4d4d4d;
    padding-top: 15px;
}
.complete__message.cm--fail .cm__image .cm__fail {
    display: inline-flex;
    filter: invert(11%) sepia(99%) saturate(6521%) hue-rotate(9deg)
        brightness(97%) contrast(103%);
}
.complete__message.cm--success .cm__image .cm__succ {
    display: inline-flex;
    filter: invert(47%) sepia(79%) saturate(396%) hue-rotate(97deg)
        brightness(99%) contrast(89%);
}
.cart
    .cart__block
    .cart__box
    .cart__left
    .cart__list
    .cart__item
    .ci__right
    .ci__totalq {
    width: 35px;
    height: 35px;
    /* border: 1px solid #d7d7d7; */
    background-color: #000;
    color: #fff;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.cart
    .cart__block
    .cart__box
    .cart__left
    .cart__list
    .cart__item
    .ci__right
    .ci__quantity
    input {
    max-width: 30px;
    border: 0px;
    text-align: center;
    outline: none;
    font-size: 18px;
}
.cart
    .cart__block
    .cart__box
    .cart__left
    .cart__list
    .cart__item
    .ci__right
    .ci__quantity
    .qu__minus,
.cart
    .cart__block
    .cart__box
    .cart__left
    .cart__list
    .cart__item
    .ci__right
    .ci__quantity
    .qu__plus {
    font-size: 14px;
    padding: 5px;
    font-weight: 400;
    color: #282828;
    cursor: pointer;
}
.cart
    .cart__block
    .cart__box
    .cart__left
    .cart__list
    .cart__item
    .ci__right
    .ci__quantity
    .qu__minus:hover,
.cart
    .cart__block
    .cart__box
    .cart__left
    .cart__list
    .cart__item
    .ci__right
    .ci__quantity
    .qu__plus:hover {
    color: #ec0e00;
}
.cart
    .cart__block
    .cart__box
    .cart__left
    .cart__list
    .cart__item
    .ci__right
    .ci__price {
    margin-right: 20px;
    min-width: 185px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.cart
    .cart__block
    .cart__box
    .cart__left
    .cart__list
    .cart__item
    .ci__right
    .ci__price
    h5 {
    font-size: 28px;
    color: #282828;
    font-weight: 900;
}
.cart
    .cart__block
    .cart__box
    .cart__left
    .cart__list
    .cart__item
    .ci__right
    .ci__action {
    justify-self: flex-end;
    cursor: pointer;
}
.cart
    .cart__block
    .cart__box
    .cart__left
    .cart__list
    .cart__item
    .ci__right
    .ci__action
    img {
    height: 15px;
    filter: invert(13%) sepia(100%) saturate(4571%) hue-rotate(360deg)
        brightness(93%) contrast(106%);
}
.cart .cart__block .cart__box .cart__left .cart__coupon {
    width: 100%;
    height: auto;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 45px;
}
.cart .cart__block .cart__box .cart__left .cart__coupon p {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0px;
    bottom: 15px;
    text-align: center;
}
.cart .cart__block .cart__box .cart__left .cart__coupon h4 {
    font-size: 20px;
    color: #282828;
    font-weight: 600;
}
.cart .cart__block .cart__box .cart__left .cart__coupon input {
    width: 180px;
    height: 40px;
    padding-left: 15px;
    border: 1px solid #e7e7e7;
    border-radius: 3px;
    font-size: 18px;
    margin: 0px 20px;
    outline: none;
}
.cart .cart__block .cart__box .cart__left .cart__coupon button {
    height: 40px;
    padding: 5px 20px;
    border-radius: 3px;
    color: #fff;
    background-color: #ec0e00;
    font-weight: 600;
    border: 0px;
    cursor: pointer;
}
.cart .cart__block .cart__box .cart__left .cart__coupon button:hover {
    background-color: #ac0d02;
}
.cart .cart__block .cart__box .cart__info {
    width: calc(35% - 15px);
    height: auto;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #e7e7e7;
    padding: 15px 25px;
}
.cart .cart__block .cart__box .cart__info h4 {
    font-size: 30px;
    font-weight: 700;
    color: #282828;
}
.cart .cart__block .cart__box .cart__info ul {
    padding-top: 30px;
}
.cart .cart__block .cart__box .cart__info ul li {
    list-style: none;
    padding: 5px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
}
.cart .cart__block .cart__box .cart__info ul li b {
    font-weight: 500;
}
.cart .cart__block .cart__box .cart__info ul li span {
    font-weight: 200;
}
.cart .cart__block .cart__box .cart__info ul li em {
    font-style: normal;
    font-weight: 900;
    font-size: 42px;
}
.cart .cart__block .cart__box .cart__info button {
    width: 100%;
    height: 50px;
    border-radius: 3px;
    background-color: #ec0e00;
    border: 0px;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    margin: 15px 0px;
}
.cart .cart__block .cart__box .cart__info button:hover {
    background-color: #ac0d02;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
}
.cart .cart__block .cart__box .cart__info .ci__p {
    width: 100%;
    height: auto;
    padding-top: 10px;
    display: flex;
    justify-content: flex-end;
}
.cart .cart__block .cart__box .cart__info .ci__p p {
    font-size: 13px;
    font-weight: 300;
    color: #282828;
}

.cart__banner {
    width: 100%;
    height: auto;
    padding: 20px 0px;
}
.cart__banner .cart__banner-inside {
    width: 100%;
    height: auto;
    padding-top: 30px;
}
.cart__banner .cart__banner-inside img {
    width: 100%;
}

.checkout {
    width: 100%;
    height: auto;
    margin-top: 20px;
}
.checkout .checkout__group {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 7px 0px;
}
.checkout .checkout__group label {
    font-size: 16px;
    font-weight: 700;
    color: #282828;
    margin-bottom: 5px;
}
.checkout .checkout__group input,
.checkout .checkout__group select {
    width: 100%;
    height: 50px;
    border-radius: 3px;
    border: 1px solid #d7d7d7;
    padding-left: 15px;
    outline: none;
}
.checkout .checkout__top {
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #e7e7e7;
    padding: 20px;
    margin-bottom: 30px;
}
.checkout .checkout__top.cs__med {
    max-width: 720px;
    margin: 0px auto;
    margin-bottom: 30px;
}
.checkout .checkout__sides {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.checkout .checkout__sides.cs__med {
    max-width: 720px;
    margin: 0px auto;
}
.checkout .checkout__sides .checkout__side {
    width: calc(50% - 15px);
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #e7e7e7;
    padding: 20px;
}
.checkout .checkout__sides .checkout__side .checkout__collapsed {
    width: 100%;
    height: auto;
    display: none;
}
.checkout .checkout__sides .checkout__side .checkout__collapsed.active {
    display: inline-block;
}
.checkout .checkout__sides .checkout__side h4 {
    font-size: 20px;
    color: #282828;
    font-weight: 900;
    border: 1px solid #d7d7d7;
    border-left: 3px solid #ec0e00;
    padding: 10px 0px;
    padding-left: 15px;
    margin-bottom: 15px;
}
.checkout .checkout__sides .checkout__side .checkout__side-top {
    position: relative;
}
.checkout .checkout__sides .checkout__side .checkout__side-top .copy {
    position: absolute;
    top: 111%;
    right: 0px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #fff;
    background-color: #ec0e00;
    font-weight: 300;
    padding: 5px 8px;
    border-radius: 2px;
    cursor: pointer;
}
.checkout .checkout__sides .checkout__side .checkout__predefined {
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 20px 0px;
    position: relative;
}
.checkout .checkout__sides .checkout__side .checkout__predefined .payweb__edit,
.checkout .checkout__sides .checkout__side .checkout__predefined .payweb__add {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    border-radius: 3px;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.checkout .checkout__sides .checkout__side .checkout__predefined .payweb__add {
    top: 75px;
}
.checkout
    .checkout__sides
    .checkout__side
    .checkout__predefined
    .payweb__edit
    img,
.checkout
    .checkout__sides
    .checkout__side
    .checkout__predefined
    .payweb__add
    img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.checkout
    .checkout__sides
    .checkout__side
    .checkout__predefined
    .payweb__edit:hover,
.checkout
    .checkout__sides
    .checkout__side
    .checkout__predefined
    .payweb__add:hover {
    background-color: #ec0d00;
    border: 1px solid #ec0d00;
}
.checkout
    .checkout__sides
    .checkout__side
    .checkout__predefined
    .payweb__edit:hover
    > img,
.checkout
    .checkout__sides
    .checkout__side
    .checkout__predefined
    .payweb__add:hover
    > img {
    filter: invert(1);
}
.checkout .checkout__sides .checkout__side .checkout__predefined ul li {
    list-style: none;
}
.checkout .checkout__button {
    width: 100%;
    height: auto;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #e7e7e7;
    padding: 10px 20px;
}
.checkout .checkout__button p {
    font-size: 14px;
    font-weight: 400;
    color: #282828;
}
.checkout .checkout__button p a {
    color: #ec0e00;
}
.checkout .checkout__button button {
    padding: 10px 45px;
    border-radius: 3px;
    height: 50px;
    background-color: #ec0e00;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    border: 0px;
    cursor: pointer;
}
.checkout .checkout__button button:hover {
    background-color: #000;
    color: #fff;
}
.checkout .checkout__extras {
    width: 100%;
    height: auto;
    background-color: #51616e;
    display: flex;
    align-items: flex-start;
    padding: 20px 50px;
    margin-top: 50px;
    border-radius: 3px;
}
.checkout .checkout__extras .checkout__extra {
    width: 50%;
    height: auto;
    padding: 20px;
}
.checkout .checkout__extras .checkout__extra h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 20px;
}
.checkout .checkout__extras .checkout__extra ul li {
    list-style: none;
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    padding: 6px 0px;
}
.checkout .checkout__extras .checkout__extra ul li a {
    font-size: 16px;
    color: #fff;
    font-weight: 300;
}

.page {
    width: 100%;
    height: auto;
    padding-top: 30px;
}
.page .breadcrumb {
    padding: 20px 0px;
}
.page .page__block {
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #e7e7e7;
    padding: 20px;
}
.page .page__block .page__content .page__images {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.page .page__block .page__content .page__images img {
    width: calc(25% - 20px);
    margin: 10px;
    object-fit: contain;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
}
.page .page__block .page__content .page__images.pi--1 img {
    width: 100%;
    border: 0px;
    border-radius: 0px;
}
.page .page__block .page__content .page__images.pi--2 img {
    width: calc(50% - 20px);
}
.page .page__block .page__content .page__images.pi--3 img {
    width: calc(33.33% - 20px);
}
.page .page__block .page__content .page__images.pi--1 img {
    width: 100%;
}
.page .page__block .page__content {
    width: 100%;
    height: auto;
}
.page .page__block .page__content h1 {
    font-size: 24px;
    color: #282828;
    font-weight: 900;
    padding: 0px 10px;
    padding-bottom: 20px;
}
.page .page__block .page__content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #282828;
    padding: 15px 10px;
}
.page .page__block .page__content ul {
    padding: 0px 25px;
    margin-top: -6px;
}
.page .page__block .page__content ul li {
    /* list-style: none; */
    padding: 6px 0px;
    font-size: 16px;
    color: #282828;
}
.page .page__block .page__content b {
    padding: 6px 0px;
    display: inline-block;
    font-size: 16px;
    color: #282828;
}

.page .page__block .page__content p {
    /* padding: 0px 10px; */

    font-size: 16px;
}
.page .page__block .page__content .pcpc {
    width: 100%;
    height: auto;
    padding: 0px 10px;
}
.page__extra {
    width: 100%;
    height: auto;
    padding: 30px 0px;
}
.page__extra .pe__block {
    width: 100%;
    height: auto;
}
.page__extra .pe__block .pe__item {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0px;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    padding: 10px;
}
.page__extra .pe__block .pe__item:nth-child(even) .pe__content {
    order: 2;
}
.page__extra .pe__block .pe__item .pe__content {
    width: 48%;
    height: auto;
    padding: 0px 50px;
}
.page__extra .pe__block .pe__item .pe__content a {
    margin: 15px 0px;
    margin-top: 25px;
    padding: 15px 30px;
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid #ec0e00;
    color: #ec0e00;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
}
.page__extra .pe__block .pe__item .pe__content a:hover {
    background-color: #ec0e00;
    color: #fff;
}
.page__extra .pe__block .pe__item .pe__content h3 {
    font-size: 30px;
    font-weight: 600;
    color: #282828;
    margin-bottom: 30px;
}
.page__extra .pe__block .pe__item .pe__content p {
    font-size: 16px;
    font-weight: 400;
    color: #282828;
}
.page__extra .pe__block .pe__item .pe__image {
    width: 48%;
    height: auto;
}
.page__extra .pe__block .pe__item .pe__image img {
    width: 100%;
    border-radius: 12px;
    object-fit: contain;
}

.compare {
    width: 100%;
    height: auto;
    background-color: #fff;
    padding-top: 30px;
}
.compare .compare__block {
    width: 100%;
    height: auto;
}
.compare .compare__block .compare__top {
    width: 100%;
    height: auto;
}
.compare .compare__block .compare__top .breadcrumb {
    width: 100%;
    height: auto;
}
.compare .compare__block .compare__top .breadcrumb ul {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
}
.compare .compare__block .compare__top .breadcrumb ul li {
    font-size: 14px;
    color: #282828;
    list-style: none;
    font-weight: 600;
    padding-right: 10px;
}
.compare .compare__block .compare__top .breadcrumb ul li::after {
    content: "-";
    padding-left: 10px;
    font-size: 18px;
}
.compare .compare__block .compare__top .breadcrumb ul li:last-child {
    color: #757575;
}
.compare .compare__block .compare__top .breadcrumb ul li:last-child::after {
    content: "";
}
.compare .compare__block .compare__top h3 {
    font-size: 26px;
    font-weight: 700;
    padding-top: 20px;
    color: #282828;
}
.compare .compare__block .compare__box {
    width: 100%;
    height: auto;
    border-left: 1px solid #e9e9e9;
    display: flex;
    margin-top: 30px;
}
.compare .compare__block .compare__box .compare__box-item {
    width: 33.33%;
    height: 350px;
    border: 1px solid #e9e9e9;
    border-left: 0px;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
}
.compare .compare__block .compare__box .compare__box-item:first-child {
    justify-content: center;
    padding: 20px 40px;
    background-color: #e9e9e9;
}
.compare .compare__block .compare__box .compare__box-item:first-child p {
    font-size: 16px;
    color: #282828;
}
.compare .compare__block .compare__box .compare__box-item img {
    height: 130px;
}
.compare .compare__block .compare__box .compare__box-item h4 {
    font-size: 18px;
    font-weight: 400;
    color: #282828;
    padding: 15px 0px;
}
.compare .compare__block .compare__box .compare__box-item a {
    width: 100%;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 2px;
    background-color: #ec0e00;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding-top: 0px;
    margin-top: 20px;
}
.compare .compare__block .compare__box .compare__box-item a:hover {
    background-color: #282828;
}
.compare .compare__block .compare__list {
    width: 100%;
    height: auto;
    padding-bottom: 50px;
}
.compare .compare__block .compare__list h3 {
    font-size: 26px;
    font-weight: 700;
    padding-top: 40px;
    color: #282828;
}
.compare .compare__block .compare__list .compare__table {
    width: 100%;
    height: auto;
    margin-top: 20px;
}
.compare .compare__block .compare__list .compare__table .ct__head {
    width: 100%;
    height: auto;
    padding: 15px 25px;
    border: 1px solid #e9e9e9;
    background-color: rgba(233, 233, 233, 0.3137254902);
}
.compare .compare__block .compare__list .compare__table .ct__head h4 {
    font-size: 16px;
}
.compare .compare__block .compare__list .compare__table .ct__body {
    width: 100%;
    height: auto;
    border: 1px solid #e9e9e9;
    border-top: 0px;
    border-bottom: 0px;
}
.compare .compare__block .compare__list .compare__table .ct__body:last-child {
    border-bottom: 1px solid #e9e9e9;
}
.compare .compare__block .compare__list .compare__table .ct__body .ct__row {
    width: 100%;
    height: auto;
    display: flex;
}
.compare
    .compare__block
    .compare__list
    .compare__table
    .ct__body
    .ct__row
    .ct__item {
    width: 33.33%;
    height: auto;
    padding: 15px 25px;
    border-right: 1px solid #e9e9e9;
}
.compare
    .compare__block
    .compare__list
    .compare__table
    .ct__body
    .ct__row
    .ct__item:last-child {
    border: 0px;
}

.shop__filter-action {
    width: 100%;
    height: auto;
    padding: 10px 0px;
    display: none;
}
.shop__filter-action button {
    width: 100%;
    height: 50px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    border: 0px;
    background-color: #282828;
}
.shop__filter-action button img {
    height: 20px;
    margin-right: 15px;
    filter: invert(94%) sepia(90%) saturate(2%) hue-rotate(347deg)
        brightness(115%) contrast(101%);
}

.profile {
    width: 100%;
    height: auto;
    padding-top: 50px;
}
.profile .profile__block {
    width: 100%;
    height: auto;
    display: flex;
}
.profile .profile__block .profile__left {
    width: 250px;
    height: auto;
}
.profile .profile__block .profile__left .profile__image {
    width: 100%;
    height: auto;
}
.profile .profile__block .profile__left .profile__image img {
    width: 100%;
    height: 203px;
    object-fit: cover;
    border-radius: 5px;
}
.profile .profile__block .profile__left .profile__left-extra ul {
    margin-top: 15px;
}
.profile .profile__block .profile__left .profile__left-extra ul li {
    list-style: none;
    padding: 10px 0px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 3px solid #a5aeb7;
    padding-left: 5px;
    cursor: pointer;
}
.profile .profile__block .profile__left .profile__left-extra ul li.active {
    background-color: #ec0e00;
    color: #fff;
    border-bottom: 3px solid #ac0d02;
}
.profile .profile__block .profile__right {
    width: 100%;
    height: auto;
    padding-left: 20px;
    display: none;
}
.profile .profile__block .profile__right.active-tab {
    display: block;
}
.profile .profile__block .profile__right .profile__box {
    width: 100%;
    height: auto;
    background-color: #f2f3f7;
    margin-bottom: 20px;
    border-radius: 5px;
    padding: 20px;
}
.profile .profile__block .profile__right .profile__box .profile__box-title {
    width: 100%;
    height: auto;
}
.profile .profile__block .profile__right .profile__box .profile__box-title h4 {
    font-size: 22px;
    font-weight: 700;
}
.profile .profile__block .profile__right .profile__box .profile__box-content {
    width: 100%;
    height: auto;
    padding-top: 0px;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    ul.about-me {
    width: 100%;
    height: auto;
    padding-top: 20px;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    ul.about-me
    li {
    display: inline-flex;
    width: 100%;
    height: auto;
    padding: 5px 0px;
    font-size: 16px;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    ul.about-me
    li
    a {
    margin-left: 10px;
    display: inline-flex;
    padding: 2px 7px;
    border: 1px solid #4d4d4d;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 500;
    color: #4d4d4d;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    ul.about-me
    li
    a:hover {
    background-color: #4d4d4d;
    color: #fff;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .latest__orders {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    padding-top: 15px;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .latest__orders
    .order__item {
    width: calc(25% - 20px);
    margin: 10px 10px;
    display: flex;
    flex-direction: column;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .latest__orders
    .order__item
    h4 {
    padding-top: 10px;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .latest__orders
    .order__item
    span {
    justify-self: flex-end;
    align-self: flex-end;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .racuni__list {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
    align-items: center;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .racuni__list
    .racun {
    padding: 7px 10px;
    width: calc(33.33% - 10px);
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    margin-right: 10px;
    margin-bottom: 10px;
    justify-content: space-between;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .racuni__list
    .racun:nth-child(3n) {
    margin-right: 0px;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .racuni__list
    .racun
    h5 {
    font-size: 16px;
    font-weight: 400;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .racuni__list
    .racun
    a {
    border: 1px solid #ec0e00;
    color: #ec0e00;
    font-size: 16px;
    padding: 5px 15px;
    min-width: 130px;
    border-radius: 3px;
}

.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .racuni__list
    .racun__add
    a {
    border: 1px solid #ec0e00;
    color: #ec0e00;
    font-size: 16px;
    padding: 5px 15px;
    min-width: 130px;
    border-radius: 3px;
    height: 54px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    margin-bottom: 10px;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .racuni__list
    .racun__add
    a:hover {
    background-color: #ec0e00;
    color: #fff;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .racuni__list
    .racun
    a:hover {
    background-color: #ec0e00;
    color: #fff;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .address__list {
    width: 100%;
    height: auto;
    display: flex;
    padding-top: 20px;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .address__list
    .address__item {
    width: 260px;
    height: 240px;
    border-radius: 3px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    padding: 15px;
    margin-right: 20px;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .address__list
    .address__item.active {
    background-color: rgba(41, 170, 105, 0.1254901961);
    border: 2px solid #29aa69;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .address__list
    .address__item
    h4 {
    font-size: 16px;
    font-weight: 700;
    color: #4d4d4d;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .address__list
    .address__item
    ul {
    width: 100%;
    height: auto;
    padding: 15px 0px;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .address__list
    .address__item
    ul
    li {
    list-style: none;
    padding: 2px 0px;
    font-size: 14px;
    font-weight: 400;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .address__list
    .address__item
    ul
    li
    b {
    padding-top: 7px;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .address__list
    .address__item
    .address__item-action {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .address__list
    .address__item
    .address__item-action
    a {
    display: inline-flex;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 14px;
    color: #4d4d4d;
    border: 1px solid #4d4d4d;
    margin-left: 10px;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .address__list
    .address__item
    .address__item-action
    a:hover {
    background-color: #ec0e00;
    border: 1px solid #ec0e00;
    color: #fff;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .address__list
    .address__new {
    width: 260px;
    height: 240px;
    border-radius: 3px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .address__list
    .address__new
    span {
    font-size: 72px;
    font-weight: 800;
    color: #282828;
    font-family: Arial, Helvetica, sans-serif;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .address__list
    .address__new
    p {
    font-size: 16px;
    font-weight: 600;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .address__list
    .address__new:hover {
    background: #29aa69;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .address__list
    .address__new:hover
    span {
    color: #fff;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .profile__box-content
    .address__list
    .address__new:hover
    p {
    color: #fff;
}
.profile .profile__block .profile__right .profile__box .orderc {
    width: 100%;
    height: auto;
    border: 1px solid #a5aeb7;
    margin-top: 30px;
}
.profile .profile__block .profile__right .profile__box .orderc .oc__head,
.profile .profile__block .profile__right .profile__box .orderc .oc__body {
    width: 100%;
    height: auto;
    display: flex;
    border-bottom: 1px solid #a5aeb7;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .orderc
    .oc__head:last-child,
.profile
    .profile__block
    .profile__right
    .profile__box
    .orderc
    .oc__body:last-child {
    border-bottom: 0px;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .orderc
    .oc__head
    .oc__clmn,
.profile
    .profile__block
    .profile__right
    .profile__box
    .orderc
    .oc__body
    .oc__clmn {
    flex: 1;
    padding: 10px;
    border-right: 1px solid #a5aeb7;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .orderc
    .oc__head
    .oc__clmn:last-child,
.profile
    .profile__block
    .profile__right
    .profile__box
    .orderc
    .oc__body
    .oc__clmn:last-child {
    border-right: 0px;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .orderc
    .oc__head
    .oc__clmn:first-child,
.profile
    .profile__block
    .profile__right
    .profile__box
    .orderc
    .oc__body
    .oc__clmn:first-child {
    flex: 2;
}
.profile .profile__block .profile__right .profile__box .kuponi__lista {
    width: 100%;
    height: auto;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.profile .profile__block .profile__right .profile__box .kuponi__lista .kupon {
    width: calc(33.33% - 20px);
    height: 65px;
    border: 1px solid #a5aeb7;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 10px;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .kuponi__lista
    .kupon.activated
    p,
.profile
    .profile__block
    .profile__right
    .profile__box
    .kuponi__lista
    .kupon.activated
    a {
    display: none;
}
.profile
    .profile__block
    .profile__right
    .profile__box
    .kuponi__lista
    .kupon.activated
    b {
    display: inline-flex;
}
.profile .profile__block .profile__right .profile__box .kuponi__lista .kupon p {
    font-size: 16px;
    color: #757575;
}
.profile .profile__block .profile__right .profile__box .kuponi__lista .kupon b {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    display: none;
}
.profile .profile__block .profile__right .profile__box .kuponi__lista .kupon a {
    padding: 5px 12px;
    border-radius: 2px;
    font-size: 16px;
    color: #757575;
    border: 1px solid #757575;
    margin-left: 15px;
}

.plain__page {
    width: 100%;
    height: auto;
    padding-top: 30px;
}
.plain__page .plain__page-title {
    width: 100%;
    height: auto;
}
.plain__page .plain__page-title h3 {
    font-size: 36px;
    font-weight: 700;
    color: #ec0e00;
}
.plain__page .plain__page-content {
    width: 100%;
    height: auto;
    padding-top: 30px;
}
.plain__page .plain__page-content p {
    font-size: 16px;
    color: #4d4d4d;
    font-weight: 500;
    padding-bottom: 20px;
}

.contact__page {
    width: 100%;
    height: auto;
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    border: 1px solid #d7d7d7;
}
.contact__page .contact__image {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}
.contact__page .contact__image img {
    max-height: 300px;
}
.contact__page .contact__cities {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    flex-wrap: wrap;
    background-color: #ec0e00;
    border-radius: 3px;
    padding: 10px 15px;
}
.contact__page .contact__cities .contact__city {
    border-radius: 3px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    /* border: 1px solid #ec0e00; */
    margin: 0px 2px;
    cursor: pointer;
    font-weight: 300;
}
.contact__page .contact__cities .contact__city h4 {
    font-weight: 500;
}
.contact__page .contact__cities .contact__city.active {
    /* background-color: #ec0e00; */
    /* color: #fff; */
    color: #ec0e00;
}
.contact__page .contact__cities .contact__city.active > h4 {
    font-weight: 600;
    color: #fff;
}
.contact__page .contact__cities .contact__city:hover {
    color: #fff;
}
.contact__page .contact__cities .contact__city.active:hover {
    color: #000;
}
.contact__page .contact__cities .contact__city img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.contact__page .contact__list {
    width: 100%;
    height: auto;
    display: none;
    justify-content: center;
    flex-wrap: wrap;
}
.contact__page .contact__list.active {
    display: flex;
}
.scroll_to_top {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 70px;
    right: 20px;
    border-radius: 50%;
    background-color: #ec0e00;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 0px 12px 4px rgb(0 0 0 / 30%);
}
.scroll_to_top.active {
    display: flex;
}
.scroll_to_top:hover {
    background-color: #000;
}
.scroll_to_top img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: invert(98%) sepia(100%) saturate(0%) hue-rotate(311deg)
        brightness(106%) contrast(101%);
}
.contact__page .contact__list .contact__item {
    width: 100%;
    height: auto;
    padding: 20px;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    margin: 10px 0px;
}
.contact__page .contact__list .contact__item.active {
    border-left: 10px solid #ec0e00;
}
.contact__page .contact__list .contact__item ul li {
    list-style: none;
    padding: 3px 0px;
    font-size: 15px;
    font-weight: 400;
    color: #282828;
}
.contact__page .contact__list .contact__item ul li b {
    /* text-transform: uppercase; */
    font-weight: 700;
}
.contact__page .contact__list .contact__item ul li a {
    color: #ec0e00;
}

.contact__page .new__contact {
    width: 30%;
    height: auto;
    padding: 0px 20px;
    max-height: 500px;
    overflow-y: scroll;
}
.contact__page .new__contact-map {
    width: 70%;
    height: auto;
}

.product__combo {
    width: 100%;
    height: auto;
    margin: 20px 0px;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #a5aeb7;
    position: relative;
    box-shadow: 0 -1px 10px rgb(29 30 32 / 10%);
    border: 1px solid #e9e9e9;
}
.product__combo .product__combo-title h4 {
    padding: 5px 14px;
    display: inline-flex;
    border-radius: 3px;
    border: 1px solid #ec0e00;
    color: #4d4d4d;
    font-weight: 600;
}
.product__combo .combo__list {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product__combo .combo__list .combo__item {
    width: 220px;
    height: auto;
    background-color: #f2f3f7;
    border-radius: 5px;
    padding: 10px;
    margin-top: 15px;
    position: relative;
    margin-right: 60px;
}
.product__combo .combo__list .combo__item::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: -40px;
    font-size: 32px;
    font-weight: 200;
    font-family: Arial, Helvetica, sans-serif;
    color: #282828;
}
.product__combo .combo__list .combo__item:last-child::after {
    display: none;
}
.product__combo .combo__list .combo__item img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 6px;
}
.product__combo .combo__list .combo__item h4 {
    font-size: 18px;
    font-weight: 600;
}
.product__combo .combo__list .combo__item .small-price {
    margin-top: 5px;
}
.product__combo .combo__list .combo__item .small-price .cprice {
    font-size: 20px;
}
.product__combo .combo__list .combo__item .small-price .cprice.cprice--old {
    font-size: 16px !important;
    margin-top: 7px;
}
.product__combo .combo__price {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.product__combo .combo__price button {
    width: 250px;
    height: 50px;
    border-radius: 5px;
    background-color: #ec0e00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    border: 0px;
    margin-top: 15px;
    cursor: pointer;
}
.product__combo .combo__price button:hover {
    background-color: #282828;
}

.extra__products {
    width: 100%;
    height: auto;
    padding-top: 50px;
}
.extra__products .ep__title {
    width: 100%;
    height: auto;
}
.extra__products .ep__title h4 {
    font-size: 26px;
    font-weight: 700;
    color: #4d4d4d;
}
.extra__products .ep__list {
    width: 100%;
    height: auto;
    padding-top: 10px;
    display: flex;
}
.extra__products .ep__list .ep__item .ep__item__extra {
    position: absolute;
    top: 20px;
    right: 10px;
}
.extra__products .ep__list .ep__item .ep__item__extra ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.extra__products .ep__list .ep__item .ep__item__extra ul li {
    list-style: none;
    margin-bottom: 10px;
}
.extra__products .ep__list .ep__item .ep__item__extra ul li img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.extra__products .ep__list .ep__item {
    width: calc(25% - 20px);
    margin: 10px;
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.extra__products .ep__list .ep__item .cool__price {
    min-height: 50px;
}
.extra__products .ep__list .ep__item .cprice.cprice--old {
    height: 24px;
    min-width: 20px;
    display: inline-block;
    margin-top: 10px;
}
.extra__products .ep__list .ep__item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}
.extra__products .ep__list .ep__item h4 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    padding: 10px 0px;
    height: 80px;
    text-align: center;
}
.extra__products .ep__list .ep__item em,
.extra__products .ep__list .ep__item a {
    display: inline-flex;
    font-style: normal;
    width: 100%;
    height: 40px;
    border-radius: 5px;
    background-color: #ec0e00;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.wishlist {
    width: 100%;
    height: auto;
}
.wishlist .wishlist__block {
    width: 100%;
    height: auto;
}
.wishlist .wishlist__block .wishlist__list {
    width: 100%;
    height: auto;
    border-radius: 5px;
    background-color: #f2f3f7;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 5px;
}
.wishlist .wishlist__block .wishlist__list .wishlist__list-item {
    padding: 7px 18px;
    border-radius: 3px;
    font-size: 16px;
    color: #4d4d4d;
    border: 2px solid #4d4d4d;
    margin-right: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}
.wishlist .wishlist__block .wishlist__list .wishlist__list-item:hover {
    background-color: rgba(41, 170, 105, 0.5843137255);
}
.wishlist .wishlist__block .wishlist__list .wishlist__list-item.active {
    color: #fff;
    background-color: #29aa69;
    border: 2px solid #29aa69;
}
.wishlist .wishlist__block .wishlist__list .wishlist__item-add {
    padding: 7px 18px;
    border-radius: 3px;
    font-size: 16px;
    color: #4d4d4d;
    border: 2px solid #4d4d4d;
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.wishlist .wishlist__block .wishlist__list .wishlist__item-add:hover {
    background-color: rgba(41, 170, 105, 0.5843137255);
}
.wishlist .wishlist__block .wishlist__list .wishlist__item-add::before {
    content: "+";
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    margin-right: 10px;
}
.wishlist .wishlist__block .wishlist__items {
    width: 100%;
    height: auto;
    border-radius: 5px;
    background-color: #f2f3f7;
    padding: 15px;
    margin-bottom: 20px;
}
.wishlist .wishlist__block .wishlist__items .wishlist__title {
    width: 100%;
    height: auto;
}
.wishlist .wishlist__block .wishlist__items .wishlist__title h4 {
    font-size: 28px;
    font-weight: 600;
    color: #282828;
}
.wishlist .wishlist__block .wishlist__items .wishlist__products {
    width: 100%;
    height: auto;
    padding-top: 40px;
    display: flex;
    flex-wrap: wrap;
}
.wishlist
    .wishlist__block
    .wishlist__items
    .wishlist__products
    .wishlist__product {
    width: calc(25% - 20px);
    height: auto;
    margin: 10px;
    position: relative;
    border: 2px solid #4d4d4d;
    border-radius: 5px;
    overflow: hidden;
    padding-bottom: 15px;
}
.wishlist
    .wishlist__block
    .wishlist__items
    .wishlist__products
    .wishlist__product
    img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}
.wishlist
    .wishlist__block
    .wishlist__items
    .wishlist__products
    .wishlist__product
    h4 {
    font-size: 20px;
    font-weight: 600;
    color: #4d4d4d;
    padding: 10px 15px;
}
.wishlist
    .wishlist__block
    .wishlist__items
    .wishlist__products
    .wishlist__product
    span {
    color: #ec0e00;
    font-size: 16px;
    font-weight: 400;
    padding: 0px 15px;
}
.wishlist
    .wishlist__block
    .wishlist__items
    .wishlist__products
    .wishlist__product
    .buyed {
    padding: 5px 12px;
    border-radius: 2px;
    background-color: #fff;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 14px;
    color: #000;
    font-weight: 500;
    position: absolute;
    bottom: 10px;
    right: 10px;
}
.wishlist
    .wishlist__block
    .wishlist__items
    .wishlist__products
    .wishlist__product
    .buyed:hover {
    background-color: #29aa69;
    color: #fff;
    cursor: pointer;
}
.wishlist
    .wishlist__block
    .wishlist__items
    .wishlist__products
    .wishlist__product
    .buyed.yes {
    background-color: #ac0d02;
    color: #fff;
}
.wishlist
    .wishlist__block
    .wishlist__items
    .wishlist__products
    .wishlist__product-add {
    width: calc(25% - 20px);
    height: auto;
    margin: 10px;
    border: 2px solid #4d4d4d;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    cursor: pointer;
}
.wishlist
    .wishlist__block
    .wishlist__items
    .wishlist__products
    .wishlist__product-add
    span {
    font-size: 42px;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
}
.wishlist
    .wishlist__block
    .wishlist__items
    .wishlist__products
    .wishlist__product-add
    h5 {
    font-size: 24px;
    font-weight: 500;
}

.modal {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.modal.active {
    display: flex;
}
.modal .modal__box {
    max-width: 100%;
    padding: 20px 30px;
    border-radius: 3px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    background-color: #fff;
}
.modal .modal__box .new__wishlist {
    max-width: 100%;
    height: auto;
    width: 450px;
}
.modal .modal__box .new__wishlist input {
    width: 100%;
    height: 50px;
    border: 1px solid #a5aeb7;
    border-radius: 3px;
    padding-left: 15px;
}
.modal .modal__box .new__wishlist button {
    width: 100%;
    height: 50px;
    border-radius: 3px;
    background-color: #ec0e00;
    border: 0px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
}
.modal .modal__box .new__product {
    max-width: 100%;
    width: 600px;
    height: auto;
}
.modal .modal__box .new__product .autocomplete__new {
    width: 100%;
    height: auto;
    position: relative;
}
.modal .modal__box .new__product .autocomplete__new input {
    width: 100%;
    height: 50px;
    padding-left: 15px;
    border-radius: 3px;
    border: 1px solid #a5aeb7;
}
.modal .modal__box .new__product .autocomplete__new ul {
    position: absolute;
    top: 50px;
    left: 0px;
    width: 100%;
    height: auto;
    background-color: #fff;
    display: none;
    border-radius: 3px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}
.modal .modal__box .new__product .autocomplete__new ul li {
    width: 100%;
    height: auto;
    padding: 7px 15px;
    list-style: none;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
    border-bottom: 1px solid #a5aeb7;
}
.modal .modal__box .new__product .autocomplete__new ul li:hover {
    background-color: #ec0e00;
    color: #fff;
}
.modal .modal__box .new__product button {
    width: 100%;
    height: 50px;
    border-radius: 3px;
    background-color: #ec0e00;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    border: 0px;
    margin-top: 25px;
    cursor: pointer;
}
.modal .modal__box .add_to_wishlist {
    width: 500px;
    max-width: 100%;
    height: auto;
}
.modal .modal__box .add_to_wishlist select {
    width: 100%;
    height: 50px;
    border-radius: 3px;
    padding-left: 15px;
    border: 1px solid #a5aeb7;
}
.modal .modal__box .add_to_wishlist button {
    width: 100%;
    height: 50px;
    border-radius: 3px;
    background-color: #ec0e00;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border: 0px;
    margin-top: 20px;
}

/* new prices */
.cprice {
    font-size: 26px;
    color: #000;
    font-weight: 700;
    font-family: "Triumvirate", sans-serif;
    text-shadow: transparent 0px 0px 1em, rgb(255 255 255) 0px -0.04em 0px,
        rgb(255 255 255) 0.04em 0px 0px, rgb(255 255 255) 0px 0.04em 0px,
        rgb(255 255 255) -0.034em -0.024em 0px,
        rgb(255 255 255) -0.03em -0.04em 0px,
        rgb(255 255 255) -0.01em -0.04em 0px,
        rgb(255 255 255) 0.052em -0.04em 0px,
        rgb(255 255 255) 0.04em -0.04em 0px, rgb(255 255 255) 0.02em -0.04em 0px,
        rgb(255 255 255) 0.047em -0.025em 0px,
        rgb(255 255 255) -0.045em 0.016em 0px,
        rgb(255 255 255) -0.039em 0.038em 0px,
        rgb(255 255 255) -0.052em 0.04em 0px,
        rgb(255 255 255) -0.042em 0.04em 0px,
        rgb(255 255 255) 0.031em 0.028em 0px,
        rgb(255 255 255) 0.029em 0.04em 0px, rgb(0 0 0 / 20%) 0.05em 0px 0.05em,
        rgb(0 0 0 / 20%) 0px 0.05em 0.05em,
        rgb(0 0 0 / 20%) 0.05em 0.05em 0.05em;
}
.cprice--old {
    font-size: 20px !important;
    text-decoration: line-through;
    margin-top: 10px;
}

.account {
    width: 100%;
    height: auto;
    padding-top: 20px;
    background-color: #fff;
}
.account .account__title {
    width: 100%;
    height: auto;
    padding-bottom: 25px;
}
.account .account__title h4 {
    font-size: 32px;
    font-weight: 600;
    color: #282828;
}
.account .account__block {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
}
.account .account__block .account__sidebar {
    width: 250px;
    height: 100%;
    min-width: 250px;
    background-color: #f8f8f8;
    padding: 20px 0px;
}
.account .account__block .account__content {
    width: 100%;
    height: auto;
    padding-left: 20px;
}
.account .account__block .account__sidebar .account__menu {
    width: 100%;
    height: auto;
}
.account .account__block .account__sidebar .account__menu ul li a {
    display: inline-flex;
    align-items: center;
}
.account .account__block .account__sidebar .account__menu ul li a img {
    width: 20px;
}
.account .account__block .account__sidebar .account__avatar {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.account .account__block .account__sidebar .account__avatar .avatar__round {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* background-color: #282828; */
    border: 3px solid #282828;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.account
    .account__block
    .account__sidebar
    .account__avatar
    .avatar__round
    span {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
}
.account .account__block .account__sidebar .account__avatar .avatar__round img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.account .account__block .account__sidebar .account__avatar .aa__hi {
    width: 100%;
    height: auto;
    padding: 10px 20px;
}
.account .account__block .account__sidebar .account__avatar .aa__hi h4 {
    font-size: 20px;
    font-weight: 500;
    color: #282828;
}
.account .account__block .account__sidebar .account__avatar .aa__hi h4 b {
    display: flex;
}

.account .account__block .account__sidebar .account__menu {
    width: 100%;
    height: auto;
    padding-top: 30px;
}
.account .account__block .account__sidebar .account__menu ul li {
    width: 100%;
    height: auto;
    padding: 15px;
    border-top: 1px solid #d7d7d7;
    list-style: none;
    cursor: pointer;
}
.account .account__block .account__sidebar .account__menu ul li a {
    display: flex;
    align-items: center;
}
.account .account__block .account__sidebar .account__menu ul li a span {
    font-size: 18px;
    color: #282828;
    font-weight: 500;
    padding-left: 15px;
}

.account .account__block .account__sidebar .account__menu ul li:hover {
    background-color: #282828;
}

.account .account__block .account__sidebar .account__menu ul li:hover > a span {
    color: #fff;
}

.account .account__block .account__sidebar .account__menu ul li:hover > a img {
    filter: invert(96%) sepia(97%) saturate(12%) hue-rotate(237deg)
        brightness(103%) contrast(103%);
}

.account .account__block .account__sidebar .account__menu ul li.active {
    background-color: #282828;
}

.account .account__block .account__sidebar .account__menu ul li.active a span {
    color: #fff;
}

.account .account__block .account__sidebar .account__menu ul li.active a img {
    filter: invert(96%) sepia(97%) saturate(12%) hue-rotate(237deg)
        brightness(103%) contrast(103%);
}
.account .account__block .account__content .account__tab {
    width: 100%;
    height: auto;
    display: none;
}
.account .account__block .account__content .account__tab .account__overview {
    width: 100%;
    height: auto;
}
.account .account__block .account__content .account__tab .account__overview h4 {
    font-size: 32px;
    color: #282828;
    font-weight: 700;
}
.account .account__block .account__content .account__tab .account__main-title {
    width: 100%;
    height: auto;
    background-color: #f8f8f8;
    padding: 20px;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__main-title
    h4 {
    font-size: 26px;
    color: #282828;
    font-weight: 600;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__main-title
    p {
    padding-top: 10px;
}
.account .account__block .account__content .account__tab.active {
    display: block;
}
.account .account__block .account__content .account__tab .account__tab-content {
    width: 100%;
    height: auto;
    background-color: #f8f8f8;
    margin-top: 20px;
    margin-bottom: 20px;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__predefined {
    width: 100%;
    height: auto;
    display: inline-flex;
    padding: 0px 20px;
    margin-top: 0px;
    position: relative;
    z-index: 1;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__predefined
    .ac__edit {
    width: 35px;
    height: 35px;
    border-radius: 3px;
    border: 1px solid #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 2;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__predefined
    .ac__edit
    img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__predefined
    .ac__edit:hover {
    background-color: #ec0d00;
    border: 1px solid #ec0d00;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__predefined
    .ac__edit:hover
    > img {
    filter: invert(1);
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__predefined
    ul {
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 20px 0px;
    position: relative;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__predefined
    ul
    li {
    list-style: none;
    padding: 2px 0px;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__predefined
    ul
    li
    b {
    display: inline-flex;
    width: 130px;
    font-size: 500;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list {
    width: 100%;
    height: auto;
    display: flex;
    padding: 20px 15px;
    flex-wrap: wrap;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .order__item {
    width: calc(50% - 10px);
    height: auto;
    margin: 0px 5px;
    margin-bottom: 10px;
    border-radius: 3px;
    padding: 15px;
    background-color: #fff;
    border-bottom: 3px solid #dcdcdc;
    position: relative;
    overflow: hidden;
    z-index: 2;
    cursor: pointer;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .add__new {
    width: 100%;
    height: auto;
    padding-top: 10px;
    display: flex;
    justify-content: flex-end;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .add__new
    button {
    width: 120px;
    height: 40px;
    border-radius: 3px;
    background-color: #4d4d4d;
    color: #fff;
    border: 0px;
    cursor: pointer;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .add__new
    button:hover {
    background-color: #29aa69;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .add__new {
    width: 100%;
    height: auto;
    padding-top: 10px;
    display: flex;
    justify-content: flex-end;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .add__new
    button {
    width: 150px;
    height: 40px;
    border-radius: 3px;
    background-color: #4d4d4d;
    color: #fff;
    border: 0px;
    cursor: pointer;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .add__new
    button:hover {
    background-color: #29aa69;
}

.account .account__block .account__content .account__tab .account__logo {
    width: 100%;
    height: auto;
    padding-top: 50px;
    display: flex;
    justify-content: center;
}

.account .account__block .account__content .account__tab .account__logo img {
    filter: invert(1);
    opacity: 0.5;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .order__item
    .order__item-bottom
    button {
    width: 50px;
    height: 30px;
    border-radius: 3px;
    border: 1px solid #ac0d02;
    color: #ac0d02;
    font-weight: 300;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .order__item
    .order__item-bottom
    button:hover {
    background-color: #ac0d02;
    color: #fff;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .order__item::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -101%;
    width: 100%;
    height: 100%;
    background-color: #dcdcdc;
    z-index: 1;
    transition: 0.2s all;
}
span.required {
    color: red;
    font-size: 14px;
    font-weight: 300;
}
.swal2-styled.swal2-confirm {
    background-color: #ec0d00 !important;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .order__item:hover::after {
    bottom: 0px;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .order__item
    h4 {
    font-size: 18px;
    color: #282828;
    font-weight: 600;
    z-index: 2;
    position: relative;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .order__item
    .order__item-bottom {
    width: 100%;
    height: auto;
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    position: relative;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .order__item
    .order__item-bottom
    span {
    font-size: 16px;
    color: #29aa69;
    font-weight: 400;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .order__list
    .order__item
    .order__item-bottom
    em {
    font-style: normal;
    color: #000;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__details {
    width: 100%;
    height: auto;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__details.not-active {
    display: none;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__details
    .ac__form {
    width: 100%;
    height: auto;
    padding: 20px;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__details
    .ac__form
    form {
    width: 100%;
    height: auto;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__details
    .ac__form
    form
    .ac__group {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__details
    .ac__form
    form
    .ac__group
    label {
    font-size: 18px;
    color: #4d4d4d;
    font-weight: 600;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__details
    .ac__form
    form
    .ac__group
    input,
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__details
    .ac__form
    form
    .ac__group
    select {
    width: 100%;
    height: 45px;
    border: 2px solid #d7d7d7;
    margin-top: 4px;
    padding-left: 15px;
    outline: none;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__details
    .ac__form
    form
    .ac__button {
    width: 100%;
    height: auto;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__details
    .ac__form
    form
    .ac__button
    button {
    width: 100%;
    height: 45px;
    border: 0px;
    background-color: #d7d7d7;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .ac__details
    .ac__form
    form
    .ac__button
    button:hover {
    background-color: #000;
    color: #fff;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list {
    width: 100%;
    height: auto;
    display: flex;
    padding: 20px 15px;
    flex-wrap: wrap;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .address__item {
    width: 100%;
    height: auto;
    margin: 0px 5px;
    margin-bottom: 10px;
    border-radius: 3px;
    padding: 15px;
    background-color: #fff;
    border-bottom: 3px solid #dcdcdc;
    position: relative;
    overflow: hidden;
    z-index: 2;
    cursor: pointer;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .address__item
    button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 35px;
    border-radius: 2px;
    background-color: #282828;
    color: #fff;
    border: 0px;
    cursor: pointer;
    z-index: 9;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .address__item
    button:hover {
    background-color: #fff;
    color: #000;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .address__item::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -101%;
    width: 100%;
    height: 100%;
    background-color: #dcdcdc;
    z-index: 1;
    transition: 0.2s all;
}

.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .address__item:hover::after {
    bottom: 0px;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .address__item
    h4 {
    font-size: 18px;
    color: #282828;
    font-weight: 600;
    z-index: 2;
    position: relative;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .address__item
    ul {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    padding-top: 15px;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .address__item
    ul
    li {
    list-style: none;
    padding: 3px 0px;
    font-size: 16px;
    color: #4d4d4d;
    font-weight: 500;
    width: 50%;
}
.account
    .account__block
    .account__content
    .account__tab
    .account__tab-content
    .address__list
    .address__item
    ul
    li
    p {
    font-size: 14px;
    color: #a8a8a8;
    font-weight: 400;
    padding-top: 10px;
}

.add__modal {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    display: none;
}
.swal2-container {
    z-index: 999999999999999999999 !important;
}
.add__modal.active {
    display: flex;
}
.add__modal .am__box {
    width: 560px;
    height: auto;
    max-width: 100%;
    padding: 20px;
    border-radius: 3px;
    background-color: #fff;
    border: 3px solid #d7d7d7;
}
.add__modal .am__box .am__form {
    width: 100%;
    height: auto;
}
.add__modal .am__box .am__form form {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}
.add__modal .am__box .am__form form .am__group {
    width: calc(50% - 10px);
    height: auto;
    margin: 5px;
    display: flex;
    flex-direction: column;
}

.add__modal .am__box .am__form form .am__group.am__group--full {
    width: 100%;
    margin: 5px;
}
.add__modal .am__box .am__form form .am__group label {
    font-size: 16px;
    font-weight: 600;
    color: #282828;
}

.add__modal .am__box .am__form form .am__group input,
.add__modal .am__box .am__form form .am__group select,
.add__modal .am__box .am__form form .am__group textarea {
    width: 100%;
    height: 45px;
    padding-left: 15px;
    border: 2px solid #282828;
    margin-top: 6px;
}
.add__modal .am__box .am__form form .am__group textarea {
    height: 80px;
    resize: none;
}
.add__modal .am__box .am__form form .am__group input[type="file"] {
    border: 0px;
    border-bottom: 2px solid #282828;
}
.add__modal .am__box .am__form form .am__button {
    width: 100%;
    height: auto;
    padding-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.add__modal .am__box .am__form form .am__button button {
    width: 200px;
    height: 45px;
    border-radius: 3px;
    background-color: #4d4d4d;
    color: #fff;
    font-size: 17px;
    border: 0px;
}

.add__modal .am__box .am__form form .am__button button:hover {
    background-color: #29aa69;
}

.bill__list {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}
.bill__list .bl__item {
    width: calc(50% - 10px);
    margin: 5px;
    height: auto;
    display: flex;
    flex-direction: column;
}
.bill__list .bl__item.bl__item--full {
    width: 100%;
    margin: 5px 0px;
}
.bill__list .bl__item h5 {
    font-size: 18px;
    color: #000;
    font-weight: 600;
    padding-bottom: 7px;
}
.bill__list .bl__item h4,
.bill__list .bl__item p {
    font-size: 15px;
    font-weight: 400;
    color: #282828;
}

.bill__list .bl__item img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
}
.bill__list .bl__item--image {
    display: flex;
    /* align-items: center; */
}

.categories__block .slick-arrow {
    position: absolute;
    top: 50%;
    left: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #4d4d4d;
    border: 0px;
    color: #fff;
    z-index: 99;
    text-indent: -9999px;
    font-size: 18px;
    font-weight: 400;
    line-height: 0; /* Collapse the original line */
}
.categories__block .slick-arrow:hover {
    background-color: #ec0e00;
}
.categories__block .slick-arrow::after {
    text-indent: 0;
    display: block;
    line-height: initial;
}
.categories__block .slick-arrow.slick-prev {
    left: 10px;
}
.categories__block .slick-arrow.slick-prev::after {
    content: "<";
}
.categories__block .slick-arrow.slick-next {
    right: 10px;
    left: auto;
}
.categories__block .slick-arrow.slick-next::after {
    content: ">";
}

.showroom {
    width: 100%;
    height: auto;
    padding-top: 50px;
}
.showroom .showroom__block {
    width: 100%;
    height: auto;
}
.showroom .showroom__block .showroom__list {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
}
.showroom .showroom__block .showroom__list .showroom__item {
    width: calc(50% - 20px);
    height: auto;
    margin: 10px;
    border-radius: 7px;
    border: 1px solid rgb(207, 203, 202);
    overflow: hidden;
}
.showroom
    .showroom__block
    .showroom__list
    .showroom__item
    .showroom__item-image {
    width: 100%;
    height: 435px;
}
.showroom
    .showroom__block
    .showroom__list
    .showroom__item
    .showroom__item-image
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showroom
    .showroom__block
    .showroom__list
    .showroom__item
    .showroom__item-content {
    width: 100%;
    height: auto;
    min-height: 260px;
    padding: 20px;
    padding-top: 40px;
}

.showroom
    .showroom__block
    .showroom__list
    .showroom__item
    .showroom__item-content
    h5 {
    color: rgb(39, 36, 34);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}
.showroom
    .showroom__block
    .showroom__list
    .showroom__item
    .showroom__item-content
    h4 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    letter-spacing: normal;
    color: rgb(223, 0, 0);
}
.showroom
    .showroom__block
    .showroom__list
    .showroom__item
    .showroom__item-content
    p {
    color: rgb(39, 36, 34);
    font-size: 16px;
    line-height: 28px;
    font-family: SourceSansPro, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: normal;
    white-space: normal;
    overflow: hidden;
    max-height: calc(84px);
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.showroom
    .showroom__block
    .showroom__list
    .showroom__item
    .showroom__item-content
    ul {
    margin-top: 20px;
}
.showroom
    .showroom__block
    .showroom__list
    .showroom__item
    .showroom__item-content
    ul
    li {
    color: rgb(39, 36, 34);
    padding-left: 16px;
    display: inline-flex;

    padding-right: 16px;
    border-color: rgb(207, 203, 202);
    border-width: 1px;
    border-radius: 4px;
    border-style: solid;
    width: fit-content;
    margin-right: 16px;
    margin-bottom: 8px;
    max-width: 100%;
    color: rgb(145, 142, 140);
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: normal;
}

.payweb {
    width: 100%;
    height: auto;
    padding-top: 50px;
}
.payweb .payweb__block {
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
}
.payweb .payweb__block .payweb__side {
    width: 50%;
    height: auto;
}
.payweb .payweb__block .payweb__side:first-child {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding-right: 30px;
}
.payweb .payweb__block .payweb__side:last-child {
    padding-left: 30px;
}
.payweb .payweb__block .payweb__side .payweb__type {
    width: 100%;
    height: auto;
    padding: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}
.payweb .payweb__block .payweb__side .payweb__type .payweb__edit {
    position: absolute;
    top: 30px;
    right: 0px;
    width: 35px;
    height: 35px;
    border-radius: 3px;
    background-color: #fff;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.payweb .payweb__block .payweb__side .payweb__type .payweb__edit:hover {
    background-color: #ec0d00;
    border: 1px solid #ec0d00;
}
.payweb .payweb__block .payweb__side .payweb__type .payweb__edit:hover > img {
    filter: invert(1);
}
.payweb .payweb__block .payweb__side .payweb__type .payweb__edit img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.payweb .payweb__block .payweb__side .payweb__type h4 {
    font-size: 32px;
    font-weight: 500;
    color: #282828;
    padding-bottom: 20px;
}
.payweb .payweb__block .payweb__side .payweb__type .payweb__type-item {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.payweb
    .payweb__block
    .payweb__side
    .payweb__type
    .payweb__type-item
    .pt-item__title {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.payweb
    .payweb__block
    .payweb__side
    .payweb__type
    .payweb__type-item
    .pt-item__title
    .pt-item-radio {
    width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
}
.payweb
    .payweb__block
    .payweb__side
    .payweb__type
    .payweb__type-item.active
    .pt-item__title
    .pt-item-radio::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #ec0e00;
}

.payweb
    .payweb__block
    .payweb__side
    .payweb__type
    .payweb__type-item
    .pt-item__title
    h5 {
    font-size: 22px;
    font-weight: 500;
    color: #282828;
    padding-left: 15px;
}

.payweb
    .payweb__block
    .payweb__side
    .payweb__type
    .payweb__type-item
    .pt-item__content {
    width: 100%;
    height: auto;
    padding-left: 45px;
    display: none;
}
.payweb
    .payweb__block
    .payweb__side
    .payweb__type
    .payweb__type-item
    .pt-item__content
    p {
    font-size: 14px;
}
.payweb
    .payweb__block
    .payweb__side
    .payweb__type
    .payweb__type-item
    .pt-item__content
    select {
    width: 100%;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 7px;
    padding-left: 10px;
}
.payweb .payweb__block .payweb__side .payweb__type .pt-item__content input {
    width: 100%;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 7px;
    padding-left: 10px;
}

.payweb
    .payweb__block
    .payweb__side
    .payweb__type
    .payweb__type-item
    .pt-item__content
    ul {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
}

.payweb
    .payweb__block
    .payweb__side
    .payweb__type
    .payweb__type-item
    .pt-item__content
    ul
    li {
    display: inline-flex;
    font-size: 14px;
}
.payweb
    .payweb__block
    .payweb__side
    .payweb__type
    .payweb__type-item.active
    > .pt-item__content {
    display: block;
}
.payweb .payweb__block .payweb__side .payweb__list {
    width: 100%;
    height: auto;
    padding: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.payweb .payweb__block .payweb__side .pl__title {
    width: 100%;
    height: auto;
}
.payweb .payweb__block .payweb__side .pl__title h4 {
    font-size: 22px;
    font-weight: bold;
    color: #282828;
    padding-bottom: 20px;
}
.payweb .payweb__block .payweb__side .payweb__list .pl__item {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
}

.payweb .payweb__block .payweb__side .payweb__list .pl__item .pl__item-image {
    width: 120px;
    height: 100px;
}

.payweb
    .payweb__block
    .payweb__side
    .payweb__list
    .pl__item
    .pl__item-image
    img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.payweb .payweb__block .payweb__side .payweb__list .pl__item .pl__item-content {
    width: 100%;
    height: auto;
    padding-left: 15px;
}
.payweb
    .payweb__block
    .payweb__side
    .payweb__list
    .pl__item
    .pl__item-content
    h3 {
    font-size: 16px;
    font-weight: 500;
    color: #ec0e00;
    padding-bottom: 4px;
}

.payweb
    .payweb__block
    .payweb__side
    .payweb__list
    .pl__item
    .pl__item-content
    h4 {
    font-size: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    padding-bottom: 2px;
}
.payweb
    .payweb__block
    .payweb__side
    .payweb__list
    .pl__item
    .pl__item-content
    h5 {
    font-size: 14px;
    font-weight: 500;
    color: #282828;
}
.payweb .payweb__block .payweb__side .payweb__total {
    width: 100%;
    height: auto;
    padding: 30px;
}

.payweb .payweb__block .payweb__side .payweb__total ul {
    padding-left: 100px;
}

.payweb .payweb__block .payweb__side .payweb__total ul li {
    display: inline-flex;
    width: 100%;
    height: auto;
    padding-bottom: 10px;
    justify-content: space-between;
    align-items: center;
}

.payweb .payweb__block .payweb__side .payweb__total ul li b {
    font-size: 16px;
    color: #282828;
}
.payweb .payweb__block .payweb__side .payweb__total ul li span {
    font-size: 16px;
    color: #282828;
}
.payweb .payweb__block .payweb__side .payweb__total ul li.big b {
    font-size: 28px;
    color: #282828;
}
.payweb .payweb__block .payweb__side .payweb__total ul li.big span {
    font-size: 28px;
    color: #282828;
}
.payweb .payweb__block .payweb__side .payweb__note {
    width: 100%;
    height: auto;
    padding: 30px;
}
.payweb .payweb__block .payweb__side .payweb__note h5 {
    font-size: 18px;
    font-weight: 500;
    color: #282828;
}
.payweb .payweb__block .payweb__side .payweb__note textarea {
    width: 100%;
    height: 120px;
    margin-top: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 10px;
    resize: none;
    outline: none;
}
.payweb .payweb__block .payweb__side .payweb__next {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    padding: 0px 30px;
}

.payweb .payweb__block .payweb__side .payweb__next button {
    width: 100%;
    max-width: 220px;
    height: 60px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background-color: #ec0e00;
    border: 0px;
    cursor: pointer;
}
.payweb .payweb__block .payweb__side .payweb__next button:hover {
    background-color: #000;
}

.stepper {
    width: 100%;
    height: auto;
    padding: 20px 0px;
    padding-top: 60px;
}
.stepper .stepper__block {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stepper .stepper__block .stepper__inside {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.stepper .stepper__block .stepper__inside::before {
    position: absolute;
    top: 25px;
    left: 0px;
    width: 100%;
    height: 2px;
    background-color: #000;
    content: "";
    z-index: 1;
}

.stepper .stepper__block .stepper__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 2;
}
.stepper .stepper__block .stepper__step span {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #000;
    font-size: 22px;
    font-weight: 500;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.stepper .stepper__block .stepper__step span img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    filter: invert(1);
}
.stepper .stepper__block .stepper__step.active span {
    background-color: #000;
    color: #fff;
    font-weight: 600;
}
.stepper .stepper__block .stepper__step p {
    font-size: 26px;
    font-weight: 500;
    color: #000;
}
.stepper .stepper__block .stepper__step.active p {
    font-weight: 600;
}
.stepper .stepper__block .stepper__step.active--green span {
    background-color: #29aa69;
    border: 2px solid #29aa69;
}

.scrollto {
    width: 100%;
    height: auto;
    min-height: 1px;
    position: fixed;
    left: 0px;
    bottom: 20px;
    display: none;
    justify-content: center;
    align-items: center;
}
.scrollto .scrollto__circle {
    width: 50px;
    height: 50px;
    background-color: #fff;
    z-index: 999999999;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scrollto .scrollto__circle img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.features__slider {
    width: 100%;
    height: auto;
    padding-top: 70px;
}
.features__slider .slick-arrow {
    visibility: hidden;
}
.features__slider .slick-arrow:after {
    visibility: visible;
    position: absolute;
    top: 0px;
    left: 10px;
    width: 120px;
    height: 50px;
    /* background-color: #c9c9c9; */
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: #000;
    content: "<";
    border: 1px solid #000;
    border-radius: 3px;
}
.features__slider .slick-arrow.slick-next:after {
    /* left: 80px; */
    content: ">";
    left: auto;
    right: 10px;
}
.features__slider .slick-arrow.slick-prev:after {
    content: "<";
}

.features__slider .fs__top {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.features__slider .fs__top h4 {
    font-size: 26px;
    font-weight: 500;
}

/* CUSTOM PHILIPS */
.philips__landing {
    width: 100%;
    height: auto;
    padding: 40px 0px;
}
.philips__landing.bff {
    background-color: #000;
}

.philips__landing .pl__hero {
    width: 100%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
}
.philips__landing .pl__hero img {
    width: 100%;
    height: auto;
    /* max-height: 400px; */
    object-fit: cover;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 50px;
}

.philips__landing .pl__content {
    width: 100%;
    height: auto;
    padding: 40px 0px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 860px;
    margin: 0px auto;
}

.philips__landing .pl__content h1 {
    font-size: 52px;
    font-weight: 600;
    color: #000;
}

.philips__landing.bff .pl__content h1 {
    color: #fff;
}
.philips__landing .pl__content p {
    font-size: 24px;
    font-weight: 300;
    color: #4d4d4d;
    line-height: 24px;
    padding-top: 10px;
    text-align: center;
}

.philips__landing.bff .pl__content p {
    color: #fff;
}

.philips__landing .pl__links {
    width: 100%;
    height: auto;
    padding: 20px 0px;
}
.philips__landing .pl__links ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200;
    margin: 0px auto;
}

.philips__landing .pl__links ul li {
    width: calc(25% - 20px);
    height: auto;
    margin: 10px;
    list-style: none;
    min-width:180px;
}
.philips__landing .pl__links ul li a {
    width: 100%;
    height: 80px;
    background-color: #ec0e00;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    transition: 0.2s all;
    text-align: center;
}
.philips__landing .pl__links ul li a:hover {
    transform: scale(1.1);
    background-color: #000;
}
.philips__landing .pl__slider {
    width: 100%;
    height: auto;
    padding-top: 50px;
    max-width: 1200px;
    margin: 0px auto;
}
.philips__landing .pl__slider .pl__slide {
    width: 100%;
    height: auto;
}
.philips__landing .pl__slider .pl__slide .pls__content {
    width: 100%;
    height: auto;
}
.philips__landing .pl__slider .pl__slide .pls__content img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    overflow: hidden;
}
.philips__landing .pl__slider-mini {
    width: 100%;
    height: auto;
    max-width: 1200px;
    margin: 0px auto;
    padding-top: 20px;
}
.philips__landing .pl__slider-mini .pl__slide {
    padding: 10px;
}
.philips__landing .pl__slider-mini .pl__slide .pls__content img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    overflow: hidden;
    transition: 0.2s all;
}
.philips__landing .pl__slider-mini .pl__slide.slick-current .pls__content img {
    border-bottom: 10px solid #ec0e00;
}
.philips__landing .pl__slider-mini .pl__slide:hover > .pls__content img {
    border-bottom: 5px solid #000;
}

.custom__products-slider {
    width: 100%;
    height: auto;
    padding: 40px 0px;
}

.custom__products-slider .cps__slide {
    width: 100%;
    height: auto;
}

.custom__products-slider .cps__slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
}

/* NEW FEATURED */

.nfeatured {
    width: 100%;
    height: auto;
    padding: 40px 0px;
}
.nfeatured .featured__top {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nfeatured .featured__top h3 {
    font-size: 28px;
    font-weight: 500;
    color: #282828;
}

.nfeatured .featured__top a {
    padding: 7px 15px;
    border-radius: 4px;
    background-color: #ec0e00;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin-right: 10px;
}

.nfeatured .featured__box {
    width: 100%;
    height: auto;
    margin-top: 20px;
    display: flex;
}

.nfeatured .featured__box .featured__post {
    min-width: 350px;
    min-height: 300px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
}

.nfeatured .featured__box .featured__post img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.nfeatured .featured__box .featured__post .fp__content {
    position: absolute;
    left: 0px;
    bottom: 0px;
    padding: 20px;
    z-index: 2;
}
.nfeatured .featured__box .featured__post .fp__content h4 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}
.nfeatured .featured__box .featured__post .fp__content p {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
}

.nfeatured .featured__box .featured__items {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    padding-left: 10px;
}

.nfeatured .featured__box .featured__items .featured__item {
    width: calc(33.33% - 20px);
    margin: 10px;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #d7d7d7;
    cursor: pointer;
}
.nfeatured .featured__box .featured__items .featured__item:hover {
    border: 1px solid #ec0e00;
}

.nfeatured .featured__box .featured__items .featured__item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}
.nfeatured .featured__box .featured__items .featured__item h4 {
    font-size: 24px;
    font-weight: 600;
    color: #282828;
    padding: 5px 0px;
    text-align: center;
}

.nfeatured .featured__box .featured__items .featured__item .featured__price {
    width: 100%;
    height: auto;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nfeatured .featured__box .featured__items .featured__item .featured__price em {
    font-size: 16px;
    font-weight: 400;
    color: #506270;
    margin-right: 20px;
    font-style: normal;
    text-decoration: line-through;
}

.nfeatured
    .featured__box
    .featured__items
    .featured__item
    .featured__price
    span {
    font-size: 22px;
    font-weight: 600;
    /* color: #282828; */
    color: #ec0e00;
}

.black-theme .header .header__svg .header__svg-inside svg ellipse {
    fill: #000;
}
.black-theme .header {
    background-color: #000;
}
.black-theme
    .header
    .header__block
    .header__main
    .header__actions
    a.normal--action:hover {
    background-color: #fff !important;
    color: #ec0e00 !important;
}
.black-theme .cool__price .cp__op .cp__op-discount {
    background-color: #000;
}
.black-theme
    .featured
    .featured__block
    .featured__box
    .featured__big
    .featured__big-content
    span {
    color: #000;
}
.black-theme
    .featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-top
    .featured__category
    .featured__category-items
    .featured__category-item
    .featured__category-item-image
    span {
    color: #000;
}
.black-theme
    .featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-bottom
    .featured__content-inline-category
    .inline-category__item
    span {
    color: #000;
}
.black-theme
    .featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-bottom
    .featured__content-inline-category
    .inline-category__title
    a {
    color: #000;
}
.black-theme
    .featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-bottom
    .featured__content-inline-cta
    a {
    color: #000;
}
.black-theme .scroll_to_top {
    background-color: #000;
}
.black-theme
    .news
    .news__block
    .news__items
    .news__item
    .news__item-content
    span {
    background-color: #000;
}
.black-theme
    .news
    .news__block
    .news__items
    .news__item
    .news__item-content
    h3 {
    color: #000;
}
.black-theme
    .news
    .news__block
    .news__items
    .news__item:hover
    .news__item-content
    a {
    background-color: #000;
}
.black-theme
    .news
    .news__block
    .news__items
    .news__item:hover
    .news__item-content
    a {
    background-color: #000;
}
.black-theme
    .featured
    .featured__block
    .featured__box
    .featured__content
    .featured__content-bottom
    .featured__content-inline-cta
    a::after {
    color: #000;
}
.black-theme
    .header
    .header__block
    .header__main
    .header__actions
    a.normal--action {
    color: #fff;
    border: 1px solid #fff;
}
.black-theme .header .header__block .header__top .header__top-right a {
    color: #fff;
}
.black-theme .header .header__block .header__top .header__top-right img {
    filter: invert(1);
}

.blackfriday {
    width: 100%;
    height: auto;
    padding: 90px 0px;
    min-height: 550px;
    padding-top: 130px;
    background-color: #000;
    background-image: url("../img/bfriday.png");
    background-position: center;
    background-size: cover;
}
.blackfriday .bf__block {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blackfriday .bf__block .bf__top {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
}
.blackfriday .bf__block .bf__top .bf__left {
    width: 50%;
    height: auto;
}
.blackfriday .bf__block .bf__top .bf__left h3 {
    font-size: 68px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-family: "Triumvirate", sans-serif;
    text-shadow: transparent 0px 0px 1em, #ec0d00 0px -0.04em 0px,
        #ec0d00 0.04em 0px 0px, #ec0d00 0px 0.04em 0px,
        #ec0d00 -0.034em -0.024em 0px, #ec0d00 -0.03em -0.04em 0px,
        #ec0d00 -0.01em -0.04em 0px, #ec0d00 0.052em -0.04em 0px,
        #ec0d00 0.04em -0.04em 0px, #ec0d00 0.02em -0.04em 0px,
        #ec0d00 0.047em -0.025em 0px, #ec0d00 -0.045em 0.016em 0px,
        #ec0d00 -0.039em 0.038em 0px, #ec0d00 -0.052em 0.04em 0px,
        #ec0d00 -0.042em 0.04em 0px, #ec0d00 0.031em 0.028em 0px,
        #ec0d00 0.029em 0.04em 0px, #ec0d00 0.05em 0px 0.05em,
        #ec0d00 0px 0.05em 0.05em, #ec0d00 0.05em 0.05em 0.05em;
}

.blackfriday .bf__block .bf__top .bf__right {
    width: 50%;
    height: auto;
}

.blackfriday .bf__block .bf__top .bf__right p {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
}
.blackfriday .bf__block .bf__top .bf__right .bf__countdown {
    width: 100%;
    height: auto;
    padding-top: 20px;
    display: flex;
    align-items: center;
}
.blackfriday .bf__block .bf__top .bf__right .bf__countdown .bfc__item {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 10px;
}
.blackfriday .bf__block .bf__top .bf__right .bf__countdown .bfc__item h5 {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    font-family: "Triumvirate", sans-serif;
    background-color: rgba(0, 0, 0, 0.8);
    border: 2px solid #ec0e00;
}
.blackfriday .bf__block .bf__top .bf__right .bf__countdown .bfc__item span {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    padding-top: 10px;
}

@media screen and (max-width: 1120px) {
    .nfeatured .featured__box .featured__items .featured__item {
        display: flex;
        align-items: center;
        width: calc(50% - 20px);
        padding: 10px;
    }
    .nfeatured .featured__box .featured__items .featured__item img {
        min-width: 100px;
        max-width: 100px;
        height: 100px;
        object-fit: contain;
        margin-right: 20px;
    }
    .nfeatured .featured__box .featured__items .featured__item h4 {
        font-size: 18px;
        font-weight: 500;
        text-align: left;
    }
    .nfeatured
        .featured__box
        .featured__items
        .featured__item
        .featured__price {
        justify-content: flex-start;
    }
    .nfeatured
        .featured__box
        .featured__items
        .featured__item
        .featured__price
        em,
    .nfeatured
        .featured__box
        .featured__items
        .featured__item
        .featured__price
        span {
        font-size: 14px;
        /* margin: 0px; */
    }

    .nfeatured .featured__box .featured__items .featured__item .fi__fc {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .nfeatured
        .featured__box
        .featured__items
        .featured__item
        .featured__price
        span {
        font-size: 16px;
    }
}
/* .stepper .stepper__block .stepper__step.active--green p {
    color: #29aa69;
} */
/* @media (resolution: 120dpi) {
    body {
        zoom: 0.8;
    }
} */
@media screen and (max-width: 1560px) {
    .container {
        padding: 0px 10px;
    }

    .header .header__block svg {
        left: -820px;
    }
    .header .header__block .header__main .header__search .header__search-box {
        width: 450px;
    }

    .offers
        .offers__block
        .offers__item
        .offers__item-list
        .oi-list__item
        .oi-list__item-content
        .oi-list__item-price
        em {
        right: 0px;
    }
    .offers
        .offers__block
        .offers__item
        .offers__item-list
        .oi-list__item
        .oi-list__item-content
        h4 {
        font-size: 20px;
    }
    .header {
        background-color: #ec0e00;
    }
    .header .header__block svg {
        display: none;
    }
    .header .header__block .header__top .header__top-right img {
        filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(110deg)
            brightness(103%) contrast(102%);
    }
    .header .header__block .header__top .header__top-right a {
        color: #fff;
    }
    .header .header__block .header__main .header__actions a.normal--action {
        border: 1px solid #fff;
        color: #fff;
        padding: 0px 10px;
    }
    .header .header__block .header__main .header__actions a.icon--action {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
}
@media screen and (max-width: 1460px) {
    .header .header__block svg {
        left: -890px;
    }
    .header .header__block .header__main .header__actions a {
        margin-right: 10px !important;
    }

    .slider .slider__block .slider__items .slider__item img {
        left: -29px;
    }
}
@media screen and (max-width: 1440px) {
    .offers .offers__block .offers__item {
        flex-basis: calc(50% - 15px);
    }
    .newcats .newcats__top ul li h4 {
        font-size: 12px;
    }
    .newcats .newcats__content .newcats__images .newcats__image {
        width: 220px;
        /* width:16.66%; */
        height: 350px;
    }
    .newcats .newcats__content .newcats__item {
        width: calc(25% - 20px);
    }

    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-top
        .featured__category:last-child {
        /* margin-left: 20px; */
        margin-top: 10px;
    }

    .news .news__block .news__items .news__item .news__item-content h3 {
        font-size: 24px;
        padding: 15px 0px;
    }

    .footer .footer__block .footer__mid ul li {
        width: 45%;
    }
}
@media screen and (max-width: 1365px) {
    /* .header {
        background-color: #ec0e00;
    }
    .header .header__block svg {
        display: none;
    }
    .header .header__block .header__top .header__top-right img {
        filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(110deg)
            brightness(103%) contrast(102%);
    }
    .header .header__block .header__top .header__top-right a {
        color: #fff;
    }
    .header .header__block .header__main .header__actions a.normal--action {
        border: 1px solid #fff;
        color: #fff;
        padding: 0px 10px;
    }
    .header .header__block .header__main .header__actions a.icon--action {
        width: 50px;
        height: 50px;
        min-width: 50px;
    } */
    .header .header__block .header__main .header__actions a.normal--action {
        font-size: 14px;
    }
    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-top
        .featured__category {
        width: 100%;
    }
    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-top
        .featured__category:last-child {
        /* display: none; */
    }
    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-top
        .featured__category
        .featured__category-items
        .featured__category-item {
        width: 50%;
    }

    .profile__box .offers .offers__block {
        flex-wrap: wrap;
    }

    .profile__box .offers .offers__block .offers__item {
        flex-basis: 100%;
        margin-bottom: 20px;
    }

    .slider .slider__block .slider__items .slider__item img {
        left: -25px;
    }
}
@media screen and (max-width: 1280px) {
    .offers
        .offers__block
        .offers__item
        .offers__item-list
        .oi-list__item
        .oi-list__item-content
        h4 {
        font-size: 16px;
    }
    .offers
        .offers__block
        .offers__item
        .offers__item-list
        .oi-list__item
        .oi-list__item-content
        span {
        font-size: 14px;
    }
    .offers
        .offers__block
        .offers__item
        .offers__item-list
        .oi-list__item
        .oi-list__item-content
        .oi-list__item-price {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .offers
        .offers__block
        .offers__item
        .offers__item-list
        .oi-list__item
        .oi-list__item-content
        .oi-list__item-price
        em {
        position: relative;
        top: auto;
        right: auto;
        transform: unset;
        margin-left: 15px;
    }
    .offers
        .offers__block
        .offers__item
        .offers__item-list
        .oi-list__item
        .oi-list__item-image
        img {
        height: 140px;
    }

    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-bottom
        .featured__content-inline-cta {
        /* display: none; */
    }

    .news .news__block .news__items .news__item .news__item-content p {
        font-size: 16px;
    }

    .container-x {
        padding: 0px 10px;
    }
}
@media screen and (max-width: 1260px) {
    .header .header__block .header__main .header__search .header__search-box {
        width: 410px;
        padding-right: 0px;
    }
    .header
        .header__block
        .header__main
        .header__search
        .header__search-box
        img {
        right: 20px;
        /* filter: invert(36%) sepia(16%) saturate(491%) hue-rotate(158deg)
            brightness(96%) contrast(89%); */
    }
    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-top
        .featured__category
        .featured__category-items
        .featured__category-item
        .featured__category-item-content
        .content__price {
        transform: none;
    }
    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-bottom
        .featured__content-inline-cta {
        width: 100%;
        max-width: 100%;
    }
    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-bottom {
        flex-wrap: wrap;
    }
    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-bottom
        .featured__content-inline-category {
        width: 100%;
        max-width: 100%;
    }
}
@media screen and (max-width: 1220px) {
    .header .header__block .header__main .header__logo img {
        max-width: 270px;
    }
    .header .header__block .header__main .header__actions a.normal--action {
        font-size: 16px;
    }
}
@media screen and (max-width: 1180px) {
    .newcats {
        top: 188px;
    }
    .footer .footer__block .footer__left {
        flex-basis: 30%;
    }
    .footer .footer__block .footer__mid {
        flex-basis: 36.66%;
    }
    .footer .footer__block .footer__right {
        padding-left: 10px;
    }

    .product
        .product__block
        .product__content
        .product__top
        .product__top-review
        .review__code {
        margin-left: 20px;
    }
}
@media screen and (max-width: 1140px) {
    .newcats {
        top: 182px;
    }
    .header .header__block .header__main .header__logo img {
        max-width: 240px;
    }
    .header .header__block .header__main .header__search .header__search-box {
        width: 360px;
    }

    .offers
        .offers__block
        .offers__item
        .offers__item-list
        .oi-list__item
        .oi-list__item-image
        img {
        height: 120px;
    }

    .contact__page .contact__cities {
        flex-wrap: wrap;
    }

    .contact__page .contact__cities .contact__city {
        margin: 10px;
    }
}
@media screen and (max-width: 1120px) {
    .newcats {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100vh;
        z-index: 99999999;
        overflow-y: scroll;
        padding-top: 80px;
    }
    .newcats .newcats__close {
        display: flex;
        position: absolute;
        top: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
        background-color: #000;
        color: #fff;
        font-size: 26px;
        font-weight: 400;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .newcats .newcats__close img {
        width: 30px;
        height: 30px;
        object-fit: contain;
        filter: invert(100%) sepia(0%) saturate(7496%) hue-rotate(144deg)
            brightness(110%) contrast(101%);
    }
    .newcats .newcats__top ul {
        flex-wrap: wrap;
    }
    .newcats .newcats__content {
        flex-wrap: wrap;
    }
    .newcats .newcats__content .newcats__images {
        width: 100%;
    }
    .newcats .newcats__content .newcats__images .newcats__image {
        width: calc(50% - 20px);
    }
    .newcats .newcats__top ul li {
        width: 25%;
        height: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 10px;
    }
    .newcats .newcats__top ul li h4 {
        margin-left: 0px;
    }
    .newcats .newcats__top ul li img {
        margin-bottom: 7px;
    }
    .news .news__block .news__items .news__item .news__item-content {
        padding: 10px 15px;
    }

    .footer .footer__block .footer__right .monri-pay {
        width: 100%;
    }
    .footer .footer__block .footer__right .footer__cards {
        flex-wrap: wrap;
    }

    .shop .shop__block .shop__content .shop__list .shop__item {
        width: 50%;
    }

    .all__categories .al__box .al__list .al__items {
        width: 33.33%;
    }
}
@media screen and (max-width: 1060px) {
    .newcats .newcats__top ul li {
        padding: 0px 3px;
    }
    .header .header__block .header__main .header__search .header__search-box {
        width: 320px;
    }
    .header
        .header__block
        .header__main
        .header__search
        .header__search-box
        img {
        display: none;
    }

    .product
        .product__block
        .product__content
        .product__info
        .product__about
        .pa__list
        li
        p {
        width: 180px;
    }

    .product__combo {
        padding-bottom: 40px;
    }
    .product__combo .combo__price {
        position: relative;
        top: 20px;
    }

    .profile
        .profile__block
        .profile__right
        .profile__box
        .profile__box-content
        .address__list {
        flex-wrap: wrap;
    }

    .profile
        .profile__block
        .profile__right
        .profile__box
        .profile__box-content
        .address__list
        .address__item {
        margin-bottom: 20px;
    }

    .profile
        .profile__block
        .profile__right
        .profile__box
        .profile__box-content
        .racuni__list {
        flex-wrap: wrap;
    }

    .profile
        .profile__block
        .profile__right
        .profile__box
        .profile__box-content
        .racuni__list
        .racun {
        width: 100%;
        margin: 0px;
        margin-bottom: 10px;
    }

    .profile .profile__block .profile__right .profile__box .kuponi__lista {
        flex-wrap: wrap;
    }

    .profile
        .profile__block
        .profile__right
        .profile__box
        .kuponi__lista
        .kupon {
        width: 100%;
        margin: 0px;
        margin-bottom: 10px;
    }

    .wishlist
        .wishlist__block
        .wishlist__items
        .wishlist__products
        .wishlist__product,
    .wishlist
        .wishlist__block
        .wishlist__items
        .wishlist__products
        .wishlist__product-add {
        min-width: 350px;
        padding-bottom: 0px;
    }

    .wishlist
        .wishlist__block
        .wishlist__items
        .wishlist__products
        .wishlist__product
        .buyed {
        position: relative;
        bottom: unset;
        right: unset;
        padding: 18px 12px;
        margin-top: 20px;
    }
}
@media screen and (max-width: 1024px) {
    .product .product__block .product__description {
        margin-top: 50px;
    }
    .offers .offers__block .offers__item {
        min-height: 400px;
    }
    .header .header__block .header__main {
        align-items: flex-end;
        padding-bottom: 35px;
    }
    .header .header__block .header__main .header__main-left {
        flex-basis: 60%;
        flex-wrap: wrap;
    }
    .header .header__block .header__main .header__main-left .header__search {
        margin-top: 10px;
    }
    .header .header__block .header__main .header__main-right {
        flex-basis: 40%;
    }
    .header .header__block .header__main .header__actions a.normal--action {
        min-width: 111px;
    }

    .news .news__block .news__items .news__item {
        width: 100%;
        height: auto;
        flex-wrap: wrap;
    }
    .news .news__block .news__items .news__item .news__item-image {
        width: 100%;
        height: 220px;
    }
    .news .news__block .news__items .news__item .news__item-content {
        width: 100%;
        padding: 20px;
    }

    .footer .footer__block {
        flex-wrap: wrap;
    }
    .footer .footer__block .footer__left {
        flex-basis: 50%;
    }
    .footer .footer__block .footer__mid {
        flex-basis: 50%;
    }
    .footer .footer__block .footer__right {
        flex-basis: 100%;
        margin-top: 35px;
        padding: 0px;
        justify-content: center;
        text-align: center;
    }
    .footer .footer__block .footer__right .footer__cards {
        justify-content: center;
    }

    .footer__nav .footer__nav-block ul li a {
        font-size: 14px;
        margin-right: 10px;
    }
    .footer__nav .footer__nav-block span {
        font-size: 14px;
    }

    .shop__filter-action {
        display: block;
    }
    .shop__filter-action button {
        cursor: pointer;
    }

    .shop .shop__block .shop__sidebar {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        min-height: 100vh;
        background-color: #fff;
        padding-right: 0px;
        margin-right: 0px;
        z-index: 99999;
        padding: 20px;
        padding-top: 70px;
        display: none;
        overflow-y: auto;
    }
    .shop .shop__block .shop__sidebar .sidebar__close {
        display: block;
        cursor: pointer;
    }

    .product .product__block {
        flex-wrap: wrap;
    }
    .product .product__block .product__content {
        padding-right: 0px;
        order: 2;
        width: 100%;
    }
    .product .product__block .product__short {
        width: 100%;
        order: 1;
        position: relative;
        height: auto;
        padding-bottom: 20px;
    }
    .product
        .product__block
        .product__short
        .product__short-top
        .product__short-shortly
        .shortly__brand {
        display: flex;
        justify-content: center;
    }
    .product
        .product__block
        .product__short
        .product__short-top
        .product__short-shortly
        .shortly__brand
        img {
        max-width: 100%;
        width: 200px;
    }
    .product .product__block .product__short .product__short-description {
        display: none;
    }

    .product .product__block .product__content {
        margin-top: 40px;
    }

    .cart .cart__block .cart__box {
        flex-wrap: wrap;
    }
    .cart .cart__block .cart__box .cart__left {
        width: 100%;
        margin-bottom: 20px;
    }
    .cart .cart__block .cart__box .cart__info {
        width: 100%;
    }
    .product .product__block .product__short .product__short-extra {
        margin-top: 20px;
    }
    .product .product__block .product__description {
        width: 100%;
        order: 3;
    }
    .product .product__block .product__short {
        order: 2;
    }
    .product .product__block .product__content {
        order: 1;
    }

    .acats {
        top: 310px;
    }

    .acats .acats__block .acats__items .acats__item {
        width: calc(33.33% - 20px);
    }

    .product__short-extra {
        right: 0px;
    }
    .product__short-extra ul {
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
    }
    .product__short-extra ul li {
        margin: 5px 0px;
    }
}
@media screen and (max-width: 960px) {
    .contact__page {
        flex-wrap: wrap;
    }
    .contact__page .new__contact {
        width: 100%;
    }
    .contact__page .new__contact-map {
        width: 100%;
    }
    .featured .featured__block .featured__box {
        flex-wrap: wrap;
        height: auto;
    }
    .featured .featured__block .featured__box .featured__big {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }
    .featured .featured__block .featured__box .featured__big::after {
        display: none;
    }
    .featured .featured__block .featured__box .featured__content {
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        border-top: 0px;
    }

    .compare .compare__block .compare__box .compare__box-item {
        width: 50%;
    }
    .compare .compare__block .compare__box .compare__box-item:first-child {
        display: none;
    }
    .compare .compare__block .compare__list .compare__table .ct__body .ct__row {
        flex-wrap: wrap;
    }
    .compare
        .compare__block
        .compare__list
        .compare__table
        .ct__body
        .ct__row
        .ct__item {
        width: 50%;
        border-bottom: 1px solid #e9e9e9;
    }
    .compare
        .compare__block
        .compare__list
        .compare__table
        .ct__body
        .ct__row
        .ct__item:first-child {
        width: 100%;
    }
    .compare
        .compare__block
        .compare__list
        .compare__table
        .ct__body
        .ct__row
        .ct__item:last-child {
        border-bottom: 1px solid #e9e9e9;
    }

    .profile
        .profile__block
        .profile__right
        .profile__box
        .profile__box-content
        .latest__orders
        .order__item {
        width: calc(33.33% - 20px);
    }
    .showroom
        .showroom__block
        .showroom__list
        .showroom__item
        .showroom__item-image {
        height: 320px;
    }
    .footer__social .fs__block {
        flex-wrap: wrap;
    }
    .footer__social .fs__block .fs__logos {
        width: 100%;
        padding-top: 15px;
    }
    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-top
        .featured__category {
        padding-bottom: 15px;
    }

    .nfeatured .featured__box {
        flex-wrap: wrap;
    }

    .nfeatured .featured__box .featured__post {
        width: 100%;
        min-width: 100%;
        margin-bottom: 10px;
    }
    .blackfriday .bf__block .bf__top {
        flex-wrap: wrap;
    }
    .blackfriday .bf__block .bf__top .bf__left {
        width: 100%;
        padding-bottom: 20px;
        text-align: center;
    }
    .blackfriday .bf__block .bf__top .bf__right {
        width: 100%;
        text-align: center;
    }
    .blackfriday .bf__block .bf__top .bf__right .bf__countdown {
        justify-content: center;
    }
}
@media screen and (max-width: 880px) {
    .header .header__block .header__top .header__top-right {
        display: none;
    }
    .scrollto {
        display: flex;
    }

    .scrollto.active {
        display: none;
    }

    .slider .slider__block .slider__items .slider__item {
        flex-wrap: wrap;
        height: auto;
        box-shadow: unset;
    }
    .slider .slider__block .slider__items .slider__item img {
        clip-path: unset;
        position: relative;
        width: 100%;
        height: 250px;
        top: auto;
        left: auto;
    }
    .slider .slider__block .slider__items .slider__item .slider__item-content {
        width: 100%;
        position: relative;
        padding: 20px;
        top: auto;
        right: auto;
        transform: unset;
        padding-bottom: 60px;
        padding-top: 12px;
    }
    .slider
        .slider__block
        .slider__items
        .slider__item
        .slider__item-content
        ul
        li {
        margin-top: 8px;
    }
    .slider
        .slider__block
        .slider__items
        .slider__item
        .slider__item-content
        h5 {
        padding: 10px 0px;
    }
    .slider
        .slider__block
        .slider__items
        .slider__item
        .slider__item-content
        h3 {
        font-size: 28px;
    }
    .slider
        .slider__block
        .slider__items
        .slider__item
        .slider__item-content
        p {
        font-size: 16px;
        padding-top: 10px;
    }

    .offers .offers__block {
        flex-wrap: wrap;
    }
    .offers .offers__block .offers__item {
        flex-basis: 100%;
        margin-bottom: 20px;
    }

    .extra__products .ep__list {
        flex-wrap: wrap;
    }

    .extra__products .ep__list .ep__item {
        width: calc(50% - 20px);
    }

    .slider .slider__block .slider__items .slider__item .slider__price {
        bottom: auto;
        left: 20px;
        top: 170px;
        font-size: 20px;
        padding: 8px 22px;
    }
    .slider
        .slider__block
        .slider__items
        .slider__item
        .slider__price.price-pos-2 {
        bottom: auto;
        left: auto;
        right: auto;
        right: 20px;
        top: 170px;
    }
    .slider
        .slider__block
        .slider__items
        .slider__item
        .slider__price.price-pos-3 {
        bottom: auto;
        left: auto;
        right: auto;
        top: auto;
        top: 20px;
        right: 20px;
    }

    .payweb .payweb__block .payweb__side:last-child {
        order: 1;
    }
    .payweb .payweb__block .payweb__side:first-child {
        order: 2;
    }
    .payweb .payweb__block {
        flex-wrap: wrap;
    }
    .payweb .payweb__block .payweb__side {
        width: 100%;
        padding: 20px !important;
        margin-bottom: 20px;
    }

    .offers .offers__block .offers__item .offers__item-list .oi-list__item {
        height: 350px;
        position: relative;
    }
    .offers
        .offers__block
        .offers__item
        .offers__item-list
        .oi-list__item
        .oi-list__item-image {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }
    .offers
        .offers__block
        .offers__item
        .offers__item-list
        .oi-list__item
        .oi-list__item-image
        img {
        height: calc(100% - 100px);
    }

    .offers
        .offers__block
        .offers__item
        .offers__item-list
        .oi-list__item
        .oi-list__item-content {
        position: absolute;
        left: 0px;
        bottom: 0px;
        width: 100%;
        padding: 10px;
        padding-bottom: 0px;
    }
    .offers
        .offers__block
        .offers__item
        .offers__item-list
        .oi-list__item
        .oi-list__item-content
        .oi-list__item-price {
        margin-top: 5px;
    }
    .offers
        .offers__block
        .offers__item
        .offers__item-list
        .oi-list__item
        .oi-list__item-content
        h4 {
        text-align: center;
    }
    .offers
        .offers__block
        .offers__item
        .offers__item-list
        .oi-list__item
        .oi-list__item-content
        .oi-list__item-price {
        width: 100%;
    }
}
@media screen and (max-width: 820px) {
    .profile
        .profile__block
        .profile__right
        .profile__box
        .profile__box-content
        .latest__orders
        .order__item {
        width: calc(50% - 20px);
    }

    .profile .profile__block {
        flex-wrap: wrap;
    }

    .profile .profile__block .profile__left {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        display: flex;
        align-items: flex-end;
    }

    .profile .profile__block .profile__right {
        padding-left: 0px;
    }

    .profile .profile__block .profile__left .profile__image {
        max-width: 250px;
    }

    .profile .profile__block .profile__left .profile__left-extra {
        margin-left: 20px;
    }

    .profile .profile__block .profile__left .profile__left-extra ul li {
        padding: 10px;
    }

    .all__categories .al__box .al__list .al__items {
        width: 50%;
    }
}
@media screen and (max-width: 756px) {
    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-bottom
        .featured__content-inline-category
        .inline-category__item
        .price_custom {
        top: 70%;
        right: -120px;
    }
    .header .header__block .header__top {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        min-height: 100vh;
        background-color: #fff;
        z-index: 999999999;
        display: none;
        align-items: flex-start;
    }
    .header .header__block .header__top.active {
        display: flex;
    }
    .header .header__block .header__top .header__top-left .header__top--close {
        display: flex;
    }
    .header .header__block .header__top .header__top-left ul {
        padding-top: 100px;
    }
    .header .header__block .header__top .header__top-left ul li {
        width: 100%;
        height: auto;
        padding: 10px 20px;
    }
    .header .header__block .header__top .header__top-left ul li a {
        font-size: 22px;
        color: #506270;
        font-weight: bold;
    }
    .header .header__block .header__main .header__actions {
        position: absolute;
        top: 30px;
        right: 0px;
    }
    .header .header__block .header__main .header__actions a:nth-child(3) {
        /* border-top-left-radius: 5px !important;
        border-bottom-left-radius: 5px !important; */
    }
    .header
        .header__block
        .header__main
        .header__search
        .header__search-box
        .header__search-box-input {
        width: calc(100% - 120px);
    }
    .header .header__block .header__main .header__actions a:nth-child(6) {
        border-top-right-radius: 5px !important;
        border-bottom-right-radius: 5px !important;
    }
    .header .header__block .header__main .header__actions a.normal--action {
        width: 100%;
        margin-top: 10px;
        position: absolute;
        /* top: 50px; */
        left: 0px;
        top: 60px;
        font-size: 12px;
        width: auto;
        height: 40px;
        padding: 0px;
        left: 40px;
        /* Kada je piktogram */
        left:auto;
        right:-10px;
    }
    .header .header__block .header__main .header__actions a.icon--action {
        width: 40px;
        height: 40px;
        border-radius: 0px;
        margin: 0px !important;
        box-shadow: unset;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .header
        .header__block
        .header__main
        .header__actions
        a.icon--action.icon--action--gift {
        display: none;
    }
    .header
        .header__block
        .header__main
        .header__actions
        a.icon--action:nth-child(4) {
        border: 1px solid rgba(255, 255, 255, 0.7);
    }
    .header .header__block .header__main .header__actions a.icon--action img {
        width: 20px;
        height: 20px;
    }
    .header .header__block .header__main .header__actions a.icon--action span {
        width: 15px;
        height: 15px;
        font-size: 10px;
        top: 5px;
        right: 5px;
    }
    .header .header__block .header__main .header__actions a.icon--action--menu {
        display: inline-flex;
    }
    .header .header__block .header__main .header__main-left {
        flex-basis: 100%;
    }
    .header .header__block .header__main .header__main-left .header__search {
        width: 100%;
    }
    .header
        .header__block
        .header__main
        .header__main-left
        .header__search
        .header__search-box {
        width: 100%;
    }

    .slider {
        padding-top: 20px;
    }

    .categories
        .categories__block
        .categories__list
        .categories__list-item
        .categories__item {
        min-width: 200px;
        max-width: 200px;
        height: 250px;
    }
    .categories
        .categories__block
        .categories__list
        .categories__list-item
        .categories__item
        .categories__item-image {
        height: 160px;
    }

    .loading .loading__bar .bar {
        width: 300px;
    }

    .shop .shop__block .shop__content .shop__content-top {
        flex-wrap: wrap;
    }
    .shop .shop__block .shop__content .shop__content-top .sc__top-left {
        width: 100%;
    }
    .shop .shop__block .shop__content .shop__content-top .sc__top-right {
        width: 100%;
        justify-content: flex-end;
        margin-top: 20px;
    }

    .product .product__block .product__content .product__info {
        flex-wrap: wrap;
    }
    .product .product__block .product__content .product__info .product__images {
        width: 100%;
    }
    .product .product__block .product__content .product__info .product__about {
        width: 100%;
        padding-left: 0px;
        padding-left: 30px;
        padding-right: 30px;
        margin-top: 20px;
        padding-bottom: 30px;
        padding-top: 30px;
    }
    .product
        .product__block
        .product__content
        .product__info
        .product__about
        .pa__list {
        max-width: 100%;
        padding-top: 35px;
    }
    .product
        .product__block
        .product__content
        .product__info
        .product__about
        .pa__list
        li:last-child {
        border-bottom: 0px;
    }

    .contact__page .contact__list {
        flex-wrap: wrap;
    }

    .contact__page .contact__list .contact__item {
        width: 100%;
        margin: 20px 0px;
        max-width: 100%;
    }

    .all__categories .al__box .al__list {
        border: 0px;
        border-top: 1px solid #a5aeb7;
        border-left: 1px solid #a5aeb7;
        border-right: 1px solid #a5aeb7;
    }
    .all__categories .al__box .al__list .al__items {
        width: 100%;
        border: 0px;
        padding: 20px 35px;
        border-bottom: 1px solid #a5aeb7;
    }
    .all__categories .al__box .al__list .al__items .al__items-content {
        /* display: none; */
    }
    .all__categories .al__box .al__list .al__items .al__items-top {
        margin-bottom: 0px;
    }
    .all__categories .al__box .al__list .al__items.active .al__items-content {
        display: flex;
    }
    .all__categories .al__box .al__list .al__items.active .al__items-top {
        margin-bottom: 15px;
    }

    .account .account__block {
        position: relative;
        flex-wrap: wrap;
    }
    .account .account__block .account__sidebar {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    .account .account__block .account__content {
        width: 100%;
        height: auto;
        padding-left: 0px;
        padding-bottom: 20px;
    }
    .cart .cart__block .cart__box .cart__left .cart__list .cart__item {
        flex-wrap: wrap;
    }
    .cart
        .cart__block
        .cart__box
        .cart__left
        .cart__list
        .cart__item
        .ci__left {
        width: 100%;
        height: auto;
    }
    .cart
        .cart__block
        .cart__box
        .cart__left
        .cart__list
        .cart__item
        .ci__right {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: flex-end;
    }
    .cart .cart__block .cart__box .cart__left .cart__coupon {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .cart .cart__block .cart__box .cart__left .cart__coupon input {
        margin: 20px 0px;
        width: 280px;
        max-width: 100%;
    }
    .all__categories .al__box .al__list .al__items .al__items-top span {
        top: -10px;
        right: -10px;
    }
    .all__categories .al__box .al__list .al__items .al__items-top {
        padding-top: 25px;
    }
    .showroom .showroom__block .showroom__list .showroom__item {
        width: 100%;
        margin: 10px 0px;
    }

    .acats {
        top: 250px;
    }
    .acats .acats__block .acats__items .acats__item {
        width: calc(50% - 20px);
    }
    .footer__social .fs__block .fs__logos {
        flex-wrap: wrap;
    }
    .footer__social .fs__block .fs__logos img {
        margin-top: 10px;
    }
    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-top
        .featured__category
        .featured__category-items
        .featured__category-item
        .featured__category-item-content
        .content__price.content__price-discount {
        padding-top: 40px;
    }

    .header
        .header__block
        .header__main
        .header__search
        .header__search-box
        .header__search-box-input
        input {
        height: 20px !important;
    }
    .header .header__block .header__main .header__main-left .header__search {
        /* margin-top: 13px !important; */
    }
    .whirlpool__landing .wl__block .wl__list .wl__item {
        flex-wrap: wrap;
        align-items: unset;
    }
    .whirlpool__landing .wl__block .wl__list .wl__item .wli__image,
    .whirlpool__landing
        .wl__block
        .wl__list
        .wl__item:nth-child(even)
        .wli__image {
        width: 100%;
        order: 1;
        height: 400px;
    }
    .whirlpool__landing .wl__block .wl__list .wl__item .wli__content {
        width: 100%;
        order: 2;
    }
    .whirlpool__landing .wl__block .wl__top {
        flex-wrap: wrap;
        justify-content: center;
        margin: 0px;
    }
    .whirlpool__landing .wl__block .wl__top img {
        margin: 0px;
    }
    .whirlpool__landing .wl__block .wl__top ul {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        padding-top: 20px;
    }
    .whirlpool__landing .wl__block .wl__top ul li {
        padding-bottom: 15px;
    }
}
@media screen and (max-width: 720px) {
    .checkout .checkout__sides {
        flex-wrap: wrap;
    }
    .checkout .checkout__sides .checkout__side {
        width: 100%;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 660px) {
    .footer .footer__mid .sections {
        flex-wrap: wrap;
    }
    .footer .footer__mid .sections .section {
        width: 50% !important;
        margin-bottom: 20px !important;
    }
    .product
        .product__block
        .product__content
        .product__info
        .product__images
        .product__main-image
        .product__main-image-block
        img {
        transform: translateX(0%);
        height: 300px;
    }
    .newcats .newcats__content .newcats__item {
        width: calc(33.33% - 20px);
    }

    .footer .footer__block .footer__left {
        flex-basis: 100%;
    }
    .footer .footer__block .footer__mid {
        flex-basis: 100%;
        margin-top: 20px;
    }
    .footer .footer__block .footer__right {
        margin-top: 20px;
        justify-content: flex-start;
        text-align: left;
    }
    .footer .footer__block .footer__right .footer__cards {
        justify-content: flex-start;
    }

    .shop .shop__block .shop__content .shop__list .shop__item {
        width: 100%;
    }
    .shop
        .shop__block
        .shop__content
        .shop__list
        .shop__item
        .shop__item-info
        .shop__item-extra
        .shop__item-extra-brand {
        display: flex;
        justify-content: center;
    }
    .shop
        .shop__block
        .shop__content
        .shop__list
        .shop__item
        .shop__item-info
        .shop__item-extra
        .shop__item-extra-brand
        img {
        max-width: 200px;
    }

    .product
        .product__block
        .product__content
        .product__info
        .product__about
        .pa__list {
        max-width: unset;
    }
    .product
        .product__block
        .product__content
        .product__info
        .product__about
        .pa__list
        li
        p {
        width: 220px;
    }
    .product .product__block .product__description ul li {
        word-break: break-all;
    }
    .checkout .checkout__button p {
        padding-right: 10px;
    }

    .nfeatured .featured__box .featured__items .featured__item {
        width: 100%;
        margin: 10px 0px;
    }
}
@media screen and (max-width: 620px) {
    .featured .featured__block .featured__box {
        height: auto;
        padding-bottom: 20px;
    }
    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-bottom {
        /* display: none; */
    }
    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-top {
        padding-bottom: 0px;
        border: 0px;
    }
    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-top
        .featured__category
        .featured__category-items {
        flex-wrap: wrap;
    }
    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-top
        .featured__category
        .featured__category-items
        .featured__category-item {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0px;
    }
    .featured .featured__block .featured__box .featured__big {
        height: 300px;
    }

    .compare .compare__block .compare__box .compare__box-item img {
        max-width: 100%;
        height: unset;
    }
    .compare .compare__block .compare__box .compare__box-item h4 {
        font-size: 14px;
    }

    .account
        .account__block
        .account__content
        .account__tab
        .account__tab-content
        .order__list
        .order__item {
        width: 100%;
    }
    .slider .slider__block .slider__items .slider__item img {
        /* object-fit: cover; */
        height: auto;
    }
    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-top
        .featured__category
        .featured__category-items
        .featured__category-item {
        padding-bottom: 60px;
    }
    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-bottom
        .featured__content-inline-category {
        margin-top: 15px;
    }
    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-bottom
        .featured__content-inline-category
        .inline-category__item {
        position: unset;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .featured__content-inline-category .cool__price .cp__np {
        justify-content: center;
    }
    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-bottom
        .featured__content-inline-category {
        position: relative;
    }
    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-bottom
        .featured__content-inline-category
        .inline-category__item
        .price_custom {
        right: 10px;
    }
    .nfeatured .featured__top h3 {
        font-size: 18px;
    }
    .nfeatured .featured__top a {
        font-size: 12px;
        padding: 5px 10px;
    }
}
@media screen and (max-width: 600px) {
    .header .header__block .header__main .header__logo img {
        height: 35px;
        max-width: 140px !important;
        object-fit: contain;
    }

    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-bottom
        .featured__content-inline-category
        .inline-category__item
        .price_custom {
        position: relative;
        top: 0px;
        left: 0px;
        transform: none;
    }
    .header .header__block .header__main .header__main-left .header__search {
        margin-top: 26px;
    }
}
@media screen and (max-width: 540px) {
    .categories
        .categories__block
        .categories__list
        .categories__list-item
        .categories__item {
        min-width: 150px;
        max-width: 150px;
        height: 200px;
        padding: 10px;
    }
    .newcats .newcats__content .newcats__item {
        width: calc(50% - 20px);
    }

    .categories
        .categories__block
        .categories__list
        .categories__list-item
        .categories__item
        .categories__item-image {
        height: 135px;
    }

    .categories
        .categories__block
        .categories__list
        .categories__list-item
        .categories__item
        .categories__item-title
        h2 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .loading .loading__bar p {
        right: 0px;
    }
    @-webkit-keyframes move {
        0% {
            left: 0;
        }
        50% {
            left: calc(100% - 90px);
            -webkit-transform: rotate(450deg);
            width: 150px;
            height: 150px;
        }
        75% {
            left: calc(100% - 90px);
            -webkit-transform: rotate(450deg);
            width: 150px;
            height: 150px;
        }
        100% {
            right: 100%;
        }
    }

    .product .product__block .product__content .product__info .product__about {
        padding-left: 10px;
        padding-right: 10px;
    }

    .product__combo .combo__list {
        flex-wrap: wrap;
    }
    .product__combo .combo__list .combo__item {
        width: 100%;
        margin-right: 0px;
    }
    .product__combo .combo__list .combo__item::after {
        top: 100%;
        right: unset;
        left: 50%;
        margin-bottom: 60px;
    }
    .categories
        .categories__block
        .categories__list
        .categories__list-item
        .categories__item
        .categories__item-title {
        text-align: center;
    }
    .checkout .checkout__extras {
        flex-wrap: wrap;
    }
    .checkout .checkout__extras .checkout__extra {
        width: 100%;
    }
    .blackfriday {
        padding: 90px 0px;
    }
    .blackfriday .bf__block .bf__top .bf__right .bf__countdown .bfc__item h5 {
        width: 70px;
        height: 70px;
        font-size: 36px;
    }
    .blackfriday .bf__block .bf__top .bf__right .bf__countdown .bfc__item span {
        font-size: 16px;
    }
    .blackfriday .bf__block .bf__top {
        padding: 0px 10px;
    }
}
@media screen and (max-width: 520px) {
    .offers .offers__block .offers__item .offers__item-list .oi-list__item {
        flex-basis: calc(50% - 5px);
    }
    .offers
        .offers__block
        .offers__item
        .offers__item-list
        .oi-list__item:nth-child(3) {
        display: none;
    }

    .footer__nav .footer__nav-block {
        flex-wrap: wrap;
    }
    .footer__nav .footer__nav-block span {
        margin-top: 10px;
    }

    .loading .loading__logo {
        padding: 0px 20px;
    }
    .loading .loading__logo img {
        max-width: 100%;
    }

    .shop
        .shop__block
        .shop__content
        .shop__list
        .shop__item
        .shop__item-info
        .shop__item-extra
        .shop__item-extra-brand
        img {
        max-width: 100%;
    }

    .product
        .product__block
        .product__content
        .product__info
        .product__images
        .product__main-image {
        height: 280px;
    }
    .product
        .product__block
        .product__content
        .product__info
        .product__images
        .product__main-image
        img {
        max-height: 100%;
    }
    .cart .cart__block .cart__box .cart__info ul li em {
        font-size: 32px;
    }

    .footer .footer__mid .sections .section {
        width: 100% !important;
    }
    .footer .footer__mid .sections .section li {
        display: inline-flex;
    }
    .footer .footer__block .footer__mid ul li {
        width: 49%;
    }
    .footer .footer__block .footer__right .footer__cards a {
        display: flex;
        width: 50%;
        justify-content: center;
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 20px;
    }
    .footer .footer__block .footer__right .footer__cards a img {
        max-width: 100%;
    }
}
@media screen and (max-width: 480px) {
    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-bottom
        .featured__content-inline-category {
        flex-wrap: wrap;
        justify-content: center;
    }
    .categories {
        padding-bottom: 0px;
    }
    .categories .categories__block .categories__list {
        padding: 0px;
    }
    .categories .categories__block .categories__arrows {
        display: none;
    }

    .extra__products .ep__list .ep__item {
        width: 100%;
        margin: 10px 0px;
    }

    .contact__page .contact__cities .contact__city {
        width: calc(50% - 20px);
        justify-content: center;
    }

    .header
        .header__block
        .header__main
        .header__search
        .header__search-list
        .header__search-item
        .hsi__left
        .hsi__info {
        padding-left: 15px;
    }
    .header
        .header__block
        .header__main
        .header__search
        .header__search-list
        .header__search-item
        .hsi__left
        .hsi__info
        h4 {
        font-size: 16px;
    }

    .header
        .header__block
        .header__main
        .header__search
        .header__search-list
        .header__search-item
        .hsi__right
        span {
        display: flex;
        min-width: 71px;
        font-size: 14px;
    }

    .categories
        .categories__block
        .categories__list
        .categories__list-item
        .categories__item {
        width: 100%;
        min-width: unset;
        max-width: unset;
        height: unset;
    }
    .categories
        .categories__block
        .categories__list
        .categories__list-item
        .categories__item
        .categories__item-image {
        padding: 0px;
        height: 200px;
    }
    .acats .acats__block .acats__items .acats__item {
        width: 100%;
        margin: 10px 0px;
    }
    .payweb .payweb__block .payweb__side .payweb__total ul li.big b {
        font-size: 24px;
    }
    .payweb .payweb__block .payweb__side .payweb__total ul li.big span {
        font-size: 24px;
    }

    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-bottom
        .featured__content-inline-category
        .inline-category__title {
        width: 100%;
        margin: 0px;
        padding: 0px;
        margin-bottom: 10px;
    }
    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-bottom
        .featured__content-inline-category
        .inline-category__image {
        width: 100%;
        margin: 0px;
        padding: 0px;
        height: 200px;
        padding: 5px;
        margin-bottom: 10px;
    }

    .featured
        .featured__block
        .featured__box
        .featured__content
        .featured__content-top
        .featured__category
        .featured__category-items
        .featured__category-item
        .featured__category-item-image {
        height: 200px;
    }

    .pbf img {
        width: 50px !important;
        height: 50px !important;
        margin-right: 7px !important;
    }
    .black-theme .categories_button {
        left: 106px !important;
    }
    .newcats .newcats__content .newcats__images {
        flex-wrap: wrap;
    }
    .newcats .newcats__content .newcats__images .newcats__image {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 420px) {
    .cart .cart__block .cart__box .cart__left .cart__coupon p {
        bottom: 0;
    }
    .newcats .newcats__top ul li {
        width: 33.33%;
        height: 70px;
    }
    .newcats .newcats__content .newcats__item .newcats__item-title a {
        font-size: 18px;
    }
    .newcats .newcats__content .newcats__item .newcats__item-list {
        padding-left: 0px;
    }
    .newcats .newcats__content .newcats__item .newcats__item-list ul li a {
        font-size: 13px;
    }
    .product .product__block .product__short {
        min-width: 100%;
    }
    .wishlist
        .wishlist__block
        .wishlist__items
        .wishlist__products
        .wishlist__product,
    .wishlist
        .wishlist__block
        .wishlist__items
        .wishlist__products
        .wishlist__product-add {
        min-width: 100%;
        margin: 10px 0px;
    }

    .wishlist
        .wishlist__block
        .wishlist__items
        .wishlist__products
        .wishlist__product-add {
        padding: 20px 0px;
    }
    .cart
        .cart__block
        .cart__box
        .cart__left
        .cart__list
        .cart__item
        .ci__right {
        flex-wrap: wrap;
        position: relative;
    }
    .cart
        .cart__block
        .cart__box
        .cart__left
        .cart__list
        .cart__item
        .ci__right
        .ci__price {
        width: 100%;
    }
    .cart
        .cart__block
        .cart__box
        .cart__left
        .cart__list
        .cart__item
        .ci__right
        .ci__action {
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #ec0d00;
        border-radius: 3px;
    }
    .cart
        .cart__block
        .cart__box
        .cart__left
        .cart__list
        .cart__item
        .ci__right
        .ci__action
        img {
        filter: invert(1);
    }
    .contact__page .contact__cities .contact__city {
        width: 100%;
    }
    .contact__page .contact__cities .contact__city {
        margin: 10px 0px;
    }

    .payweb .payweb__block .payweb__side .payweb__total ul {
        padding-left: 0px;
    }
}
.pbf img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-right: 20px;
}
@media screen and (max-width: 390px) {
    .header .header__block .header__main {
        padding: 15px 0px;
    }
    .header .header__block .header__main .header__logo {
        padding-top: 10px;
    }
    .header .header__block .header__main .header__logo img {
        max-width: 50%;
        height: auto;
    }
    .header .header__block .header__main .header__actions {
        top: 10px;
    }
    .header
        .header__block
        .header__main
        .header__search
        .header__search-box
        .header__search-box-input {
        padding: 5px;
    }
    .header
        .header__block
        .header__main
        .header__search
        .header__search-box
        .header__search-box-input
        .custom__select {
        width: 110px;
    }
    .header
        .header__block
        .header__main
        .header__search
        .header__search-box
        .header__search-box-input
        .custom__select
        select {
        width: 110px;
        padding: 0px 10px;
    }
    .header
        .header__block
        .header__main
        .header__search
        .header__search-box
        .header__search-box-input
        .custom__select
        select::after {
        right: 5px;
    }

    .slider
        .slider__block
        .slider__items
        .slider__item
        .slider__item-content
        h5 {
        font-size: 14px;
    }
    .slider
        .slider__block
        .slider__items
        .slider__item
        .slider__item-content
        h3 {
        font-size: 20px;
    }
    .slider
        .slider__block
        .slider__items
        .slider__item
        .slider__item-content
        p {
        font-size: 14px;
    }

    .offers .offers__block .offers__item {
        padding: 10px;
    }
    .offers .offers__block .offers__item .offers__item-title {
        padding-bottom: 10px;
    }
    .offers .offers__block .offers__item .offers__item-title h4 {
        font-size: 16px;
        letter-spacing: unset;
    }

    .featured .featured__block .featured__box {
        padding-bottom: 0px;
    }
    .featured .featured__block .featured__box .featured__content {
        padding: 15px;
    }
    .acats {
        top: 190px;
    }
    .header
        .header__block
        .header__main
        .header__search
        .header__search-box
        .header__search-box-input
        input {
        height: 30px !important;
    }
    .header .header__block .header__main .header__main-left .header__search {
        margin-top: 22px;
    }
}
@media screen and (max-width: 361px) {
    .loading .loading__bar .bar {
        width: 250px;
    }
}

/*# sourceMappingURL=style.css.map */

.brands__list .bl__items .bl__item img {
    height: 35px;
}

.footer .footer__mid .sections {
    display: flex;
    align-items: flex-start;
}

.footer .footer__mid .sections .section {
    width: 25%;
}

.footer .footer__mid .sections .section li {
    display: block;
}
.footer .footer__mid .sections .section h4 {
    font-size: 18px;
}

.footer .footer__block .footer__left .footer__item .workshops {
    margin-top: 25px;
}

.login {
    width: 100%;
    height: auto;
    padding: 50px 0px;
}

.login .login__page {
    display: flex;
}

.login .login__page .section {
    width: 50%;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #e7e7e7;
    padding: 20px;
    margin-bottom: 30px;
    /* margin-left: 5px; */
    margin-right: 5px;
}

.login .login__page .section h5 {
    font-size: 23px;
    margin-bottom: 35px;
}

.login .login__group {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 7px 0px;
}
.login .login__group label {
    font-size: 16px;
    font-weight: 700;
    color: #282828;
    margin-bottom: 5px;
}
.login .login__group label .required {
    color: #ec0e00;
}
.login .login__group input,
.login .login__group select {
    width: 100%;
    height: 50px;
    border-radius: 3px;
    border: 1px solid #d7d7d7;
    padding-left: 15px;
    outline: none;
}

.login .login__button {
    width: 100%;
    height: auto;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #e7e7e7;
    padding: 10px 20px;
}

.login .login__button p {
    font-size: 14px;
    font-weight: 400;
    color: #282828;
}
.login .login__button p a {
    color: #ec0e00;
}
.login .login__page p .required {
    color: #ec0e00;
}
.login .login__button button {
    padding: 10px 45px;
    border-radius: 3px;
    height: 50px;
    background-color: #ec0e00;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    border: 0px;
}

.login .login__button button:hover {
    cursor: pointer;
    background-color: #282828;
}

@media screen and (max-width: 880px) {
    .login .login__page {
        display: block;
    }

    .login .login__page .section {
        width: 100%;
    }
}

.pricec {
    display: flex;
    align-items: center;
}
.pricec .cprice {
    margin-left: 10px;
}
.price .price__number {
    display: inline-block;
    position: relative;
    margin-right: 35px;
}

.price .price__number .main__number {
    font-family: "Triumvirate", sans-serif;
    text-shadow: transparent 0px 0px 1em, rgb(255 255 255) 0px -0.04em 0px,
        rgb(255 255 255) 0.04em 0px 0px, rgb(255 255 255) 0px 0.04em 0px,
        rgb(255 255 255) -0.034em -0.024em 0px,
        rgb(255 255 255) -0.03em -0.04em 0px,
        rgb(255 255 255) -0.01em -0.04em 0px,
        rgb(255 255 255) 0.052em -0.04em 0px,
        rgb(255 255 255) 0.04em -0.04em 0px, rgb(255 255 255) 0.02em -0.04em 0px,
        rgb(255 255 255) 0.047em -0.025em 0px,
        rgb(255 255 255) -0.045em 0.016em 0px,
        rgb(255 255 255) -0.039em 0.038em 0px,
        rgb(255 255 255) -0.052em 0.04em 0px,
        rgb(255 255 255) -0.042em 0.04em 0px,
        rgb(255 255 255) 0.031em 0.028em 0px,
        rgb(255 255 255) 0.029em 0.04em 0px, rgb(0 0 0 / 20%) 0.05em 0px 0.05em,
        rgb(0 0 0 / 20%) 0px 0.05em 0.05em,
        rgb(0 0 0 / 20%) 0.05em 0.05em 0.05em;
    line-height: 25px;
    letter-spacing: 2px;
    font-size: 25px;
}

.price .price__number .price__decimal {
    font-family: "Triumvirate", sans-serif;
    position: absolute;
    text-shadow: transparent 0px 0px 1em, rgb(255 255 255) 0px -0.04em 0px,
        rgb(255 255 255) 0.04em 0px 0px, rgb(255 255 255) 0px 0.04em 0px,
        rgb(255 255 255) -0.034em -0.024em 0px,
        rgb(255 255 255) -0.03em -0.04em 0px,
        rgb(255 255 255) -0.01em -0.04em 0px,
        rgb(255 255 255) 0.052em -0.04em 0px,
        rgb(255 255 255) 0.04em -0.04em 0px, rgb(255 255 255) 0.02em -0.04em 0px,
        rgb(255 255 255) 0.047em -0.025em 0px,
        rgb(255 255 255) -0.045em 0.016em 0px,
        rgb(255 255 255) -0.039em 0.038em 0px,
        rgb(255 255 255) -0.052em 0.04em 0px,
        rgb(255 255 255) -0.042em 0.04em 0px,
        rgb(255 255 255) 0.031em 0.028em 0px,
        rgb(255 255 255) 0.029em 0.04em 0px, rgb(0 0 0 / 20%) 0.05em 0px 0.05em,
        rgb(0 0 0 / 20%) 0px 0.05em 0.05em,
        rgb(0 0 0 / 20%) 0.05em 0.05em 0.05em;
    letter-spacing: 2px;
    font-size: 20px;
    top: 0;
}

.price .price__number.old {
    margin-right: 30px;
}

.price .price__number.old::after {
    content: "";
    width: 45px;
    height: 2px;
    background-color: #ec0e00;
    position: absolute;
    left: 0px;
    top: 35%;
    transform: translateY(-50%);
}

.price .price__number .main__number.old {
    line-height: 20px;
    letter-spacing: 2px;
    font-size: 20px;
}

.price .price__number .price__decimal.old {
    letter-spacing: 2px;
    font-size: 15px;
    top: 0;
}

.oi-list__item a {
    color: #000000;
}

.product__short-price .price .price__number.old {
    margin-top: 15px;
}

.productDescription img {
    max-width: 100%;
}

.product__short .product__short-shortly .shortly__brand img {
    max-width: 100%;
    object-fit: contain;
}

.pagination-wrap {
    margin: auto;
    text-align: center;
}

.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}

.pagination-v2 > li > a,
.pagination-v2 > li > span {
    background-color: #ec0d00;
    border: 1px solid #ec0d00;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    margin-right: 5px;
    width: 35px;
    height: 35px;
    text-align: center;
    vertical-align: middle;
    line-height: 33px;
    text-decoration: none;
    outline: none;
}
.pagination-v2 > li > a.active,
.pagination-v2 > li > a:hover,
.pagination-v2 > li > span.active,
.pagination-v2 > li > span:hover,
.pagination-v2 > li > a:focus,
.pagination-v2 > li > span:focus {
    background-color: #282828 !important;
    border-color: #282828;
    color: #fff;
    cursor: pointer;
}

.loader {
    margin-top: 90px;
    margin-bottom: 90px;
    margin-left: auto;
    margin-right: auto;
    border: 6px solid #f3f3f3; /* Light grey */
    border-top: 6px solid #000; /* Blue */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    -webkit-transition: opacity 2s ease-in;
    -moz-transition: opacity 2s ease-in;
    -o-transition: opacity 2s ease-in;
    -ms-transition: opacity 2s ease-in;
    transition: opacity 2s ease-in;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.no__results {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 100%;
    height: auto;
    font-size: 34px;
    font-weight: 500;
    color: #282828;
}

.shop
    .shop__block
    .shop__sidebar
    .sidebar__collapse
    .collapse__body
    ul
    li
    label
    span {
    font-weight: 600;
    color: #000;
    float: right;
}

.mpc {
    float: right;
    font-weight: bold;
    font-size: 12px;
    color: #ec0d00;
}

.cpd {
    float: right;
    font-weight: bold;
    font-size: 13px;
    color: black;
}

.removeCoupon {
    color: #ec0d00;
    text-transform: uppercase;
}

.removeCoupon:hover {
    color: #597581;
}

.couponSaved {
    color: #ec0d00;
    font-weight: bold !important;
    display: block;
}

.black-override {
    background-color: #000 !important;
}

.black-override:hover {
    background-color: #ec0e00 !important;
}

.showResultsButton {
    width: 150px;
    height: 30px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    font-weight: bold;
    border: 0px;
    background-color: #ec0e00;
    text-transform: uppercase;
    float: right;
}
