.sb-search-result {
    position: absolute;
    top: 44px;
    width: 100%;
    z-index: 32;
}

.lives-buttons {
    display: flex;
    flex-direction: row;
}

.mlives-results {
    position: absolute;
    top: 0;
    z-index: 1;
    min-width: 270px;
    width: 100%;
    border: 1px solid #E5E5E5;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
    background: #fff;
    display: flex;
    flex-direction: column;
}

.mlives-buttons {
    padding: 8px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.mlives-results__button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2px 7px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    margin: 5px;
    cursor: pointer;
    transition: all ease-in .3s;
}

.mlives-results__button:hover {
    border: 1px solid #1E88E5;
    color: #1E88E5;
}

.mlives-results__button.active {
    background: #1E88E5;
    border: 1px solid #1E88E5;
    color: #fff;
}

.mlives-results__block {
    display: none;
}

.mlives-results__block.active {
    display: flex;
    flex-direction: column;
    max-height: 200px;
    overflow-y: scroll;
}

.mlives-results__item {
    display: block;
    text-decoration: none;

    border-top: solid #F6F6F6 1px;
    padding-top: 10px;
    margin: 0 13px 10px;
}

.mlives-results__image {
    float: left;
    max-width: 110px;
    margin: 0 10px 0px 0;
}

.mlives-results__image:hover {
    opacity: .85;
}

.mlives-results__title {
    display: block;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    transition: all ease-in .3s;
}

.mlives-results__excerpt {
    display: block;
    font-size: 16px;
    line-height: 24px;
}

.mlives-results__show-all {
    background: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 40px;
    border-top: solid #E4E4E4 1px;
    text-decoration: none;
    order: 1;
    transition: all ease-in .3s;
}

.mlives-results__show-all:after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    border-right: solid #000 1px;
    border-top: solid #000 1px;
    margin: 0 0 0 5px;
    transition: all ease-in .3s;
}

.mlives-results__show-all:hover,
.mlives-results__title:hover {
    color: #1E88E5;
}

.mlives-results__show-all:hover:after {
    border-right: solid #1E88E5 1px;
    border-top: solid #1E88E5 1px;
}

.mlives-results__play {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(92.2deg, rgba(48, 183, 73, 0.8) 1.85%, rgba(53, 146, 65, 0.8) 98.15%);
    border: 1px solid #FFF;
    box-sizing: border-box;
    border-radius: 3px;
    font-weight: bold;
    font-size: 10px;
    line-height: 12px;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FFF;
    padding: 8px;
    width: 126px;
}

.mlives-results__play:hover {
    background: linear-gradient(92.2deg, #30B749 1.85%, #359241 98.15%);
    border: 1px solid #359241;
}

@media (min-width: 768px) {

    .mlives-results__block.active {
        max-height: initial;
    }
}

@media (max-width: 768px) {
    .sb-search.sb-search-open,
    .no-js .sb-search {
        width: 500px;
    }

    .mlives-buttons {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
    }

    .mlives-buttons::-webkit-scrollbar {
        width: 0;
        display: none;
    }
}

@media (max-width: 500px) {
    .sb-search.sb-search-open,
    .no-js .sb-search {
        width: 290px;
    }

    .mlives-results__excerpt {
        padding-top: 10px;
        clear: both
    }
}