﻿:root {
    --font-base: "Poppins", sans-serif;
    --color-accent: #6158de;
    --color-accent-x-light: #fafafa;
    --color-base: #222;
}



.wrapper {
    width: 100%;
    margin-inline: auto;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
}
.tabs__btn{
    all: unset;
}


    h1 strong {
        display: block;
        font-weight: 500;
        color: #999;
        font-size: 1rem;
    }

.tabs {
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

.tabs__nav {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    background-color: var(--color-accent-x-light);
}

.tabs__btn {
    position: relative;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

    .tabs__btn:not(.is-active) {
        opacity: 0.6;
    }

        .tabs__btn:not(.is-active):hover {
            opacity: 1;
        }

    .tabs__btn.is-active {
        color: var(--color-accent);
        background-color: #fff;
        border-right: 1px solid rgba(0, 0, 0, 0.125);
        border-left: 1px solid rgba(0, 0, 0, 0.125);
        font-weight:bold;
    }

        .tabs__btn.is-active::after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 0;
            height: 1px;
            width: 100%;
            background-color: #fff;
        }

    .tabs__btn:first-child.is-active {
        border-left: none;
    }

.tabs__pane {
    display: none;
    padding:8px;
    /*padding: 2rem 1.25rem;*/
}

    .tabs__pane.is-visible {
        display: block;
    }

