.sidenav {
    height: 95%;
    width: 200px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    background-image: linear-gradient(to top, #09203f 0%, #06395f 100%);
    background-size: cover;
    overflow-x: hidden;
    overflow-y: scroll;
}

.menu {
    height: 5%;
    width: 200px;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    background-color: #888888;
    background-size: cover;
    overflow-x: hidden;
    overflow-y: hidden;
}

.menu img:hover {
    cursor: pointer;
}

@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 16px;}
}

.main {
    top: 0;
    position: absolute;
    left: 200px;
    right: 0;
    height: 100%;
    overflow: hidden;
    overflow-y: hidden;
    background-color: #e8e8e8;
}

input[type="reset"] {
    /* background-color: #ddd; */
    border: none;
    /* padding: 10px; */
    font-size: 8px;
    cursor: pointer;
    border-radius: 5px;
}

/* The switch - the box around the slider */
.switch {
    position: absolute;
    display: inline-block;
    width: 60px;
    height: 34px;
    top: 7.5px;
    right: 10px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}