.tabs {
    display: none;
}
@media (max-width: 767px) {
    .tabs {
        display: block;
    }
}
.tabsList {
    margin: 0 -24px;
    padding: 16px 34px 21px;
    border-top: 2px solid #E8E8E8;
    border-bottom: 2px solid #E8E8E8;
}
@media (orientation: landscape) {
    .tabsList {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
        padding: 16px 0 0;
    }
}
@media (max-width: 767px) {
    .tabsListItem {
        margin: 0 13px 20px 13px;
    }
}
.tabsListItem .nav-link {
    border: 0;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
    padding: 0;
    background: transparent;
}
.tabsListItem .nav-link.active {
    color: #593DFB;
    position: relative;
}
.tabsListItem .nav-link.active::after {
    content: "";
    position: absolute;
    height: 2px;
    left: 0;
    width: 100%;
    bottom: -22px;
    background: #593DFB;
}
@media (max-width: 767px) {
    .tabsListItem .nav-link.active::after {
        bottom: -2px;
    }
}