.topline__sub-nav {
    -moz-outline-radius: 20px;
    transition: height 0.1s linear 0s;
    position: absolute;
    top: calc(100%);
    left: 0;
    min-width: 344px;
    display: none;
    padding-top: 30px;
}

@media(min-width: 1201px){
    .topline__sub-nav-wrapper {
        border-radius: 20px;
        display: flex;
        background-color: #fff;
        border-top: 16px;
        padding: 33px;
        box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
    }
}

@media(max-width: 1200px){
    .topline__sub-nav-wrapper {
        width: 100%;
    }
}


.topline__sub-nav-column {
    animation: smooth-show 0.2s linear forwards;
    display: none;
    flex-direction: column;
    gap: 16px;
    border-left: 1px solid #dedede;
    padding-inline: 24px 5px;
    margin-left: 20px;
    height: 100%;
    min-width: 220px;
}

.topline__sub-nav-column-item-shell {
    position: relative;
}

@media only screen and (max-width: 1200px) {
    .topline__sub-nav {
        display: flex;
        position: initial;
        height: max-content;
        padding: 0;
        background-color: transparent;
        box-shadow: unset;
        width: 100%;
    }

    .topline__sub-nav-tabs {
        width: 100%;
    }

    .topline__sub-nav-column {
        background-color: #fff;
        position: absolute;
        top: 84px;
        left: -20px;
        overflow: auto;
        width: 100%;
        min-height: calc(100% - 84px);
        height: max-content;
        padding: 16px 24px 24px;
        z-index: 1
    }
}