.header {
    width: 100%;
    height: 55px;

    background-color: #fff;
    
    border-bottom: 1px solid #e7e7e7;
    
    display: flex;
    align-items: center;

    position: fixed!important;
    z-index: 999;
}
.header .logo {
    height: 20px;
    
    margin-left: 25px;
}
.menu {
    width: 220px;
    height: calc(100% - 55px);
    margin-top: 55px;
    
    padding: 20px 10px;

    border-right: 1px solid #e7e7e7;

    overflow-y: auto;

    position: fixed!important;
}

.menu .btn {
    width: 100%;
    height: 40px;
    
    font-size: 13.33px;
    font-weight: 500;
    
    margin-bottom: 3px;
    padding-left: 25px;
    
    border-radius: 20px;
    
    display: flex;
    align-items: center;

    position: relative;
}

.menu .btn .icon {
    font-size: 25px; 
    margin-right: 10px;
}
.menu .btn:hover {
    background-color: #e7e7e7;
}
.menu .selected {
    background-color: #e7e7e7;
    transition: opacity 0.3s ease-in-out;
}
.submenu-toggle {
    float: right;
    transition: transform 0.3s ease;
    position: absolute;
    right: 15px;
}

.menu .parent {
    background-color: transparent;

    text-transform: uppercase;
}
.menu .parent .text {
    color: #000;

    font-size: 12.33px;
    font-weight: bold;
}

.account {
    height: 35px;

    font-size: 13.33px;
    font-weight: 500;

    padding: 0 11.25px 0 1.25px;

    border-radius: 16.25px;

    gap: 15px;

    outline: 1px solid #e7e7e7;

    display: flex;
    align-items: center;

    cursor: pointer;

    position: absolute;
    right: 20px;
}

.account:hover{
    background-color: #e7e7e7;
}

@media screen and (max-width: 768px) {
    .account {
        outline: none;
    }

    .nickname {
        display: none;
    }
}

.account .user {
    height: 32.5px;
    width: 32.5px;

    background-color: #1f8a70;
    color: #fff;

    font-size: 12.33px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
}

#view {
    flex: 1;
    
    position: relative;

    margin-top: 55px;
    margin-left: 220px;
}

#view .title {
    font-size: 18.5px;
    font-weight: bold;
}

.btn-add {
    width: 35px;
    height: 35px;
    
    border-radius: 50%;
    
    color: #000;
    cursor: pointer;
    
    margin-top: 5px;
    
    font-size: 17px;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-add:hover {
    background-color: #eaeaea;
}
#accountDiv {
    width: 215px;

    background-color: #fff;
    
    outline: 1px solid #e7e7e7;
    border-radius: 5px;
    
    display: none;
    
    position: absolute;
    right: 0;
    
    z-index: 99;
    top: 42.5px;
}

#accountDiv .items-container {
    padding: 5px 0;
}

#accountDiv .item {
    width: 100%;
    height: 35px;
    
    font-size: 13.33px;
    font-weight: 600;

    color: #000;
    
    display: flex;
    justify-content: left;
    align-items: center;
}

#accountDiv .item:hover {
    background-color: #f9f9f9;
}

#accountDiv .item .icon {
    font-size: 23.33px;
    
    margin: 0 10px 0 20px;
}

#accountDiv .item .text {
    font-size: 13.33px;
    font-weight: 600;
}

.account-info {
    margin-left: 10px;
    
    display: flex;
    justify-content: center;
    
    flex-direction: column;
}

.account-info .text {
    font-size: 13.33px;
    font-weight: 600;
}

.account-info .subtext {
    font-size: 13.33px;
    font-weight: 500;
}

header {
    width: 100%;
    height: 65px;

    padding: 0 20px;
    
    display: flex;
    align-items: center;

    position: relative;
}

.menu-btn {
    display: none;

    margin-left: 20px;
}

@media screen and (max-width: 768px) {
    .menu {
        width: 75%;

        background-color: #fff;

        display: none;

        position: absolute;

        top: 0;
        left: 0;

        z-index: 1000;
    }

    .menu-btn {
        display: flex;
    }

    #view {
        margin-left: 0;
    }
}