/* region Десктоп*/

.sectionMenu {
    display: flex;
    overflow-x: hidden;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: -10px;
}

.sectionMenu.active,
.sectionMenu.active .sectionMenuItem {
    cursor: grabbing;
}


.sectionMenuItem {
    font-weight: 500;
    line-height: 28px;
    margin-right: 10px;
    margin-bottom: 10px;
    padding-right: 30px;
    padding-left: 30px;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    border: 2px solid #E6E6E6;
    border-radius: 32px;
    background-color: #F5F5F5;
}

.sectionMenuItem:last-child {
    margin-right: 0;
}

.sectionMenuItem:hover,
.sectionMenuItem.selected:hover {
    color: #FFFFFF;
    background-color: #005CB8;
}

.sectionMenuItem:active,
.sectionMenuItem.selected {
    color: #FFFFFF;
    background-color: #3399FF;
}

/*endregion*/

/* region Планшет*/
@media all and (max-width: 1100px) {

    #sectionMenu {
        padding-left: 10px;
    }

    .sectionMenu {
        display: flex;
        flex-wrap: nowrap;
        width: 500px;
    }

}

/*endregion*/

/* region Мобильный*/
@media screen and (max-width: 450px) {

}

/*endregion*/