:root {
    --vs-bottom-tabs-blue: rgb(122, 240, 255);
}

.vs-bottom-tabs-container {
    margin: 0 auto;
    margin-top: 1em;
    position: relative;
    /* padding-bottom: 5em; */
}

.vs-bottom-tabs-panels {
    position: relative;
    width: 86vw;
    height: 80svh;
    max-height: 68svh;
    margin-bottom: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.vs-bottom-tabs-panels-applications {
    position: relative;
    width: 86vw;
    height: 100%;
    margin-bottom: 0;
    z-index: 1;
}

.vs-bottom-tabs-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.6s;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
}

.vs-bottom-tabs-panel.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear;
}

.vs-bottom-tabs-panel-content {
    position: relative;
    height: 100%;
    padding: 2em;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.vs-bottom-tabs-panel-header {
    text-align: left;
    margin-bottom: 2em;
    max-width: 40vw;
    position: relative;
    z-index: 2;
}

.vs-bottom-tabs-panel-header h3 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 0.5em;
    color: white;
}

.vs-bottom-tabs-panel-header p {
    font-size: 1.2em;
    line-height: 1.6;
    color: white;
}

.vs-bottom-tabs-panel-image {
    display: none;
}

.vs-bottom-tabs-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0 2em;
    margin: 0 auto;
    z-index: 3;
    border-top: .1em solid white;
    position: relative;
}

.vs-bottom-tabs-button {
    border-top: .3em solid rgba(0, 251, 255, 0);
    color: white;
    padding: 1em;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease,
                color 0.3s ease,
                border-color 0.3s ease;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0);
}

.vs-bottom-tabs-button span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.vs-bottom-tabs-button:hover span {
    transform: scale(1.1);
}

.vs-bottom-tabs-button.active {
    border-top: .3em solid white;
    pointer-events: none;
}

.applications-section .vs-bottom-tabs-container {
    width: 80svw;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* .applications-section .vs-bottom-tabs-panels-applications {
    position: relative;
    width: 100%;
    height: 80svh;
    margin-bottom: 0;
    overflow: hidden;
    max-height: 80svh;
} */

.applications-section .vs-bottom-tabs-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.6s;
}

.applications-section .vs-bottom-tabs-panel.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear;
}

.applications-section .vs-bottom-tabs-panel:not(.active) {
    transform: translateX(-100%);
}

.applications-section .vs-bottom-tabs-panel-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0em;
    overflow: hidden;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.applications-section .vs-bottom-tabs-panel-header {
    text-align: center;
    flex-shrink: 0;
}

.applications-section .vs-bottom-tabs-panel-header h3 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 0.5em;
    color: white;
}

.applications-section .vs-bottom-tabs-panel-header p {
    font-size: 1.2em;
    line-height: 1.6;
    color: white;
}

.applications-section .vs-bottom-tabs-lottie {
    flex: 1;
    width: 100%;
    height: 0;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.applications-section .vs-bottom-tabs-lottie svg {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.applications-section .vs-bottom-tabs-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8em;
    padding: 0 8em;
    height: 10svh;
}




