.smartSearch{
	position: relative;
	width: calc(100% - 40px);
}
.smartSearch-result-block {
    overflow: auto;
    max-height: 100vh;
}
.smartSearch .smartSearch-form{
	position: relative;
	display: flex;
	align-items: stretch;
	width: 100%;
}
.smartSearch .js-smartSearch-input{
	display: block;
	position: relative;
	flex: 1 1 auto;
	width: 1%;
	min-width: 0;
	height: 38px;
	margin: 0;
	padding: .375rem .75rem;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-right: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-top-left-radius: .25rem;
	border-top-right-radius: 0;
    	border-bottom-left-radius: .25rem;
	border-bottom-right-radius: 0;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.smartSearch .js-smartSearch-input:focus{
	outline: 0;
}
.smartSearch .js-smartSearch-clear,
.smartSearch .js-smartSearch-submit,
.smartSearch .smartSearch-more{
	display: block;
	height: 38px;
	margin-left: -1px;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	border: 1px solid #ced4da;
	padding: .375rem .75rem;
	font-size: 1rem;
	border-radius: .25rem;
	cursor: pointer;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.smartSearch .js-smartSearch-clear{
	display: none;
	width: 38px;
	background-color: #fff;
	background-image: url('img/clear.svg');
	background-position: center;
    	background-repeat: no-repeat;
    	background-size: 28px;
	border-left: 0;
	border-right: 0;
	border-radius: 0;
}
.smartSearch .js-smartSearch-clear.visible{
	display: block;
}
.smartSearch .js-smartSearch-clear:hover{
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
}
.smartSearch .js-smartSearch-submit{
	/* color: #fff; */
	/* background-color: #0d6efd; */
	/* border-color: #0d6efd; */
	/* border-left: 0; */ 0; */
	border-top-left-radius: 0;
	/* border-bottom-left-radius: 0; */
	/* position: relative; */
}
.smartSearch .js-smartSearch-submit:hover{
	/* background-color: #0b5ed7; */
	/* border-color: #0a58ca; */
}
.smartSearch .js-smartSearch-result{
	visibility: hidden;
	opacity: 0;
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 1000;
	margin-top: 10px;
	padding: 10px;
	background-color: white;
	border-radius: .25rem;
	border: 1px solid #ced4da;
}
.smartSearch .js-smartSearch-result.open{
	visibility: visible;
	opacity: 1;
}
.smartSearch .js-smartSearch-result.loading{
	visibility: visible;
	opacity: 1;
	background-position: center;
	background-repeat: no-repeat;
	background-color:#fff;
	background-image: url("img/loading.svg");
}	
.smartSearch .js-smartSearch-result-item{
	display: none;
	padding: 10px 0;
	border-top: 1px solid #ced4da;
}
.smartSearch .js-smartSearch-result-item:first-child{
	border-top: 0;
}
.smartSearch .js-smartSearch-result-item.visible,
.smartSearch .js-smartSearch-result-item[data-page="0"]{
	display: block;
}
.smartSearch .smartSearch-result-item-center{
	display: flex;
}
.smartSearch .smartSearch-result-item-picture{
	display: block;
	width: 100px;
	height: 100px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	background-image: url("img/img-not.jpg");
}
.smartSearch .smartSearch-result-item-data{
	display: flex;
	width: 100%;
	flex-grow: 1;
}
.smartSearch .smartSearch-result-item-picture + .smartSearch-result-item-data{
	width: calc(100% - 100px);
	padding-left: 15px;
}
.smartSearch .smartSearch-breadcrumb{
	display: flex;
	flex-wrap: wrap;
	padding: 0 0;
	margin-bottom: 1rem;
	list-style: none;
	margin-bottom: 0px;
	display: none;
}
.smartSearch .smartSearch-breadcrumb span{
	/* color: #0d6efd; */
	font-size: 14px;
	text-decoration: unset;
}
.smartSearch .smartSearch-breadcrumb span:hover{
	color: #0b5ed7;
	text-decoration: none;
}
.smartSearch .smartSearch-breadcrumb span + span{
    padding-left: .5rem;
}
.smartSearch .smartSearch-breadcrumb span + span::before{
	float: left;
	padding-right: .5rem;
	color: #6c757d;
	content: "/";
}
.smartSearch .smartSearch-result-item-name{
	/* color: #0d6efd; */
	text-decoration: unset;
	padding: 0 15px;
	font-size: 14px;
}
.smartSearch .smartSearch-result-item-name:hover{
	color: #0b5ed7;
	text-decoration: none;
}
.smartSearch .smartSearch-result-item-price .new{
	color: red;
	font-weight: 600;
}
.smartSearch .smartSearch-result-item-price .old{
	text-decoration: line-through;
	color: #ababab;
}
.smartSearch .smartSearch-more{
	margin-top: 10px;
	color: #fff;
	background-color: #313131;
	border-color: #313131;
}
.smartSearch .smartSearch-more:hover{
	background-color: #313131;
	border-color: #313131;
	opacity: 0.8;
}

div#search_default {
    display: none;
}


#search_default input {
    border: 0px solid #00a6c8;
    width: 100%;
    /* max-width: 520px; */
    /* height: 40px; */
    padding: 10px 30px;
}

.search-block {
    max-width: 640px;
    margin: 0 auto;
}
#search_default {
    background: #F0F4F9;
    padding: 40px 0px 40px 0px;
    display: none;
    z-index: 100;
    position: fixed;
    width: 100%;
}
div#search_default.active-search {
    display: block;
    display: flex;
    align-items: center;
    padding: 15px 30px;
    /* padding-bottom: 0px; */
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.16), 0 7px 8px -4px rgba(0, 0, 0, 0.23);
}


button.js-smartSearch-submit.search-button {
  max-width: 135px;
  /* height: 55px; */
  opacity: 1;
  border-radius: 8px;
  padding-top: 8px;
  padding-right: 20px;
  padding-bottom: 8px;
  padding-left: 20px;
  background: #313131;
  color: #fff;
  display: flex;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  align-items: center;
  text-align: center;
  justify-content: center;
}
button.js-smartSearch-submit.search-button:hover {
    color: #ffffff;
    opacity: 0.8;
}
form.header-search {
    margin-right: 25px;
    width: 100%;
}

.input_search {
    display: flex;
    width: 100%;
}

span.close-block {
    cursor: pointer;
    margin-left: 15px;
}

button.search-button {opacity: 1;border-radius: 8px;padding-top: 8px;padding-right: 20px;padding-bottom: 8px;padding-left: 20px;background: #313131;color: #fff;display: flex;font-weight: 500;font-size: 16px;line-height: 140%;letter-spacing: 0%;align-items: center;text-align: center;justify-content: center;width: max-content;}
button.search-button:hover {
    color: #ffffff;
    opacity: 0.8;
}

.input_search input::placeholder {
    font-weight: 300;
    opacity: 1;
    color: #656565;
    font-size: 14px !important;
}

button.js-smartSearch-clear.visible {
    border: 0;
}


.smartSearch-result-item-description {
    display: none;
}

.smartSearch-result-item-info .smartSearch-result-item-price {
    font-size: 16px !important;
}




@media screen and (max-width: 991px) {
	div#search_default.active-search {
		padding: 15px 10px;
	}
button.js-smartSearch-clear.visible {
    border: 0;
    width: 38px;
    background-size: 18px;
}
	#search_default input {
		width: 60%;
	}
	
.smartSearch .smartSearch-result-item-picture {
    width: 60px;
    height: 60px;
}

.smartSearch .smartSearch-result-item-data {
    display: flex;
    flex-direction: column;
}

.smartSearch .smartSearch-result-item-name {
    text-align: left;
}

.smartSearch-result-item-info .smartSearch-result-item-price {
    font-size: 14px !important;
}
}










