
.tabbed-lottie-container {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
}
.tabbed-lottie-left-tabs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
}
.tabbed-lottie-right-animations {
    padding-left: 40px;
    min-height: 600px;
}
.hidden {
    display: none;
}
.lottie-tab {
    border-left: 4px solid rgba(8,7,9,.7);
    min-height: 70px;
    margin-bottom: 16px;
    padding-left: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.lottie-tab.selected {
    border-left: 4px solid var( --wp--preset--color--primary );
}
.lottie-tab-label {
    font-family: var(--wp--preset--font-family--area-normal);
    font-style: normal;
    font-weight: var(--wp--custom--heading--typography--font-weight);
    font-size: 20px;
    line-height: 32px;
    color: #080709;
    opacity: 0.8;

}
.lottie-tab-label.selected {
    opacity: 1;
}
.lottie-tab-description {
    display: none;
    font-family: var(--wp--preset--font-family--area-normal);
    font-style: normal;
    font-weight: var(--wp--custom--body--typography--font-weight);
    font-size: 14px;
    line-height: 26px;
    color: #4B5260;
}
.lottie-tab-description.selected {
    display: block;
}

@media only screen and (min-width: 768px) {
    .tabbed-lottie-container {
        flex-direction: row;
    }
    .tabbed-lottie-right-animations {
        padding-left: 0px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 990px) {
    .tabbed-lottie-right-animations {
        padding-left: 0px;
        padding-top: 60px;
        padding-bottom: 60px;
        min-height: 480px;
    }
}

@media only screen and (max-width: 768px) {
    .tabbed-lottie-right-animations {
        min-height: 300px;
    }
}

@media only screen and (max-width: 375px) {
    .tabbed-lottie-right-animations {
        padding-left: 0px;
        padding-top: 60px;
        padding-bottom: 60px;
        min-height: 200px;
    }
}


