/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Apr 10, 2023, 8:47:03 PM
    Author     : kimniyom
*/

.action {
    margin-top: -3px;
    float: right;
    padding-left: 0px;
    padding-bottom: 0px;
}

.action .profile {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.action .profile img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.action .menu {
    position: absolute;
    top: 120px;
    padding: 10px 20px;
    background: #fff;
    width: 250px;
    box-sizing: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
    margin-left: -150px;
    margin-top: 5px;
    border:0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; 
}

.action .menu.active {
    top: 60px;
    visibility: visible;
    opacity: 1;
}

/*
.action .menu::before {
    content: "";
    position: absolute;
    top: -5px;
    right: 28px;
    width: 20px;
    height: 20px;
    background: #fff;
    transform: rotate(45deg);
}
*/
.action .menu h3 {
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding: 20px 0;
    font-weight: 500;
    color: #555;
    line-height: 1.5em;
    font-family: anakotmai;
}

.action .menu h3 span {
    font-size: 14px;
    color: #cecece;
    font-weight: 300;
    font-family: anakotmai;
}

.action .menu ul li {
    list-style: none;
    padding: 0px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.action .menu ul li img {
    max-width: 20px;
    margin-right: 10px;
    opacity: 0.5;
    transition: 0.5s;
}

.action .menu ul li:hover img {
    opacity: 1;
}

.action .menu ul li a {
    display: inline-block;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: 0.5s;
    font-family: anakotmai;
    font-size: 16px;
}

.action .menu ul li:hover a {
    color: #cc0000;
}
