.nav-right-wrapper {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.nav-right-wrapper #nav-main-right {
    display: flex;
    gap: 16px;
}

.nav-main-right-item {
    padding: 5px;
    background: white;
    border-radius: 12px;
    border: 1px solid #D9EEF3;
}

.nav-main-right-item-feedback{
    background: linear-gradient(to right, #FD855980, #FD8559);
    padding: 8px;
    border-radius: 8px;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-right-wrapper #nav-main-right .nav-main-right-item {
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-right-wrapper #nav-main-right .nav-main-right-item #btn-notifications {
    width: 24px;
    height: 24px;
    display: flex;
    position: relative;
    cursor: pointer;
}

#btn-notifications {
    display: flex;
    align-items: center;
}

#btn-upgrade{
    background-color: #FD8559;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
}

.nav-right-wrapper #nav-main-right .nav-main-right-item #btn-notifications img {
    width: 100%;
    height: auto;
}

.nav-right-wrapper #nav-main-right .nav-main-right-item #btn-notifications .notifications-count {
    width: fit-content;
    height: 13px;
    min-width: 14px;
    position: absolute;
    padding: 0 2px;
    right: -2px;
    top: 2px;
    font-size: 10px;
    background-color: #FD8559;
    color: #FFFFFF;
    border-radius: 100px;
    align-items: center;
    text-align: center;
}

@media (max-width: 767px){
    .nav-right-wrapper #nav-main-right #btn-upgrade-list-item {
        display: none;
    }
}

#mob-profile-options-container {
    width: fit-content;
    height: fit-content;
    position: fixed;
    z-index: 1;
    right: 10px;
    top: 60px;
    background-color: var(--color-background);
    border-bottom: 1px solid #eaeaea;
    box-shadow: 0px 4px 13px -4px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 10px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mob-options-expanded {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

#mob-profile-options-container ul {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

#mob-profile-options-container ul li {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    padding: 8px;
    align-items: center;
    justify-content: end;
    font-size: 14px;
    cursor: pointer;
}

#mob-profile-options-container ul li svg {
    width: 25px;
    height: 25px;
    margin-left: 10px;
}
