#ManuFlexCont {
    display: flex;
    flex-direction: column;
}

#helptextdiv {
    background-color: white;
    margin: 15px 0;
    text-align: center;
}

#helptextdiv.htdscrolled {
    position: fixed;
    width: 100vw;
    top: 20px;
    left: 0;
    margin: unset;
    padding: 26px 0 5px 0;
    border-bottom: 1px solid #440303;
}

.LetCont {
    display: flex;
    flex-direction: row;
    margin-bottom: 25px;
}

.ManuFlexCont {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* flex-basis: 94%; */
    /* justify-content: space-between; */
    margin-left: 15px;
}

.ManuCont {
    margin: 5px;
    flex-basis: 30%;
    display: flex;
    flex-direction: column;
}

.ProdTypesCont {
    position: relative;
}

.ProdTypesFlexCont {
    /* margin-left: 15px; */
    display: flex;
    position: relative;
    flex-direction: row;
    width: 100%;
}

#ManuLegendCont {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

#ManuLegendCont label {
    cursor: pointer;
}

.LegendLinkBox {
    display: flex;
    flex-direction: column;
    margin: 2px 5px;
}

#ManuLegendCont input {
    display: none;
    visibility: hidden;
    position: relative;
}

#ManuLegendCont label,
#ManuLegendCont span {
    padding: 4px 8px;
    border: 2px solid aliceblue;
    border-radius: 15px;
    color: #440303;
}

#ManuLegendCont input:checked+label,
#ManuLegendCont span[data-checked="true"] {
    color: #a50707;
    border: 2px solid #860909;
}


/* div.ManuCont:focus-within div.ProdTypesFlexCont,
div.ManuCont:hover div.ProdTypesFlexCont {
    animation: OpenLettersAnim 0s;
    animation-delay: .2s;
    animation-fill-mode: forwards;
}

@keyframes OpenLettersAnim {
    to {
        position: absolute;
        flex-direction: column;
        background-color: white;
        border: 2px solid pink;
        z-index: 25;
    }
} */

.ProdLetCont {
    position: relative;
    padding: 4px 8px;
    border: 2px solid aliceblue;
    border-radius: 15px;
    color: #056e97;
    background-color: aliceblue;
    z-index: 1;
}

a.ProdLetCont:visited {
    color: #056e97;
}

a.ProdLetCont:hover {
    text-decoration: none;
    background-color: #860909;
    color: white;
    border: 2px solid #860909;
}

.ProdLetDescPanel {
    display: none;
    position: absolute;
    width: 0px;
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.5s;
}

a.ProdLetCont:hover>div.ProdLetDescPanel {
    transform: rotate(320deg);
    transform-origin: left top;
    display: block;
    width: auto;
    color: #860909;
    height: 100%;
    top: 1px;
    left: 7px;
    /* padding: 0 0 0 20px; */
    z-index: 100;
    border: 2px solid #860909;
    border-left: 0;
    /* background-color: white; */
}

a.ProdLetCont:hover {
    z-index: 150;
}

.ProdLetDesc {
    display: block;
    margin: 0 0 0 13px;
    padding: 1px 8px;
    height: 100%;
    background-color: white;
}

.LetBox {
    /* margin: 0 25px; */
    font-size: 40pt;
    width: 75px;
    min-width: 75px;
    /* border-radius: 66px; */
    background-color: #860909;
    color: white;
    /* flex-basis: 5%; */
    /* flex-grow: 2; */
    text-align: center;
    padding: 0 15px;
}

#AlphaShortcutFlexCont {
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
    padding: 10px;
    margin: 25px 0;
}

#AlphaShortcutFlexCont>a {
    display: block;
    /* padding: 10px 25px; */
    flex-basis: 3%;
    font-size: 16pt;
    text-decoration: none;
    color: #056e97;
    text-align: center;
}

#AlphaShortcutFlexCont>a:hover {
    color: #860909;
}

@media (max-width: 990px) {
    .ManuCont {
        flex-basis: 45%;
    }
    #AlphaShortcutFlexCont {
        justify-content: space-between;
    }
    #AlphaShortcutFlexCont>a {
        flex-basis: unset;
    }
    #helptextdiv.htdscrolled {
        top: 40px;
        margin-top: 0;
        padding-top: 5px;
    }
}

@media (max-width: 768px) {
    .ManuCont {
        flex-basis: 90%;
    }
    #AlphaShortcutFlexCont {
        flex-wrap: wrap;
    }
    #AlphaShortcutFlexCont>a {
        padding: 4px 10px;
    }
}