* {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */

    -webkit-tap-highlight-color: transparent;
}

div[slot='panels'] {
    pointer-events: auto;
}

div[slot='tabs'] {
    display: block;
    background-color: rgb(227, 240, 255);
    text-align: center;
    min-width: 70px;
    padding: 9px 25px;
    /*border: 1px solid rgb(202, 219, 245);*/
    /*border-bottom: 1px solid #a9a9a9;*/
    cursor: pointer;
    cursor: hand;
    pointer-events: auto;
    font-size: 20px;
}
div[slot='tabs'][data-transparent]{
    background-color: transparent;
    border: none;
}
div[slot='tabs'].checked:before {
    content: "✔";
    font-size: 15px;
    display: inline-block;
    margin-left: 5px;
    position: relative;
    transform: translateY(-1px);
}
div[slot='tabs'].disabled {
    color: #00000044;
}
div[slot='tabs'][selected]::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 6px;
    width: 100%;
    left: 0;
    transform: translateY(3px);
    background-color: white;
}
div[slot='tabs'][selected]{
    position: relative;
    background-color: white;
    /*border: 1px solid #a9a9a9;*/
    border-top: 4px solid green;
    padding-top: 5px;
    border-bottom: none;
    margin-top: 0px;
    cursor: default;
}


@media (max-width: 500px) {
    div[slot='tabs']{
        font-size: 17px;
        padding: 7px 13px;
    }
}