.home__tabs-mobile {
    position: absolute;
    left: 0px;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: var(--color-secondary-100);
    text-align: center;
    list-style-type: none;
    visibility: visible;
    overflow-y: auto;
    z-index: 99;
    transition: visibility 0.25s, max-height 0.25s;
}

.home__tabs-mobile--hidden {
    max-height: 0px;
    visibility: hidden;
}

.tabs-mobile__container li {
    transition: visibility 0.25s, max-height 0.25s, opacity 0.25s, background-color 0.25s, outline 0.25s;
}

.home__tabs-mobile--hidden li {
    max-height: 0;
    opacity: 0;
}

.tabs-mobile__tab, .tabs-mobile__drop-down-tab>ul>li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 78px;
    max-height: 78px;
    cursor: pointer;
    transition: background-color 0.25s, outline 0.25s;
}

.tabs-mobile__tab:active, .tabs-mobile__drop-down-tab>ul>li:active {
    background-color: rgba(255, 255, 255, 0.25);
}

.tabs-mobile__tab a, .tabs-mobile__tab button {
    margin: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    font: 21px/28px font-primary;
    color: var(--color-primary-600);
    fill: var(--color-primary-600);
    text-transform: uppercase;
    width: 100%;
    height: 100%;
}

.tabs-mobile__drop-down-tab {
    display: flex;
    background-color: #171F2A;
    max-height: 0px;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.5s, max-height 0.5s, opacity 0.5s;
    transition-timing-function: ease-out;
}

.tabs-mobile__drop-down-tab>ul {
    width: 100%;
}

.tabs-mobile__drop-down-tab li {
    max-height: calc(100% / 3);
}

.tabs-mobile__drop-down-tab a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabs-mobile__drop-down-tab--shown {
    max-height: 800px;
    opacity: 1;
    visibility: visible;
}

.tabs-mobile__drop-down-tab--shown path {
    transition: fill 0.25s;
}

.tabs-mobile__drop-down-tab--shown>ul>li:hover {
    background-color: #FFF;
}

.tabs-mobile__drop-down-tab--shown>ul>li:hover path, .tabs-mobile__drop-down-tab--shown>ul>li:active path {
    fill: #000;
}

.tabs-mobile__drop-down-tab--shown>ul>li:focus {
    outline: 2px solid #FFF;
}

.tabs-mobile__drop-down-tab--shown>ul>li:active {
    background-color: #B5B5B5;
}

.tabs-mobile__drop-down-tab svg {
    width: auto;
    height: 50px;
}

.tabs-mobile__tab svg {
    fill: var(--color-primary-600);
    transition: transform 0.25s;
}

.tabs-mobile__tab-arrow--rotated {
    transform: rotate(90deg);
}