/*--------- Popup Styles ------------*/

.popup_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  z-index: 1100;
  display: none;
  /* display: flex;*/
  padding: 5px 5px 20px 5px;
}

.popup_box {
  background-color: var(--color_shade1);
  box-shadow: 0 0 5px 1px var(--color_shade7);
  flex-basis: 600px;
  overflow: hidden;
  border-radius: 10px;
}

.popup_head {
  border-bottom: 1px solid var(--color_shade4);
  padding: 10px;
  display: flex;
}

.popup_logo_container {
  width: 30px;
}

.popup_logo_container img {
  width: 100%;
}

.popup_close_container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.popup_close_container span {
  cursor: pointer;
}

.popup_close_container span:hover,
.popup_close_container span:focus {
  color: var(--highlight_color);
}

.popup_body {
  padding: 10px 10px 20px 10px;
  max-height: 70vh;
  overflow: auto;
}

/*
.popup_body p
{
    text-align: center;
}
*/

.popup_body p:not(:last-child) {
  margin-bottom: 20px;
}

.popup_body .popup_para {
  margin-top: 15px;
}

.popup_body .reset_head {
  margin: 0 0 10px 0;
}

.popup_body h1,
.popup_body h2,
.popup_body h3,
.popup_body h4,
.popup_body h5,
.popup_body h6 {
  margin-bottom: 20px;
}

.popup_body .image_box {
  margin: auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
  margin-top: 10px;
}

.popup_body .image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup_footer {
  padding: 10px;
}

.buy_btn_container {
  display: flex;
}

.buy_btn_content {
  flex: 1;
}

.buy_btn_content:not(:last-child) {
  margin-right: 10px;
}

.buy_btn_content button {
  width: 100%;
}

.buy_btn_content .open_btn {
  border: 1px solid var(--main_color);
  background-color: var(--main_color);
  color: var(--color_shade1);
}

.buy_btn_content .open_btn:hover {
  opacity: 0.9;
}

.buy_btn_content .open_btn:focus {
  border: 1px solid var(--main_color_shade3);
}

/* --------------- Shipping Modal ----------------- */

.shipping_container {
  padding: 20px;
}

.shipping_card {
  margin-top: 20px;
}

.shipping_item {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: var(--color_shade1);
  border-radius: 8px;
  border: 1px solid var(--color_shade4);
}

.shipping_item:focus {
  background-color: var(--main_color_shade3);
  border: 1px solid var(--highlight_color);
}

.shipping_text {
  flex: 1;
}

.shipping_text small {
  color: var(--color_shade8);
}

.shipping_title {
  padding: 0 5px 0 10px;
  margin: 0;
  flex: 1;
  font-weight: 700;
  color: var(--foreground_color1);
}

/* .shipping_icon
{
    width: 40px;
    height: 40px;
    overflow: hidden;
    
} */

.shipping_icon ion-icon {
  font-size: 25px;
}

.shipping_item:not(:last-child) {
  margin-bottom: 10px;
}

.shipping_price small {
  font-size: 16px;
}

.shipping_container h4 {
  color: var(--highlight_color);
}

/* --------------- Coupon Modal ----------------- */

.coupon_box_container {
  padding: 20px;
}

.coupon_card {
  margin-top: 20px;
}

.coupon_item {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: var(--color_shade1);
  border-radius: 8px;
  border: 1px solid var(--color_shade4);
}

.coupon_item:focus {
  background-color: var(--main_color_shade3);
  border: 1px solid var(--highlight_color);
}

.coupon_text {
  flex: 1;
}

.coupon_text small {
  color: var(--color_shade8);
}

.coupon_title {
  padding: 0 5px 0 10px;
  margin: 0;
  flex: 1;
  font-weight: 700;
  color: var(--foreground_color1);
}


.coupon_icon ion-icon {
  font-size: 25px;
}

.coupon_item:not(:last-child) {
  margin-bottom: 10px;
}

.coupon_container h4 {
  color: var(--highlight_color);
}
