.burguer-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.btn-line {
    width: 26px;
    height: 3px;
    background-color: #333333;
    margin: 3px;
    transition: all 0.3s;
}

.change .btn-line:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 8px);
}

.change .btn-line:nth-child(2) {
    opacity: 0;
}

.change .btn-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.header {
    display: flex;
    /* justify-content: top; */
    align-items: center;
    flex-direction: column;
    width: 80px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;

    background-color: #ffffff;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(228, 228, 228);
}

.header img {
    cursor: pointer;
}

.header img {
    box-sizing: border-box;
}

.top-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.meet-oscar-logo {
    width: 48px;
    margin-top: 32px;
}


.sidebar-divider {
    width: 48px;
    height: 1px;
    background-color: #a9b2c8;
    margin-top: 24px;
}

/*.sidebar {*/
/*    !*width: 205px;*!*/
/*    height: 100vh;*/
/*    !*background-color: #333;*!*/
/*    */
/*}*/

.middle-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.middle-section a {
    transition: 200ms all;
    margin-bottom: 16px;
}

.middle-section a:hover {
    filter: contrast(300);
}

.gmail-logo,
.outlook-logo,
.upload-icon,
.email-account-icon,
.knowledge-base-icon {
    width: 32px;
}

a:has(.gmail-logo) {
    margin-bottom: 0;
}

.bottom-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.settings-icon {
    width: 36px;
}

.current-user-picture {
    width: 40px;
    border-radius: 36px;
    align-items: center;
    /* margin-top: 24px; */
}

.header svg:not(.meet-oscar-logo):not(.current-user-picture) {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.header svg:not(.meet-oscar-logo):not(.current-user-picture):hover {
    transform: scale(0.85);
    /* border: 1px solid #7d97b344; */
    /* border-radius: 8px; */
    /* box-shadow: 0 0 5px #202A35; */
}

.active:svg {
    transform: scale(0.8);
    border: 1px solid #7d97b344;
    border-radius: 8px;
    box-shadow: 0 0 5px #202A35;
    padding: 5px;
}

.menu {
    display: inline-block;
    padding: 9px;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.3s ease;
    margin-top: 15px;
    width: 36px;
}

.menu.active {
    background-color: #c0c4dc5b;
}

.menu-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}