.tabs {
    position: relative;
    overflow: hidden;
    border-bottom: 3px ridge #468189;
    width: 100%;
}

[role="tablist"] {
    margin: 0 0 -0.1em;
    overflow: visible;
}

[role="tab"] {
    position: relative;
    margin: 0;
    padding: 0.3em 0.5em 0.4em;
    border-radius: 0.2em 0.2em 0 0;
    box-shadow: 0 0 0.2em hsl(219, 1%, 72%);
    overflow: visible;
    background-color: inherit;
    border: 1px solid #468189;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
    font-weight: bold;
    color: #031926;
    background-color: #9DBEBB;
    font-family: initial;
}

[role="tab"]:hover::before,
[role="tab"]:focus::before,
[role="tab"][aria-selected="true"]::before {
    position: absolute;
    bottom: 100%;
    right: -1px;
    left: -1px;
    border-radius: 0.2em 0.2em 0 0;
    border-top: 3px solid hsl(20, 96%, 48%);
    content: '';
}

[role="tab"][aria-selected="true"] {
    background-color: #468189;
    border-color: #F4E9CD #F4E9CD #468189;
    color: #F4E9CD;
}

[role="tab"][aria-selected="true"]:not(:focus):not(:hover)::before {
    border-top: 5px solid hsl(187, 32%, 41%);
}

[role="tab"][aria-selected="true"]::after {
    position: absolute;
    z-index: 3;
    bottom: -1px;
    right: 0;
    left: 0;
    height: 0.3em;
    background: #77ACA2;
    box-shadow: none;
    content: '';
}

[role="tab"]:hover,
[role="tab"]:focus,
[role="tab"]:active {
    background-color: #468189;
    border-color: #F4E9CD #F4E9CD #468189;
    color: #F4E9CD;
}

[role="tab"]:hover::before,
[role="tab"]:focus::before {
    border-color: #F4E9CD #F4E9CD #468189;
}

[role="tab"]:focus {
    padding-top: 10px;
}

[role="tabpanel"] {
    position: relative;
    z-index: 2;
    padding: 0.5em 0.5em 0.7em;
    border: 1px solid #468189;
    border-radius: 0 0.2em 0.2em 0.2em;
    box-shadow: 0 0 0.2em hsl(219, 1%, 72%);
}

[role="tabpanel"]:focus {
    border-color: #F4E9CD;
    box-shadow: 0 0 0.2em #468189;
    outline: 0;
    background-color: rgba(244, 233, 205, 0.10);
}

[role="tabpanel"]:focus::after {
    position: absolute;
    bottom: 0;
    right: -1px;
    left: -1px;
    border-bottom: 3px solid #F4E9CD;
    border-radius: 0 0 0.2em 0.2em;
    content: '';
}
