body {
  /* background: #eee; */
  background-color: #e6edee;
}
.first-container-product-details {
  margin-top: 8.4rem;
}

.image {
  display: flex;
  background: #fff;
  justify-content: center;
  margin-top: 5rem;
}

.image img {
  height: 45rem;
  border: 0px solid;
  width: 60%;
  object-fit: contain;
}

.image .texts {
  display: inline-block;
  border: 1px solid;
  padding: 2rem 0;
}

.texts h1 {
  color: #55bcc9;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  padding: 1rem auto;
  text-align: center;
  font-size: 3rem;
}

.texts h3 {
  /* height: 20%; */
  padding-top: 2rem;
  text-align: center;
  font-size: 1.6rem;
  color: #1f2833;
}

.texts h2 {
  /* height: 20%; */
  padding: 2.5rem 0 0 0.2rem;
  text-align: center;
  font-size: 2rem;
  color: #1f2833;
}

.dropdown-icon {
  padding: 2rem 9.25%;
  display: flex;
  justify-content: space-around;
}

.dropdown {
  position: relative;
  font-size: 1.8rem;
  cursor: pointer;
}

.dropdown .form-field {
  background: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 1rem;
  cursor: pointer;
}

.first-container {
  padding: 1rem 9.24%;
  border: 1px solid;
}

.product-colum {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid;
  padding: 2rem 2rem;
  background-color: #fff;
  outline: var(--outline);
  outline-offset: -1rem;
  text-align: center;
  /* box-shadow: var(--box-shadow); */
  border-radius: 0.6rem;
  transition: 0.2s linear;
}

.card img {
  height: 20rem;
  width: 20rem;
  margin: 2rem auto;
  border-radius: inherit;
}

.card .card-body h2 {
  font-size: 1.6rem;
  /* border: 1px solid; */
}
.card .card-body .product-price {
  font-size: 1.2rem;
  line-height: 1.6rem;
  padding: 0.5rem 0;
  font-weight: 500;
}

.card .card-body .card-text {
  font-size: 1.2rem;
  padding-top: 2px;
}

/* subscription section start here */

.card .dropdown-subscription-type {
  margin: 2px 2px;
}
.card .dropdown-subscription-type select {
  border: 0.1px solid grey;
  padding: 0.1rem 2rem;
  background-color: #fff;
}
.customer-cq-box {
  position: absolute;
  right: -110%;
  width: 25rem;
  margin: 0 auto;
  margin-top: 1rem;
}
.customer-cq-box.abo {
  position: sticky;
  transition: 0.4s linear;
}
.day-of-week-content .customer-cq-box ul {
  display: flex;
  /*   border: 1px solid red; */
  font-size: 1.4rem;
}
.customer-cq-box ul li {
  margin: 1px auto;
  width: 3.3rem;
  padding: 4px 0px;
  background-color: #2ea148;
  cursor: pointer;
}
.day-of-week-content .customer-cq-box .chkbox {
  /* display: none; */
  border: 1px solid red;
}

.content-box .yourway {
  display: none;
  justify-content: space-between;
  margin: 1rem auto;
  width: 25rem;
}
.content-box .yourway.away {
  display: flex;
}
.yourway .select-from {
  font-size: 1rem;
  width: 46%;
  border: 1px solid #c2c2c2;
  overflow: hidden;
  border-radius: 0.4rem;
  font-size: 1.3rem;
  padding: 2px;
}
.select-from #from {
  float: left;
  padding: 2px 4px;
  font-size: 1.1rem;
  width: 75%;
  /* border: 1px solid red; */
}
.select-from img {
  float: right;
  margin: auto 0.1px;
  /* border: 1px solid red; */
  height: 2rem;
  width: 2rem;
}
.yourway .select-till {
  font-size: 1rem;
  width: 46%;
  border: 1px solid #c2c2c2;
  overflow: hidden;
  border-radius: 0.4rem;
  font-size: 1.3rem;
  padding: 2px;
}
.select-till #to {
  float: left;
  padding: 2px 4px;
  font-size: 1.1rem;
  width: 75%;
  /* border: 1px solid red; */
}
.select-till img {
  float: right;
  margin: auto 0.1px;
  /* border: 1px solid red; */
  height: 2rem;
  width: 2rem;
}

.card .card-body .btn {
  border: 0.1rem solid lightgray;
  display: inline-block;
  margin: 1rem 1rem;
  padding: 0.8rem 3rem;
  color: black;
  border-radius: 0.6rem;
  font-size: 1.7rem;
  cursor: pointer;
  background: none;
  text-decoration: none;
}

.card-body .btn:hover {
  background-color: green;
  color: #fff;
}

/* navbar-colum area start from here; */
.item {
  color: green;
  font-style: italic;
  list-style-type: circle;
  /* line-height: 24px; */
  /* border: 2px solid gray; */
}

.item h3 {
  font-size: 2.6rem;
}

.item li {
  border: 0px solid red;
}

/* media query for product section */

@media screen and (min-width: 428px) and (max-width: 767px) {
  .image img {
    height: auto;
    border: 1px solid;
    width: 100%;
  }
}

@media screen and (max-width: 428px) {
  .header {
    padding: 1.5rem 1%;
  }

  .image .texts {
    display: none;
  }

  .image img {
    height: auto;
    border: 1px solid;
    width: 100%;
  }
}
