.tab-category-km .tab-item {
    margin-right: 0.5rem;
    letter-spacing: .02em;
    text-transform: uppercase;
    line-height: 2em;
    padding: 0 0.75em;
    transition: all .2s;
    color: hsla(0, 0%, 100%, .8);
    font-family: Roboto, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: .8em;
}

.tab-category-km .tab-item:hover {
    color: hsla(0, 0%, 100%, 1)
}

.tab-category-km .tab-item.active {
    /*background-color: #FF8400;*/
    background-color: #f3e8da;
    color: #7c4e16;
    font-weight: 700;
    border-radius: 15px;
}

.tab-category-km .tab-item .new-post-icon {
    color: #ff3e01;
}

.promotion-list .promotion-item {
    text-align: center;
}

.promotion-list .promotion-item:hover .promotion-img {
    transform: scale(1.1);
}

.promotion-list .promotion-item .image-cover {
    background-position: 50% 50%;
    background-size: cover;
    height: auto;
    overflow: hidden;
    padding-top: 100%;
    position: relative;
    border-radius: 15px;
}

.promotion-list .promotion-item .promotion-img {
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 15px;
    transition: transform .2s;
}

.primary-button {
    display: inline-block;
    text-decoration: none !important;

    padding: .25rem .75rem;
    background: linear-gradient(90deg, #663500 -15.7%, #b28a4c 56.12%, #d0ad6a 88.87%, #fdedc9 154.35%);
    /*background: rgba(208, 173,60, 0.8);*/
    /*background: #d0ad6a;*/
    border: none;
    box-shadow: none;
    color: #fff;
    border-radius: 4px;
}

.promotion-date {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem 0;
    position: absolute;
    color: #FAE84F;
    /*text-shadow: 1px 1px 2px #e3721f, 0 0 1em #000000, 0 0 0.2em #000000;*/

    /*text-shadow: 1px 1px 2px #e3721f, 0 0 1em #000000, 0 0 1em #000000;
    background: linear-gradient(rgba(255,255,255,0.15), rgba(255,255,255, 0.3));*/

    text-shadow: 1px 1px 20px #000000, 0 0 1em #000000, 0 0 2em #000000;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    font-weight: 600;
    letter-spacing: 2px;

    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.need-swipe {
    display: none;
}

@media (max-width: 768px) {
    .need-swipe {
        display: block;
        position: absolute;
        right: 0px;
        top: 0px;
    }

    .need-swipe .arrow-container {
        position: relative;
        animation: sideWay 1s infinite;
        -webkit-animation: sideWay infinite 1s;
    }

    .need-swipe .arrow-container img {
        opacity: 0.8;
        max-width: 22px;
    }

    @-webkit-keyframes sideWay {
        0% {
            transform: translateX(-10px);
        }
        100% {
            transform: translateX(0);
        }
    }
}

.animated-button1 {
    /*background: linear-gradient(-30deg, #3d0b0b 50%, #2b0808 50%);*/
    /*padding: 20px 40px;*/
    /*margin: 12px;*/
    display: inline-block;
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    overflow: hidden;
    color: #f7d4d4;
    /*font-size: 20px;*/
    /*letter-spacing: 2.5px;*/
    text-align: center;
    text-decoration: none;
    -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button1::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #ad8585;
    opacity: 0;
    -webkit-transition: .2s opacity ease-in-out;
    transition: .2s opacity ease-in-out;
}

.animated-button1:hover::before {
    opacity: 0.2;
}

.animated-button1 span {
    position: absolute;
}

.animated-button1 span:nth-child(1) {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), to(#fcb900));
    background: linear-gradient(to left, rgba(0, 0, 0, 0), #fcb900);
    -webkit-animation: 2s animateTop linear infinite;
    animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.animated-button1 span:nth-child(2) {
    top: 0px;
    right: 0px;
    height: 100%;
    width: 2px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(#fcb900));
    background: linear-gradient(to top, rgba(0, 0, 0, 0), #fcb900);
    -webkit-animation: 2s animateRight linear -1s infinite;
    animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

.animated-button1 span:nth-child(3) {
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(#fcb900));
    background: linear-gradient(to right, rgba(0, 0, 0, 0), #fcb900);
    -webkit-animation: 2s animateBottom linear infinite;
    animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.animated-button1 span:nth-child(4) {
    top: 0px;
    left: 0px;
    height: 100%;
    width: 2px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#fcb900));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #fcb900);
    -webkit-animation: 2s animateLeft linear -1s infinite;
    animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

.float-icon-telegram {
    width: 54px;
    position: fixed;
    right: 0;
    bottom: 95px;
    z-index: 99998;
}

.float-icon-social-community {
    width: 54px;
    position: fixed;
    right: 0;
    bottom: 170px;
    z-index: 99998;
}

.float-icon-duatop {
    width: 54px;
    position: fixed;
    right: 0;
    bottom: 240px;
    z-index: 99998;
}