/* SIDE TAB NAVIGATION */
/* a bit of code taken from roguecentaur.itch.io's template that installs tabs on the side of the page that navigate to other sections */

.side-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.side-nav .list {
    display: flex;
    flex-direction: column;
}

.side-nav .list label {
    padding: 10px 16px;
    border-radius: 0 3px 3px 0;
    margin-top: 25px;
    background-color: whitesmoke;
    width: 100%;
    writing-mode: vertical-lr;
    text-align: center;
    transform: rotate(180deg);
}

.tabs_radio, .tabs_content {
    display: none;
}

.tabs_content {
    order: 1;
}

.list label:hover {
    background-color: wheat;
}

.tabs_label {
    order: 0;
}

.tabs_radio:checked+.tabs_content {
    display: initial;
}  

/* END OF SIDE TAB NAVIGATION */