:root {
    --color-primary: #25ad52;
    --dashboard-asidebar-width: 360px;
    --dashboard-sidenav-width: 280px;
    --dashboard-sidenav-bg: #2a363c;
    --input-shadow-active: 45, 208, 98;
}

a > *, button > * {
    pointer-events: none;
}

.dashboard-wrapper {
    width: 100%;
    position: relative;
}

.dashboard-wrapper-contain {
    width: calc(100% - calc(var(--dashboard-sidenav-width) + var(--dashboard-asidebar-width)));
    margin-left: var(--dashboard-sidenav-width);
    padding: 1rem 1.5rem;
    position: relative;
}

.dashboard-aisdebar {
    width: var(--dashboard-asidebar-width);
    top: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    background-color: #f6f6f6;
}

.dashboard-sidenav {
    width: var(--dashboard-sidenav-width);
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: flex;
    flex-direction: column;
    z-index: 999999;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    background-color: var(--dashboard-sidenav-bg);
}

.dashboard-sidenav-top {
    width: 100%;
    padding: 1rem 1.5rem;
    height: 10%;
}

.dashboard-sidenav-footer {
    height: 15%;
    margin-top: auto;
}

.sidenav-link-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    color: #fff !important;
    background-color: var(--color-primary);
}

.dashboard-sidenav-nav {
    height: 75%;
    padding: 2rem 0 1rem;
    display: flex;
    align-items: flex-start;
}

.dashboard-sidenav-links {
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.6rem;
    background-color: #40515A;
    border-radius: 0 100px 100px 0;
}

.dashboard-sidenav-tooltips {
    display: flex;
    width: 70%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    padding-left: 1rem;
    gap: 1rem;
}

.sidenav-link {
    width: 60px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.5);
}

.sidenav-link.active {
    color: #fff;
    background-color: #25ad52;
    pointer-events: none;
}

.sidenav-tooltip {
    height: 60px;
    display: flex;
    align-items: center;
    font-family: 'Poppins';
    color: rgba(255, 255, 255, 0.5);
}

.sidenav-tooltip.active {
    color: #25ad52;
    font-weight: 900;
    pointer-events: none;
}

.sidenav-tooltip>* {
    margin: 0;
}

.sidenav-tooltip:hover,
.sidenav-link:hover {
    color: #fff;
}

.dashboard-ticket {
    width: 90%;
    height: 98%;
    margin: auto;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    background-color: #40515A;
}



.dashboard-searchable {
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-family: 'Poppins';
    font-weight: 300;
    color: #2a363c;
    background-color: #fdfdfd;
    transition: border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}

.dashboard-searchable:focus {
    border-color: rgba(45, 208, 98, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(45, 208, 98, 0.1);
}


.input-feedback {
    top: 50%;
    right: 2rem;
    position: absolute;
    background-color: #fff;
    transform: translateY(-50%);
}


.category-item {
    width: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    background-color: #87949c16;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 8px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.category-item img {
    width: 70%;
    object-fit: contain;
    transition: 0.15s ease-in-out;
}

.category-item:hover img {
    transform: scale(1.1);
}

.category-items {
    display: flex;
    align-items: center;
    overflow-x: hidden;
}

.text-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}



.dish-item {
    width: 165px;
    min-width: 165px;
    height: 180px;
    position: relative;
    border-radius: 10px;
    background-color: #40515A;
    padding: 1rem;
}

.dish-item .contain_-img {
    top: -20%;
    position: absolute;
    transition: top 0.25s ease-in-out;
}

.dish-item .dish-price {
    transition: 0.25s ease-in-out;
}

.dish-item:hover .contain_-img {
    top: -25%;
}

.dish-item:hover .dish-price {
    font-size: 1.15rem;
}

.dish-name {
    font-size: 13px;
    color: white;
}



.see-more-link i {
    text-decoration: none !important;
    padding: 0.65rem 0.75rem;
    color: #40515A;
    border: 1px solid #40515A;
    font-size: 16px;
    border-radius: 0.15rem;
}

.see-more-link.filled i {
    color: #fff;
    background-color: #40515A;
}


.ticket-btn-validate {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    background-color: #25ad52;
    color: #fff;
    font-family: 'Poppins';
    font-weight: 600;
}

.ticket-option {
    font-family: 'Poppins';
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.option-total {
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}


.dashboard-ticket-options {
    padding-top: 0.5rem;
    border: 1px dashed rgba(255, 255, 255, 0.5);
}
