/*search*/
.search_activ {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 86px;
    height: 86px;
    opacity: 0;
    width: 300px;
    background-color: #ffffff;
    -webkit-transition: min-width .5s;
    transition: min-width .5s, opacity .5s;
}
#cml2:hover .search_activ,
#cml2:focus .search_activ {
    opacity: 1;
    min-width: 300px;
}
.search_form {
    position: relative;
    width: 100%;
    height: 55px;
    margin-top: 15px;
    background-color: #ffffff;
}
.search_inp {
    display: block;
    position: absolute;
    left: -40px;
    top: 0;
    appearance: none;
    height: 50px;
    width: 200px;
    border: unset;
    border-radius: unset;
    color: #808080;
    font-family: "Comic Sans MS", sans-serif;
    font-weight: bold;
}
.search_inp:focus {
    outline: 0;
}
.search_btn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    appearance: none;
    height: auto;
    width: 86px;
    border: unset;
    border-radius: unset;
    background-color: #ffffff;
    color: #808080;
}
.search_btn img{
    width: 30px;
    height: auto;
    margin-top: -16px;
    opacity: .7;
}
.search_btn img:hover {
    cursor: pointer;
    opacity: 1;
}

/* Стили для выпадающего меню */
.tt-menu {
    background-color: #fff;
    border: 1px solid #dcdcdc;
    max-height: 50vh;
    overflow-y: auto;
    width: 100%;
}

/* Стили для каждой подсказки */
.tt-suggestion {
    padding: 10px;
    cursor: pointer;
}

/* Подсветка выбранной подсказки */
.tt-suggestion:hover {
    background-color: #dcdcdc;
}

/* Стили для активной подсказки */
.tt-suggestion.tt-cursor {
    background-color: #808080;
    color: #fff;
}

/* Стили для группы подсказок */
.tt-dataset {
    padding: 10px 0;
}
