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

@media (min-width: 768px) {
    .c-search {
        position: relative;
    }
}

.c-search__form {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	height: 60px;
    align-items: center;
    background: #fff;
	border-radius: 16px;
}
.reset    { margin: 0 5px;}
.c-search [type='search'] {
    font-size: 16px;
    -webkit-transition: box-shadow .3s;
    -webkit-transition: -webkit-box-shadow .3s;
    -o-transition: box-shadow .3s;
    transition: -webkit-box-shadow .3s;
    transition: box-shadow .3s;
    transition: box-shadow .3s, -webkit-box-shadow .3s;
    border: 0!important;
    border-radius: 30px;
    background: -webkit-linear-gradient(left, #ece9e6, #fff);
    background: -webkit-gradient(linear, left top, right top, from(#ece9e6), to(#fff));
    background: -o-linear-gradient(left, #ece9e6, #fff);
    background: linear-gradient(to right, #ece9e6, #fff);
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1!important;
    order: -1!important;
}

@media (max-width: 767px) {
    .c-search [type='search'] {
        font-size: 13px;
    }
}

.c-search [type='search']:focus {
 /*   -webkit-box-shadow: inset 0 4px 14px rgba(0, 0, 0, .36)!important;
    box-shadow: inset 0 4px 14px rgba(0, 0, 0, .36)!important;*/
}
.c-search__button svg{
	margin-right: 5px;
	    width: 24px;
    height: 24px;
}
.c-search__button {
    font-size: 16px!important;
    font-weight: 600;
    margin-left: 6px;
    padding: 0 10px!important;
    color: #fff!important;
    background: #24675c!important;
	margin:5px 10px;
	    border-radius: 12px!important;
		width: 205px;
}

@media (max-width: 767px) {
    .c-search__button {
        font-size: 0!important;
        position: absolute;
        top: 0;
        right: 0;
        width: 36px!important;
        margin: 0;
        padding: 0!important;
    }
}

.c-search__button .icon {
    font-size: 18px;
}

@media (min-width: 768px) {
    .c-search__button .icon {
        display: none;
    }
}

.c-search__dropdown {
    position: absolute;
    z-index: 99;
    top: 100%;
    right: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    max-height: 450px;
	height: 400px;
    background: #fff;
	    padding: 15px 10px 10px 10px;
}

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

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

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

.c-search__dropdown li:first-child {
    border-top: 0;
}
.c-search__dropdown ul::-webkit-scrollbar {
    width: 5px;
    background-color: #f9f9fd;
}
.c-search__dropdown ul::-webkit-scrollbar {
    padding: 0 10px;
     background-color: #24675c; /* blue */
}

/* thumb for scrollbar */
.c-search__dropdown ul::-webkit-scrollbar-thumb {
     background-color: #24675c; /* green */
     border-radius: 9em;
}

.c-search__dropdown ul::-webkit-scrollbar-thumb:hover {
     background-color: #24675c; /* orange */
}
.c-search__dropdown a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 110px;
    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: 100px;
    max-width: 60px;
    height: 100%;
    margin-right: 16px;
}
.fast-result-info{
	    max-width: 490px;
}
.fast-result-info-price{ 
    margin: auto;
	}
.c-search__dropdown .fast-result-img img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.c-search__dropdown .fast-result-info span {
    font-size: 12px;
    font-weight: 600;
    display: block;
    width: 100%;
    color: #cd4449;
}

.c-search__dropdown .fast-result-info span.variant-text {
    font-weight: 400;
    color: #666;
}