.container_center {
  width: 30%;
  margin: 0 auto;
  margin-top: 5%;
}

@media (min-width: 412px) and (max-width: 1231px) {
  .container_center {
    width: 0%;
    margin: 3rem;
  }
}

.main_container {
  display: flex;
  align-items: center;
  width: 40rem;
  background-color: white;
  padding-right: 2.5rem;
  border-radius: 1rem;
}

@media (min-width: 412px) and (max-width: 1231px) {
  .main_container {
    display: flex;
    flex-direction: column;
    width: 50rem;
    padding-right: 0rem;
  }
}

.channel_image {
  width: 20rem;
  margin-right: 2rem;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

@media (min-width: 412px) and (max-width: 1231px) {
  .channel_image {
    display: none;
    width: 100%;
    margin-right: 0rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    border-bottom-left-radius: 0;
  }
}

.channel_image_1 {
  display: none;
}

@media (min-width: 412px) and (max-width: 1231px) {
  .channel_image_1 {
    display: block;
    width: 50rem;
    margin-right: 0rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    border-bottom-left-radius: 0;
  }
}

/*This is coding for the second section*/
.section_02 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (min-width: 412px) and (max-width: 1231px) {
  .section_02 {
    padding-right: 5rem;
    padding-left: 5rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
}

.body_header {
  color: hsl(228, 12%, 48%);
  letter-spacing: 0.7rem;
  margin-bottom: 1.5rem;
}

.main_header {
  font-size: 3rem;
  line-height: 3rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 412px) and (max-width: 1231px) {
  .main_header {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
}

.main_body {
  color: hsl(228, 12%, 48%);
  margin-bottom: 1.5rem;
  line-height: 1.5rem;
}

.total_amount {
  display: flex;
  align-items: center;
}

.real_amount {
  font-size: 2rem;
  color: hsl(158, 36%, 37%);
  align-items: center;
  margin-right: 1rem;
}

@media (min-width: 412px) and (max-width: 1231px) {
  .real_amount {
    font-size: 3rem;
  }
}

.discount_amount {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 1rem;
  color: hsl(228, 12%, 48%);
  text-decoration: line-through;
}

@media (min-width: 412px) and (max-width: 1231px) {
  .discount_amount {
    font-size: 1.5rem;
  }
}


/*This category is the button section*/
.button_with_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(158, 36%, 37%);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
  cursor: pointer;
  transition: 0.5s;
}

@media (min-width: 412px) and (max-width: 1231px) {
  .button_with_icon {
    padding: 2rem;
  }
}

.cart_icon {
  width: 1rem;
  margin-right: 0.5rem;
}

@media (min-width: 412px) and (max-width: 1231px) {
  .cart_icon {
    width: 2rem;
    margin-right: 1rem;
  }
}


.button_text {
  color: white;
  font-weight: 600;
}

@media (min-width: 412px) and (max-width: 1231px) {
  .button_text{
    font-size: 2rem;
  }
}


.button_with_icon:hover {
  background-color: hsl(158, 42%, 18%);
}

