
.ce{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.p-wrapper{
    position: relative;
}
.p-wrapper:hover .drop-down{
    color: orangered;
    visibility: visible;
    opacity: 1;
}

.ce:hover .fa-angle-down{
    transform: rotate(180deg);
    color: orangered;
}

.drop-down{
    width: 400px;
    position: absolute;
    top: 62px;
    transform: scale(1);
    display: flex;
    visibility: hidden;
    flex-direction: column;
    gap: 8px;
    border-radius: 12px;
    box-shadow: 0px 4px 6px rgba(51, 51, 51, 0.432);
    padding: 24px 18px;
    background: rgb(255, 255, 255);
    opacity: 0;
    transition: 0.5s ease;
    color: var(--bck);
}

.drop-down.active{
    width: 100%;
    height: 100%;
    visibility: visible;
}

.drop-down .opt{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 2px;
    position: relative;
    padding: 6px;
    transition: 0.5s ease;
}

.opt:hover{
    border-radius: 6px;
    background: rgb(50, 114, 41);
    color: #fff;
}

.opt a{
    border: none;
    color: var(--bck);
    border-radius: 0;
    position: relative;
}

.opt a:hover{
    color: #fff;
}

.opt:hover a{
    color: #fff !important;
    text-decoration: underline;
}


.opt .fa-leaf,
.opt .fa-user-friends, .opt .fa-briefcase, 
.opt .apple-alt, .opt .chalkboard-teacher,
.opt .faucet .fa-hand-holding-heart,
.opt .fa-people-group{
    border: 1px solid rgb(252, 136, 28);
    padding: 12px;
    border-radius: 12px;
    position: relative;
}

.opt #hands, #users-icon,#nutri,#teach,#faucet,#heart{
    border: 1px solid rgb(255, 133, 19);
    padding: 12px;
    border-radius: 12px;
    position: relative;
}

.opt:hover #users-icon, .opt:hover #hands,
.opt:hover #nutri, .opt:hover #teach,
.opt:hover #faucet, .opt:hover #heart,.opt:hover .fa-briefcase,
.opt:hover .fa-people-group, .opt:hover .fa-leaf {
    color: #fff;
    border: 1px solid #fff;
}

@keyframes anim {
    0%{
        background-position: -612px;
    }
    100%{
        background-position: 612px;
    }
}

.fa-angle-down{
    transition: 0.5s ease;
}


/* hanger */
.hanger{
    display: flex;
    align-items: center;
    flex-direction: column;
    position: fixed;
    right: 20px;
    bottom: 10%;
    padding: 12px;
    border-radius: 16px;
    background: rgb(255, 255, 255);
    box-shadow: 0px 4px 12px rgba(255, 94, 0, 0.384);
    overflow: hidden;
    transition: 0.5s ease;
    z-index: 999;
}

.hanger-box{
    width: 200px;
    display: none;
    flex-direction: column;
    gap: 10px;
    border: 2px solid orangered;
    border-radius: 12px;
    padding: 12px;
    backdrop-filter: blur(6px);
    position: relative;
    margin-top: 12px;
}

.hanger-box h3{
    color: green;
}

.hanger-box.active{
    display: flex;
    animation: up 0.5s ease;
}

@keyframes up {
    0%{
        width: 0%;
        opacity: 0;
    }
    100%{
        width: 200px;
        opacity: 1;
    }
}

.box{
    width: 100%;
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
}

.box .icon{
    width: 20px;
    padding: 6px;
    border-radius: 4px;
    color: #fff;
    background: radial-gradient(rgb(16, 158, 3),rgb(53, 53, 53));
}

.box p{
    color: rgb(26, 26, 26);
}

.op{
    width: 100%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 8px;
    border-radius: 12px;
    transition: 1s ease;
}

.op:hover{
    cursor: pointer;
    background: #fff;
    color: #000;
}

.op:hover .fa-angle-up{
    color: #000;
}

.op .fa-angle-up{
   color: #fff;
}