/*bottom_fixed_block*/
.bottom_fixed_block {
    position: fixed;
    z-index: 998;
    left: 50%;
    bottom: 10px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: calc(100% - 1rem);
    -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 0.5rem 2rem;
    margin: 0;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.bottom-fixed__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    min-width: 200px;
    height: 100%;
    color: inherit;
    background: transparent;
    border: 1px solid #F2F2F2;
    border-radius: 5px;
    padding: 5px 15px;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    font-weight: 500;
}

.bottom-fixed__item:hover {
    color: #fff;
    background: var(--theme-skit-color);
    border-color: var(--theme-skit-color);
}

.bottom-fixed__item .text_mobile {
    display: none;
}

.bottom-fixed_routes_count {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 0;
    height: 0;
    font-size: 1rem;
    line-height: 1;
    color: #fff;
    background: var(--theme-skit-color);
    border-radius: 50%;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    overflow: hidden;
    z-index: 2;
}

.bottom-fixed_routes_count.active {
    width: 1.5em;
    height: 1.5em;
    margin-left: 1rem;
}

.bottom-fixed__item:hover .bottom-fixed_routes_count {
    color: var(--theme-skit-color);
    background: #fff;
}

.bottom-fixed__img {
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
    border-radius: 50%;
    overflow: hidden;
}

.bottom-fixed__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media all and (max-width: 991px){
    .bottom-fixed__item {
        min-width: unset;
    }
}

@media all and (max-width: 767px){
    .bottom_fixed_block {
        padding: 8px 16px;
    }

    .bottom-fixed__item {
        border: none;
        padding: 0;
        gap: 0.25rem;
    }

    .bottom-fixed__item:hover {
        background: transparent;
        color: var(--theme-skit-color);
    }

    .bottom-fixed__item .text_desctop {
        display: none;
    }

    .bottom-fixed__item .text_mobile {
        display: inline;
    }

    .bottom-fixed__img {
        display: none;
    }

    .bottom-fixed_routes_count.active {
        margin-left: 0.15rem;
    }
}