/* User Account DropDown */

:root {
    --gray: #555;
    --purple: #1a35e6;
    --green-blue: #92effd;
    --white: #fff;
}

.dropdown-container {
    /* width: 100%; */
    /* min-height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: linear-gradient(45deg, var(--purple), var(--green-blue)); */
}

.dropdown-navigation {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    border-radius: 5px;
    background: #1f1d2b;
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: height 0.5s, width 0.5s;
    transition-delay: 0s, 0.75s;
    z-index: 100;
}

.dropdown-navigation .dropdown-user-box {
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: 0.5s;
    transition-delay: 0.5s;
}

.dropdown-navigation .dropdown-user-box .dropdown-username {
    /* position: absolute; */
    font-size: 1.2rem;
    white-space: nowrap;
    color: #138cf7;
    margin-left: 17px;
}

.dropdown-navigation .dropdown-user-box .dropdown-image-box {
    position: relative;
    min-width: 30px;
    height: 30px;
    background: var(--white);
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid var(--white);
    margin-left: 12px;
}

.dropdown-navigation .dropdown-user-box .dropdown-image-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-navigation .dropdown-menu-toggle {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.dropdown-navigation .dropdown-menu-toggle::before {
    content: "";
    position: absolute;
    width: 32px;
    height: 2px;
    background: var(--gray);
    transform: translateY(-10px);
    box-shadow: 0 10px var(--gray);
    transition: 0.5s;
}

.dropdown-navigation .dropdown-menu-toggle::after {
    content: "";
    position: absolute;
    width: 32px;
    height: 2px;
    background: var(--gray);
    transform: translateY(10px);
    transition: 0.5s;
}

.dropdown-menu {
    position: absolute;
    width: 100%;
    height: calc(100% - 60px);
    margin-top: 60px;
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    font-size: 1rem;
    text-decoration: none;
    color: #138cf7;
}

.dropdown-menu li a ion-icon {
    font-size: 1.5rem;
}

.dropdown-menu li a:hover {
    color: var(--purple);
}

.dropdown-navigation.active .dropdown-menu-toggle::before {
    transform: translateY(0px) rotate(45deg);
    box-shadow: none;
}

.dropdown-navigation.active .dropdown-menu-toggle::after {
    transform: translateY(0px) rotate(-45deg);
}

.dropdown-navigation.active,
.dropdown-user-box {
    width: 300px;
    height: 350px;
    transition: width 0.5s, height 0.5s;
    transition-delay: 0s, 0.2s;
    /* ........................
 */
    width: calc(15% - 60px);
    transition-delay: 0s;
}

/* .dropdown-navigation.active .dropdown-user-box {
    width: calc(100% - 60px);
    transition-delay: 0s;
} */

/* ..................... */