/* BASIC css start */
.thumb-selector {
    position: fixed;
    bottom: 120px;
    right: 28px;
    width: 61px;
    height: 120px;
    background: #fff;
    border: .5px solid #000;
    border-radius: 60px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .13);
    z-index: 5;
    display: flex !important;
    flex-direction: column;
}
.thumb-selector.hide{display:none !important;}
.thumb-selector>div {
    padding: 3px;
    width: 100%;
    height: 50%;
    box-sizing: border-box;
}

.thumb-selector>div button {
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 14px;
    background-color: transparent;
    border-style: none;
}

.thumb-selector>div.active button {
    background-color: var(--main-color);
    color: #fff;
    border-radius: 60px;
}

@media screen and (max-width: 960px) {
    .thumb-selector {
        position: fixed;
        left: 50%;
        right: unset;
        bottom: 50px;
        width: 133px;
        height: 43px;
        border-radius: 30px;
        transform: translateX(-50%);
        font-size: 14px;
        flex-direction: row;
    }

    .thumb-selector>div {
        width: 50%;
        height: 100%;
    }

    .thumb-selector>div.active.right {
        padding-left: 0;
    }

    .thumb-selector>div.active button {
        background-color: var(--main-color);
        color: #fff;
        border-radius: 60px;
    }
} 
/* BASIC css end */

