.tabs-block {}
.tabs-block__nav {
    position: relative;
    z-index: 2;
}
.tabs-block__nav .swiper-slide {
    width: auto;
}
.tabs-block__nav-link {
    cursor: pointer;
}
.tabs-block__nav .swiper-slide-thumb-active .tabs-block__nav-link {}

.tabs-block__nav_default {}
.tabs-block__nav_default .tabs-block__nav-link {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: #ED1D24;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    padding-bottom: 10px;
    display: block;
    transition: color 0.3s ease, border-color 0.3s ease;
}
.tabs-block__nav_default .swiper-slide-thumb-active .tabs-block__nav-link {
    color: #fff;
    border-color: #ED1D24;
}

.tabs-block__nav_wrap .swiper-slide {
    height: auto;
}
.tabs-block__nav_wrap .tabs-block__nav-link {
    font-size: 13px;
    flex-wrap: wrap;
    height: 100%;
}

.tabs-block__nav_icons {}
.tabs-block__nav_icons .swiper-slide {
    height: auto;
}
.tabs-block__nav_icons .tabs-block__nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 128px;
    padding: 16px;
    border: 3px solid transparent;
    height: 100%;
    transition: border-color 0.3s ease;
}
.tabs-block__nav_icons .tabs-block__nav-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    margin-bottom: 10px;
}
.tabs-block__nav_icons .tabs-block__nav-icon {
    transition: filter 0.3s ease;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
}
.tabs-block__nav_icons .tabs-block__nav-text {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.25;
    color: #FFFFFF;
    transition: color 0.3s ease;
}
.tabs-block__nav_icons .swiper-wrapper {
    justify-content: space-between;
    transition-timing-function: linear;
}
.tabs-block__nav_icons:not(.tabs-block__nav_icons_static) .swiper-slide-thumb-active .tabs-block__nav-link {
    border-color: #ED1D24;
}
.tabs-block__nav_icons:not(.tabs-block__nav_icons_static) .swiper-slide-thumb-active .tabs-block__nav-text {
    color: #ED1D24;
}
.tabs-block__nav_icons:not(.tabs-block__nav_icons_static) .swiper-slide-thumb-active .tabs-block__nav-icon {
    filter: brightness(0) invert(100);
}

.tabs-block__nav_icons_static .tabs-block__nav-link {
    opacity: 0.2;
    transition: border-color 0.3s ease, opacity 0.3s ease;
}
.tabs-block__nav_icons_static .tabs-block__nav-link:hover {
    opacity: 0.7;
}
.tabs-block__nav_icons_static .tabs-block__nav-icon {
    filter: brightness(100);
}
.tabs-block__nav_icons_static .tabs-block__nav-link_active {
    border-color: #ED1D24;
    opacity: 1 !important;
}
.tabs-block__nav_icons_static .tabs-block__nav-link_active .tabs-block__nav-text {
    color: #ED1D24;
}

.tabs-block__content {}
.tabs-block__content > .swiper-wrapper > .swiper-slide {
    opacity: 0;
    visibility: hidden;
}
.tabs-block__content > .swiper-wrapper > .swiper-slide-active {
    opacity: 1;
    visibility: visible;
}
.tabs-block__content_mt {
    margin-top: 40px;
}
.tabs-block__content_mt_lg {
    margin-top: 55px;
}

@media screen and (min-width: 768px) {
    .tabs-block__nav_default .tabs-block__nav-link {
        font-size: 24px;
    }
    .tabs-block__nav_default_sm .tabs-block__nav-link {
        font-size: 18px;
    }
    
    .tabs-block__nav_wrap .tabs-block__nav-link {
        font-size: 13px;
    }
    
    .tabs-block__nav_icons .tabs-block__nav-link {
        width: 162px;
    }
    .tabs-block__nav_icons .tabs-block__nav-icon-wrapper {
        height: 74px;
    }
    .tabs-block__nav_icons .tabs-block__nav-text {
        font-size: 16px;
    }
}