.switch-block {
    display: flex;
    align-items: center;
    border-radius: 7px;
    background: #D9D9D9;
    padding: 5px 6px;
    max-width: 192px;
    margin-bottom: 15px;
}

.switch-btn {
    cursor: pointer;
    padding: 7px 13px;
    display: flex;
}

.switch-btn.active {
    border-radius: 3px 4px 3px 3px;
    background: #FFFFFF;
    display: flex;
}

.switch-btn.active img {
    filter: unset;
}

.switch-btn img {
    max-width: 70px;
    filter: grayscale(100%);
}

@media screen and (max-width: 767px) {
    .built-in-switcher .switch-block {
        opacity: 50% !important;
    }
}