/* c-search
------------------------------------------------------------------- */
.c-search {
	width: 100%;
	position: relative;
}


.c-search__dropdown {
    position: absolute;
    z-index: 99;
    top: 100%;
    right: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    max-height: 300px;
    background: #fff;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .5);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .5);
    display: none;
}

@media (min-width: 768px) {
   .c-search__dropdown {
	margin-top: 10px;
	border-radius: 10px;
	padding: 10px;
}
}

.c-search__dropdown ul {
    overflow: auto;
    max-height: 300px;
}

.c-search__dropdown li {
    border-top: 1px solid #dadada;
}

.c-search__dropdown li:first-child {
    border-top: 0;
}

.c-search__dropdown a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    padding: 10px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.c-search__dropdown a:hover {
    -webkit-box-shadow: inset 0 5px 10px rgba(0, 0, 0, .1);
    box-shadow: inset 0 5px 10px rgba(0, 0, 0, .1);
}

.c-search__dropdown .fast-result-img {
	position: relative;
	min-width: 40px;
	max-width: 40px;
	height: 100%;
	margin-right: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.c-search__dropdown .fast-result-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.c-search .fast-result-info {
	color:#212121;
	font-size: 14px;
}
.c-search__dropdown .fast-result-info span {
	font-size: 12px;
	font-weight: 600;
	display: block;
	width: 100%;
	color:#4682b4;
}
.fast-result-info b {
	background:#4682b4 !important;
	color: #fff;
	padding: 2px;
}
.c-search__dropdown .fast-result-info span.variant-text {
    font-weight: 400;
    color: #666;
}