#new-site-switcher{
    position: fixed;
    z-index: 9;
    right: 0;
    top: 125px;
}
.nsw--marker{
    /*background-color: #000;*/
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.7) 100%);
    color: #fff;
    position: absolute;
    right: 0;
    padding: 20px 80px;
    border-radius: 30px 0 0 30px;
    border-left: 1px solid #fff;
    transition: 0.5s;
    cursor: default;
}
.nsw--marker a{
    color: #fff;
}
.nsw--marker--close-title{
    position: absolute;
    display: flex;
    height: 100%;
    left: 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    cursor: default;
    pointer-events: none;
    transition: 0.5s;
}
.nsw--marker--close-title>p{
    font-weight: 600;
    font-size: 20px;
    transform: rotate(270deg);
}
.nsw--marker--content{
    width: 160px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 15px;
}
.nsw--marker--content>p{
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    line-height: 19px;
}
.nsw--marker--content>a{
    background: #fff;
    color: #333;
    border-radius: 6px;
    padding: 8px;
    font-size: 16px;
    line-height: 19px;
}

.nsw--marker.__close{
    transform: translate(285px, 0);
    cursor: pointer;
}

.nsw--marker.__close .nsw--marker--close-title{
    opacity: 1;
}

.nsw--close{
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 22px;
    cursor: pointer;
}

@media(max-width: 768px) {
    #new-site-switcher {
        /*display: none !important;*/
    }
    .nsw--marker{
        padding: 10px 25px 10px 30px;
        background: #8c8c8cf5;
        border-radius: 20px 0 0 20px;
        cursor: pointer;
    }
    .nsw--marker.__close{
        transform: translate(165px, 0);
    }
    .nsw--close{
        /*display: none;*/
        font-size: 18px;
        top: 10px;
        right: 5px;
    }
    .nsw--marker--content{
        width: 135px;
    }
    .nsw--marker--content>p{
        font-weight: 400;
        font-size: 14px;
        text-align: center;
    }
    .nsw--marker--close-title{
        width: 25px;
    }
    .nsw--marker--content>a{
        padding: 5px;
        border-radius: 10px;
    }
    .nsw--marker--close-title>p{
        width: 40px;
        position: relative;
        left: -5px;
    }
}