@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;1,200;1,300;1,400&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins";
}
:root {
  --background-color: #fbfef9;
  --white: white;
  --light-gray: #a8a8a8;
  --bold-heading: #131212;
  --light-font: 14px;
  --heavy-font: 16px;
}
body {
  background-color: var(--background-color);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100vh;
  
}
.item__container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: flex-start;
  background-color: var(--background-color);
  max-width: 1042px;
  height: 100%;
}
.item__card {
  width: 240px;
  height: 292px;
  background-color: var(--white);
  border-radius: 10px;
  margin: 20px;

  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: left;
  padding: 20px;
}
.item__img {
  width: 178px;
  height: 146px;
  border-radius: 10px;
}
.light-heading {
  font-weight: 300;
  font-size: 10px;
  line-height: 15px;
  color: var(--light-gray);
}
.bold-heading {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: var(--bold-heading);
}
.item__price {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
.filter__container {
  display: flex;
  /* justify-content: flex-end; */
  flex-direction: column;
  /* width: 349px; */
  height: 612px;
  background: var(--white);
  position: fixed;
  top: 5%;
  left: 5%;
  border-radius: 16px;
  padding: 32px;
}
.bb{
  border-bottom: 1px solid #e6e6e6;
}
.brand__head{
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: var(--bold-heading);
  text-align: left;
}
.hh{
  height: 3rem;
}

.control-group {
  display: inline-block;
  vertical-align: top;
  /* padding: 30px; */
  height: 210px;
}
.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-weight: 400;
  font-size: 13px;
  line-height: 19px;
}
.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
}
.control--radio .control__indicator {
  border-radius: 50%;
}
.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  background: #ccc;
}
.control input:checked ~ .control__indicator {
  background: #030b0e;
}
.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
  background: #01080a;
}
.control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.control__indicator:after {
  content: "";
  position: absolute;
  display: none;
}
.control input:checked ~ .control__indicator:after {
  display: block;
}
.control--checkbox .control__indicator:after {
  left: 8px;
  top: 4px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}
.control--radio .control__indicator:after {
  left: 7px;
  top: 7px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #fff;
}
.control--radio input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}
.select {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
}
.select select {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  padding: 10px 15px;
  outline: 0;
  border: 0;
  border-radius: 0;
  background: #e6e6e6;
  color: #7b7b7b;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.select select::-ms-expand {
  display: none;
}
.select select:hover,
.select select:focus {
  color: #000;
  background: #ccc;
}
.select select:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.select__arrow {
  position: absolute;
  top: 16px;
  right: 15px;
  width: 0;
  height: 0;
  pointer-events: none;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #7b7b7b transparent transparent transparent;
}
.select select:hover ~ .select__arrow,
.select select:focus ~ .select__arrow {
  border-top-color: #000;
}
.select select:disabled ~ .select__arrow {
  border-top-color: #ccc;
}
.control-group h1, .he {
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 52px;
}
.flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.icons{
  font-size: var(--light-font);
}
.price{
  border-bottom: 1px solid #e6e6e6;
}
.size{
  border-bottom: 1px solid #e6e6e6;
  margin: 2rem 0;
}
.btn{
  display: flex;
  margin-top: 2rem;
  justify-content: space-between;
}
.button{
  background:white;
  height: 36px;
  width: 36px;
  border: none;
  outline: none;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.shadow{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}