/* https://codepen.io/coderiderr/pen/LYWgXxx */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
@import url('https://cdn-uicons.flaticon.com/uicons-regular-rounded/css/uicons-regular-rounded.css');
.dropDown_container ul {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
}

a {
    text-decoration: none;
}

.dropDown_container {
    width: 305px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s opacity 0.5s;
}

.dropDown_container .nav {
    display: flex;
    align-items: center;
}

.dropDown_container .nav h3 {
    position: relative;
    margin-right: 30px;
    font-size: 16px;
    color: #434343;
}

.dropDown_container .nav h3::after {
    position: absolute;
    content: "";
    top: 0;
    right: -15px;
    height: 100%;
    width: 2px;
    background: #43434348;
}

.dropDown_container .nav {
    position: relative;
    height: 100%;
    width: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 5px;
    border-radius: 25px;
    cursor: pointer;
}

.dropDown_container img {
    height: 30px;
    width: 30px;
    object-fit: cover;
    border-radius: 50%;
    user-select: none;
}

.dropDown_container .nav .drop i {
    transition: 0.3s;
}

.dropDown_container .nav .drop i.active {
    transform: rotate(180deg);
}

.dropDown_container .nav .drop .online {
    position: absolute;
    bottom: 7px;
    right: 28px;
    display: block;
    height: 5px;
    width: 5px;
    background: #50D030;
    border-radius: 50%;
}

.drop-box {
    width: 100%;
    background: #fff;
    border-radius: 0px 0px 7px 7px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.drop-box .user-details {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #434343
}

.drop-box .user-details::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 1px;
    width: 100%;
    background: #43434348;
}

.menu ul {
    width: 100%;
    line-height: 2;
}

.menu ul li a {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: #5B5B5B;
    width: 100%;
}

.menu ul li a i {
    margin: auto 0;
    display: block;
    font-size: 16px;
    padding-right: 10px;
}

.menu ul line {
    position: relative;
    margin-bottom: 20px;
}

.menu ul li .line {
    content: "";
    height: 1px;
    width: 100%;
    background: #43434348;
}

.menu ul li a:hover {
    color: #1a5a9b;
}

.dropDown_container.active {
    animation: dropDown 0.5s both;
}

@keyframes dropDown {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
    }
}