/* c-search
------------------------------------------------------------------- */

.c-search {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 15px 0;
}

.c-search__form {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 40px;
}

.c-search input[type="search"] {
	display: flex;
	/* border: 1px solid var(--main-color); */
	border-radius: 2px 0 0 2px;
	color: #7c7c7c;
	font-size: 14px;
	font-weight: 200;
	height: 100%;
	min-height: 100%;
	letter-spacing: 0.7px;
	min-width: 210px;
	padding: 9px 10px 9px 16px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	width: 100%;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	font-family: inherit;
	-webkit-appearance: none;
	appearance: none;
	background: #eee;
	border-radius: 5px;
}

.c-search input::-webkit-input-placeholder {
    opacity: 0.8;
}

.c-search input::-moz-placeholder {
    opacity: 0.8;
}

.c-search input:-ms-input-placeholder {
    opacity: 0.8;
}

.c-search input::-ms-input-placeholder {
    opacity: 0.8;
}

.c-search input::placeholder {
    opacity: 0.8;
}

.c-search__button {
	background-color: transparent;
	height: 40px;
	width: 40px;
	padding: 10px 0 10px 10px;
	font-size: 18px;
	font-weight: 500;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	border-radius: 0 2px 2px 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: absolute;
	right: 5px;
}
.c-close__button {
	display: none;
	background-color: transparent;
	height: 40px;
	width: 30px;
	padding: 12px 0px 15px 0px;
	font-size: 18px;
	font-weight: 500;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	border-radius: 0 2px 2px 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

@media only screen and (max-width: 624px) {

	.c-close__button {
		display: inline-block;
	}
.c-search__form {
	width:100%;
} 
.c-button.c-search__button {
	position: relative;
} 
.c-button.c-close__button.js-search-close-button {
	position: absolute;
	right: 0;
	top: -40px;
}  
}

.c-search__icon {
    max-height: 100%;
    max-width: 100%;
    fill: var(--main-color);
}

.c-search__dropdown {
    position: absolute;
    z-index: 99;
    top:0;
    right: 0;
    left: 0;
    bottom: -10px;
    overflow: hidden;
    width: 100%;   
    background: #fff;
    
}

.c-search__dropdown ul {
	overflow: auto;
	max-height:390px;
	display: flex;
	flex-wrap: wrap;
}
.c-search__dropdown li {
  width:25%;
}
@media (max-width:1200px) {
.c-search__dropdown li {
	width: 33.33%;
}
.mobSearch-left {
	width: 200px;
} 
.mobSearch-right {
	width: calc(100% - 200px);
}  
}  
@media (max-width:624px) {
.mobSearch-left,.mobSearch-right {
	width:100%;
} 
.c-search__dropdown .fast-result-img {
	height: 200px;
	max-height: 200px;
	display: flex;
	align-items: center;
}  
} 
@media (max-width:360px) {
.c-search__dropdown li {
	width:100% !important;
}
} 
.c-search__dropdown a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;       
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.fast-result-info {
	font-size: 14px;
	color: #848484;
	line-height: 1.67;
	margin-bottom: 4px;
	margin-top: 50px;
	letter-spacing: 0.8px;
	font-weight: 500;
}

.c-search__dropdown .fast-result-img {
	border: 1px solid #e8e8e8;
	border-radius: 5px;
	position: relative;
	height: 274px;
	margin-right: 16px;
	max-height: 274px;
	min-height: 274px;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
}
.c-search__dropdown .fast-result-img img {
    max-width: 100%;
    object-fit: cover;
    margin: auto;
}

.c-search__dropdown .fast-result-info span {
	font-weight: 600;
	font-size: 12px;
	margin-bottom: 10px;
    font-weight: 600;
    display: block;
    width: 100%;
}

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

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

@media (min-width: 1080px) {
    .c-search {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        max-width:100%;
        margin-right: 0px;
    }
    .c-search input {
        min-width: 200px;
    }
}

@media (min-width: 1200px) {
    .c-search {
 margin-right: 60px;
    }
}

@media (min-width: 1450px) {
    .c-search {
        margin-right: 100px;
         }
}