.write__nw {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 100;
}
.write__nw__button {
    border-radius: 50px;
    padding: 8px;
    background: #F4F8F9;
    gap: 10px;
    display: flex;
    align-items: center;
    transition: all 300ms ease;
    cursor: pointer;
}
.write__nw__button__logo {
    min-width: 44px;
    max-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
}
.write__nw__button__logo img {
    width: 100%;
    max-width: 24px;
}
.write__nw__button__icon {
    min-width: 36px;
    max-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.write__nw__button__icon svg {
    transition: all 300ms ease;
    width: 100%;
    max-width: 10px;
}
.write__nw__button__icon svg path {
    transition: all 300ms ease;
    fill: rgba(4, 38, 70, 0.5);
}
.write__nw__button__content p {
    font-family: "Inter", serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 120%;
    margin: 0 0 4px 0;
    color: #042646;
}
.write__nw__button__content ul {
    display: flex;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
    gap: 12px;
}
.write__nw__button__content ul li {
    display: block;
    padding: 0;
    margin: 0;
    color: rgba(4, 38, 70, 0.5);
    font-family: "Inter", serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    position: relative;
    transition: all 300ms ease;
}
.write__nw__button__content ul li + li:before {
    content: '';
    position: absolute;
    top: 5px;
    left: -6px;
    width: 2px;
    height: 2px;
    background: rgba(4, 38, 70, 0.5);
    border-radius: 50%;
}
.write__nw__button:hover {
    background: #F1F6F8;
}
.write__nw__button:hover .write__nw__button__content ul li {
    color: rgba(4, 38, 70, 0.7);
}
.write__nw__button:hover .write__nw__button__icon svg path {
    fill: rgba(4, 38, 70, 1);
}
.write__nw__dropdown {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    margin: 0 0 8px 0;
    background: linear-gradient(180deg, #F4F8F9 0%, #F3EFF8 100%);
    backdrop-filter: blur(12px);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.2);
    border-radius: 40px;
    padding: 8px;
    visibility: hidden;
    opacity: 0;
    transition: all 300ms ease;
}
.write__nw__dropdown.open {
    opacity: 1;
    visibility: visible;
}
.write__nw__dropdown p.title {
    font-family: "Inter", serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    color: #042646;
    margin: 8px;
}
.write__nw__dropdown__list {
    display: block;
    padding: 0;
    margin: 0;
}
.write__nw__dropdown__item {
    display: block;
    padding: 0;
    margin: 4px 0 0;
}
.write__nw__dropdown__link {
    transition: all 300ms ease;
    padding: 8px;
    display: flex;
    gap: 10px;
    border-radius: 100px;
    align-items: center;
    text-decoration: none;
}
.write__nw__dropdown__link__icon {
    min-width: 44px;
    max-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
}
.write__nw__dropdown__link__icon {
    width: 100%;
    border-radius: 50%;
}
.write__nw__dropdown__link__arrow {
    min-width: 36px;
    max-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.write__nw__dropdown__link__arrow img {
    width: 100%;
    max-width: 6px;
    transition: all 300ms ease;
    opacity: 0;
}
.write__nw__dropdown__link__text {
    width: 100%;
}
.write__nw__dropdown__link__text .title {
    font-family: "Inter", serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    color: #042646;
    display: block;
    margin: 0 0 5px 0;
}
.write__nw__dropdown__link__text .text {
    font-family: "Inter", serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    color: #042646;
    display: block;
    margin: 0;
}
.write__nw__dropdown__link:hover {
    background: rgba(0, 0, 0, 0.05);
}
.write__nw__dropdown__link:hover .write__nw__dropdown__link__arrow img {
    opacity: 1;
}
.write__nw__button.active .write__nw__button__icon svg {
    transform: rotate(-180deg);
}
.write__nw__button.active  {
    background: #F1F6F8;
}
.write__nw__button.active .write__nw__button__content ul li {
    color: rgba(4, 38, 70, 0.7);
}
.write__nw__button.active .write__nw__button__icon svg path {
    fill: rgba(4, 38, 70, 1);
}

@media screen and (max-width: 575px) {
    .write__nw__button__content ul {
        display: none;
    }
    .write__nw {
        right: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 281px;
    }
    .write__nw__button {
        width: 220px;
        margin: 0 auto;
    }
    .write__nw__button__content p {
        margin: 0;
    }
    .write__nw__dropdown__link {
        background: #fff !important;
    }
    .write__nw__dropdown__link__arrow img {
        opacity: 1;
    }
}