﻿/* The side navigation menu */

.userMenu_container {
    width: 100%;
    padding-right: 4px;
    padding-left: 4px;
    margin-right: auto;
    margin-left: auto;
}

.userMenu {
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 123445678; /* Stay on top */
    top: 60px; /* Stay at the top */
    right: 0;
    background-color: white; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 1px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
    height: 95vh;
}

    /* The navigation menu links */
    .userMenu a {
        padding: 8px 8px 8px 14px;
        text-decoration: none;
        font-size: 16px;
        color: white;
        display: block;
        transition: 0.3s;
    }

        /* When you mouse over the navigation links, change their color */
        .userMenu a:hover {
            color: #5191C8;
        }

    /* Position and style the close button (top right corner) */
    .userMenu .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
    }

/* 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) {
    .userMenu {
        padding-top: 15px;
    }

        .userMenu a {
            font-size: 18px;
        }
}

.userCard {
    box-shadow: 0 0 1rem 0 rgb(0 0 0 / 8%);
    padding: 14px;
    color: black;
    display: flex;
}

.userMenu_btn_profile {
    position: absolute;
    left: 23em;
}

.userMenu_btn_panel_prifle {
    position: absolute;
    top: 50%;
}
.profile_image {
    width: 5rem;
    height: 5rem;
    display: block;
    font-size: 2.5rem;
    background-color: #4bb2f6;
    color: #fff !important;
    border-radius: 2.5rem;
    text-align: center;
    font-weight: normal;
    margin: auto;
}

.profile_title {
    line-height: 2rem;
    letter-spacing: .12px;
    font-family: Source Sans Pro;
    font-weight: 400;
    font-size: .875rem;
    color: #00185e;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    min-width: 2rem;
    max-width: 100%;
    display: inline-block;
    padding: 0 1rem;
    position: relative;
    text-align: left;
    border: none;
    border-radius: 1rem;
    background-color: #bef1ff;
}

.userName {
    margin-bottom: 2px;
    font-size: 16px;
    font-weight:bold;
}

    .userName:hover {
    }

.userLinks {
    border-top: 1px solid black;
    text-align: left;
}

    .userLinks > a {
        font-size: 14px;
    }

.user_Information {
    font-size: 14px;
    text-align: center;
    color: #8E9296;
    margin: 14px;
}

.user_Information P {
    margin-bottom: 5px;
}

.user_Shortcut {
    cursor: pointer;
    transition: all ease 1s;
    border-radius: 12px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.shortcut_blue {
    background-color: #0d6efd;
    color: white;
}

.userMenu_actions {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .userMenu_actions button {
        margin-bottom: 13px;
    }

.userMenu_container hr {
    border-top: 3px solid rgba(0,0,0,.1);
}

.userMenu_preferencies_container {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 15px !important;
}

.preference_action_container {
    font-size: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
    .preference_action_container p {
        color: #8E9296;
    }