body .navside {
    position: absolute;
    width: 500px;
    height: 100vh;
    overflow: hidden;
    top: 0;
    bottom: 0;
    padding: 1em;
    background-color: var(--bs-primary-rgb);
    background: linear-gradient(0deg, #041f33 0%, #003c69 100%);
    color: white;
    z-index:200;
    border-right-width: 3px;
    border-right-style: solid;
    border-right-color: darkseagreen;
}
body .navside.right {
    right: -500px;
    transition: 0.2s ease;
}
body .navside.right.active {
    right: 0;
}
body .navside.left {
    left: -500px;
    transition: 0.2s ease;
}
body .navside.left.active {
    left: 0;
}

/* Floating icons */
.float-container {
    position: fixed;
    top: 33%;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    z-index: 300;
}

.float-container a {
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100px;
    height: 30px;
    margin-right: -74px;
    margin-bottom: 10px;
    padding: 10px 7px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: white;
    border-color: #46b8da;
    border-radius: 5px 0 0 5px;
    background-color: #4caf50;
    -webkit-box-shadow: 0 2px 4px #7d7d7d;
    box-shadow: 0 2px 4px #7d7d7d;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-family: sans-serif;
}

.float-container a:hover {
    margin-right: 0;
    background-color: #229b27;
    -webkit-box-shadow: 0 2px 4px #7d7d7d;
    box-shadow: 0 2px 4px #7d7d7d;
}

/* Icon settings - remove if not needed*/
.float-container .icon:before {
    font-family: "Font Awesome 5 Free";
    margin-right: 10px;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.icon.one:before {
    content: "\f4ad";
}

.icon.two:before {
    content: "\f022";
}

.icon.three:before {
    content: "\f1d8";
}

.notelist {
    font-size: 14px;
    font-family: Tahoma, Courier, monospace;
}

.notelistheader {
    text-decoration: underline;
    font-weight: bold;
}

/* Media queries */
@media screen and (max-width:468px)
{
    /* https://codepen.io/iamfran/pen/zQwJYp */
    .float-container
    {
        display: none;
    }

    .icon.one, .icon.two, .icon.three
    {
        display: none;
    }


    /*.float-container .icon:last-child {*/
    /*    display: none;*/
    /*}*/
    /*.float-container*/
    /*{*/
    /*    position: fixed;*/
    /*    top: auto;*/
    /*    bottom: 0;*/

    /*    display: -webkit-box;*/
    /*    display: -ms-flexbox;*/
    /*    display: flex;*/
    /*    -ms-flex-direction: row;*/
    /*    flex-direction: row;*/

    /*    width: 100%;*/

    /*    -webkit-box-orient: vertical;*/
    /*    -webkit-box-direction: normal;*/
    /*    -ms-flex-direction: auto;*/
    /*    -webkit-box-align: auto;*/
    /*    -ms-flex-align: auto;*/
    /*    align-items: auto;*/
    /*}*/
    /*.float-container a.icon*/
    /*{*/
    /*    right: 0;*/
    /*    bottom: 0;*/

    /*    width: 100%;*/
    /*    margin-right: 0;*/
    /*    margin-bottom: 0;*/
    /*    padding: 5px;*/

    /*    border-radius: 0;*/
    /*    -webkit-box-shadow: 0 0 0 #7d7d7d;*/
    /*    box-shadow: 0 0 0 #7d7d7d;*/
    /*    -webkit-box-pack: center;*/
    /*    -ms-flex-pack: center;*/
    /*    justify-content: center;*/
    /*    border-left: 1px solid darkorange;*/
    /*    border-right: 1px solid darkorange;*/
    /*}*/
}
