/* search history */
.search-form__history {
    position: absolute;
    top: 12px;
    margin-left: 15px;
    z-index: 2;
}

.user-search-history__show {
    padding: 0;
    width: 26px;
    height: 26px;
    border-radius: 1px;
    cursor: default;
    background-image: url(/images/article_history.png);
    background-position: 5px 6px;
    background-repeat: no-repeat;
    background-color: #fff;
}

.user-search-history__show--svg {
    background-image: none;
}

.user-search-history__show_enable {
    background-color: #fff;
    cursor: pointer;
    border-radius: 1px 1px 0 0;
}

.user-search-history__icon-svg {
    width: 20px;
    height: 20px;
    max-height: 20px;
    margin-left: 3px;
    margin-top: 2px;
}

svg:not(:root) {
    overflow: hidden;
}

.user-search-history__list-container {
    position: relative;
}

.user-search-history__list {
    min-width: 165px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 3px;
    border-top-left-radius: 0;
    display: none;
}

.user-search-history__list-container>.user-search-history__list {
    position: absolute;
    left: 0;
    top: 0;
}

.user-search-history__item {
    list-style-type: none;
    font-size: 14px;
    padding: 5px 0;
}

.user-search-history__link {
    color: #333;
    /*border-bottom: 1px dotted #8c8c8c;*/
}

.show-me {
    display: block;
}

@media only screen and (max-width: 767px) {
	.search-form__history {
	    top: 5px;
	    margin-left: 5px;
	}
}