.content-toggle {
    position: fixed;
    right: 0;
    top: 250px;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.content-toggle__button {
    width: 74px;
    margin: 3px 0;
    padding: 20px 10px 20px 40px;
    writing-mode: vertical-lr;
    transform: rotate(180deg) translateX(-30px);
    background-color: #ffffff;
    color: #414042;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: -1px 0 4px 0 hsl(252deg 4.98% 69.91%) !important;
}

.content-toggle__button.is-active, .content-toggle__button:hover {
    color: #ffffff;
    background-color: #DC0032;
    transform: rotate(180deg) translateX(-20px);
}

@media screen and (max-width: 1023px) {
    .content-toggle {
        display: none;
    }
}
