.search-header{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 150px;
}

.search-header span{
  font-family: 'Oxigen-Bold';
  font-size: 40px;
}

.search-result
{
  min-height: 500px;
}

/*Show Products*/
.search-result .product
{
  position: relative;
	width: 100%;
	cursor: pointer;
}

.search-result .product .product-image
{
  display: block;
	width: 100%;
  height: 600px;
  border-radius: 20px;
	overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 5px 0 var(--light-shadow);
}

.search-result .product .product-image img
{
  display: block;
  object-fit: cover;
	width: 100%;
  height: 100%;
}

.search-result .product .product-description
{
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
	width: 100%;
  height: 80px;
	font-size: 1rem;
}

.search-result .product .product-description div
{
	display: flex;
	align-items: center;
  font-family: 'Oxigen-Bold' !important;
}


/*Filters*/
.color-radio
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
  background-color: var(--white-100);
	border: 1px solid var(--white-100);
	border-radius: 50%;
	margin: 5px 5px 0px 5px;
	cursor: pointer;
}

.color-selected
{
	background-color: var(--white-100);
	border: 1px solid var(--black-medium) !important;
}

.color-radio > span
{
	display: block;
	width: 20px;
	height: 20px;
	background-color: var(--white-100);
  border: 1px solid var(--white-85) !important;
	border-radius: 50%;
}

.filters{
  position: sticky;
  top: 100px;
}