/*
 * Прилипающая Навигация
 */

.float-nav-wrapper {

}

.float-nav {
    position: sticky;
    top: 20px;
    overflow: hidden;
    background: #F8F8F8;
    border-radius: 6px;
}
.float-nav__item:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
}
.float-nav__item a {
    display: block;
    padding: 16px;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #2A403C;
    text-decoration: none;
    letter-spacing: 0.02em;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.float-nav__item a:hover {
    color: #fff;
    background: #1CCAA9;
}
.float-nav__item a.active {
    color: #fff;
    background: #1CCAA9;
}
@media (min-width: 768px) and (max-width: 991px){
    .float-nav__item a {
        padding: 10px;
        font-size: 12px;
    }
}
@media (max-width: 767px) {
    .float-nav-wrapper {
        order: -1;
        margin-bottom: 30px;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
    }

    .float-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .float-nav__item {
        border-bottom: 1px solid #e5e5e5;
    }
    .float-nav__item a {
        display: block;
        padding: 12px;
    }
}

/*.float-nav {
    list-style: none;
    margin: -20px 0 20px 0;
    padding: 10px 15px;
    font-size: 15px;
    background: #F8F8F8;
    font-weight: bold;

    border-radius: 6px;
}
.float-nav > li {
    float: left;
    margin: 0;
    padding: 8px 8px;
}
.float-nav > li:before {
    content: none;
}
.float-nav > li > a {
    text-decoration: none;
    border-bottom: dashed 1px;
    color: #2d2d2d;
}
.float-nav > li.active a {
    border-bottom: solid 1px;
    color: #00A384;
}
.float-nav:after {
    clear: both;
    content: "";
    display: table;
    height: 0;
}
.float-nav.fixed {
    z-index: 900;
    position: sticky;
    top: 16px;
    width: inherit;
    box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.1);
}*/