.tab {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
    position: relative;
}

.tab > * {
    flex: none;
    padding-right: 4px;
    position: relative;
}

.tab > * > a {
    display: block;
    text-align: center;
    padding: 9px 15px;
    color: #999;
    border-bottom: 2px solid transparent;
    border-bottom-color: transparent;
    text-transform: uppercase;
    transition: color .1s ease-in-out;
    line-height: 20px;
    font-size: 14px;
}

.tab > .active > a {
    color: white;
    border-color: white;
    background-color: #008eff;
}

.tab > li > a {
    text-decoration: none;
    cursor: pointer;
    background-color: #004982;
}

.tab-content {
    padding: 0px 15px 15px 15px;
    background-color: rgba(255,255,255,0.1);
}

.tab-content > li {
    display: none;
}
.tab-content > li.active {
    display: block;
}
.tab-content > li > ol {
    padding-inline-start: 20px;
}

.tab-content > li::before {
       height: 10px;
       margin-top: -30px;
       content: "";
       display: block;
}

.tab-content > li > *::before {
       height: 0px;
       margin-top: 0px;
}

/* The 2 following blocks can be removed if the script is not configured to show the toast message */
#jekyll-tabs-copy-to-clipboard-message {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    right: 50%;
    bottom: 30px;
}

#jekyll-tabs-copy-to-clipboard-message.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
