/* The side navigation menu */
.menu {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0;
    right: 0;
    padding-bottom: 30px;
    background-color: #FFFFFF; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}
/* Position and style the close button (top right corner) */
.menu .closebtn {
    position: absolute;
    top: 0px;
    right: 15px;
    font-size: 24px;
    margin-left: 50px;
    color: black;
    font-weight: 600;
}
img.logo-nav {
    width: 158px;
}

.menu .frame {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    align-self: stretch;
    width: 100%;
    position: relative;
    flex: 0 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.menu .img {
    width: 290px;
    position: relative;
    flex: 0 0 auto;
}

.frame .div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    width: 100%;
    position: relative;
    flex: 0 0 auto;
}
.frame .text-wrapper {
    position: relative;
    width: 240px;
    height: 30px;
    margin-top: -1px;
    font-family: "TT Lakes Medium";
    font-weight: 500;
    color: var(--gray-main-text);
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
    border-bottom: 1px solid #F6F6F6;
}

.text-wrapper:hover {
    color: var(--main-color);
}
.dark-theme {
    position: relative;
    width: 240px;
    height: 30px;
    margin-top: -1px;
    font-family: "TT Lakes Medium";
    font-weight: 500;
    color: var(--gray-main-text);
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
    border-bottom: 1px solid #F6F6F6;
    margin-top: 140px;
    display: none;
}

img.knob {
    float: right;
    width: 40px;
}

.frame .social-nav {
    gap: 10px;
    display: inline-flex;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
    margin-top: 140px;
}

.frame .social-networks {
    position: relative;
    width: 23px;
    height: 23px;
}
.frame .group-wrapper {
    border-radius: 4px;
    position: relative;
    width: 23px;
    height: 23px;
}
.frame .group {
    height: 23px;
}
.frame .rectangle {
    position: absolute;
    width: 24px;
    height: 23px;
    top: 5px;
    left: 4px;
    background-color: var(--bg-color);
    border-radius: 4px;
}
.frame .vector {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 0;
    left: 0;
}
.div-70.s {
    margin-left: 45px;
    background: var(--light-container-color);
    border-radius: 4px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .menu {
        padding-top: 15px;
    }
    .menu a {
        font-size: 18px;
    }
}



