:root {
  --main-blue-color: #0046be;
  --text-blue-color: #082e8a;
  --yellow-color: #fff100;
  --grey-color: #e7e9ee;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  /* background-color: #011e73; */
  /* background: linear-gradient(blue, #011E73); */
}
.header {
  background-color: var(--main-blue-color);
  font-family: Arial, Helvetica, sans-serif;
  position: sticky;
  z-index: 1;
  top: 0;
  width: 100%;
}
.headTop {
  display: flex;
  justify-content: space-around;
  margin-right: 2%;
}

.headTopLeft {
  width: 50%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px 0;
}

.bestBuyImg img {
  width: 80px;
}
.topMenu {
  color: aliceblue;
  font-size: 27px;
}

.searchBox {
  position: relative;
  width: 90%;
  height: 50px;
  border: 4px solid var(--main-blue-color);
  padding: 0px 10px;
  border-radius: 8px;
  background-color: white;
}
.searchTop {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}
.fa-search {
  cursor: pointer;
}
.search {
  border: none;
  height: 100%;
  padding: 0 5px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
}

.search:focus {
  outline: none;
}
.searchTop .fas {
  font-size: 25px;
  color: var(--main-blue-color);
  padding-top: 12px;
}

.headTopRight {
  width: 15%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.bangor,
.cart {
  color: aliceblue;
  font-size: 27px;
  font-weight: bolder;
}

.headBottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid whitesmoke;
}

.headBottomLeft {
  width: 70%;
  display: flex;
  justify-content: space-evenly;
  color: white;
  padding: 15px 0;
  padding-left: 3%;
  padding-right: 3%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}

.headBottomRight {
  display: flex;
  justify-content: space-evenly;
  margin-right: 10%;
  color: white;
  width: 28%;
  font-weight: bold;
  font-size: 13px;
}
.winterHoliday {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 320px;
  background-color: var(--yellow-color);
  color: var(--main-blue-color);
  /* color: blue; */
  text-align: left;
  padding-left: 25%;
  padding-right: 15%;
  padding-bottom: 70px;
  font-size: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.winterHoliday h1 {
  font-size: 5rem;
  padding-bottom: 15px;
}

.winterHoliday p {
  color: rgb(29, 28, 28);
  font-size: 1rem;
  font-weight: bold;
}
.winterHoliday span {
  color: rgb(34, 33, 33);
  font-size: 0.7rem;
}
button {
  color: white;
  background-color: var(--main-blue-color);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  margin-top: 20px;
  cursor: pointer;
}
.wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  max-width: 1150px;
  margin-top: -150px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px;
  color: var(--main-blue-color);
}

.category {
  text-align: center;
  width: 225px;
  height: 350px;
  margin-right: 20px;
  /* top: -100px; */
  cursor: pointer;
}
.wrapper h4 {
  margin-bottom: 10px;
  pointer-events: none;
}

.category h4 {
  color: var(--main-blue-color);
  padding-top: 20px;
  pointer-events: none;
}

.round {
  width: 100%;
  height: 225px;
  border: 4px solid rgb(75, 133, 233);
  border-radius: 50%;
  vertical-align: bottom;
  background-color: white;
  pointer-events: none;
}
.round img {
  width: 140px;
  padding-top: 35px;
  pointer-events: none;
}

.result{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-left: 23%;
  color: var(--main-blue-color);
}

.result h4 {
  padding: 5px;
  color: #252525;
  pointer-events: none;
}
.resultOfSearch {
  border: 1px solid var(--grey-color);
  width: 100%;
  height: 500px;
  background-color: #ffff;
  position: relative;
  cursor: pointer;
  align-items: center;
}
.resultOfSearch img {
  max-width: 80%;
  max-height: 220px;
  position: absolute;
  top: 5px;
  right: 15%;
  padding-bottom: 5%;
  padding-top: 5%;
  pointer-events: none;
}
.resultOfSearch .info {
  position: absolute;
  bottom: 50px;
  left: 5%;
}
.resultOfSearch button {
  margin-bottom: 1px;
  position: absolute;
  bottom: 15px;
  right: 15%;
}
.idProduct {
  display: none;
}
/* ------- left side filter container-----  */
.filter-container {
  display: none;
  /* display: block; */
  width: 20%;
  min-width: 220px;
  position: fixed;
  top: 150px;
  overflow: auto;
  background-color: white;
  max-height: calc(100vh - 150px);
  margin: 20px;
  margin-bottom: 30px;
  padding: 20px;
  border-top: 1px solid lightgrey;
  border-bottom: 1px solid lightgrey;
  border-left: 1px solid lightgrey;
}

.filter-container fieldset {
  color: #242323;
  font-size: smaller;
  padding: 10px;
}
.filter-container legend{
  font-size: large;
  color: var(--text-blue-color);
}

.showProduct {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  grid-gap: 10px;
  margin-left: 23%;
  
  max-width: 90%;
  /* margin-top: -150px; */
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  color: var(--main-blue-color);
}
.showProduct img {
max-width: 100%;
max-height: 40vh;
margin-left: auto;
  margin-right: auto;
}
.btn-add-card{
  color: #252525;
  background-color: var(--yellow-color);
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  margin-top: 20px;
  cursor: pointer;
}.showProduct button{
  width: 80%;
  margin-bottom: 3%;
}
.showProduct h1 {
  color: #252525;
}
.showProduct h3 {
  color: green;
}
.showProduct h5 {
  color: #252525;
}
.showProduct p {
  color: #383737;
}
