.tab-link-container.tab-nav-swiper.swiper {
    padding-top: 37px;
}

.new-tooltip {
    position: absolute;
    background: #d71418;
    color: white;
    top: -32px;
    left: 50%;
    padding: 3px 10px;
    border-radius: 5px;
    transform: translateX(-50%);
    animation-name: float;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.new-tooltip:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 5px 0px 5px;
    border-color: #d71418 transparent transparent transparent;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%)
}

.tag-new {
    background: #d41a1a;
    font-size: 12px;
    color: white;
    font-weight: 500;
    padding: 3px 6px 3px 6px;
    border-radius: 15px;
    position: relative;
    top: -4px;
    letter-spacing: 1px;
    margin-left: 10px;
}

@keyframes float {
    0% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -5px);
    }

    100% {
        transform: translate(-50%, 0);
    }
}