.header {
    z-index: 1000;
    width: 100vw;
    top: 0;
    -webkit-animation-name: images;
    animation-name: images;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-transition: .4s;
    transition: .4s;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: #e6e6e6;
    padding-bottom: 120px;
    position: relative;
    margin-bottom: 65px
}

@media (max-width:900px) {
    .header {
        padding-bottom: 64px;
        margin-bottom: 48px
    }
}

.header__container {
    max-width: 1472px;
    padding: 0 16px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%
}

.header__text {
    margin-top: 32px
}

.header__text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #575757;
    font-weight: 400
}

@media (max-width:900px) {
    .header__text h1 {
        font-size: 32px
    }
}

.header__text h1 strong {
    font-weight: 900
}

.header__text h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #575757;
    font-weight: 400
}

.header__text h2 strong {
    font-weight: 900
}

.header__text h3 {
    font-size: 28px;
    line-height: 1.2;
    color: #575757;
    font-weight: 400
}

.header__text h3 strong {
    font-weight: 900
}

.header__text h4 {
    font-size: 24px;
    line-height: 1.2;
    color: #575757;
    font-weight: 400
}

.header__text h4 strong {
    font-weight: 900
}

.header__text h5 {
    font-size: 20px;
    line-height: 1.2;
    color: #575757;
    font-weight: 400
}

.header__text h5 strong {
    font-weight: 900
}

.header__text h6 {
    font-size: 18px;
    line-height: 1.2;
    color: #575757;
    font-weight: 400
}

.header__text h6 strong {
    font-weight: 900
}

.header__search {
    margin-top: 32px;
    width: 100%
}

.header__search form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    padding: 5px;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .3);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .3);
    border-radius: 100px;
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 50px;
    position: relative
}

@media (max-width:550px) {
    .header__search form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
        border-radius: 20px
    }
}

.header__search form button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    background-color: #ab0b23;
    border-radius: 100px;
    padding: 9px 22px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: .3s;
    transition: .3s;
    letter-spacing: 1px;
    border: 0;
    outline: 0;
    height: 100%;
    margin-left: 20px;
    cursor: pointer
}

@media (max-width:550px) {
    .header__search form button {
        width: 100%;
        margin: 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 15px
    }
}

.header__search form button:hover {
    background-color: #7e0a1c
}

.header__search form button::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url(../images/lupa.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    margin-right: 9px
}

.header__search-input {
    width: 100%;
    padding: 14px 22px;
    border: 0;
    background-color: transparent;
    outline: 0;
    font-size: 14px;
    color: #575757;
    font-weight: 500
}

@media (max-width:900px) {
    .header__search-input {
        padding: 15px 12px
    }
}

.header__search-input::-webkit-input-placeholder {
    opacity: 1;
    color: #575757
}

.header__search-input::-moz-placeholder {
    opacity: 1;
    color: #575757
}

.header__search-input::-ms-input-placeholder {
    opacity: 1;
    color: #575757
}

.header__search-input::placeholder {
    opacity: 1;
    color: #575757
}

.header__search-category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    color: #575757;
    font-weight: 500;
    cursor: pointer;
    height: 100%;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    max-width: 50%
}

@media (max-width:550px) {
    .header__search-category {
        padding: 0 12px;
        border-left: 1px solid #bfbfbf;
        height: 30px;
        padding-left: 10px;
        font-size: 13px
    }
}

.header__search-category::after {
    content: '';
    width: 8px;
    height: 5.5px;
    background-image: url(../images/chevron.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    margin-left: 6.7px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: .3s;
    transition: .3s;
    margin-top: 3px
}

.header__search-category.open::after {
    -webkit-transform: rotate(0);
    transform: rotate(0)
}

.header__search-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.header__search-shops {
    position: absolute;
    top: 50px;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .16);
    background-color: #fff;
    padding: 0;
    border-radius: 10px;
    -webkit-transition: .3s;
    transition: .3s;
    visibility: hidden;
    z-index: 999999;
    display: block;
    width: 330px;
    left: 20px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    max-height: 268px;
    overflow-y: scroll;
    border-top: 1px solid #f0f0f0;
}

.header__search-shops.open {
    visibility: visible;
}

.header__search-shops .header__search-shop {
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}

.header__search-shops .header__search-shop:hover {
    background-color: #f0f0f0;
}

.header__search-shops .header__search-shop:hover a {
    color: black;
}

.header__search-shop-link {
    display: flex;
}

.header__search-shop-logo {
    width: 80px;
}

.header__search-shop-logo .attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
    width: 80px;
    height: auto;
}

.header__search-shop-name {
    font-size: 18px;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.header__search-categories {
    position: absolute;
    top: 50px;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .16);
    background-color: #fff;
    padding: 0;
    border-radius: 10px;
    -webkit-transition: .3s;
    transition: .3s;
    visibility: hidden;
    opacity: 0;
    z-index: 999999;
    display: block;
    max-width: 220px;
    right: 74px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    max-height: 268px;
    overflow-y: scroll;
    border-top: 1px solid #f0f0f0;
}

.header__search-categories label {
    text-align: left;
    font-size: 14px;
    color: #575757;
    font-weight: 600;
    -webkit-transition: .3s;
    transition: .3s;
    cursor: pointer;
    display: block;
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.header__search-categories label:hover {
    background-color: #f0f0f0;
}

@media (max-width:550px) {
    .header__search-categories {
        right: 0;
    }

    .header__search-categories label {
        text-align: right;
    }
}

.header__search-categories label.selected {
    color: #ab0b23
}

.header__search-categories label input {
    display: none
}

.header__search-categories.open {
    visibility: visible;
    opacity: 1
}

.header__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-top: 25px
}

.header__top-leftside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header__top-addcoupon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    background-color: #ab0b23;
    border-radius: 100px;
    padding: 7px 18px;
    border: 4px solid #fff;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: .3s;
    transition: .3s;
    letter-spacing: 1px
}

.header__top-addcoupon.mobile {
    display: none
}

@media (max-width:900px) {
    .header__top-addcoupon {
        display: none;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin-left: auto;
        margin-right: auto
    }

    .header__top-addcoupon.mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.header__top-addcoupon:hover {
    background-color: #7e0a1c
}

.header__top-addcoupon::before {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(../images/coupon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    margin-right: 9px
}

.header__menu {
    background-color: #ab0b23;
    padding: 14px 40px;
    border-radius: 14px;
    width: 100%;
    position: relative
}

@media (max-width:900px) {
    .header__menu {
        padding: 0;
        padding-top: 100px;
        overflow-y: scroll;
        padding-bottom: 90px
    }
}

.header__menu-ul {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none
}

@media (max-width:900px) {
    .header__menu-ul {
        padding-top: 30px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.header__menu-ul li {
    margin-right: 60px
}

@media (max-width:1200px) {
    .header__menu-ul li {
        margin-right: 32px
    }
}

@media (max-width:900px) {
    .header__menu-ul li {
        margin-right: 0;
        margin-bottom: 20px
    }
}

.header__menu-ul li a {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    cursor: pointer
}

.header__menu-ul li a img {
    margin-right: 20px;
    width: 26px;
    height: 26px;
    -o-object-fit: contain;
    object-fit: contain
}

@media (max-width:1200px) {
    .header__menu-ul li a {
        font-size: 14px
    }
}

@media (max-width:900px) {
    .header__menu-ul li a {
        font-size: 18px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.header__menu-ul li a:hover {
    -webkit-filter: brightness(.8);
    filter: brightness(.8)
}

.header__menu-ul li.menu-item-has-children .sub-menu {
    position: absolute;
    background-color: #fff;
    width: 100%;
    left: 0;
    top: calc(100% - 16px);
    padding: 42px;
    padding-top: 60px;
    padding-bottom: 14px;
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    border-radius: 0 0 14px 14px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s
}

@media (max-width:900px) {
    .header__menu-ul li.menu-item-has-children .sub-menu {
        position: relative;
        padding: 0;
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
        z-index: 1;
        height: 0
    }
}

.header__menu-ul li.menu-item-has-children .sub-menu li {
    margin-right: 0;
    width: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 32px
}

@media (max-width:900px) {
    .header__menu-ul li.menu-item-has-children .sub-menu li {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 0;
        margin-top: 20px
    }
}

.header__menu-ul li.menu-item-has-children .sub-menu li a {
    color: #575757;
    font-size: 16px;
    font-weight: 600
}

@media (max-width:900px) {
    .header__menu-ul li.menu-item-has-children .sub-menu li a {
        color: #fff
    }
}

.header__menu-ul li.menu-item-has-children .sub-menu li a img {
    margin-right: 12px;
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain
}

@media (max-width:900px) {
    .header__menu-ul li.menu-item-has-children .sub-menu li a img {
        -webkit-filter: brightness(0) invert(1);
        filter: brightness(0) invert(1)
    }
}

.header__menu-ul li.menu-item-has-children .sub-menu li a:hover {
    color: #ab0b23
}

.header__menu-ul li.menu-item-has-children.open .sub-menu {
    opacity: 1;
    visibility: visible;
    height: auto
}

@media (max-width:900px) {
    .header__menu-ul li.menu-item-has-children.open .sub-menu {
        margin-bottom: 20px
    }
}

.header__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 73px
}

@media (max-width:900px) {
    .header__socials {
        display: none
    }
}

.header__socials a {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 40px;
    width: 20.5px;
    height: 20.5px
}

.header__socials a img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.header__socials a:first-child {
    margin-left: 1px
}

.header__socials a:hover img {
    -webkit-filter: brightness(0);
    filter: brightness(0)
}

.header__ham {
    display: none
}

@media (max-width:900px) {
    .header__ham {
        position: fixed;
        background-color: #ab0b23;
        top: 28px;
        right: 15px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
        box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        cursor: pointer;
        -webkit-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
        z-index: 3;
        overflow: hidden;
        width: 50px;
        height: 50px;
        border-radius: 14px;
        border: 4px solid #fff
    }

    .header__ham-menubtn {
        width: 28px;
        height: 3px;
        background-color: #fff;
        border-radius: 5px;
        -webkit-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .header__ham-menubtn::after,
    .header__ham-menubtn::before {
        content: '';
        position: absolute;
        width: 28px;
        height: 3px;
        background: #fff;
        border-radius: 5px;
        -webkit-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out
    }

    .header__ham-menubtn::before {
        -webkit-transform: translateY(-8.5px);
        transform: translateY(-8.5px)
    }

    .header__ham-menubtn::after {
        -webkit-transform: translateY(8.5px);
        transform: translateY(8.5px)
    }

    .header__ham.open .header__ham-menubtn {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        background: 0 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .header__ham.open .header__ham-menubtn::before {
        -webkit-transform: rotate(45deg) translate(35px, -35px);
        transform: rotate(45deg) translate(35px, -35px);
        width: 28px;
        background: #fff
    }

    .header__ham.open .header__ham-menubtn::after {
        -webkit-transform: rotate(-45deg) translate(35px, 35px);
        transform: rotate(-45deg) translate(35px, 35px);
        width: 28px;
        background-color: #fff
    }
}

.header__rightside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: .4s;
    transition: .4s;
    position: absolute;
    bottom: -35px;
    max-width: 1394px;
    padding: 0 16px;
    width: 100%
}

@media (max-width:900px) {
    .header__rightside {
        position: fixed;
        height: 100vh;
        width: 100vw;
        background-color: #ab0b23;
        top: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        left: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }

    .header__rightside.open {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.header__logo {
    -webkit-transition: .4s;
    transition: .4s;
    max-width: 320px
}

@media (max-width:900px) {
    .header__logo {
        width: 170px
    }
}

.header__logo-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%
}

.header__logo img {
    width: 100%;
    -webkit-transition: .4s;
    transition: .4s
}

.gotop {
    background: #ab0b23;
    position: fixed;
    bottom: 170px;
    right: 2vw;
    cursor: pointer;
    border-radius: 50%;
    display: block;
    width: 48px;
    height: 48px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 4px;
    z-index: 999;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    border: 4px solid #fff;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16)
}

@media (max-width:900px) {
    .gotop {
        bottom: 24px
    }
}

.gotop img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    width: 24px;
    height: 16px;
    -o-object-fit: contain;
    object-fit: contain
}

@media (max-width:1600px) {
    .gotop img {
        width: 20px;
        height: 14px
    }
}

.front-banner__container {
    width: 1494px;
    padding: 0 16px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.front-banner__container-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding: 24px 0;
    width: 100%
}

@media (max-width:900px) {
    .front-banner__container-slider {
        padding: 24px 0
    }
}

.front-banner__container-slider::-webkit-scrollbar {
    display: none
}

.front-banner__container-chevronslider {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ab0b23;
    border: 4px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: .4;
    -webkit-transition: .3s;
    transition: .3s;
    min-width: 40px;
    cursor: pointer;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    z-index: 3;
    position: relative
}

@media (max-width:1600px) {
    .front-banner__container-chevronslider {
        width: 40px;
        min-width: 40px;
        height: 40px
    }
}

@media (max-width:768px) {
    .front-banner__container-chevronslider {
        position: absolute
    }
}

.front-banner__container-chevronslider img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    width: 22px;
    height: 14px;
    -o-object-fit: contain;
    object-fit: contain
}

@media (max-width:1600px) {
    .front-banner__container-chevronslider img {
        width: 20px;
        height: 14px
    }
}

.front-banner__container-chevronslider.prev {
    margin-right: 26px;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

@media (max-width:768px) {
    .front-banner__container-chevronslider.prev {
        left: 10px
    }
}

@media (max-width:1600px) {
    .front-banner__container-chevronslider.prev {
        margin-right: 18px
    }
}

.front-banner__container-chevronslider.next {
    margin-left: 22px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

@media (max-width:768px) {
    .front-banner__container-chevronslider.next {
        right: 10px
    }
}

@media (max-width:1600px) {
    .front-banner__container-chevronslider.next {
        margin-left: 18px
    }
}

.front-banner__container-chevronslider:hover {
    opacity: 1
}

.front-banner__item {
    min-width: 49%;
    margin-right: 2%;
    width: 49%;
    background-color: #fff;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width:768px) {
    .front-banner__item {
        min-width: 100%;
        width: 100%
    }
}

.front-banner__item img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 10px;
    -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, .15);
    -o-object-position: top;
    object-position: top
}

.front-page h1 {
    font-size: 46px;
    line-height: 1.2;
    color: #575757;
    font-weight: 400
}

@media (max-width:900px) {
    .front-page h1 {
        font-size: 28px
    }
}

.front-page h1 strong {
    font-weight: 900
}

.front-page h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #575757;
    font-weight: 400
}

@media (max-width:900px) {
    .front-page h2 {
        font-size: 28px
    }
}

.front-page h2 strong {
    font-weight: 900
}

.front-page h3 {
    font-size: 28px;
    line-height: 1.2;
    color: #575757;
    font-weight: 400
}

@media (max-width:900px) {
    .front-page h3 {
        font-size: 24px
    }
}

.front-page h3 strong {
    font-weight: 900
}

.front-page h4 {
    font-size: 24px;
    line-height: 1.2;
    color: #575757;
    font-weight: 400
}

.front-page h4 strong {
    font-weight: 900
}

.front-page h5 {
    font-size: 22px;
    line-height: 1.2;
    color: #575757;
    font-weight: 400
}

@media (max-width:768px) {
    .front-page h5 {
        font-size: 18px
    }
}

.front-page h5 strong {
    font-weight: 900
}

.front-page h6 {
    font-size: 18px;
    line-height: 1.2;
    color: #575757;
    font-weight: 400
}

@media (max-width:1600px) {
    .front-page h6 {
        font-size: 14px
    }
}

.front-page h6 strong {
    font-weight: 900
}

.front-page .front-casestudies__container {
    max-width: 1920px;
    padding: 80px 64px;
    margin-left: auto;
    margin-right: auto
}

@media (max-width:1840px) {
    .front-page .front-casestudies__container {
        padding: 64px 15px
    }
}

@media (max-width:900px) {
    .front-page .front-casestudies__container {
        padding: 32px 15px
    }
}

.front-page .front-casestudies__container-chevronslider {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ab0b23;
    border: 4px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: .4;
    -webkit-transition: .3s;
    transition: .3s;
    min-width: 40px;
    cursor: pointer;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    z-index: 3;
    position: relative
}

@media (max-width:1600px) {
    .front-page .front-casestudies__container-chevronslider {
        width: 40px;
        min-width: 40px;
        height: 40px
    }
}

@media (max-width:768px) {
    .front-page .front-casestudies__container-chevronslider {
        position: absolute
    }
}

.front-page .front-casestudies__container-chevronslider img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    width: 22px;
    height: 14px;
    -o-object-fit: contain;
    object-fit: contain
}

@media (max-width:1600px) {
    .front-page .front-casestudies__container-chevronslider img {
        width: 20px;
        height: 14px
    }
}

.front-page .front-casestudies__container-chevronslider.prev {
    margin-right: 26px;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

@media (max-width:768px) {
    .front-page .front-casestudies__container-chevronslider.prev {
        left: 10px
    }
}

@media (max-width:1600px) {
    .front-page .front-casestudies__container-chevronslider.prev {
        margin-right: 18px
    }
}

.front-page .front-casestudies__container-chevronslider.next {
    margin-left: 22px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

@media (max-width:768px) {
    .front-page .front-casestudies__container-chevronslider.next {
        right: 10px
    }
}

@media (max-width:1600px) {
    .front-page .front-casestudies__container-chevronslider.next {
        margin-left: 18px
    }
}

.front-page .front-casestudies__container-chevronslider:hover {
    opacity: 1
}

.front-page .front-casestudies__window {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    background-color: rgba(26, 2, 5, .747);
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.front-page .front-casestudies__window-close {
    width: 30px;
    height: 30px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/close.svg);
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer
}

.front-page .front-casestudies__window-container {
    background-color: #fff;
    border: 1px solid #e6e6e6;
    -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    position: relative;
    border-radius: 14px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 666px
}

@media (max-width:900px) {
    .front-page .front-casestudies__window-container {
        overflow-y: scroll;
        max-height: 100vh
    }
}

@media (max-width:696px) {
    .front-page .front-casestudies__window-container {
        margin: 0 15px
    }
}

.front-page .front-casestudies__window-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 42px
}

@media (max-width:900px) {
    .front-page .front-casestudies__window-info {
        margin-top: 28px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.front-page .front-casestudies__window-time {
    font-size: 14px;
    font-weight: 700;
    color: #575757;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 14px
}

@media (max-width:900px) {
    .front-page .front-casestudies__window-time {
        margin-top: 16px
    }
}

.front-page .front-casestudies__window-time::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/zegarek.svg);
    background-size: contain;
    margin-right: 10px
}

.front-page .front-casestudies__window-terms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none
}

.front-page .front-casestudies__window-term {
    padding: 7px 11px;
    border-radius: 12px;
    background-color: #e6e6e6;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #575757;
    margin: 0 17px
}

.front-page .front-casestudies__window-term.wyprzedaze {
    background-color: #f5dcde;
    color: #f4303b;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.front-page .front-casestudies__window-term.wyprzedaze::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/wyprzedaze.svg);
    background-size: contain;
    margin-right: 8.5px
}

.front-page .front-casestudies__window-term.promocje {
    background-color: #ccd5e3;
    color: #528ae3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.front-page .front-casestudies__window-term.promocje::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/promocje.svg);
    background-size: contain;
    margin-right: 8.5px
}

.front-page .front-casestudies__window-term.kody-rabatowe {
    background-color: #f5dce0;
    color: #ab0b23;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.front-page .front-casestudies__window-term.kody-rabatowe::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/kodziki.svg);
    background-size: contain;
    margin-right: 8.5px
}

.front-page .front-casestudies__window-term.kody-wygasajace {
    background-color: #ffe7cc;
    color: #da8c30;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.front-page .front-casestudies__window-term.kody-wygasajace::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/wyga.svg);
    background-size: contain;
    margin-right: 8.5px
}

.front-page .front-casestudies__window h6 {
    margin-top: 28px;
    text-align: center;
    max-width: 333px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    color: #343434;
    margin-top: 32px;
    padding: 0 15px
}

@media (max-width:1600px) {
    .front-page .front-casestudies__window h6 {
        font-size: 18px
    }
}

@media (max-width:900px) {
    .front-page .front-casestudies__window h6 {
        font-size: 14px;
        margin-top: 24px
    }
}

.front-page .front-casestudies__window-excerpt {
    max-width: 428px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #969696;
    margin-top: 16px;
    padding: 0 15px
}

.front-page .front-casestudies__window-shopimage {
    width: 153px;
    height: 154px;
    position: relative;
    border: 4px solid #e6e6e6;
    border-radius: 18px;
    margin-top: 84px;
    margin-left: auto;
    margin-right: auto
}

@media (max-width:900px) {
    .front-page .front-casestudies__window-shopimage {
        margin-top: 24px;
        width: 150px;
        height: 130px
    }
}

.front-page .front-casestudies__window-shopimage span {
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 5px 12px;
    border: 4px solid #fff;
    background: #e6e6e6;
    border-radius: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    bottom: -18px
}

.front-page .front-casestudies__window-shopimage span.wyprzedaze {
    color: #fff;
    background-color: #f4303b
}

.front-page .front-casestudies__window-shopimage span.promocje {
    color: #fff;
    background-color: #528ae3
}

.front-page .front-casestudies__window-shopimage span.kody-rabatowe {
    color: #fff;
    background-color: #ab0b23
}

.front-page .front-casestudies__window-shopimage span.kody-wygasajace {
    color: #fff;
    background-color: #da8c30
}

.front-page .front-casestudies__window-shopimage img {
    width: 80%;
    -o-object-fit: contain;
    object-fit: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.front-page .front-casestudies__window-clicked {
    font-size: 18px;
    font-weight: 500;
    color: #343434
}

@media (max-width:900px) {
    .front-page .front-casestudies__window-clicked {
        text-align: center;
        font-size: 14px
    }
}

.front-page .front-casestudies__window-clicked span {
    color: #ab0b23
}

.front-page .front-casestudies__window-clickedicon {
    font-size: 14px;
    font-weight: 700;
    color: #575757;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width:900px) {
    .front-page .front-casestudies__window-clickedicon {
        display: none
    }
}

.front-page .front-casestudies__window-clickedicon::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/ludziki.svg);
    background-size: contain;
    margin-right: 10px
}

.front-page .front-casestudies__window-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #f4f4f4;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    padding: 25px 28px;
    padding-bottom: 30px;
    margin-top: 31px;
    position: relative
}

@media (max-width:900px) {
    .front-page .front-casestudies__window-button {
        padding: 7px 28px;
        padding-bottom: 32px
    }
}

.front-page .front-casestudies__window-button p {
    width: 100%;
    text-align: center;
    margin-bottom: 2px;
    font-weight: 500;
    color: #343434
}

.front-page .front-casestudies__window-button a.gotowww {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    padding: 5px 12px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #575757;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    border-radius: 100px;
    border: 4px solid #fff;
    bottom: -17px;
    text-transform: uppercase;
    -webkit-transition: .3s;
    transition: .3s;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content
}

.front-page .front-casestudies__window-button a.gotowww:hover {
    background-color: #ab0b23
}

.front-page .front-casestudies__window-button div.gotopage-button {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin-left: 13px;
    border-radius: 50%;
    border: 4px solid #fff;
    background-color: #ab0b23;
    background-image: url(../images/goto.svg);
    background-size: 23px;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    cursor: pointer
}

.front-page .front-casestudies__window-button div.gotopage.open .gotopage-text {
    visibility: visible;
    opacity: 1
}

.front-page .front-casestudies__window-button div.gotopage-text {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    background-color: rgba(26, 2, 5, .747);
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.front-page .front-casestudies__window-button div.gotopage-text .gotopage-text-close {
    width: 30px;
    height: 30px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/close.svg);
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer
}

.front-page .front-casestudies__window-button div.gotopage-text .couponWindow {
    background-color: #fff;
    border: 1px solid #e6e6e6;
    -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    position: relative;
    border-radius: 14px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 32px;
    max-width: 666px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media (max-width:900px) {
    .front-page .front-casestudies__window-button div.gotopage-text .couponWindow {
        overflow-y: scroll;
        max-height: 100vh
    }
}

@media (max-width:696px) {
    .front-page .front-casestudies__window-button div.gotopage-text .couponWindow {
        margin: 0 15px
    }
}

.front-page .front-casestudies__window-button div.gotopage-text .couponWindow h4 {
    margin-bottom: 25px
}

.front-page .front-casestudies__window-button div.gotopage-text .couponWindow .couponshare {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.front-page .front-casestudies__window-button div.gotopage-text .couponWindow .couponshare .email {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    color: #575757;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: .3s;
    transition: .3s;
    margin-bottom: 16px
}

.front-page .front-casestudies__window-button div.gotopage-text .couponWindow .couponshare .email:hover {
    color: #ab0b23
}

.front-page .front-casestudies__window-button div.gotopage-text .couponWindow .couponshare .email::before {
    content: '';
    background-image: url(../images/mail-142.svg);
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: relative;
    pointer-events: none;
    margin-right: 12px
}

.front-page .front-casestudies__window-button div.gotopage-text .couponWindow .couponshare .facebook {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    color: #575757;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: .3s;
    transition: .3s;
    margin-bottom: 16px
}

.front-page .front-casestudies__window-button div.gotopage-text .couponWindow .couponshare .facebook:hover {
    color: #ab0b23
}

.front-page .front-casestudies__window-button div.gotopage-text .couponWindow .couponshare .facebook::before {
    content: '';
    background-image: url(../images/facebook-2869.svg);
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: relative;
    pointer-events: none;
    margin-right: 12px
}

.front-page .front-casestudies__window-button div.gotopage-text .couponWindow .copycoupon .couponText {
    color: #575757;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: .3s;
    transition: .3s;
    margin-bottom: 5px;
    text-align: left
}

.front-page .front-casestudies__window-button div.gotopage-text .couponWindow .copycoupon input {
    background: #fff;
    border: 1px dashed #000;
    width: 100%;
    padding: 0 15px;
    height: 40px;
    font-family: Barlow, sans-serif;
    font-weight: 16px;
    color: #575757;
    font-weight: 500;
    outline: 0;
    -webkit-transition: .3s;
    transition: .3s
}

.front-page .front-casestudies__window-button div.gotopage-text .couponWindow .copycoupon input:focus {
    border: 1px dashed #ab0b23
}

.front-page .front-casestudies__window-button a.gotopromo {
    text-decoration: none;
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px;
    border-radius: 100px
}

.front-page .front-casestudies__window-button a.gotopromo:hover {
    background-color: #ab0b23
}

.front-page .front-casestudies__window-people {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 23px 26px;
    padding-top: 59px
}

@media (max-width:900px) {
    .front-page .front-casestudies__window-people {
        padding-top: 42px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.front-page .front-casestudies__window-code {
    outline: 0;
    background-color: #575757;
    border: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 295px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    border-radius: 100px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    border: 4px solid #fff;
    margin: 16px 0
}

@media (max-width:1600px) {
    .front-page .front-casestudies__window-code {
        font-size: 14px
    }
}

@media (max-width:550px) {
    .front-page .front-casestudies__window-code {
        width: 100%
    }
}

.front-page .front-casestudies__window-code.kod {
    padding: 15px;
    position: relative
}

.front-page .front-casestudies__window-code.kod::after {
    content: '';
    background: linear-gradient(135deg, #ab0b23 0, #f4303b 100%);
    width: 85%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 25px 00px 0 25px;
    -webkit-transition: .5s;
    transition: .5s
}

.front-page .front-casestudies__window-code.kod::before {
    content: '';
    position: absolute;
    height: 58px;
    width: 32px;
    background-size: contain;
    left: calc(85% - 15px);
    bottom: 0;
    background-image: url(../images/zdrapka.webp);
    background-repeat: no-repeat;
    z-index: 2;
    -webkit-transition: .5s;
    transition: .5s
}

.front-page .front-casestudies__window-code.kod span.showcode {
    -webkit-transition: .3s;
    transition: .3s
}

.front-page .front-casestudies__window-code.kod span.hiddencode {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
    cursor: text;
    visibility: hidden
}

.front-page .front-casestudies__window-code.kod span.hiddencode::-moz-selection {
    background: #ab0b23
}

.front-page .front-casestudies__window-code.kod span.hiddencode::selection {
    background: #ab0b23
}

.front-page .front-casestudies__window-code.kod span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
    position: relative
}

.front-page .front-casestudies__window-code.kod.open span.showcode {
    opacity: 0;
    visibility: hidden
}

.front-page .front-casestudies__window-code.kod.open span.hiddencode {
    opacity: 1;
    visibility: visible
}

.front-page .front-casestudies__window-code.kod.open::after {
    width: 10%
}

.front-page .front-casestudies__window-code.kod.open::before {
    left: calc(10% - 25px)
}

.front-page .front-casestudies__window-code button.gotopromo {
    text-decoration: none;
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px;
    border-radius: 100px;
    outline: 0;
    background-color: #575757;
    border: 0;
    width: 100%;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    border-radius: 100px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center
}

.front-page .front-casestudies__window-code button.gotopromo:hover {
    background-color: #ab0b23
}

.front-page .front-casestudies__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

.front-page .front-casestudies__wrapper::before {
    content: '';
    border: 5px solid #e6e6e6;
    border-top: 5px solid #f4303b;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 44%;
    left: 47%;
    display: block;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
    z-index: 7
}

.front-page .front-casestudies__wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    background-color: rgba(255, 255, 255, .555);
    z-index: 6
}

.front-page .front-casestudies__wrapper.loading::before {
    opacity: 1;
    visibility: visible
}

.front-page .front-casestudies__wrapper.loading::after {
    opacity: 1;
    visibility: visible
}

.front-page .front-casestudies__slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding: 24px 0;
    width: 100%
}

@media (max-width:900px) {
    .front-page .front-casestudies__slider {
        padding: 24px 0
    }
}

.front-page .front-casestudies__slider::-webkit-scrollbar {
    display: none
}

.front-page .front-casestudies__slider-item {
    min-width: 23.5%;
    width: 23.5%;
    margin-right: 2%;
    padding: 18px;
    -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    border: 3px solid #da8c30;
    overflow: hidden;
    border-radius: 40px;
    position: relative;
    background-color: #fff;
    padding-bottom: 102px
}

@media (max-width:1400px) {
    .front-page .front-casestudies__slider-item {
        min-width: 31.8%;
        width: 31.8%
    }
}

@media (max-width:1100px) {
    .front-page .front-casestudies__slider-item {
        min-width: 48.5%;
        width: 48.5%
    }
}

@media (max-width:768px) {
    .front-page .front-casestudies__slider-item {
        min-width: 100%;
        width: 100%
    }
}

.front-page .front-casestudies__slider-item.open .front-casestudies__window {
    opacity: 1;
    visibility: visible
}

.front-page .front-casestudies__slider-top {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    left: -37%;
    top: 9%;
    position: absolute;
    width: 100%;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
    z-index: 3
}

.front-page .front-casestudies__slider-top span {
    position: relative;
    z-index: 2;
    background: #f4303b;
    width: 100%;
    display: block;
    padding: 4px
}

.front-page .front-casestudies__slider-top::after {
    content: '';
    position: absolute;
    width: 17%;
    background-image: url(../images/starttop.svg);
    background-size: contain;
    background-position: center;
    display: block;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 0;
    padding-bottom: 19%;
    background-repeat: no-repeat
}

.front-page .front-casestudies__slider-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.front-page .front-casestudies__slider-info-left {
    width: 42%
}

.front-page .front-casestudies__slider-info-right {
    width: 50%
}

.front-page .front-casestudies__slider-terms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none
}

.front-page .front-casestudies__slider-term {
    padding: 6px 10px;
    border-radius: 12px;
    background-color: #e6e6e6;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #575757;
    margin-bottom: 20.5px
}

.front-page .front-casestudies__slider-term.wyprzedaze {
    background-color: #f5dcde;
    color: #f4303b;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.front-page .front-casestudies__slider-term.wyprzedaze::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/wyprzedaze.svg);
    background-size: contain;
    margin-right: 8.5px
}

.front-page .front-casestudies__slider-term.promocje {
    background-color: #ccd5e3;
    color: #528ae3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.front-page .front-casestudies__slider-term.promocje::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/promocje.svg);
    background-size: contain;
    margin-right: 8.5px
}

.front-page .front-casestudies__slider-term.kody-rabatowe {
    background-color: #f5dce0;
    color: #ab0b23;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.front-page .front-casestudies__slider-term.kody-rabatowe::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/kodziki.svg);
    background-size: contain;
    margin-right: 8.5px
}

.front-page .front-casestudies__slider-term.kody-wygasajace {
    background-color: #ffe7cc;
    color: #da8c30;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.front-page .front-casestudies__slider-term.kody-wygasajace::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/wyga.svg);
    background-size: contain;
    margin-right: 8.5px
}

.front-page .front-casestudies__slider-time {
    font-size: 14px;
    font-weight: 700;
    color: #575757;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 14px
}

.front-page .front-casestudies__slider-time::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/zegarek.svg);
    background-size: contain;
    margin-right: 10px
}

.front-page .front-casestudies__slider-clicked {
    font-size: 14px;
    font-weight: 700;
    color: #575757;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 14px
}

.front-page .front-casestudies__slider-clicked::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/ludziki.svg);
    background-size: contain;
    margin-right: 10px
}

.front-page .front-casestudies__slider-title {
    margin-top: 40px;
    margin-bottom: 14px
}

.front-page .front-casestudies__slider-title h6 {
    font-weight: 500
}

.front-page .front-casestudies__slider-excerpt {
    position: relative;
    padding-top: 22px
}

.front-page .front-casestudies__slider-excerpt p {
    font-size: 14px;
    color: #969696;
    font-weight: 500;
    line-height: 24px
}

@media (max-width:1600px) {
    .front-page .front-casestudies__slider-excerpt p {
        font-size: 14px;
        line-height: 20px
    }
}

.front-page .front-casestudies__slider-excerpt::after {
    content: '';
    position: absolute;
    top: 0;
    border-top: 1px solid #da9f30;
    height: 1px;
    width: 140%;
    left: -20%
}

.front-page .front-casestudies__slider-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    width: calc(100% - 40px);
    bottom: 20px;
    left: 20px;
    padding-top: 28px
}

@media (max-width:1600px) {
    .front-page .front-casestudies__slider-button {
        font-size: 14px
    }
}

.front-page .front-casestudies__slider-button::after {
    content: '';
    position: absolute;
    top: 0;
    background-image: url(../images/kulki.svg);
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    height: 12px;
    width: 140%;
    left: -20%
}

.front-page .front-casestudies__slider-button div.gotopage-button {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin-left: 13px;
    border-radius: 50%;
    border: 4px solid #fff;
    background-color: #ab0b23;
    background-image: url(../images/goto.svg);
    background-size: 23px;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    cursor: pointer
}

.front-page .front-casestudies__slider-button div.gotopage.open .gotopage-text {
    visibility: visible;
    opacity: 1
}

.front-page .front-casestudies__slider-button div.gotopage-text {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    background-color: rgba(26, 2, 5, .747);
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.front-page .front-casestudies__slider-button div.gotopage-text .gotopage-text-close {
    width: 30px;
    height: 30px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/close.svg);
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer
}

.front-page .front-casestudies__slider-button div.gotopage-text .couponWindow {
    background-color: #fff;
    border: 1px solid #e6e6e6;
    -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    position: relative;
    border-radius: 14px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 32px;
    max-width: 666px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media (max-width:900px) {
    .front-page .front-casestudies__slider-button div.gotopage-text .couponWindow {
        overflow-y: scroll;
        max-height: 100vh
    }
}

@media (max-width:696px) {
    .front-page .front-casestudies__slider-button div.gotopage-text .couponWindow {
        margin: 0 15px
    }
}

.front-page .front-casestudies__slider-button div.gotopage-text .couponWindow h4 {
    margin-bottom: 25px
}

.front-page .front-casestudies__slider-button div.gotopage-text .couponWindow .couponshare {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.front-page .front-casestudies__slider-button div.gotopage-text .couponWindow .couponshare .email {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    color: #575757;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: .3s;
    transition: .3s;
    margin-bottom: 16px
}

.front-page .front-casestudies__slider-button div.gotopage-text .couponWindow .couponshare .email:hover {
    color: #ab0b23
}

.front-page .front-casestudies__slider-button div.gotopage-text .couponWindow .couponshare .email::before {
    content: '';
    background-image: url(../images/mail-142.svg);
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: relative;
    pointer-events: none;
    margin-right: 12px
}

.front-page .front-casestudies__slider-button div.gotopage-text .couponWindow .couponshare .facebook {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    color: #575757;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: .3s;
    transition: .3s;
    margin-bottom: 16px
}

.front-page .front-casestudies__slider-button div.gotopage-text .couponWindow .couponshare .facebook:hover {
    color: #ab0b23
}

.front-page .front-casestudies__slider-button div.gotopage-text .couponWindow .couponshare .facebook::before {
    content: '';
    background-image: url(../images/facebook-2869.svg);
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: relative;
    pointer-events: none;
    margin-right: 12px
}

.front-page .front-casestudies__slider-button div.gotopage-text .couponWindow .copycoupon .couponText {
    color: #575757;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: .3s;
    transition: .3s;
    margin-bottom: 5px
}

.front-page .front-casestudies__slider-button div.gotopage-text .couponWindow .copycoupon input {
    background: #fff;
    border: 1px dashed #000;
    width: 100%;
    padding: 0 15px;
    height: 40px;
    font-family: Barlow, sans-serif;
    font-weight: 16px;
    color: #575757;
    font-weight: 500;
    outline: 0;
    -webkit-transition: .3s;
    transition: .3s
}

.front-page .front-casestudies__slider-button div.gotopage-text .couponWindow .copycoupon input:focus {
    border: 1px dashed #ab0b23
}

.front-page .front-casestudies__slider-button button.gotopromo {
    text-decoration: none;
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px;
    border-radius: 100px;
    background-color: transparent;
    border: 0;
    outline: 0;
    background-color: #575757;
    border: 0;
    width: 100%;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    border-radius: 100px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center
}

.front-page .front-casestudies__slider-button button.gotopromo:hover {
    background-color: #ab0b23
}

.front-page .front-casestudies__slider-code {
    outline: 0;
    background-color: #575757;
    border: 0;
    width: 100%;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    border-radius: 100px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center
}

.front-page .front-casestudies__slider-code.kod {
    padding: 15px;
    position: relative
}

.front-page .front-casestudies__slider-code.kod::after {
    content: '';
    background: linear-gradient(135deg, #ab0b23 0, #f4303b 100%);
    width: 85%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 25px 00px 0 25px;
    -webkit-transition: .5s;
    transition: .5s
}

.front-page .front-casestudies__slider-code.kod::before {
    content: '';
    position: absolute;
    height: 48px;
    width: 28px;
    background-size: contain;
    left: calc(85% - 15px);
    bottom: 0;
    background-image: url(../images/zdrapka.webp);
    background-repeat: no-repeat;
    z-index: 2;
    -webkit-transition: .5s;
    transition: .5s
}

.front-page .front-casestudies__slider-code.kod span.showcode {
    -webkit-transition: .3s;
    transition: .3s
}

.front-page .front-casestudies__slider-code.kod span.hiddencode {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
    cursor: text;
    visibility: hidden
}

.front-page .front-casestudies__slider-code.kod span.hiddencode::-moz-selection {
    background: #ab0b23
}

.front-page .front-casestudies__slider-code.kod span.hiddencode::selection {
    background: #ab0b23
}

.front-page .front-casestudies__slider-code.kod span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
    position: relative
}

.front-page .front-casestudies__slider-code.kod.open span.showcode {
    opacity: 0;
    visibility: hidden
}

.front-page .front-casestudies__slider-code.kod.open span.hiddencode {
    opacity: 1;
    visibility: visible
}

.front-page .front-casestudies__slider-code.kod.open::after {
    width: 10%
}

.front-page .front-casestudies__slider-code.kod.open::before {
    left: calc(10% - 25px)
}

.front-page .front-casestudies__shopimage {
    width: 100%;
    padding-bottom: 100%;
    height: 0;
    position: relative;
    border: 4px solid #e6e6e6;
    border-radius: 18px
}

.front-page .front-casestudies__shopimage span {
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 5px 12px;
    border: 4px solid #fff;
    background: #e6e6e6;
    border-radius: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    bottom: -18px
}

.front-page .front-casestudies__shopimage span.wyprzedaze {
    color: #fff;
    background-color: #f4303b
}

.front-page .front-casestudies__shopimage span.promocje {
    color: #fff;
    background-color: #528ae3
}

.front-page .front-casestudies__shopimage span.kody-rabatowe {
    color: #fff;
    background-color: #ab0b23
}

.front-page .front-casestudies__shopimage span.kody-wygasajace {
    color: #fff;
    background-color: #da8c30
}

.front-page .front-casestudies__shopimage img {
    width: 80%;
    -o-object-fit: contain;
    object-fit: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.front-page .front-casestudies__header h2 {
    font-size: 48px;
    color: #575757;
    font-weight: 500;
    text-align: center;
    margin-bottom: 12px
}

@media (max-width:900px) {
    .front-page .front-casestudies__header h2 {
        font-size: 32px
    }
}

.front-page .front-casestudies__header h5 {
    font-size: 20px;
    font-weight: 900;
    color: #da3064;
    text-align: center;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width:900px) {
    .front-page .front-casestudies__header h5 {
        font-size: 18px
    }
}

.front-page .front-casestudies__header h5 span {
    position: relative;
    z-index: 1;
    padding: 0 5px
}

.front-page .front-casestudies__header h5::after {
    content: '';
    height: 6px;
    width: 200vw;
    background-color: #e6e6e6;
    z-index: 0;
    display: block;
    position: absolute;
    right: calc(100% + 32px)
}

.front-page .front-casestudies__header h5::before {
    content: '';
    height: 6px;
    width: 200vw;
    background-color: #e6e6e6;
    z-index: 0;
    display: block;
    position: absolute;
    left: calc(100% + 32px)
}

.front-page .front-casestudies__buttons form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.front-page .front-casestudies__buttons form button {
    margin: 0 6px;
    margin-bottom: 13px;
    opacity: .3;
    -webkit-transition: .3s;
    transition: .3s;
    border-radius: 100px;
    padding: 6px 22px;
    border: 3px solid #fff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16)
}

@media (max-width:900px) {
    .front-page .front-casestudies__buttons form button {
        font-size: 14px;
        padding: 7px 16px;
        margin-bottom: 10px
    }
}

.front-page .front-casestudies__buttons form button.active {
    opacity: 1
}

.front-page .front-casestudies__buttons form button:hover {
    opacity: 1
}

.front-page .front-casestudies__buttons form button.all-button {
    color: #575757;
    background: #e6e6e6;
    background: linear-gradient(157deg, #e6e6e6 0, #f4f4f4 100%)
}

.front-page .front-casestudies__buttons form button.kody-rabatowe {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ab0b23
}

.front-page .front-casestudies__buttons form button.kody-rabatowe::before {
    content: '';
    width: 24px;
    height: 24px;
    background-size: contain;
    background-image: url(../images/kodyra.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px
}

@media (max-width:900px) {
    .front-page .front-casestudies__buttons form button.kody-rabatowe::before {
        width: 18px;
        height: 18px;
        margin-right: 8px
    }
}

.front-page .front-casestudies__buttons form button.kody-wygasajace {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #da8c30
}

.front-page .front-casestudies__buttons form button.kody-wygasajace::before {
    content: '';
    width: 24px;
    height: 24px;
    background-size: contain;
    background-image: url(../images/clock.webp);
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px
}

@media (max-width:900px) {
    .front-page .front-casestudies__buttons form button.kody-wygasajace::before {
        width: 18px;
        height: 18px;
        margin-right: 8px
    }
}

.front-page .front-casestudies__buttons form button.wyprzedaze {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f4303b
}

.front-page .front-casestudies__buttons form button.wyprzedaze::before {
    content: '';
    width: 24px;
    height: 24px;
    background-size: contain;
    background-image: url(../images/clock.webp);
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px
}

@media (max-width:900px) {
    .front-page .front-casestudies__buttons form button.wyprzedaze::before {
        width: 18px;
        height: 18px;
        margin-right: 8px
    }
}

.front-page .front-casestudies__buttons form button.promocje {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #528ae3
}

.front-page .front-casestudies__buttons form button.promocje::before {
    content: '';
    width: 24px;
    height: 24px;
    background-size: contain;
    background-image: url(../images/procent.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px
}

@media (max-width:900px) {
    .front-page .front-casestudies__buttons form button.promocje::before {
        width: 18px;
        height: 18px;
        margin-right: 8px
    }
}

.front-page .front-casestudies__buttons form .filter-button {
    display: none !important
}

.front-page .front-newest.sklep {
    margin-bottom: 80px
}

@media (max-width:900px) {
    .front-page .front-newest.sklep {
        margin-bottom: 48px
    }
}

.front-page .front-newest.search {
    margin-top: 80px;
    margin-bottom: 80px
}

@media (max-width:900px) {
    .front-page .front-newest.search {
        margin-top: 48px;
        margin-bottom: 48px
    }
}

.front-page .front-newest.archive {
    margin-bottom: 80px
}

@media (max-width:900px) {
    .front-page .front-newest.archive {
        margin-bottom: 48px
    }
}

.front-page .front-newest__loadmore {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 22px
}

.front-page .front-newest__loadmore button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    background-color: #ab0b23;
    border-radius: 100px;
    padding: 7px 18px;
    border: 3px solid #fff;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: .3s;
    transition: .3s;
    letter-spacing: 1px;
    cursor: pointer
}

.front-page .front-newest__loadmore button:hover {
    background-color: #7e0a1c
}

.front-page .front-newest__loadmore button::before {
    content: '';
    width: 18px;
    height: 18px;
    background-image: url(../images/chevron.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    margin-right: 12px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.front-page .front-newest__container {
    max-width: 1740px;
    padding: 0 50px;
    margin-left: auto;
    margin-right: auto
}

@media (max-width:900px) {
    .front-page .front-newest__container {
        padding: 0 15px
    }
}

.front-page .front-newest__container form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 28px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.front-page .front-newest__container form button {
    margin: 0 8px;
    margin-bottom: 16px;
    opacity: .3;
    -webkit-transition: .3s;
    transition: .3s;
    border-radius: 100px;
    padding: 7px 22px;
    border: 3px solid #fff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16)
}

@media (max-width:1840px) {
    .front-page .front-newest__container form button {
        padding: 7px 24px;
        font-size: 15px
    }
}

@media (max-width:900px) {
    .front-page .front-newest__container form button {
        font-size: 14px;
        padding: 7px 16px;
        margin-bottom: 10px
    }
}

.front-page .front-newest__container form button.active {
    opacity: 1
}

.front-page .front-newest__container form button:hover {
    opacity: 1
}

.front-page .front-newest__container form button.all-button {
    color: #575757;
    background: #e6e6e6;
    background: linear-gradient(157deg, #e6e6e6 0, #f4f4f4 100%)
}

.front-page .front-newest__container form button.kody-rabatowe {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ab0b23
}

.front-page .front-newest__container form button.kody-rabatowe::before {
    content: '';
    width: 24px;
    height: 24px;
    background-size: contain;
    background-image: url(../images/kodyra.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px
}

@media (max-width:900px) {
    .front-page .front-newest__container form button.kody-rabatowe::before {
        width: 18px;
        height: 18px;
        margin-right: 8px
    }
}

.front-page .front-newest__container form button.kody-wygasajace {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #da8c30
}

.front-page .front-newest__container form button.kody-wygasajace::before {
    content: '';
    width: 24px;
    height: 24px;
    background-size: contain;
    background-image: url(../images/clock.webp);
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px
}

@media (max-width:900px) {
    .front-page .front-newest__container form button.kody-wygasajace::before {
        width: 18px;
        height: 18px;
        margin-right: 8px
    }
}

.front-page .front-newest__container form button.wyprzedaze {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f4303b
}

.front-page .front-newest__container form button.wyprzedaze::before {
    content: '';
    width: 24px;
    height: 24px;
    background-size: contain;
    background-image: url(../images/clock.webp);
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px
}

@media (max-width:900px) {
    .front-page .front-newest__container form button.wyprzedaze::before {
        width: 18px;
        height: 18px;
        margin-right: 8px
    }
}

.front-page .front-newest__container form button.promocje {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #528ae3
}

.front-page .front-newest__container form button.promocje::before {
    content: '';
    width: 24px;
    height: 24px;
    background-size: contain;
    background-image: url(../images/procent.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px
}

@media (max-width:900px) {
    .front-page .front-newest__container form button.promocje::before {
        width: 18px;
        height: 18px;
        margin-right: 8px
    }
}

.front-page .front-newest__container form .filter-button {
    display: none !important
}

.front-page .front-newest__all {
    margin: 0 8px;
    margin-bottom: 16px;
    -webkit-transition: .3s;
    transition: .3s;
    border-radius: 100px;
    padding: 7px 22px;
    text-decoration: none;
    border: 4px solid #fff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    color: #575757;
    background: #e6e6e6;
    background: linear-gradient(157deg, #e6e6e6 0, #f4f4f4 100%);
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

@media (max-width:1840px) {
    .front-page .front-newest__all {
        padding: 7px 24px;
        font-size: 15px
    }
}

@media (max-width:900px) {
    .front-page .front-newest__all {
        font-size: 14px;
        padding: 7px 16px;
        margin-bottom: 10px;
        margin-top: 16px
    }
}

.front-page .front-newest__header {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px
}

@media (max-width:900px) {
    .front-page .front-newest__header {
        margin-bottom: 32px
    }
}

.front-page .front-newest__header h2 {
    font-size: 48px;
    color: #575757;
    font-weight: 500;
    text-align: center;
    margin-bottom: 19px
}

@media (max-width:900px) {
    .front-page .front-newest__header h2 {
        font-size: 32px
    }
}

.front-page .front-newest__header-back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    background-color: #ab0b23;
    border-radius: 100px;
    padding: 7px 20px;
    border: 4px solid #fff;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: .3s;
    transition: .3s;
    letter-spacing: 1px;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 48px;
}

.front-page .front-newest__header-back:hover {
    background-color: #7e0a1c
}

.front-page .front-newest__header-back::before {
    content: '';
    width: 18px;
    height: 18px;
    background-image: url(../images/chevron.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    margin-right: 12px;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

.front-page .front-newest__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 101%;
    position: relative
}

.front-page .front-newest__items.podkategoria {
    width: 75%
}

@media (max-width:900px) {
    .front-page .front-newest__items.podkategoria {
        width: 100%
    }
}

.front-page .front-newest__items.archive {
    margin-top: 24px;
    min-height: 340px
}

@media (max-width:900px) {
    .front-page .front-newest__items.archive {
        margin-top: 16px
    }
}

.front-page .front-newest__items::before {
    content: '';
    border: 4px solid #e6e6e6;
    border-top: 4px solid #f4303b;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 44%;
    left: 47%;
    display: block;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
    z-index: 7
}

.front-page .front-newest__items::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    background-color: rgba(255, 255, 255, .555);
    z-index: 6
}

.front-page .front-newest__items.loading::before {
    opacity: 1;
    visibility: visible
}

.front-page .front-newest__items.loading::after {
    opacity: 1;
    visibility: visible
}

.front-page .front-newest__window {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    background-color: rgba(26, 2, 5, .747);
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.front-page .front-newest__window-close {
    width: 30px;
    height: 30px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/close.svg);
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer
}

.front-page .front-newest__window-container {
    background-color: #fff;
    border: 1px solid #e6e6e6;
    -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    position: relative;
    border-radius: 14px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 666px
}

@media (max-width:900px) {
    .front-page .front-newest__window-container {
        overflow-y: scroll;
        max-height: 100vh
    }
}

@media (max-width:696px) {
    .front-page .front-newest__window-container {
        margin: 0 15px
    }
}

.front-page .front-newest__window-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 42px
}

@media (max-width:900px) {
    .front-page .front-newest__window-info {
        margin-top: 28px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.front-page .front-newest__window-time {
    font-size: 14px;
    font-weight: 700;
    color: #575757;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 14px
}

@media (max-width:900px) {
    .front-page .front-newest__window-time {
        margin-top: 16px
    }
}

.front-page .front-newest__window-time::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/zegarek.svg);
    background-size: contain;
    margin-right: 10px
}

.front-page .front-newest__window-terms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none
}

.front-page .front-newest__window-term {
    padding: 7px 11px;
    border-radius: 12px;
    background-color: #e6e6e6;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #575757;
    margin: 0 17px
}

.front-page .front-newest__window-term.wyprzedaze {
    background-color: #f5dcde;
    color: #f4303b;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.front-page .front-newest__window-term.wyprzedaze::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/wyprzedaze.svg);
    background-size: contain;
    margin-right: 8.5px
}

.front-page .front-newest__window-term.promocje {
    background-color: #ccd5e3;
    color: #528ae3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.front-page .front-newest__window-term.promocje::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/promocje.svg);
    background-size: contain;
    margin-right: 8.5px
}

.front-page .front-newest__window-term.kody-rabatowe {
    background-color: #f5dce0;
    color: #ab0b23;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.front-page .front-newest__window-term.kody-rabatowe::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/kodziki.svg);
    background-size: contain;
    margin-right: 8.5px
}

.front-page .front-newest__window-term.kody-wygasajace {
    background-color: #ffe7cc;
    color: #da8c30;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.front-page .front-newest__window-term.kody-wygasajace::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/wyga.svg);
    background-size: contain;
    margin-right: 8.5px
}

.front-page .front-newest__window h6 {
    margin-top: 28px;
    text-align: center;
    max-width: 333px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    color: #343434;
    margin-top: 32px;
    padding: 0 15px
}

@media (max-width:1600px) {
    .front-page .front-newest__window h6 {
        font-size: 18px
    }
}

@media (max-width:900px) {
    .front-page .front-newest__window h6 {
        font-size: 14px;
        margin-top: 24px
    }
}

.front-page .front-newest__window-excerpt {
    max-width: 428px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #969696;
    margin-top: 16px;
    padding: 0 15px
}

.front-page .front-newest__window-shopimage {
    width: 153px;
    height: 154px;
    position: relative;
    border: 4px solid #e6e6e6;
    border-radius: 18px;
    margin-top: 84px;
    margin-left: auto;
    margin-right: auto
}

@media (max-width:900px) {
    .front-page .front-newest__window-shopimage {
        margin-top: 24px;
        width: 150px;
        height: 130px
    }
}

.front-page .front-newest__window-shopimage span {
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 5px 12px;
    border: 4px solid #fff;
    background: #e6e6e6;
    border-radius: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    bottom: -18px
}

.front-page .front-newest__window-shopimage span.wyprzedaze {
    color: #fff;
    background-color: #f4303b
}

.front-page .front-newest__window-shopimage span.promocje {
    color: #fff;
    background-color: #528ae3
}

.front-page .front-newest__window-shopimage span.kody-rabatowe {
    color: #fff;
    background-color: #ab0b23
}

.front-page .front-newest__window-shopimage span.kody-wygasajace {
    color: #fff;
    background-color: #da8c30
}

.front-page .front-newest__window-shopimage img {
    width: 80%;
    -o-object-fit: contain;
    object-fit: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.front-page .front-newest__window-clicked {
    font-size: 18px;
    font-weight: 500;
    color: #343434
}

@media (max-width:900px) {
    .front-page .front-newest__window-clicked {
        text-align: center;
        font-size: 14px
    }
}

.front-page .front-newest__window-clicked span {
    color: #ab0b23
}

.front-page .front-newest__window-clickedicon {
    font-size: 14px;
    font-weight: 700;
    color: #575757;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width:900px) {
    .front-page .front-newest__window-clickedicon {
        display: none
    }
}

.front-page .front-newest__window-clickedicon::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/ludziki.svg);
    background-size: contain;
    margin-right: 10px
}

.front-page .front-newest__window-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #f4f4f4;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    padding: 25px 28px;
    padding-bottom: 30px;
    margin-top: 31px;
    position: relative
}

@media (max-width:900px) {
    .front-page .front-newest__window-button {
        padding: 7px 28px;
        padding-bottom: 32px
    }
}

.front-page .front-newest__window-button p {
    width: 100%;
    text-align: center;
    margin-bottom: 2px;
    font-weight: 500;
    color: #343434
}

.front-page .front-newest__window-button a.gotowww {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    padding: 5px 12px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #575757;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    border-radius: 100px;
    border: 4px solid #fff;
    bottom: -17px;
    text-transform: uppercase;
    -webkit-transition: .3s;
    transition: .3s;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content
}

.front-page .front-newest__window-button a.gotowww:hover {
    background-color: #ab0b23
}

.front-page .front-newest__window-button div.gotopage-button {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin-left: 13px;
    border-radius: 50%;
    border: 4px solid #fff;
    background-color: #ab0b23;
    background-image: url(../images/goto.svg);
    background-size: 23px;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    cursor: pointer
}

.front-page .front-newest__window-button div.gotopage.open .gotopage-text {
    visibility: visible;
    opacity: 1
}

.front-page .front-newest__window-button div.gotopage-text {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    background-color: rgba(26, 2, 5, .747);
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.front-page .front-newest__window-button div.gotopage-text .gotopage-text-close {
    width: 30px;
    height: 30px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/close.svg);
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer
}

.front-page .front-newest__window-button div.gotopage-text .couponWindow {
    background-color: #fff;
    border: 1px solid #e6e6e6;
    -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    position: relative;
    border-radius: 14px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 32px;
    max-width: 666px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media (max-width:900px) {
    .front-page .front-newest__window-button div.gotopage-text .couponWindow {
        overflow-y: scroll;
        max-height: 100vh
    }
}

@media (max-width:696px) {
    .front-page .front-newest__window-button div.gotopage-text .couponWindow {
        margin: 0 15px
    }
}

.front-page .front-newest__window-button div.gotopage-text .couponWindow h4 {
    margin-bottom: 25px
}

.front-page .front-newest__window-button div.gotopage-text .couponWindow .couponshare {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.front-page .front-newest__window-button div.gotopage-text .couponWindow .couponshare .email {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    color: #575757;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: .3s;
    transition: .3s;
    margin-bottom: 16px
}

.front-page .front-newest__window-button div.gotopage-text .couponWindow .couponshare .email:hover {
    color: #ab0b23
}

.front-page .front-newest__window-button div.gotopage-text .couponWindow .couponshare .email::before {
    content: '';
    background-image: url(../images/mail-142.svg);
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: relative;
    pointer-events: none;
    margin-right: 12px
}

.front-page .front-newest__window-button div.gotopage-text .couponWindow .couponshare .facebook {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    color: #575757;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: .3s;
    transition: .3s;
    margin-bottom: 16px
}

.front-page .front-newest__window-button div.gotopage-text .couponWindow .couponshare .facebook:hover {
    color: #ab0b23
}

.front-page .front-newest__window-button div.gotopage-text .couponWindow .couponshare .facebook::before {
    content: '';
    background-image: url(../images/facebook-2869.svg);
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: relative;
    pointer-events: none;
    margin-right: 12px
}

.front-page .front-newest__window-button div.gotopage-text .couponWindow .copycoupon .couponText {
    color: #575757;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: .3s;
    transition: .3s;
    margin-bottom: 5px;
    text-align: left
}

.front-page .front-newest__window-button div.gotopage-text .couponWindow .copycoupon input {
    background: #fff;
    border: 1px dashed #000;
    width: 100%;
    padding: 0 15px;
    height: 40px;
    font-family: Barlow, sans-serif;
    font-weight: 16px;
    color: #575757;
    font-weight: 500;
    outline: 0;
    -webkit-transition: .3s;
    transition: .3s
}

.front-page .front-newest__window-button div.gotopage-text .couponWindow .copycoupon input:focus {
    border: 1px dashed #ab0b23
}

.front-page .front-newest__window-button a.gotopromo {
    text-decoration: none;
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px;
    border-radius: 100px
}

.front-page .front-newest__window-button a.gotopromo:hover {
    background-color: #ab0b23
}

.front-page .front-newest__window-people {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 23px 26px;
    padding-top: 59px
}

@media (max-width:900px) {
    .front-page .front-newest__window-people {
        padding-top: 42px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.front-page .front-newest__window-code {
    outline: 0;
    background-color: #575757;
    border: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 295px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    border-radius: 100px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    border: 4px solid #fff;
    margin: 16px 0
}

@media (max-width:1600px) {
    .front-page .front-newest__window-code {
        font-size: 14px
    }
}

@media (max-width:550px) {
    .front-page .front-newest__window-code {
        width: 100%
    }
}

.front-page .front-newest__window-code.kod {
    padding: 15px;
    position: relative
}

.front-page .front-newest__window-code.kod::after {
    content: '';
    background: linear-gradient(135deg, #ab0b23 0, #f4303b 100%);
    width: 85%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 25px 00px 0 25px;
    -webkit-transition: .5s;
    transition: .5s
}

.front-page .front-newest__window-code.kod::before {
    content: '';
    position: absolute;
    height: 58px;
    width: 32px;
    background-size: contain;
    left: calc(85% - 15px);
    bottom: 0;
    background-image: url(../images/zdrapka.webp);
    background-repeat: no-repeat;
    z-index: 2;
    -webkit-transition: .5s;
    transition: .5s
}

.front-page .front-newest__window-code.kod span.showcode {
    -webkit-transition: .3s;
    transition: .3s
}

.front-page .front-newest__window-code.kod span.hiddencode {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
    cursor: text;
    visibility: hidden
}

.front-page .front-newest__window-code.kod span.hiddencode::-moz-selection {
    background: #ab0b23
}

.front-page .front-newest__window-code.kod span.hiddencode::selection {
    background: #ab0b23
}

.front-page .front-newest__window-code.kod span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
    position: relative
}

.front-page .front-newest__window-code.kod.open span.showcode {
    opacity: 0;
    visibility: hidden
}

.front-page .front-newest__window-code.kod.open span.hiddencode {
    opacity: 1;
    visibility: visible
}

.front-page .front-newest__window-code.kod.open::after {
    width: 10%
}

.front-page .front-newest__window-code.kod.open::before {
    left: calc(10% - 25px)
}

.front-page .front-newest__item {
    min-width: 24%;
    width: 24%;
    margin-right: 1%;
    padding: 23px;
    -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    border: 1px solid #e6e6e6;
    overflow: hidden;
    border-radius: 40px;
    position: relative;
    background-color: #fff;
    padding-bottom: 89px;
    margin-bottom: 16px
}

.front-page .front-newest__item.podkategoria {
    width: 32.33%
}

@media (max-width:1400px) {
    .front-page .front-newest__item.podkategoria {
        width: 49%
    }
}

@media (max-width:1400px) {
    .front-page .front-newest__item {
        min-width: 31.8%;
        width: 31.8%
    }
}

@media (max-width:1100px) {
    .front-page .front-newest__item {
        min-width: 48.5%;
        width: 48.5%
    }
}

@media (max-width:768px) {
    .front-page .front-newest__item {
        min-width: 100%;
        width: 100%
    }
}

.front-page .front-newest__item.open .front-newest__window {
    opacity: 1;
    visibility: visible
}

.front-page .front-newest__item-top {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    left: -37%;
    top: 9%;
    position: absolute;
    width: 100%;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
    z-index: 3
}

.front-page .front-newest__item-top span {
    position: relative;
    z-index: 2;
    background: #f4303b;
    width: 100%;
    display: block;
    padding: 4px;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16)
}

.front-page .front-newest__item-top::after {
    content: '';
    position: absolute;
    width: 17%;
    background-image: url(../images/starttop.svg);
    background-size: contain;
    background-position: center;
    display: block;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 0;
    padding-bottom: 19%;
    background-repeat: no-repeat
}

.front-page .front-newest__item-unas {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    left: -37%;
    top: 9%;
    position: absolute;
    width: 100%;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
    z-index: 3
}

.front-page .front-newest__item-unas span {
    position: relative;
    z-index: 2;
    background: #6dd86d;
    width: 100%;
    display: block;
    padding: 4px;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16)
}

.front-page .front-newest__item-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px
}

.front-page .front-newest__item-info-left {
    width: 42%
}

.front-page .front-newest__item-info-right {
    width: 50%
}

.front-page .front-newest__item-terms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none
}

.front-page .front-newest__item-term {
    padding: 8px 13px;
    border-radius: 12px;
    background-color: #e6e6e6;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #575757;
    margin-bottom: 22.5px
}

.front-page .front-newest__item-term.wyprzedaze {
    background-color: #f5dcde;
    color: #f4303b;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.front-page .front-newest__item-term.wyprzedaze::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/wyprzedaze.svg);
    background-size: contain;
    margin-right: 8.5px
}

.front-page .front-newest__item-term.promocje {
    background-color: #ccd5e3;
    color: #528ae3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.front-page .front-newest__item-term.promocje::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/promocje.svg);
    background-size: contain;
    margin-right: 8.5px
}

.front-page .front-newest__item-term.kody-rabatowe {
    background-color: #f5dce0;
    color: #ab0b23;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.front-page .front-newest__item-term.kody-rabatowe::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/kodziki.svg);
    background-size: contain;
    margin-right: 8.5px
}

.front-page .front-newest__item-term.kody-wygasajace {
    background-color: #ffe7cc;
    color: #da8c30;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.front-page .front-newest__item-term.kody-wygasajace::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/wyga.svg);
    background-size: contain;
    margin-right: 8.5px
}

.front-page .front-newest__item-time {
    font-size: 14px;
    font-weight: 700;
    color: #575757;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 16px
}

.front-page .front-newest__item-time::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/zegarek.svg);
    background-size: contain;
    margin-right: 10px
}

.front-page .front-newest__item-clicked {
    font-size: 14px;
    font-weight: 700;
    color: #575757;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 16px
}

.front-page .front-newest__item-clicked::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/ludziki.svg);
    background-size: contain;
    margin-right: 10px
}

.front-page .front-newest__item-title {
    margin-top: 48px;
    margin-bottom: 18px
}

.front-page .front-newest__item-title h6 {
    font-weight: 500
}

.front-page .front-newest__item-excerpt {
    position: relative;
    padding-top: 24px
}

.front-page .front-newest__item-excerpt p {
    font-size: 14px;
    color: #969696;
    font-weight: 500;
    line-height: 24px
}

@media (max-width:1600px) {
    .front-page .front-newest__item-excerpt p {
        font-size: 14px;
        line-height: 20px
    }
}

.front-page .front-newest__item-excerpt::after {
    content: '';
    position: absolute;
    top: 0;
    background-image: url(../images/kulki.svg);
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    height: 12px;
    width: 140%;
    left: -20%;
    -webkit-filter: brightness(0);
    filter: brightness(0);
    opacity: .03
}

.front-page .front-newest__item-show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    width: calc(100% - 40px);
    bottom: 20px;
    left: 20px;
    outline: 0;
    background-color: #575757;
    border: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    border-radius: 100px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px
}

.front-page .front-newest__item-show:hover {
    background-color: #ab0b23
}

@media (max-width:1600px) {
    .front-page .front-newest__item-show {
        font-size: 14px
    }
}

@media (max-width:1600px) {
    .front-page .front-newest__item-show {
        font-size: 14px
    }
}

.front-page .front-newest__item-show div.gotopage {
    width: 50px;
    height: 50px;
    min-width: 50px;
    margin-left: 13px;
    border-radius: 50%;
    border: 4px solid #fff;
    background-color: #ab0b23;
    background-image: url(../images/goto.svg);
    background-size: 23px;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    cursor: pointer
}

.front-page .front-newest__item-show div.gotopage-text {
    display: none
}

.front-page .front-newest__item-show div.gotopage .gotopage-copied {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 51px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    background-color: #ab0b23;
    border-radius: 100px;
    padding: 5px 11px;
    border: 2px solid #fff;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: .3s;
    transition: .3s;
    letter-spacing: 1px;
    z-index: 3;
    right: -14px
}

.front-page .front-newest__item-show div.gotopage .gotopage-copied.active {
    opacity: 1;
    visibility: visible
}

.front-page .front-newest__item-show a.gotopromo {
    text-decoration: none;
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px;
    border-radius: 100px
}

.front-page .front-newest__item-show a.gotopromo:hover {
    background-color: #ab0b23
}

.front-page .front-newest__item-code {
    outline: 0;
    background-color: #575757;
    border: 0;
    width: 100%;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    border-radius: 100px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center
}

@media (max-width:1600px) {
    .front-page .front-newest__item-code {
        font-size: 14px
    }
}

.front-page .front-newest__item-code.kod {
    padding: 15px;
    position: relative
}

.front-page .front-newest__item-code.kod::after {
    content: '';
    background: linear-gradient(135deg, #ab0b23 0, #f4303b 100%);
    width: 85%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 25px 00px 0 25px;
    -webkit-transition: .5s;
    transition: .5s
}

.front-page .front-newest__item-code.kod::before {
    content: '';
    position: absolute;
    height: 58px;
    width: 32px;
    background-size: contain;
    left: calc(85% - 15px);
    bottom: 0;
    background-image: url(../images/zdrapka.webp);
    background-repeat: no-repeat;
    z-index: 2;
    -webkit-transition: .5s;
    transition: .5s
}

.front-page .front-newest__item-code.kod span.showcode {
    -webkit-transition: .3s;
    transition: .3s
}

.front-page .front-newest__item-code.kod span.hiddencode {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
    cursor: text;
    visibility: hidden
}

.front-page .front-newest__item-code.kod span.hiddencode::-moz-selection {
    background: #ab0b23
}

.front-page .front-newest__item-code.kod span.hiddencode::selection {
    background: #ab0b23
}

.front-page .front-newest__item-code.kod span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
    position: relative
}

.front-page .front-newest__item-code.kod.open span.showcode {
    opacity: 0;
    visibility: hidden
}

.front-page .front-newest__item-code.kod.open span.hiddencode {
    opacity: 1;
    visibility: visible
}

.front-page .front-newest__item-code.kod.open::after {
    width: 10%
}

.front-page .front-newest__item-code.kod.open::before {
    left: calc(10% - 25px)
}

.front-page .front-newest__item-shopimage {
    width: 100%;
    padding-bottom: 100%;
    height: 0;
    position: relative;
    border: 4px solid #e6e6e6;
    border-radius: 18px
}

.front-page .front-newest__item-shopimage span {
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 5px 12px;
    border: 4px solid #fff;
    background: #e6e6e6;
    border-radius: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    bottom: -18px
}

.front-page .front-newest__item-shopimage span.wyprzedaze {
    color: #fff;
    background-color: #f4303b
}

.front-page .front-newest__item-shopimage span.promocje {
    color: #fff;
    background-color: #528ae3
}

.front-page .front-newest__item-shopimage span.kody-rabatowe {
    color: #fff;
    background-color: #ab0b23
}

.front-page .front-newest__item-shopimage span.kody-wygasajace {
    color: #fff;
    background-color: #da8c30
}

.front-page .front-newest__item-shopimage img {
    width: 80%;
    -o-object-fit: contain;
    object-fit: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.front-page .front-newest__break {
    max-width: 1740px;
    padding: 16px 50px;
    margin-left: auto;
    margin-right: auto
}

@media (max-width:900px) {
    .front-page .front-newest__break {
        display: none
    }
}

.front-page .front-newest__break-container {
    padding: 25px 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-position: right;
    background-image: url(../images/backgroundbreak.webp);
    background-size: cover;
    border-radius: 20px;
    padding-right: 130px
}

.front-page .front-newest__break-container h4,
.front-page .front-newest__break-container h5 {
    color: #343434
}

.front-page .front-newest__break-container .addcoupon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    background: #da3064;
    background: linear-gradient(163deg, #da3064 0, #f4303b 100%);
    border-radius: 100px;
    padding: 9px 22px;
    border: 4px solid #fff;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: .3s;
    transition: .3s;
    letter-spacing: 1px
}

.front-page .front-newest__break-container .addcoupon:hover {
    background: #7e0a1c
}

.front-page .front-newest__break-container .addcoupon::before {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url(../images/coupon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    margin-right: 9px
}

.front-page .front-bigbanner {
    max-width: 1740px;
    padding: 0 50px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 83px
}

@media (max-width:900px) {
    .front-page .front-bigbanner {
        padding: 0;
        margin-top: 48px
    }
}

.front-page .front-bigbanner img {
    width: 100%;
    -webkit-box-shadow: 0 3px 80px 0 rgba(0, 0, 0, .18);
    box-shadow: 0 3px 80px 0 rgba(0, 0, 0, .18);
    -o-object-fit: contain;
    object-fit: contain
}

.front-page .front-newspapers__header h2 {
    font-size: 48px;
    color: #575757;
    font-weight: 500;
    text-align: center;
    margin-bottom: 19px
}

@media (max-width:900px) {
    .front-page .front-newspapers__header h2 {
        font-size: 32px
    }
}

.front-page .front-newspapers__container {
    max-width: 1920px;
    padding: 80px 44px;
    margin-left: auto;
    margin-right: auto
}

.front-page .front-newspapers__container.all {
    padding-top: 0;
    margin-top: 99px
}

@media (max-width:900px) {
    .front-page .front-newspapers__container.all {
        margin-top: 48px
    }
}

@media (max-width:1840px) {
    .front-page .front-newspapers__container {
        padding: 64px 15px
    }
}

@media (max-width:900px) {
    .front-page .front-newspapers__container {
        padding: 32px 15px
    }
}

.front-page .front-newspapers__container-chevronslider {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ab0b23;
    border: 4px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: .4;
    -webkit-transition: .3s;
    transition: .3s;
    min-width: 50px;
    cursor: pointer;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    z-index: 3;
    position: relative
}

@media (max-width:1600px) {
    .front-page .front-newspapers__container-chevronslider {
        width: 40px;
        min-width: 40px;
        height: 40px
    }
}

@media (max-width:768px) {
    .front-page .front-newspapers__container-chevronslider {
        position: absolute
    }
}

.front-page .front-newspapers__container-chevronslider img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    width: 24px;
    height: 16px;
    -o-object-fit: contain;
    object-fit: contain
}

@media (max-width:1600px) {
    .front-page .front-newspapers__container-chevronslider img {
        width: 20px;
        height: 14px
    }
}

.front-page .front-newspapers__container-chevronslider.prev {
    margin-right: 26px;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

@media (max-width:768px) {
    .front-page .front-newspapers__container-chevronslider.prev {
        left: 10px
    }
}

@media (max-width:1600px) {
    .front-page .front-newspapers__container-chevronslider.prev {
        margin-right: 18px
    }
}

.front-page .front-newspapers__container-chevronslider.next {
    margin-left: 26px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

@media (max-width:768px) {
    .front-page .front-newspapers__container-chevronslider.next {
        right: 10px
    }
}

@media (max-width:1600px) {
    .front-page .front-newspapers__container-chevronslider.next {
        margin-left: 18px
    }
}

.front-page .front-newspapers__container-chevronslider:hover {
    opacity: 1
}

.front-page .front-newspapers__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

.front-page .front-newspapers__items {
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding: 32px 0;
    width: 100%
}

@media (max-width:900px) {
    .front-page .front-newspapers__items {
        padding: 24px 0
    }
}

.front-page .front-newspapers__items::-webkit-scrollbar {
    display: none
}

.front-page .front-newspapers__item {
    min-width: 23.5%;
    width: 23.5%;
    margin-right: 2%;
    padding: 24px 30px;
    -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    overflow: hidden;
    border-radius: 40px;
    position: relative;
    background-color: #fff;
    text-decoration: none
}

@media (max-width:1400px) {
    .front-page .front-newspapers__item {
        min-width: 31.8%;
        width: 31.8%
    }
}

@media (max-width:1100px) {
    .front-page .front-newspapers__item {
        min-width: 48.5%;
        width: 48.5%
    }
}

@media (max-width:768px) {
    .front-page .front-newspapers__item {
        min-width: 100%;
        width: 100%
    }
}

.front-page .front-newspapers__item-image {
    height: 320px
}

.front-page .front-newspapers__item-image img {
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%
}

.front-page .front-newspapers__item-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 32px
}

.front-page .front-newspapers__item-info-left {
    width: 30%
}

.front-page .front-newspapers__item-info-right {
    width: 64%
}

.front-page .front-newspapers__item-time {
    font-size: 14px;
    font-weight: 700;
    color: #575757;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 16px
}

.front-page .front-newspapers__item-time::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/zegarek.svg);
    background-size: contain;
    margin-right: 10px;
    min-width: 18px
}

.front-page .front-newspapers__item-title {
    color: #343434;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 13.5px
}

.front-page .front-newspapers__item-clicked {
    font-size: 14px;
    font-weight: 700;
    color: #575757;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 16px
}

.front-page .front-newspapers__item-clicked::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/ludziki.svg);
    background-size: contain;
    margin-right: 10px;
    min-width: 18px
}

.front-page .front-newspapers__item-shopimage {
    width: 100%;
    padding-bottom: 100%;
    height: 0;
    position: relative;
    border: 1px solid #707070;
    border-radius: 18px
}

.front-page .front-newspapers__item-shopimage img {
    width: 100%;
    height: 80%;
    -o-object-fit: contain;
    object-fit: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.front-page .front-newspapers__all {
    margin: 0 8px;
    margin-bottom: 16px;
    -webkit-transition: .3s;
    transition: .3s;
    border-radius: 100px;
    padding: 9px 26px;
    text-decoration: none;
    border: 4px solid #fff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    color: #575757;
    background: #e6e6e6;
    background: linear-gradient(157deg, #e6e6e6 0, #f4f4f4 100%);
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

@media (max-width:1840px) {
    .front-page .front-newspapers__all {
        padding: 7px 24px;
        font-size: 15px
    }
}

@media (max-width:900px) {
    .front-page .front-newspapers__all {
        font-size: 14px;
        padding: 7px 16px;
        margin-bottom: 10px;
        margin-top: 4px
    }
}

.front-page .front-shops__container {
    max-width: 1740px;
    padding: 0 50px;
    margin-left: auto;
    margin-right: auto
}

@media (max-width:900px) {
    .front-page .front-shops__container {
        padding: 0 15px
    }
}

.front-page .front-shops__header {
    margin-bottom: 48px
}

.front-page .front-shops__header h2 {
    font-size: 48px;
    color: #575757;
    font-weight: 500;
    text-align: center;
    margin-bottom: 19px
}

@media (max-width:900px) {
    .front-page .front-shops__header h2 {
        font-size: 32px
    }
}

.front-page .front-shops__all {
    margin: 0 8px;
    margin-bottom: -19px;
    z-index: 3;
    position: relative;
    -webkit-transition: .3s;
    transition: .3s;
    border-radius: 100px;
    padding: 9px 26px;
    text-decoration: none;
    border: 4px solid #fff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    color: #575757;
    background: #e6e6e6;
    background: linear-gradient(157deg, #e6e6e6 0, #f4f4f4 100%);
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

@media (max-width:1840px) {
    .front-page .front-shops__all {
        padding: 7px 24px;
        font-size: 15px
    }
}

@media (max-width:900px) {
    .front-page .front-shops__all {
        font-size: 14px;
        padding: 7px 16px;
        margin-top: 16px
    }
}

.front-page .front-shops__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 101.23%
}

@media (max-width:1400px) {
    .front-page .front-shops__items {
        width: 101%
    }
}

@media (max-width:600px) {
    .front-page .front-shops__items {
        width: 102%
    }
}

.front-page .front-shops__item {
    width: 13%;
    margin-right: 1.23%;
    padding: 29px;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 40px;
    -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    margin-bottom: 16px;
    text-decoration: none
}

@media (max-width:1400px) {
    .front-page .front-shops__item {
        width: 19%;
        margin-right: 1%
    }
}

@media (max-width:1000px) {
    .front-page .front-shops__item {
        padding: 16px;
        width: 32.33%
    }

    .front-page .front-shops__item:last-child {
        display: none
    }
}

@media (max-width:600px) {
    .front-page .front-shops__item {
        width: 48%;
        margin-right: 2%
    }
}

.front-page .front-shops__item-image {
    width: 100%;
    padding-bottom: 100%;
    height: 0;
    position: relative;
    border: 4px solid #e6e6e6;
    border-radius: 18px
}

.front-page .front-shops__item-image img {
    width: 80%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.front-page .front-shops__item h6 {
    color: #343434;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-top: 16px
}

.front-page .shop-archive__container {
    max-width: 1740px;
    padding: 0 50px;
    margin-left: auto;
    margin-right: auto
}

@media (max-width:900px) {
    .front-page .shop-archive__container {
        padding: 0 15px
    }
}

.front-page .shop-archive__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    border-radius: 40px;
    padding: 25px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media (max-width:900px) {
    .front-page .shop-archive__form {
        padding: 12px
    }
}

.front-page .shop-archive__form input {
    display: none
}

.front-page .shop-archive__form label {
    cursor: pointer;
    color: #575757;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #e6e6e6;
    border: 4px solid #fff;
    border-radius: 100px;
    padding: 12px;
    margin: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    -webkit-transition: .4s;
    transition: .4s
}

@media (max-width:900px) {
    .front-page .shop-archive__form label {
        padding: 8px;
        font-size: 14px;
        margin: 5px
    }
}

.front-page .shop-archive__form label:hover {
    background-color: #c41c35;
    color: #fff
}

.front-page .shop-archive__form label.active {
    background-color: #ab0b23;
    color: #fff
}

.front-page .shop-archive__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 101.23%;
    margin-top: 39px;
    margin-bottom: 90px
}

@media (max-width:1400px) {
    .front-page .shop-archive__items {
        width: 101%
    }
}

@media (max-width:600px) {
    .front-page .shop-archive__items {
        width: 102%;
        margin-bottom: 64px;
        margin-top: 32px
    }
}

.front-page .shop-archive__item {
    width: 13%;
    margin-right: 1.23%;
    padding: 29px;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 40px;
    -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    margin-bottom: 16px;
    text-decoration: none
}

@media (max-width:1400px) {
    .front-page .shop-archive__item {
        width: 19%;
        margin-right: 1%
    }
}

@media (max-width:1000px) {
    .front-page .shop-archive__item {
        padding: 16px;
        width: 32.33%
    }
}

@media (max-width:600px) {
    .front-page .shop-archive__item {
        width: 48%;
        margin-right: 2%
    }
}

.front-page .shop-archive__item-image {
    width: 100%;
    padding-bottom: 100%;
    height: 0;
    position: relative;
    border: 4px solid #e6e6e6;
    border-radius: 18px
}

.front-page .shop-archive__item-image img {
    width: 80%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.front-page .shop-archive__item h6 {
    color: #343434;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-top: 16px
}

.front-page .shop-archive__text {
    padding: 64px;
    border: 1px solid #e6e6e6;
    border-radius: 20px;
    background-color: #fff;
    margin-bottom: 118px
}

@media (max-width:900px) {
    .front-page .shop-archive__text {
        margin-bottom: 48px;
        padding: 16px
    }
}

.front-page .shop-archive__text h1,
.front-page .shop-archive__text h2,
.front-page .shop-archive__text h3,
.front-page .shop-archive__text h4,
.front-page .shop-archive__text h5,
.front-page .shop-archive__text h6,
.front-page .shop-archive__text p {
    margin-bottom: 24px;
    color: #575757;
    font-weight: 500
}

@media (max-width:900px) {

    .front-page .shop-archive__text h1,
    .front-page .shop-archive__text h2,
    .front-page .shop-archive__text h3,
    .front-page .shop-archive__text h4,
    .front-page .shop-archive__text h5,
    .front-page .shop-archive__text h6,
    .front-page .shop-archive__text p {
        margin-bottom: 12px
    }
}

.front-page .shop-archive__text p {
    color: #575757;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px
}

@media (max-width:900px) {
    .front-page .shop-archive__text p {
        font-size: 14px;
        line-height: 18px
    }
}

.front-page .all-newspapers {
    margin-bottom: 100px
}

@media (max-width:900px) {
    .front-page .all-newspapers {
        margin-bottom: 48px
    }
}

.front-page .all-newspapers__container {
    max-width: 1740px;
    padding: 0 50px;
    margin-left: auto;
    margin-right: auto
}

@media (max-width:900px) {
    .front-page .all-newspapers__container {
        padding: 0 15px
    }
}

.front-page .all-newspapers__loadmore {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 48px
}

@media (max-width:900px) {
    .front-page .all-newspapers__loadmore {
        margin-top: 24px
    }
}

.front-page .all-newspapers__loadmore button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    background-color: #ab0b23;
    border-radius: 100px;
    padding: 9px 22px;
    border: 4px solid #fff;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: .3s;
    transition: .3s;
    letter-spacing: 1px;
    cursor: pointer
}

.front-page .all-newspapers__loadmore button:hover {
    background-color: #7e0a1c
}

.front-page .all-newspapers__loadmore button::before {
    content: '';
    width: 18px;
    height: 18px;
    background-image: url(../images/chevron.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    margin-right: 12px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.front-page .all-newspapers__header h2 {
    font-size: 48px;
    color: #575757;
    font-weight: 500;
    text-align: center;
    margin-bottom: 19px
}

@media (max-width:900px) {
    .front-page .all-newspapers__header h2 {
        font-size: 32px
    }
}

.front-page .all-newspapers__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 101%;
    min-height: 360px;
    position: relative;
    margin-top: 48px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media (max-width:900px) {
    .front-page .all-newspapers__items {
        margin-top: 24px
    }
}

.front-page .all-newspapers__items::before {
    content: '';
    border: 5px solid #e6e6e6;
    border-top: 5px solid #f4303b;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 44%;
    left: 47%;
    display: block;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
    z-index: 7
}

.front-page .all-newspapers__items::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    background-color: rgba(255, 255, 255, .555);
    z-index: 6
}

.front-page .all-newspapers__items.loading::before {
    opacity: 1;
    visibility: visible
}

.front-page .all-newspapers__items.loading::after {
    opacity: 1;
    visibility: visible
}

.front-page .all-newspapers__item {
    min-width: 24%;
    width: 24%;
    margin-right: 1%;
    padding: 33px 38px;
    -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    overflow: hidden;
    border-radius: 40px;
    position: relative;
    background-color: #fff;
    text-decoration: none;
    margin-bottom: 16px
}

@media (max-width:1400px) {
    .front-page .all-newspapers__item {
        min-width: 32.33%;
        width: 32.33%
    }
}

@media (max-width:1100px) {
    .front-page .all-newspapers__item {
        min-width: 49%;
        width: 49%
    }
}

@media (max-width:768px) {
    .front-page .all-newspapers__item {
        min-width: 100%;
        width: 100%;
        padding: 16px 24px
    }
}

.front-page .all-newspapers__item-image {
    height: 370px
}

@media (max-width:768px) {
    .front-page .all-newspapers__item-image {
        height: 270px
    }
}

.front-page .all-newspapers__item-image img {
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%
}

.front-page .all-newspapers__item-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px
}

.front-page .all-newspapers__item-info-left {
    width: 30%
}

.front-page .all-newspapers__item-info-right {
    width: 64%
}

.front-page .all-newspapers__item-time {
    font-size: 14px;
    font-weight: 700;
    color: #575757;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 16px
}

.front-page .all-newspapers__item-time::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/zegarek.svg);
    background-size: contain;
    margin-right: 10px;
    min-width: 18px
}

.front-page .all-newspapers__item-title {
    color: #343434;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 13.5px
}

.front-page .all-newspapers__item-clicked {
    font-size: 14px;
    font-weight: 700;
    color: #575757;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 16px
}

.front-page .all-newspapers__item-clicked::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/ludziki.svg);
    background-size: contain;
    margin-right: 10px;
    min-width: 18px
}

.front-page .all-newspapers__item-shopimage {
    width: 100%;
    padding-bottom: 100%;
    height: 0;
    position: relative;
    border: 1px solid #707070;
    border-radius: 18px
}

.front-page .all-newspapers__item-shopimage img {
    width: 100%;
    height: 80%;
    -o-object-fit: contain;
    object-fit: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.front-page .main-content {
    max-width: 1740px;
    padding: 0 50px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 99px
}

@media (max-width:900px) {
    .front-page .main-content {
        padding: 0 15px;
        margin-top: 48px
    }
}

.front-page .main-content h1 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 48px
}

@media (max-width:900px) {
    .front-page .main-content h1 {
        margin-bottom: 32px
    }
}

.front-page .main-content__text {
    padding: 64px;
    border: 1px solid #e6e6e6;
    border-radius: 20px;
    background-color: #fff;
    margin-bottom: 118px
}

@media (max-width:900px) {
    .front-page .main-content__text {
        margin-bottom: 48px;
        padding: 16px
    }
}

.front-page .main-content__text h1,
.front-page .main-content__text h2,
.front-page .main-content__text h3,
.front-page .main-content__text h4,
.front-page .main-content__text h5,
.front-page .main-content__text h6,
.front-page .main-content__text p {
    margin-bottom: 24px;
    color: #575757;
    font-weight: 500
}

@media (max-width:900px) {

    .front-page .main-content__text h1,
    .front-page .main-content__text h2,
    .front-page .main-content__text h3,
    .front-page .main-content__text h4,
    .front-page .main-content__text h5,
    .front-page .main-content__text h6,
    .front-page .main-content__text p {
        margin-bottom: 12px
    }
}

.front-page .main-content__text p {
    color: #575757;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px
}

@media (max-width:900px) {
    .front-page .main-content__text p {
        font-size: 14px;
        line-height: 18px
    }
}

.front-page .podkategoria__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.front-page .podkategoria__list {
    width: 22%;
    padding: 30px 35px;
    border-radius: 40px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .1)
}

@media (max-width:900px) {
    .front-page .podkategoria__list {
        width: 100%;
        margin-bottom: 24px
    }
}

.front-page .podkategoria__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    list-style: none;
    position: relative;
    padding-top: 32px;
    margin-top: 24px
}

.front-page .podkategoria__items::after {
    content: '';
    position: absolute;
    top: 0;
    border-top: 1px solid #e6e6e6;
    height: 1px;
    width: 140%;
    left: -20%
}

.front-page .podkategoria__items li {
    margin-bottom: 16px
}

.front-page .podkategoria__items li a {
    color: #575757;
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: .3s;
    transition: .3s;
    text-decoration: none
}

.front-page .podkategoria__items li a:hover {
    color: #ab0b23
}

.front-page .podkategoria__items li.active a {
    color: #ab0b23
}

.front-page .blog-posts {
    margin-top: 99px
}

@media (max-width:900px) {
    .front-page .blog-posts {
        margin-top: 48px
    }
}

.front-page .blog-posts__header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 15px
}

@media (max-width:900px) {
    .front-page .blog-posts__header {
        margin-bottom: 32px
    }
}

.front-page .blog-posts__header h1 {
    font-weight: 600
}

.front-page .blog-posts__container {
    max-width: 1740px;
    padding: 0 50px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 100px
}

@media (max-width:900px) {
    .front-page .blog-posts__container {
        padding: 0 15px;
        margin-bottom: 48px
    }
}

.front-page .blog-posts__leftside {
    width: 22%
}

@media (max-width:1000px) {
    .front-page .blog-posts__leftside {
        width: 100%;
        margin-bottom: 24px
    }
}

@media (max-width:900px) {
    .front-page .blog-posts__leftside.single-s {
        display: none
    }
}

.front-page .blog-posts__rightside {
    width: 77%
}

@media (max-width:1000px) {
    .front-page .blog-posts__rightside {
        width: 100%
    }
}

.front-page .blog-posts__category-list {
    width: 100%;
    padding: 30px 35px;
    border-radius: 40px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .1)
}

@media (max-width:900px) {
    .front-page .blog-posts__category-list {
        width: 100%;
        margin-bottom: 24px
    }
}

.front-page .blog-posts__category-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    list-style: none;
    position: relative;
    padding-top: 32px;
    margin-top: 24px
}

.front-page .blog-posts__category-items::after {
    content: '';
    position: absolute;
    top: 0;
    border-top: 1px solid #e6e6e6;
    height: 1px;
    width: 140%;
    left: -20%
}

.front-page .blog-posts__category-items li {
    margin-bottom: 16px
}

.front-page .blog-posts__category-items li a {
    color: #575757;
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: .3s;
    transition: .3s;
    text-decoration: none
}

.front-page .blog-posts__category-items li a:hover {
    color: #ab0b23
}

.front-page .blog-posts__category-items li.active a {
    color: #ab0b23
}

.front-page .blog-posts__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 101%
}

.front-page .blog-posts__item {
    background-color: #fff;
    border-radius: 40px;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .1);
    padding: 33px;
    width: 32.33%;
    margin-right: 1%;
    margin-bottom: 16px;
    color: #343434;
    text-decoration: none
}

@media (max-width:1400px) {
    .front-page .blog-posts__item {
        width: 49%
    }
}

@media (max-width:768px) {
    .front-page .blog-posts__item {
        padding: 24px;
        width: 100%
    }
}

.front-page .blog-posts__item-image {
    width: 100%;
    height: 370px;
    margin-bottom: 24px
}

@media (max-width:768px) {
    .front-page .blog-posts__item-image {
        margin-bottom: 20px;
        height: 320px
    }
}

.front-page .blog-posts__item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px
}

.front-page .blog-posts__item-title {
    font-size: 14px;
    font-weight: 700
}

.front-page .blog-posts__item-date {
    font-size: 14px;
    font-weight: 700;
    color: #575757;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 16px;
    margin-bottom: 20px
}

.front-page .blog-posts__item-date::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/zegarek.svg);
    background-size: contain;
    margin-right: 10px
}

.front-page .blog-posts__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.front-page .blog-posts__pagination .page-numbers {
    font-size: 14px;
    font-weight: 500;
    border-radius: 50%;
    margin: 0 16px;
    color: #969696;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-transition: .3s;
    transition: .3s
}

.front-page .blog-posts__pagination .page-numbers.current {
    color: #ab0b23
}

.front-page .blog-posts__pagination .page-numbers.next,
.front-page .blog-posts__pagination .page-numbers.prev {
    background-image: url(../images/chevrontight.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transition: .3s;
    transition: .3s;
    width: 13px;
    height: 24px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-filter: brightness(.3);
    filter: brightness(.3)
}

.front-page .blog-posts__pagination .page-numbers.next:hover,
.front-page .blog-posts__pagination .page-numbers.prev:hover {
    -webkit-filter: none;
    filter: none
}

.front-page .blog-posts__pagination .page-numbers.next {
    -webkit-transform: rotate(0);
    transform: rotate(0)
}

.front-page .blog-posts__pagination .page-numbers.prev {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.front-page .blog-posts__content {
    padding: 33px;
    background-color: #fff;
    border-radius: 40px;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .1)
}

@media (max-width:900px) {
    .front-page .blog-posts__content {
        padding: 20px
    }
}

.front-page .blog-posts__content a {
    font-size: 14px;
    color: #ab0b23;
    font-weight: 600
}

.front-page .blog-posts__content p {
    font-size: 14px;
    font-weight: 500;
    color: #575757;
    line-height: 1.6
}

.front-page .blog-posts__content-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px
}

@media (max-width:900px) {
    .front-page .blog-posts__content-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
}

.front-page .blog-posts__content-image {
    width: 28%
}

@media (max-width:900px) {
    .front-page .blog-posts__content-image {
        width: 100%
    }
}

.front-page .blog-posts__content-image img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 370px;
    border-radius: 10px
}

@media (max-width:900px) {
    .front-page .blog-posts__content-image img {
        margin-top: 20px
    }
}

.front-page .blog-posts__content-other {
    width: 69%
}

@media (max-width:900px) {
    .front-page .blog-posts__content-other {
        width: 100%
    }
}

.front-page .blog-posts__content-other h3 {
    font-weight: 700
}

.front-page .blog-posts__content-date {
    font-size: 14px;
    font-weight: 700;
    color: #575757;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 16px;
    margin-bottom: 20px
}

.front-page .blog-posts__content-date::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/zegarek.svg);
    background-size: contain;
    margin-right: 10px
}

.front-page .blog-posts__other {
    margin-top: 64px
}

@media (max-width:900px) {
    .front-page .blog-posts__other {
        margin-bottom: 48px
    }
}

.front-page .blog-posts__other-header {
    margin-bottom: 48px
}

@media (max-width:900px) {
    .front-page .blog-posts__other-header {
        margin-bottom: 32px
    }
}

.front-page .blog-posts__other-header h2 {
    font-size: 48px;
    color: #575757;
    font-weight: 500;
    text-align: center;
    margin-bottom: 19px
}

@media (max-width:1840px) {
    .front-page .blog-posts__other-header h2 {
        font-size: 48px
    }
}

@media (max-width:900px) {
    .front-page .blog-posts__other-header h2 {
        font-size: 32px
    }
}

.front-page .blog-posts__other-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 101%
}

.front-page .add-coupon {
    margin-top: 99px;
    margin-bottom: 100px
}

@media (max-width:900px) {
    .front-page .add-coupon {
        margin-top: 48px
    }
}

.front-page .add-coupon .codedropz-upload-wrapper .codedropz-upload-inner span {
    display: none
}

.front-page .add-coupon .codedropz-upload-wrapper .codedropz-upload-inner a.cd-upload-btn {
    color: #ab0b23
}

.front-page .add-coupon .codedropz-upload-wrapper .dnd-upload-counter {
    display: none
}

.front-page .add-coupon__container {
    max-width: 1300px;
    padding: 0 50px;
    margin-left: auto;
    margin-right: auto
}

@media (max-width:900px) {
    .front-page .add-coupon__container {
        padding: 0 15px
    }
}

.front-page .add-coupon__header {
    margin-bottom: 48px
}

@media (max-width:900px) {
    .front-page .add-coupon__header {
        margin-bottom: 24px
    }
}

.front-page .add-coupon__header h1 {
    font-size: 48px;
    color: #575757;
    font-weight: 500;
    text-align: center;
    margin-bottom: 19px
}

@media (max-width:900px) {
    .front-page .add-coupon__header h1 {
        font-size: 32px
    }
}

.front-page .add-coupon__form .wpcf7 form .wpcf7-response-output,
.front-page .add-coupon__form .wpcf7 form.payment-required .wpcf7-response-output,
.front-page .add-coupon__form .wpcf7 form.unaccepted .wpcf7-response-output {
    border: 0 !important;
    font-size: 14px;
    color: #dc0714;
    font-weight: 600;
    text-align: center;
    width: 100%
}

.front-page .add-coupon__form .wpcf7-form {
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #e6e6e6;
    padding: 64px 70px;
    position: relative
}

@media (max-width:768px) {
    .front-page .add-coupon__form .wpcf7-form {
        padding: 24px;
        padding-bottom: 32px
    }
}

.front-page .add-coupon__form .wpcf7-form::before {
    content: '';
    border: 5px solid #e6e6e6;
    border-top: 5px solid #f4303b;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: fixed;
    top: 44%;
    left: 47%;
    display: block;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
    z-index: 7
}

.front-page .add-coupon__form .wpcf7-form::after {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    background-color: rgba(255, 255, 255, .45);
    z-index: 6
}

.front-page .add-coupon__form .wpcf7-form.submitting::before {
    opacity: 1;
    visibility: visible
}

.front-page .add-coupon__form .wpcf7-form.submitting::after {
    opacity: 1;
    visibility: visible
}

.front-page .add-coupon__form .wpcf7-form .wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin-left: 5px;
    margin-top: 2px
}

.front-page .add-coupon__form .wpcf7-form .contact-item {
    margin-bottom: 48px
}

.front-page .add-coupon__form .wpcf7-form .contact-item.last {
    margin-bottom: 0
}

.front-page .add-coupon__form .wpcf7-form .contact-item h5 {
    font-size: 24px;
    font-weight: 500;
    color: #575757;
    margin-bottom: 24px
}

@media (max-width:768px) {
    .front-page .add-coupon__form .wpcf7-form .contact-item h5 {
        margin-bottom: 16px;
        text-align: center;
        font-size: 20px
    }
}

.front-page .add-coupon__form .wpcf7-form .contact-item label {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 16px
}

@media (max-width:768px) {
    .front-page .add-coupon__form .wpcf7-form .contact-item label {
        margin-bottom: 12px
    }
}

.front-page .add-coupon__form .wpcf7-form .contact-item label.margin {
    margin-bottom: 57px
}

@media (max-width:768px) {
    .front-page .add-coupon__form .wpcf7-form .contact-item label.margin {
        margin-bottom: 40px
    }
}

.front-page .add-coupon__form .wpcf7-form .contact-item label.smallmargin {
    margin-bottom: 24px
}

@media (max-width:768px) {
    .front-page .add-coupon__form .wpcf7-form .contact-item label.smallmargin {
        margin-bottom: 20px
    }
}

.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap {
    width: 100%
}

.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=date]::-webkit-calendar-picker-indicator,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=date]::-webkit-inner-spin-button {
    color: #575757;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    opacity: 0
}

.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=date],
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=email],
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=tel],
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=text],
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap select,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap textarea {
    border-radius: 6px;
    border: 1px solid #e6e6e6;
    background-color: #fff;
    padding: 20px 31px;
    color: #575757;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    outline: 0;
    font-family: Barlow, sans-serif
}

@media (max-width:768px) {

    .front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=date],
    .front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=email],
    .front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=tel],
    .front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=text],
    .front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap select,
    .front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap textarea {
        padding: 14px 24px
    }
}

.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=date].wpcf7-not-valid,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=email].wpcf7-not-valid,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=tel].wpcf7-not-valid,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=text].wpcf7-not-valid,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap select.wpcf7-not-valid,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap textarea.wpcf7-not-valid {
    border: 1px solid #ab0b23
}

.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=date]:disabled,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=email]:disabled,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=tel]:disabled,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=text]:disabled,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap select:disabled,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap textarea:disabled {
    background-color: #e6e6e6
}

.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=date]::-webkit-input-placeholder,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=email]::-webkit-input-placeholder,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=tel]::-webkit-input-placeholder,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=text]::-webkit-input-placeholder,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap select::-webkit-input-placeholder,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap textarea::-webkit-input-placeholder {
    opacity: 1;
    color: #575757
}

.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=date]::-moz-placeholder,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=email]::-moz-placeholder,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=tel]::-moz-placeholder,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=text]::-moz-placeholder,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap select::-moz-placeholder,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap textarea::-moz-placeholder {
    opacity: 1;
    color: #575757
}

.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=date]::-ms-input-placeholder,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=email]::-ms-input-placeholder,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=tel]::-ms-input-placeholder,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=text]::-ms-input-placeholder,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap select::-ms-input-placeholder,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap textarea::-ms-input-placeholder {
    opacity: 1;
    color: #575757
}

.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=date]::placeholder,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=email]::placeholder,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=tel]::placeholder,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap input[type=text]::placeholder,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap select::placeholder,
.front-page .add-coupon__form .wpcf7-form .contact-item label .wpcf7-form-control-wrap textarea::placeholder {
    opacity: 1;
    color: #575757
}

.front-page .add-coupon__form .wpcf7-form .contact-item label textarea {
    max-width: 100%;
    height: 192px
}

.front-page .add-coupon__form .wpcf7-form .contact-item label select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/chevronrotate.svg);
    background-repeat: no-repeat;
    background-position: 97% 51%;
    padding-right: 33px
}

@media (max-width:768px) {
    .front-page .add-coupon__form .wpcf7-form .contact-item label select {
        background-position: 94% 51%
    }
}

.front-page .add-coupon__form .wpcf7-form .contact-item .date-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.front-page .add-coupon__form .wpcf7-form .contact-item .date-container label.date,
.front-page .add-coupon__form .wpcf7-form .contact-item .date-container label.date-checkbox {
    width: 48%;
    margin-bottom: 0
}

@media (max-width:768px) {

    .front-page .add-coupon__form .wpcf7-form .contact-item .date-container label.date,
    .front-page .add-coupon__form .wpcf7-form .contact-item .date-container label.date-checkbox {
        width: 100%
    }
}

.front-page .add-coupon__form .wpcf7-form .contact-item .date-container label.date label,
.front-page .add-coupon__form .wpcf7-form .contact-item .date-container label.date-checkbox label {
    margin-bottom: 0
}

.front-page .add-coupon__form .wpcf7-form .contact-item .date-container label.date-checkbox {
    margin-left: auto;
    margin-top: 12px
}

.front-page .add-coupon__form .wpcf7-form .contact-item .date-container label.date {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 14px;
    font-weight: 500;
    color: #575757
}

.front-page .add-coupon__form .wpcf7-form .contact-item .date-container label.date input {
    margin-top: 6px
}

@media (max-width:768px) {
    .front-page .add-coupon__form .wpcf7-form .contact-item .date-container label.date {
        margin-bottom: 10px
    }
}

.front-page .add-coupon__form .wpcf7-form .contact-item .date-container label.date::after {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: 42px;
    right: 20px;
    background-image: url(../images/date.svg);
    pointer-events: none
}

@media (max-width:768px) {
    .front-page .add-coupon__form .wpcf7-form .contact-item .date-container label.date::after {
        top: 14px
    }
}

.front-page .add-coupon__form .wpcf7-form .wpcf7-list-item {
    margin-left: 0
}

.front-page .add-coupon__form .wpcf7-form .wpcf7-list-item a {
    color: #ab0b23;
    font-weight: 500;
    text-decoration: none
}

.front-page .add-coupon__form .wpcf7-form .wpcf7-list-item a:hover {
    text-decoration: underline
}

.front-page .add-coupon__form .wpcf7-form .wpcf7-list-item span {
    font-size: 14px
}

@media (max-width:768px) {
    .front-page .add-coupon__form .wpcf7-form .wpcf7-list-item span {
        font-size: 12px
    }
}

.front-page .add-coupon__form .wpcf7-form .wpcf7-list-item label {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: block;
    position: relative;
    padding-left: 30px !important;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #6b6b6b;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@media (max-width:1600px) {
    .front-page .add-coupon__form .wpcf7-form .wpcf7-list-item label {
        font-size: 12px
    }
}

.front-page .add-coupon__form .wpcf7-form .wpcf7-list-item label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.front-page .add-coupon__form .wpcf7-form .wpcf7-list-item label::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border: 1px solid #a6a7a8;
    border-radius: 2px
}

.front-page .add-coupon__form .wpcf7-form .wpcf7-list-item label::after {
    content: "";
    position: absolute;
    left: 7px;
    opacity: 0;
    top: 1.5px;
    width: 4px;
    height: 8px;
    border: solid #ab0b23;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: .3s;
    transition: .3s
}

.front-page .add-coupon__form .wpcf7-form .wpcf7-list-item label.checked::before {
    border: 1px solid #ab0b23;
    background-color: #fff
}

.front-page .add-coupon__form .wpcf7-form .wpcf7-list-item label.checked::after {
    opacity: 1
}

.front-page .add-coupon__form .wpcf7-form .submit-container {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: -24px;
    z-index: 3;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

@media (max-width:900px) {
    .front-page .add-coupon__form .wpcf7-form .submit-container {
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto
    }
}

@supports not (-webkit-touch-callout:none) {
    .front-page .add-coupon__form .wpcf7-form .submit-container::after {
        content: '';
        background-image: url(../images/coupon.svg);
        width: 24px;
        height: 24px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display: block;
        position: absolute;
        pointer-events: none;
        left: 24px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
}

.front-page .add-coupon__form .wpcf7-form .submit-container .wpcf7-spinner {
    display: none !important
}

.front-page .add-coupon__form .wpcf7-form .submit-container input {
    white-space: nowrap;
    padding: 12px 25px;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    background: #ab0b23;
    font-family: Barlow;
    cursor: pointer;
    border-radius: 100px;
    padding-left: 64px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    border: 4px solid #fff;
    outline: 0;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16)
}

@supports (-webkit-touch-callout:none) {
    .front-page .add-coupon__form .wpcf7-form .submit-container input {
        min-height: 48px;
        min-width: 156px
    }
}

.front-page .add-coupon__form .wpcf7-form .submit-container input:hover {
    background-color: #7e0a1c
}

.front-page .add-coupon__addmarka {
    margin-top: 98px;
    margin-bottom: 124px
}

@media (max-width:900px) {
    .front-page .add-coupon__addmarka {
        margin-top: 64px;
        margin-bottom: 64px
    }
}

.front-page .add-coupon__addmarka-header {
    margin-bottom: 48px
}

@media (max-width:900px) {
    .front-page .add-coupon__addmarka-header {
        margin-bottom: 24px
    }
}

.front-page .add-coupon__addmarka-header h2 {
    font-size: 48px;
    color: #575757;
    font-weight: 500;
    text-align: center;
    margin-bottom: 19px
}

@media (max-width:1840px) {
    .front-page .add-coupon__addmarka-header h2 {
        font-size: 48px
    }
}

@media (max-width:900px) {
    .front-page .add-coupon__addmarka-header h2 {
        font-size: 32px
    }
}

.front-page .add-coupon__addmarka-text h5 {
    font-weight: 400;
    text-align: center
}

.front-page .add-coupon__addmarka-form {
    border-radius: 20px;
    border: 1px solid #e6e6e6;
    padding: 64px 70px;
    position: relative
}

@media (max-width:768px) {
    .front-page .add-coupon__addmarka-form {
        padding: 24px;
        padding-bottom: 48px
    }
}

.front-page .add-coupon__addmarka .wpcf7 form .wpcf7-response-output,
.front-page .add-coupon__addmarka .wpcf7 form.payment-required .wpcf7-response-output,
.front-page .add-coupon__addmarka .wpcf7 form.unaccepted .wpcf7-response-output {
    border: 0 !important;
    font-size: 14px;
    color: #dc0714;
    font-weight: 600;
    text-align: center;
    width: 100%
}

.front-page .add-coupon__addmarka .wpcf7-form {
    margin-top: 48px
}

.front-page .add-coupon__addmarka .wpcf7-form::before {
    content: '';
    border: 5px solid #e6e6e6;
    border-top: 5px solid #f4303b;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: fixed;
    top: 44%;
    left: 47%;
    display: block;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
    z-index: 7
}

.front-page .add-coupon__addmarka .wpcf7-form::after {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    background-color: rgba(255, 255, 255, .45);
    z-index: 6
}

.front-page .add-coupon__addmarka .wpcf7-form.submitting::before {
    opacity: 1;
    visibility: visible
}

.front-page .add-coupon__addmarka .wpcf7-form.submitting::after {
    opacity: 1;
    visibility: visible
}

.front-page .add-coupon__addmarka .wpcf7-form .wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin-left: 5px;
    margin-top: 2px
}

.front-page .add-coupon__addmarka .wpcf7-form .border-radius {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.front-page .add-coupon__addmarka .wpcf7-form .border-radius label {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 16px
}

.front-page .add-coupon__addmarka .wpcf7-form .border-radius label.half {
    width: 49%
}

@media (max-width:768px) {
    .front-page .add-coupon__addmarka .wpcf7-form .border-radius label.half {
        width: 100%
    }
}

@media (max-width:768px) {
    .front-page .add-coupon__addmarka .wpcf7-form .border-radius label {
        margin-bottom: 12px
    }
}

.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap {
    width: 100%
}

.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=email],
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=tel],
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=text],
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap select,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap textarea {
    border-radius: 100px;
    border: 1px solid #ab0b23;
    background-color: transparent;
    padding: 16px 32px;
    color: #575757;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    outline: 0;
    font-family: Barlow, sans-serif
}

@media (max-width:768px) {

    .front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=email],
    .front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=tel],
    .front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=text],
    .front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap select,
    .front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap textarea {
        padding: 14px 24px
    }
}

.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=email].wpcf7-not-valid,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=tel].wpcf7-not-valid,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=text].wpcf7-not-valid,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap select.wpcf7-not-valid,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap textarea.wpcf7-not-valid {
    border: 1px solid #ab0b23
}

.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=email]:disabled,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=tel]:disabled,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=text]:disabled,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap select:disabled,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap textarea:disabled {
    background-color: #e6e6e6
}

.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=email]::-webkit-input-placeholder,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=tel]::-webkit-input-placeholder,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=text]::-webkit-input-placeholder,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap select::-webkit-input-placeholder,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap textarea::-webkit-input-placeholder {
    opacity: 1;
    color: #575757
}

.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=email]::-moz-placeholder,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=tel]::-moz-placeholder,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=text]::-moz-placeholder,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap select::-moz-placeholder,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap textarea::-moz-placeholder {
    opacity: 1;
    color: #575757
}

.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=email]::-ms-input-placeholder,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=tel]::-ms-input-placeholder,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=text]::-ms-input-placeholder,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap select::-ms-input-placeholder,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap textarea::-ms-input-placeholder {
    opacity: 1;
    color: #575757
}

.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=email]::placeholder,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=tel]::placeholder,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap input[type=text]::placeholder,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap select::placeholder,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap textarea::placeholder {
    opacity: 1;
    color: #575757
}

.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap textarea {
    max-width: 100%;
    height: 192px;
    border-radius: 20px
}

.front-page .add-coupon__addmarka .wpcf7-form .border-radius label .wpcf7-form-control-wrap select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/chevronrotate.svg);
    background-repeat: no-repeat;
    background-position: 97% 51%;
    padding-right: 33px
}

.front-page .add-coupon__addmarka .wpcf7-form .border-radius .date-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.front-page .add-coupon__addmarka .wpcf7-form .border-radius .date-container label.date,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius .date-container label.date-checkbox {
    width: 48%;
    margin-bottom: 0
}

@media (max-width:768px) {

    .front-page .add-coupon__addmarka .wpcf7-form .border-radius .date-container label.date,
    .front-page .add-coupon__addmarka .wpcf7-form .border-radius .date-container label.date-checkbox {
        width: 100%
    }
}

.front-page .add-coupon__addmarka .wpcf7-form .border-radius .date-container label.date label,
.front-page .add-coupon__addmarka .wpcf7-form .border-radius .date-container label.date-checkbox label {
    margin-bottom: 0
}

.front-page .add-coupon__addmarka .wpcf7-form .border-radius .date-container label.date {
    position: relative
}

@media (max-width:768px) {
    .front-page .add-coupon__addmarka .wpcf7-form .border-radius .date-container label.date {
        margin-bottom: 10px
    }
}

.front-page .add-coupon__addmarka .wpcf7-form .border-radius .date-container label.date::after {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: 21px;
    right: 20px;
    background-image: url(../images/date.svg)
}

@media (max-width:768px) {
    .front-page .add-coupon__addmarka .wpcf7-form .border-radius .date-container label.date::after {
        top: 14px
    }
}

.front-page .add-coupon__addmarka .wpcf7-form .wpcf7-list-item {
    margin-left: 0
}

.front-page .add-coupon__addmarka .wpcf7-form .wpcf7-list-item a {
    color: #ab0b23;
    font-weight: 500;
    text-decoration: none
}

.front-page .add-coupon__addmarka .wpcf7-form .wpcf7-list-item a:hover {
    text-decoration: underline
}

.front-page .add-coupon__addmarka .wpcf7-form .wpcf7-list-item span {
    font-size: 14px
}

@media (max-width:768px) {
    .front-page .add-coupon__addmarka .wpcf7-form .wpcf7-list-item span {
        font-size: 12px
    }
}

.front-page .add-coupon__addmarka .wpcf7-form .wpcf7-list-item label {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: block;
    position: relative;
    padding-left: 30px !important;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #6b6b6b;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@media (max-width:1600px) {
    .front-page .add-coupon__addmarka .wpcf7-form .wpcf7-list-item label {
        font-size: 12px
    }
}

.front-page .add-coupon__addmarka .wpcf7-form .wpcf7-list-item label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.front-page .add-coupon__addmarka .wpcf7-form .wpcf7-list-item label::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border: 1px solid #a6a7a8;
    border-radius: 2px
}

.front-page .add-coupon__addmarka .wpcf7-form .wpcf7-list-item label::after {
    content: "";
    position: absolute;
    left: 7px;
    opacity: 0;
    top: 1.5px;
    width: 4px;
    height: 8px;
    border: solid #ab0b23;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: .3s;
    transition: .3s
}

.front-page .add-coupon__addmarka .wpcf7-form .wpcf7-list-item label.checked::before {
    border: 1px solid #ab0b23;
    background-color: #fff
}

.front-page .add-coupon__addmarka .wpcf7-form .wpcf7-list-item label.checked::after {
    opacity: 1
}

.front-page .add-coupon__addmarka .wpcf7-form .submit-container {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: -24px;
    z-index: 3;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

@media (max-width:900px) {
    .front-page .add-coupon__addmarka .wpcf7-form .submit-container {
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto
    }
}

@supports not (-webkit-touch-callout:none) {
    .front-page .add-coupon__addmarka .wpcf7-form .submit-container::after {
        content: '';
        background-image: url(../images/emajle.svg);
        width: 24px;
        height: 24px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display: block;
        position: absolute;
        pointer-events: none;
        left: 24px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
}

.front-page .add-coupon__addmarka .wpcf7-form .submit-container .wpcf7-spinner {
    display: none !important
}

.front-page .add-coupon__addmarka .wpcf7-form .submit-container input {
    white-space: nowrap;
    padding: 12px 25px;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    background: #ab0b23;
    font-family: Barlow;
    cursor: pointer;
    border-radius: 100px;
    padding-left: 64px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    border: 4px solid #fff;
    outline: 0;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16)
}

@supports (-webkit-touch-callout:none) {
    .front-page .add-coupon__addmarka .wpcf7-form .submit-container input {
        min-height: 48px;
        min-width: 210px
    }
}

.front-page .add-coupon__addmarka .wpcf7-form .submit-container input:hover {
    background-color: #7e0a1c
}

.footer h2 {
    font-size: 48px;
    color: #575757;
    font-weight: 500
}

@media (max-width:900px) {
    .footer h2 {
        font-size: 32px
    }
}

.footer h3 {
    font-size: 32px;
    line-height: 1.2;
    color: #575757;
    font-weight: 600
}

.footer h3 strong {
    font-weight: 800
}

.footer h4 {
    font-size: 23px;
    line-height: 1.2;
    color: #575757;
    font-weight: 400
}

.footer h4 strong {
    font-weight: 900
}

.footer h5 {
    font-size: 22px;
    line-height: 1.2;
    color: #575757;
    font-weight: 400
}

@media (max-width:900px) {
    .footer h5 {
        font-size: 18px
    }
}

.footer h5 strong {
    font-weight: 900
}

.footer h6 {
    font-size: 18px;
    line-height: 1.2;
    color: #575757;
    font-weight: 400
}

@media (max-width:1600px) {
    .footer h6 {
        font-size: 16px
    }
}

.footer h6 strong {
    font-weight: 900
}

.footer__newsletter {
    background: #e6e6e6;
    background: -webkit-gradient(linear, left top, left bottom, from(#e6e6e6), to(white));
    background: linear-gradient(180deg, #e6e6e6 0, #fff 100%);
    position: relative
}

.footer__newsletter::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/newsletterbg.webp);
    top: 0;
    right: 0;
    z-index: 0
}

@media (max-width:900px) {
    .footer__newsletter::after {
        opacity: .2
    }
}

.footer__newsletter-container {
    max-width: 1440px;
    padding: 0 50px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width:900px) {
    .footer__newsletter-container {
        padding: 0 15px
    }
}

.footer__newsletter-leftside {
    width: 47.4%;
    position: relative;
    z-index: 1;
    padding: 32px 0
}

@media (max-width:900px) {
    .footer__newsletter-leftside {
        width: 100%;
        text-align: center
    }
}

.footer__newsletter-rightside {
    width: 52%;
    position: relative;
    z-index: 1
}

@media (max-width:900px) {
    .footer__newsletter-rightside {
        display: none
    }
}

.footer__newsletter-rightside img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.footer__newsletter-form {
    margin-top: 28px
}

@media (max-width:900px) {
    .footer__newsletter-form {
        margin-top: 20px
    }
}

.footer__newsletter-form .wpcf7 form .wpcf7-response-output,
.footer__newsletter-form .wpcf7 form.payment-required .wpcf7-response-output,
.footer__newsletter-form .wpcf7 form.unaccepted .wpcf7-response-output {
    border: 0 !important;
    font-size: 14px;
    color: #dc0714;
    font-weight: 600;
    text-align: center;
    width: 100%
}

@media (max-width:900px) {
    .footer__newsletter-form form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center
    }
}

.footer__newsletter-form form::before {
    content: '';
    border: 5px solid #e6e6e6;
    border-top: 5px solid #f4303b;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 44%;
    left: 47%;
    display: block;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
    z-index: 7
}

.footer__newsletter-form form::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    background-color: rgba(255, 255, 255, .45);
    z-index: 6
}

.footer__newsletter-form form.submitting::before {
    opacity: 1;
    visibility: visible
}

.footer__newsletter-form form.submitting::after {
    opacity: 1;
    visibility: visible
}

.footer__newsletter-form form .wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin-left: 5px;
    margin-top: 2px
}

.footer__newsletter-form form h5 {
    margin-bottom: 32px
}

.footer__newsletter-form form label {
    max-width: 100%
}

.footer__newsletter-form form label input {
    padding: 14px 22px;
    outline: 0;
    border: 0;
    background-color: #fff;
    border-radius: 20px;
    font-family: Barlow, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #343434;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .07);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .07);
    max-width: 100%
}

.footer__newsletter-form form label input.wpcf7-not-valid {
    border: 1px solid #ab0b23
}

.footer__newsletter-form form label span {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.footer__newsletter-form form .submit-container {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 48px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

@media (max-width:900px) {
    .footer__newsletter-form form .submit-container {
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto
    }
}

@supports not (-webkit-touch-callout:none) {
    .footer__newsletter-form form .submit-container::after {
        content: '';
        background-image: url(../images/emajle.svg);
        width: 19px;
        height: 19px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display: block;
        position: absolute;
        pointer-events: none;
        left: 24px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
}

.footer__newsletter-form form .submit-container .wpcf7-spinner {
    display: none !important
}

.footer__newsletter-form form .submit-container input {
    white-space: nowrap;
    padding: 8px 22px;
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    background: #ab0b23;
    font-family: Barlow;
    cursor: pointer;
    border-radius: 100px;
    padding-left: 64px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    border: 4px solid #fff;
    outline: 0;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16)
}

@supports (-webkit-touch-callout:none) {
    .footer__newsletter-form form .submit-container input {
        min-height: 48px;
        min-width: 156px
    }
}

.footer__newsletter-form form .submit-container input:hover {
    background-color: #7e0a1c
}

.footer__newsletter-text {
    color: #575757
}

.footer__recomends {
    background: #fff
}

.footer__recomends-container {
    max-width: 1540px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 50px
}

@media (max-width:900px) {
    .footer__recomends-container {
        padding: 0 15px
    }
}

.footer__recomends-header {
    margin-bottom: 63px
}

@media (max-width:1200px) {
    .footer__recomends-header {
        margin-bottom: 0
    }
}

.footer__recomends-items {
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding: 24px 0;
    width: 100%
}

@media (max-width:900px) {
    .footer__recomends-items {
        padding: 24px 0
    }
}

.footer__recomends-items::-webkit-scrollbar {
    display: none
}

.footer__recomends-chevronslider {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ab0b23;
    border: 4px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: .4;
    -webkit-transition: .3s;
    transition: .3s;
    min-width: 40px;
    cursor: pointer;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .16);
    z-index: 3;
    position: relative
}

@media (max-width:1600px) {
    .footer__recomends-chevronslider {
        width: 40px;
        min-width: 40px;
        height: 40px
    }
}

@media (max-width:768px) {
    .footer__recomends-chevronslider {
        position: absolute
    }
}

.footer__recomends-chevronslider img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    width: 22px;
    height: 14px;
    -o-object-fit: contain;
    object-fit: contain
}

@media (max-width:1600px) {
    .footer__recomends-chevronslider img {
        width: 20px;
        height: 14px
    }
}

.footer__recomends-chevronslider.prev {
    margin-right: 26px;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

@media (max-width:768px) {
    .footer__recomends-chevronslider.prev {
        left: 10px
    }
}

@media (max-width:1600px) {
    .footer__recomends-chevronslider.prev {
        margin-right: 18px
    }
}

.footer__recomends-chevronslider.next {
    margin-left: 22px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

@media (max-width:768px) {
    .footer__recomends-chevronslider.next {
        right: 10px
    }
}

@media (max-width:1600px) {
    .footer__recomends-chevronslider.next {
        margin-left: 18px
    }
}

.footer__recomends-chevronslider:hover {
    opacity: 1
}

.footer__recomends-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.footer__recomends-item {
    min-width: 32.33%;
    width: 32.33%;
    margin-right: 1.5%;
    margin-bottom: 10px
}

@media (max-width:1300px) {
    .footer__recomends-item {
        width: 49%;
        min-width: 49%
    }
}

@media (max-width:768px) {
    .footer__recomends-item {
        width: 100%;
        min-width: 100%
    }
}

.footer__recomends-item img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 10px;
    background: #f0ebec
}

.footer__instruction {
    margin-top: 80px
}

@media (max-width:900px) {
    .footer__instruction {
        margin-top: 64px
    }
}

.footer__instruction-container {
    max-width: 1740px;
    padding: 0 50px;
    margin-left: auto;
    margin-right: auto
}

@media (max-width:900px) {
    .footer__instruction-container {
        padding: 0 15px
    }
}

.footer__instruction-header {
    margin-bottom: 70px
}

@media (max-width:900px) {
    .footer__instruction-header {
        margin-bottom: 32px
    }
}

.footer__instruction-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 101%
}

.footer__instruction-item {
    border: 1px solid #e6e6e6;
    background-color: #fff;
    padding: 20px;
    border-radius: 40px;
    -webkit-box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, .1);
    width: 32.33%;
    margin-right: 1%;
    margin-bottom: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media (max-width:1200px) {
    .footer__instruction-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

@media (max-width:768px) {
    .footer__instruction-item {
        width: 100%
    }
}

.footer__instruction-image {
    width: 32%;
    padding-bottom: 32%;
    position: relative;
    border: 4px solid #e6e6e6;
    border-radius: 18px
}

@media (max-width:1200px) {
    .footer__instruction-image {
        margin-bottom: 16px;
        width: 100px;
        height: 100px;
        padding-bottom: 0
    }
}

@media (max-width:768px) {
    .footer__instruction-image {
        margin-right: auto
    }
}

.footer__instruction-image img {
    width: 46%;
    -o-object-fit: contain;
    object-fit: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

@media (max-width:1200px) {
    .footer__instruction-image img {
        width: 60%
    }
}

.footer__instruction-text {
    width: 63%
}

@media (max-width:1200px) {
    .footer__instruction-text {
        width: 100%
    }
}

.footer__instruction-text h6 {
    font-weight: 700;
    color: #ab0b23;
    margin-bottom: 16px
}

.footer__wrapper {
    max-width: 1540px;
    padding: 38px 50px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2
}

@media (max-width:900px) {
    .footer__wrapper {
        padding: 32px 15px
    }
}

.footer__container {
    background: #575757;
    background: -webkit-gradient(linear, left bottom, left top, from(#575757), to(#2b2b2b));
    background: linear-gradient(0deg, #575757 0, #2b2b2b 100%);
    position: relative;
    margin-top: 48px
}

@media (max-width:900px) {
    .footer__container {
        margin-top: 48px
    }
}

.footer__container::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/footerbg.webp);
    top: 0;
    right: 0;
    z-index: 0
}

@media (max-width:900px) {
    .footer__container::after {
        opacity: .2
    }
}

.footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width:1000px) {
    .footer__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

.footer__logo-link {
    width: 217px;
    min-width: 217px
}

@media (max-width:1000px) {
    .footer__logo-link {
        margin-bottom: 32px
    }
}

.footer__logo-link img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.footer__menu {
    width: 100%
}

.footer__menu-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: none
}

@media (max-width:768px) {
    .footer__menu-ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.footer__menu-ul li {
    margin: 0 25px
}

@media (max-width:768px) {
    .footer__menu-ul li {
        width: 48%;
        margin: 0;
        margin-bottom: 16px
    }
}

.footer__menu-ul li a {
    text-decoration: none;
    color: #d8d8d8;
    font-size: 16px;
    font-weight: 700;
    -webkit-transition: .3s;
    transition: .3s
}

.footer__menu-ul li a:hover {
    color: #ff8a8a
}

.footer__mid {
    margin-top: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media (max-width:768px) {
    .footer__mid {
        margin-top: 32px
    }
}

.footer__mid-menu {
    width: 31.33%
}

@media (max-width:768px) {
    .footer__mid-menu {
        width: 48%
    }
}

.footer__mid-menu-ul {
    list-style: none
}

.footer__mid-menu-ul li {
    margin-bottom: 16px
}

.footer__mid-menu-ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: .3s;
    transition: .3s
}

.footer__mid-menu-ul li a:hover {
    color: #ff8a8a
}

.footer__bottom {
    margin-top: 32px;
    margin-top: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width:1200px) {
    .footer__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
}

.footer__bottom-addcoupon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    background-color: #ab0b23;
    border-radius: 100px;
    padding: 7px 20px;
    border: 4px solid #fff;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: .3s;
    transition: .3s;
    letter-spacing: 1px;
    margin-left: 40px
}

@media (max-width:1200px) {
    .footer__bottom-addcoupon {
        margin-left: 0
    }
}

.footer__bottom-addcoupon:hover {
    background-color: #7e0a1c
}

.footer__bottom-addcoupon::before {
    content: '';
    width: 19px;
    height: 19px;
    background-image: url(../images/coupon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    margin-right: 9px
}

.footer__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width:1200px) {
    .footer__socials {
        width: 100%;
        margin-bottom: 48px
    }
}

@media (max-width:1000px) {
    .footer__socials {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.footer__socials-header {
    margin-right: 135px
}

@media (max-width:1000px) {
    .footer__socials-header {
        margin-right: 0;
        text-align: center;
        margin-bottom: 24px
    }
}

.footer__socials-header h1,
.footer__socials-header h2,
.footer__socials-header h3,
.footer__socials-header h4,
.footer__socials-header h5,
.footer__socials-header h6,
.footer__socials-header p {
    color: #fff
}

.footer__socials-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width:1000px) {
    .footer__socials-items {
        margin-bottom: 48px
    }
}

.footer__socials-items a {
    width: 30px;
    height: 30px;
    text-decoration: none;
    margin-right: 40px
}

@media (max-width:1000px) {
    .footer__socials-items a {
        width: 26px;
        height: 26px;
        margin: 0 20px
    }
}

.footer__socials-items a img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1)
}

.footer__copyrights {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none
}

.footer__copyrights img {
    margin-left: 16px
}

* {
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0
}

html {
    scroll-behavior: smooth
}

body {
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
    font-family: Barlow, sans-serif
}

.app-container {
    overflow: hidden;
    position: relative;
    max-width: 100vw;
    background: #e6e6e6;
    background: -webkit-gradient(linear, left top, left bottom, from(#e6e6e6), to(white));
    background: linear-gradient(180deg, #e6e6e6 0, #fff 100%);
    background: linear-gradient(180deg, #e6e6e6 0, #fff 100%)
}

button,
input {
    font-family: Barlow, sans-serif
}

.shop-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.shop-wrapper .shop-info {
    width: 20%;
}

.shop-wrapper .shop-info svg path {
    fill: #ab0b23;
}

.shop-wrapper .shop-info svg {
    margin-right: 12px;
    min-width: 24px;
}

.shop-wrapper .shop-info p,
a {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    color: #a3a3a3;

}

.shop-wrapper .shop-info .shop-info__contact-item {
    margin-top: 24px;
    display: flex;
}

.shop-wrapper .shop-info .shop-info__payments-item {
    margin-top: 24px;
    display: flex;
    align-items: center;
}

.shop-wrapper .shop-info .shop-info__delivery-item {
    margin-top: 24px;
    display: flex;
    align-items: center;
}

.front-newest__items.sklep {
    width: 78%;
}

.shop-info__delivery {
    padding: 32px 24px;
    -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    border: 1px solid #e6e6e6;
    overflow: hidden;
    border-radius: 40px;
    position: relative;
    background-color: #fff;

    margin-bottom: 16px;
}

.shop-info__payments {
    padding: 32px 24px;
    -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    border: 1px solid #e6e6e6;
    overflow: hidden;
    border-radius: 40px;
    position: relative;
    background-color: #fff;

    margin-bottom: 24px;
}

.shop-info__contact {
    padding: 32px 24px;
    -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    border: 1px solid #e6e6e6;
    overflow: hidden;
    border-radius: 40px;
    position: relative;
    background-color: #fff;

    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.shop-info__item {
    font-size: 16px;
    font-weight: 500;
}

.front-page .shop-info h5 {
    font-size: 18px;
    font-weight: 600;
}

.shop-info__image {
    padding: 48px 24px;
    -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    border: 1px solid #e6e6e6;
    overflow: hidden;
    border-radius: 40px;
    position: relative;
    background-color: #fff;

    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.shop-info__image-count {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shop-info__image-count span {
    color: #717171;
    display: block;
    font-size: 80px;
    font-weight: 100;
    margin-bottom: 10px;
}

.shop-info__image-count p {
    color: #717171;
}


.shop-info__image img {
    max-width: 70%;
    object-fit: contain;
    height: auto;
}

.front-newest.sklep .shop-archive__items h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 48px;
    font-weight: 600;
    margin-top: 24px;
}

.shop-content {
    padding: 42px 32px;
    -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
    border: 1px solid #e6e6e6;
    overflow: hidden;
    border-radius: 40px;
    position: relative;
    background-color: #fff;

    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.front-page .shop-content h1 {
    margin-bottom: 42px;
}

.front-page .shop-content h1 strong {
    font-weight: 700;
}

.front-page .shop-content h2 {
    margin-bottom: 24px;
    margin-top: 32px;
}

.front-page .shop-content h2 strong {
    font-weight: 600;
}

.front-page .shop-content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 16px;
    word-wrap: break-word;
    color: #a3a3a3;
}

.front-page .shop-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.front-page .shop-content ul li {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 8px;

    color: #a3a3a3;
}

.front-page .shop-content ol li::marker {
    color: #ab0b23;
}

.front-page .shop-content ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.front-page .shop-content ol li {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 8px;

    color: #a3a3a3;
}

.front-page .shop-content ul li::marker {
    color: #ab0b23;
}

.front-page .shop-content img {

    display: flex;
    margin: 16px auto;
    max-width: 100%;
    object-fit: contain;
    height: auto;
}


@media (max-width:1600px) {
    .front-newest__items.sklep .front-newest__item {
        width: 31.33%
    }
}

@media (max-width:1200px) {
    .shop-wrapper {
        flex-direction: column-reverse;
    }

    .shop-wrapper .shop-info {
        width: 100%;
        margin-top: 32px;
    }

    .front-newest__items.sklep {
        width: 100%;
    }
}

@media (max-width:1000px) {
    .shop-content {
        padding: 24px;
    }

    .front-page .shop-content h1 {
        margin-bottom: 24px;
    }

    .front-page .shop-content h2 {
        margin-bottom: 16px;
        margin-top: 24px;
    }

}





.single-content {
    max-width: 1472px;
    padding: 0 16px;
    margin-left: auto;
    margin-right: auto;
}



.single-content h1,
.single-content h2 {
    font-size: 48px;
    color: #575757;
    font-weight: 500;

    margin-bottom: 12px;
}

@media(max-width:600px) {

    .single-content h1,
    .single-content h2 {
        font-size: 32px;
    }
}

.single-content h5 {
    font-size: 20px;
    font-weight: 900;
    color: #da3064;

}

.single-content p {
    margin-bottom: 15px;
    margin-top: 15px;
    font-size: 18px;
    line-height: 1.7em;
}

.single-content h1 {
    display: none
}

.wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-banner {
    margin-top: 80px;
}

.nawsletter-wrapper h5 {
    display: none
}

.nawsletter-wrapper .wpcf7-text.wpcf7-email {
    padding: 14px 22px;
    outline: 0;
    border: 0;
    background-color: #fff;
    border-radius: 20px;
    font-family: Barlow, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #343434;
    margin-bottom: 10px;
}


.nawsletter-wrapper .wpcf7-submit {
    white-space: nowrap;
    padding: 8px 22px;
    padding-left: 22px;
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    background: #ab0b23;
    font-family: Barlow;
    cursor: pointer;
    border-radius: 100px;
    padding-left: 64px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    border: 4px solid #fff;
    outline: 0;
}

.nawsletter-wrapper .submit-container {
    position: relative;
}

.nawsletter-wrapper .submit-container::after {
    content: '';
    background-image: url(https://www.extrabon.pl/wp-content/themes/extrabon/public/images/emajle.svg);
    width: 19px;
    height: 19px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    pointer-events: none;
    left: 24px;
    top: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.nawsletter-wrapper p {
    margin-top: 0;
    font-size: 20px;
}

.nawsletter-wrapper h2 {
    font-size: 30px;
}

.footer__container {
    margin-top: 0;
}


.nawsletter-wrapper .wpcf7-spinner {
    display: none;
}


.nawsletter-wrapper .kt-row-column-wrap {
    max-width: 1472px;
    padding: 0 16px;
    margin-left: auto;
    margin-right: auto;
}

.wpcf7 input,
.wpcf7 textarea {
    padding: 14px 22px;
    outline: 0;
    border: 0;
    background-color: #fff;
    border-radius: 20px;
    font-family: Barlow, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #343434;
    margin-bottom: 15px;
    border: solid 1px rgb(220, 220, 220);
    width: 100%;
}

.wpcf7 textarea {
    resize: none;
}

.wpcf7 .wpcf7-submit {
    white-space: nowrap;
    padding: 8px 22px;
    padding-left: 22px;
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    background: #ab0b23;
    font-family: Barlow;
    cursor: pointer;
    border-radius: 100px;
    padding-left: 64px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    border: 4px solid #fff;
    outline: 0;
}

.wpcf7 .submit-container::after {
    content: '';
    background-image: url(https://www.extrabon.pl/wp-content/themes/extrabon/public/images/emajle.svg);
    width: 19px;
    height: 19px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    pointer-events: none;
    left: 24px;
    top: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.wpcf7 .submit-container {
    position: relative;
}

.contact-mail a {
    color: #ab0b23;
    font-weight: bold;
    font-size: 30px;
}

.contact-h3 {
    font-size: 28px;
    color: #575757;
    font-weight: 500;
    margin-bottom: 12px;
}

.footer__newsletter-form form .submit-container::after,
#wpcf7-f218-o1 .submit-container::after {
    top: 20px !important;
}

#wpcf7-f218-o1 .submit-container::after {
    top: 25px !important;
}

.single-content {
    max-width: 1472px;
    padding: 0 16px;
    margin-left: auto;
    margin-right: auto;
}



.single-content h1,
.single-content h2 {
    font-size: 48px;
    color: #575757;
    font-weight: 500;

    margin-bottom: 12px;
}

@media(max-width:600px) {

    .single-content h1,
    .single-content h2 {
        font-size: 32px;
    }
}

.single-content h5 {
    font-size: 20px;
    font-weight: 900;
    color: #da3064;

}

.single-content p {
    margin-bottom: 15px;
    margin-top: 15px;
    font-size: 18px;
    line-height: 1.7em;
}

.single-content h1 {
    display: none
}

.wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-banner {
    margin-top: 80px;
}

.nawsletter-wrapper h5 {
    display: none
}

.nawsletter-wrapper .wpcf7-text.wpcf7-email {
    padding: 14px 22px;
    outline: 0;
    border: 0;
    background-color: #fff;
    border-radius: 20px;
    font-family: Barlow, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #343434;
    margin-bottom: 10px;
}


.nawsletter-wrapper .wpcf7-submit {
    white-space: nowrap;
    padding: 8px 22px;
    padding-left: 22px;
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    background: #ab0b23;
    font-family: Barlow;
    cursor: pointer;
    border-radius: 100px;
    padding-left: 64px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    border: 4px solid #fff;
    outline: 0;
}

.nawsletter-wrapper .submit-container {
    position: relative;
}

.nawsletter-wrapper .submit-container::after {
    content: '';
    background-image: url(http://localhost/extrabon/wp-content/themes/extrabon/public/images/emajle.svg);
    width: 19px;
    height: 19px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    pointer-events: none;
    left: 24px;
    top: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.nawsletter-wrapper p {
    margin-top: 0;
    font-size: 20px;
}

.nawsletter-wrapper h2 {
    font-size: 30px;
}

.footer__container {
    margin-top: 0;
}


.nawsletter-wrapper .wpcf7-spinner {
    display: none;
}


.nawsletter-wrapper .kt-row-column-wrap {
    max-width: 1472px;
    padding: 0 16px;
    margin-left: auto;
    margin-right: auto;
}

.wpcf7 input,
.wpcf7 textarea {
    padding: 14px 22px;
    outline: 0;
    border: 0;
    background-color: #fff;
    border-radius: 20px;
    font-family: Barlow, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #343434;
    margin-bottom: 15px;
    border: solid 1px rgb(220, 220, 220);
    width: 100%;
}

.wpcf7 textarea {
    resize: none;
}

.wpcf7 .wpcf7-submit {
    white-space: nowrap;
    padding: 8px 22px;
    padding-left: 22px;
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    background: #ab0b23;
    font-family: Barlow;
    cursor: pointer;
    border-radius: 100px;
    padding-left: 64px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    border: 4px solid #fff;
    outline: 0;
}

.wpcf7 .submit-container::after {
    content: '';
    background-image: url(http://localhost/extrabon/wp-content/themes/extrabon/public/images/emajle.svg);
    width: 19px;
    height: 19px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    pointer-events: none;
    left: 24px;
    top: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.wpcf7 .submit-container {
    position: relative;
}

.contact-mail a {
    color: #ab0b23;
    font-weight: bold;
    font-size: 30px;
}

.contact-h3 {
    font-size: 28px;
    color: #575757;
    font-weight: 500;
    margin-bottom: 12px;
}

.footer__newsletter-form form .submit-container::after,
#wpcf7-f218-o1 .submit-container::after {
    top: 20px !important;
}

#wpcf7-f218-o1 .submit-container::after {
    top: 25px !important;
}

.header__container {
    display: flex;
    align-items: center;
    flex-flow: nowrap;
}

.header__search {
    text-align: center;

}

.header__search #search-text {
    text-transform: uppercase;
    color: #ab0b23;
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
    display: none;
}

.header__search {
    margin-top: 0;
}

.header {
    padding-bottom: 0;
    padding-top: 10px;


}

.header__rightside {
    position: relative !important;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    background: #ab0b23;
    bottom: -15px !important
}

.header__menu {
    border-radius: 0 !important;
    max-width: 1472px;
    margin-right: auto;
    margin-left: auto;

}

.header__top-addcoupon {
    width: 240px;
}

.app-container {
    overflow: visible;
}

#primary-menu .menu-item>a {
    padding-top: 15px;
    padding-bottom: 15px;
}

#primary-menu .menu-item>a {
    padding-left: 15px;
    padding-right: 15px;
}

#primary-menu .menu-item>a:hover,
#primary-menu .menu-item.open>a,
#primary-menu .sub-menu .current-menu-item a,
#primary-menu .current-menu-item a,
#primary-menu .current-menu-parent>a {
    background: white;
    opacity: 1 !important;
    filter: none;
    border-radius: 8px;
    color: #c60426;


}

#primary-menu .menu-item>a img {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(154deg) brightness(105%) contrast(105%);
    !important
}

#primary-menu .menu-item a img,
#primary-menu .menu-item a {
    transition: ease-in-out 50ms;
}

#primary-menu .menu-item>a:hover img,
#primary-menu .menu-item.open img,
#primary-menu .current-menu-item a img,
#primary-menu .current-menu-parent a img {
    filter: invert(8%) sepia(79%) saturate(6862%) hue-rotate(347deg) brightness(95%) contrast(97%);
}

.header__menu {
    padding-top: 0;
    padding-bottom: 0;
}

.sub-menu li a img {
    filter: invert(24%) sepia(0%) saturate(4875%) hue-rotate(168deg) brightness(98%) contrast(59%) !important;
}

@media(max-width:800px) {
    .header .sub-menu li a img {

        filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(154deg) brightness(105%) contrast(105%) !important;
    }
}

.sub-menu li a:hover img,
.header .sub-menu .current-menu-item a img {
    filter: invert(8%) sepia(79%) saturate(6862%) hue-rotate(347deg) brightness(95%) contrast(97%) !important;
}

.social-icons,
.social-icons img {
    margin-right: 0 !important;

}

.social-icons a {
    font-size: 0px !important;
}

.header-top {
    border-bottom: solid 1px #ab0b23;
    padding-top: 4px;
    padding-bottom: 4px;
    margin-bottom: 15px;

}

.header-top {
    max-width: 1472px;
    margin-left: auto;
    margin-right: auto;
}

.header-top .inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;



}

.header-top .inner {
    padding-top: 3px;
    padding-bottom: 3px;
}

.header-top .inner .header-top-button {
    background: rgb(170, 170, 170);
    color: rgb(20, 20, 20);
    border-radius: 30px;
    padding: 2px 15px;
    font-size: 13px;
    line-height: 20px;
    transition: ease-in-out 500ms;
}

.header-top .inner .header-top-button:hover {
    background: rgb(200, 200);
}

.header__top-addcoupon {
    display: inline-block !im
}

.header__top-addadvert {
    background: #05204A;
}

.header__top-addadvert:hover {
    background: #0d3674 !important;
}

.header {
    padding-top: 0;
}

@media(max-width:900px) {
    .header {
        height: 120px;
    }

    .header .header__ham {
        top: 55px;
    }

    .header .header__rightside {
        top: -225px !important;

    }

    .header #searchform {
        max-width: 400px;
    }
}

@media(max-width:700px) {
    .header .header__container {
        flex-wrap: wrap !important;
    }

    .header .header__container .header__search #searchform {
        width: 100% !important;
        max-width: none !important;
        margin-top: 20px;
    }

    .header {
        height: 200px;
    }
}

@media(min-width:700px) {
    .sticky {
        position: fixed;
    }

    .header-top,
    .header__container {
        transition: ease-in-out 500ms !important;
    }

    .sticky .header-top,
    .sticky .header__container {
        max-height: 0 !important;

    }

    .sticky .header-top *,
    .sticky .header__container * {
        opacity: 0;
        padding: 0 !important;
        margin: 0
    }

    .sticky .header__rightside {
        bottom: 24px !important
    }

    .sticky {
        height: 56px;
    }
}

@media(max-width:800px) {

    .front-casestudies__header h5::before,
    .front-casestudies__header h5::after {
        display: none !important
    }

    .header .header__rightside {
        height: 100% !important;
        min-height: 100% !important;
        position: fixed !important;
        height: 100vh !important;
        width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        top: 0 !important;
    }

    .header__top-addadvert.mobile {
        margin-top: 10px !important;

    }
}