.header {
    position: relative;
    background: #cbcbcb;
    backdrop-filter: blur(3px);
    z-index: 2;
    font-family: 'Roboto Mono', sans-serif;
}

.header-second {
    background: transparent;
    backdrop-filter: unset;
}

.header__container {
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-second .header__container {
    padding-right: 20px;
    padding-top: 20px;
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header__sticker {
    width: 128px;
    height: 98px;
    left: -50px;
    top: -18px;
    z-index: 2;
}

.header__main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header__title {
    color: #757575;
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    line-height: 17px;
    max-width: 160px;
}

.header__messages {
    position: relative;
    margin-left: 10px;
    width: 0;
    height: 0;
    flex: 0 0 0;
    transform: scale(0);
    transition: all 0.15s ease;
}

.header__messages.active {
    transform: scale(1);
    width: 41px;
    height: 29px;
    flex: 0 0 41px;
}

.header__messages span {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #ff7bab;
    top: -12.5px;
    left: 50%;
    transform: translateX(-50%);
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
}

.header__messages span.active {
    /* transform: translateX(-50%) scale(1); */
}

.header__menu-btn {
    display: flex;
    width: 39px;
    flex: 0 0 39px;
    height: 39px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #01b988;
    box-shadow: 0px 2px 7px 0px #688e38;
    margin-left: 16px;
}

.header__menu-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    transform: translate3d(0, 100%, 0);
    max-height: 0;
    background: #ffffff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: all 0.15s ease;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.header__menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background-color: red;
}



.header__menu-nav.active {
    max-height: 600px;
    padding-top: 18px;
    padding-bottom: 40px;
    overflow-y: auto;
    z-index: 1001;
}

.nav-menu {
    color: #757575;
    text-align: right;
    font-family: var(--font-inter);
    font-size: 22px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.4px;
}

.nav-menu .menu__list {
    width: 225px;
    padding-right: 15px;
}

.header .menu__list {
    transition: opacity 0.2s ease;
    opacity: 0;
}

.header .menu__list li {
    padding-bottom: 8px;
    padding-top: 8px;
    border-bottom: 1px solid #d9d9d9;
}

.notify__title {
    width: 100%;
    text-align: center;
    color: var(--color-green-dark);
    font-size: 26px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.572px;
    padding-bottom: 15px;
    padding-top: 20px;
    border-bottom: 1px solid #cbcbcb;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.notify__title  button{
    width: unset;
}

#notifyMenu.header__menu-nav {
    align-items: center;
    text-align: left;
}

#notifyMenu.header__menu-nav.active {
    padding-bottom: 30px;
}



/* 
#notifyMenu.header__menu-nav .notify__readAll-button {
    background: #cbcbcb;
    color: #757575;
    font-size: 13px;
    font-weight: 400;
    line-height: 30px;
    width: max-content;
    padding: 1px 28px;
    border-radius: 3px;
} */

.notify__btns {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.notify__btns button {
    background: #cbcbcb;
    color: #757575;
    font-size: 13px;
    font-weight: 400;
    line-height: 30px;
    width: max-content;
    padding: 1px 28px;
    border-radius: 3px;
}

.notify__btns a{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
}
.notify__btns img {
    width: 100%;
}

#notifyMenu .nav-menu__header {
    width: 100%;
}

.header .notify__list {
    width: 100%;
    margin-bottom: 20px;
}

.header .notify__list .notify__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    padding: 8px 24px 8px 10px;
    border-bottom: 1px solid #cbcbcb;
    transition: background 0.2s ease;
    cursor: pointer;
}

.header .notify__list .notify__item.read {
    background: rgba(217, 217, 217, 0.3);
    cursor: unset;
}

.notify__item-text {
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.342px;
}

.notify__item-date {
    color: #acacac;
    font-size: 13px;
    font-weight: 400;
    line-height: 30px;
}

.notify__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    height: 32px;
    pointer-events: none;
}

.nav-menu a {
    color: #757575;
    transition: color 0.15s ease;
}

.nav-menu a:hover,
.nav-menu b {
    color: #ff7bab;
}

.nav-menu__header {
    width: 225px;
    padding-bottom: 10px;
    padding-right: 15px;
    border-bottom: 1px solid #d9d9d9;
}

.nav-menu__close-btn {
    margin-left: auto;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__menu-btn svg,
.nav-menu__close-btn svg {
    pointer-events: none;
}


.active-requests {
    display: none;
    align-items: center;


    position: absolute;
    bottom: -20px;
    right: -5px;
}

.active-requests span {
    background-color: #FF7BAB;

    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #000;
}

.active-requests span:first-child{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 15px;
}

.active-requests span:last-child{
    font-style: italic;
    padding: 0 10px;
    transform: translateX(-5px);
    line-height: 1.5;
}

.active-requests span:last-child b {
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
}


.requests-list li {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    background-color: #e4e1e1;
    padding: 10px;
}


.modal-requests__title {
    padding: 10px 0;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
}


.requests-list {
    max-height: 400px;
    overflow-y: auto;

    display: flex;
    flex-direction: column;
    gap: 5px;
}



.requests-list__number{
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.requests-list__time{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;

    font-size: 12px;
    font-weight: 400;
    color: #000;
}

.requests-list__atdate{
    font-size: 12px;
    font-weight: 400;
    color: #000; 
}

.requests-list__content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.requests-list li button {
    align-self: center;
    padding: 7px;

    background: #c01313;
    color: #fff;
    max-width: 90px;
    flex-shrink: 0;

}

dialog.modal-choose {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    padding: 10px;
    background-color: #fff;
    max-width: 320px;
    width: 100%;
}
dialog.modal-choose::backdrop {
    background-color: rgba(0, 0, 0, 0.75);
}


.modal-choose__title {
    margin-bottom: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.modal-choose__btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.modal-choose__btns button{
    padding: 6px;
    flex: 0 1 calc(50% - 10px);
    line-height: 1;
}