/* c-switcher
------------------------------------------------------------------- */
.c-switcher {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    overflow: hidden;
    border: 1px solid #ddd4c6;
    border-radius: 9px;
    background: #fbf8f1;
}

.c-switcher__item {
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 42px;
    height: 42px;
    padding: 0;
    cursor: pointer;
    color: #1f382e;
    border: 0;
    border-radius: 0;
    background: #fbf8f1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.c-switcher__item:last-child {
    border-left: 1px solid #ddd4c6;
}

.c-switcher__item--active {
    pointer-events: none;
    color: #fff;
    background: #1f382e;
}

.c-switcher__item:hover:not(.c-switcher__item--active) {
    background: #f0eadf;
}

.c-switcher__item:focus-visible {
    position: relative;
    z-index: 2;
    outline: 3px solid rgba(183, 146, 88, .55);
    outline-offset: -3px;
}

.c-switcher__item .icon { font-size: 18px; }
