.quick-nav_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
    transition: right 300ms ease;
    cursor: pointer;
}

.sticky-box {
    position: relative;
    height: 60px;
    display: block;
    box-shadow: 0 0 8px rgb(0 0 0 / 15%);
    padding: 8px;
    transition: all .3s ease;
}

.sticky-box.sticky-box-image {
    aspect-ratio: 1;
}

.sticky-box .sticky-box_icon,
.sticky-box .sticky-box_icon svg {
    display: flex;
    height: 100%;
}

.sticky-box:hover .sticky-box_content {
    display: flex;
    flex-direction: column;
    height: auto;
    width: fit-content;
    padding: 20px;
    align-items: flex-start;
    height: 100%;
}

.sticky-box_content {
    display: none;
    position: absolute;
    right: 100%;
    top: 0;
    width: auto;
    height: 100%;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    background-color: #fff;
    box-shadow: -7px 0px 8px 0px rgb(0 0 0 / 10%);
    font-size: 16px;
    font-weight: 600;
    color: #626262;
}

.quick-nav_wrapper .sticky-box_content a {
    color: #626262;
    text-decoration: underline;
}

@keyframes pop_up {
    0% {
        transform: scale(0.8);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 100000;
}

.modal-content {
    position: relative;
    color: black;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.modal-close-btn {
    position: absolute;
    top: -10px;
    right: 5px;
    font-size: 30px;
    cursor: pointer;
    color: black;
}