html {
  font-size: 10px;
}
body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
}
[v-cloak] {
  opacity: 0;
  visibility: hidden;
}
.ega-page-order {
  --primary-color: #f7980a;
  --page-bg: #f7f7f7;
  --text-color: #5c5c5c;
  --btn-bg: #f7980a;
  --btn-color: #ffffff;
  --btn-bg-hover: #f7740a;
  --btn-color-hover: #ffffff;
  --price-color: #b50b0b;
  --compare-price-color: #999999;
  --more-bg: #cccccc;
  --more-color: #ffffff;
  --more-bg-hover: #cccccc;
  --more-color-hover: #ffffff;
  --addcart-bg: #f7980a;
  --addcart-color: #ffffff;
  --addcart-bg-hover: #f7740a;
  --addcart-color-hover: #ffffff;
  --checkout-bg: #f7980a;
  --checkout-color: #ffffff;
  --checkout-bg-hover: #f7740a;
  --checkout-color-hover: #ffffff;
  --card-bg: #ffffff;
  --input-border: 1px solid #dedede;
  --product-border: 1px solid #ececec;
  --cart-price-color: #000000;
  --cart-max-height: 400px;
  --header-bg: #ffffff;
  --footer-bg: #1a3966;
  --footer-color: #ffffff;
  --copyright-bg: #f8f8f8;
  --copyright-color: #5c5c5c;
  --border-radius: 4px;
  --qty-input-width: 55px;
  --qty-btn-width: 44px;
  --qty-height: 44px;

  color: var(--text-color);
  background-color: var(--page-bg);
  min-height: 100vh;
}
body::-webkit-scrollbar {
  width: 3px;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  outline: 1px solid var(--primary-color);
}
body.ega-modal-show {
  overflow: hidden;
  height: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 13px 0;
  line-height: 1.5;
}
p {
  margin: 0 0 10px 0;
  line-height: 1.5;
}
.ega-form__control {
  min-width: 150px;
  min-height: 32px;
  font-size: 14px;
}
.ega-form__group label {
  line-height: 1.5;
  font-size: 14px;
}
.ega-btn {
  font-size: inherit;
  background: var(--btn-bg);
  color: var(--btn-color);
  border: none;
}
.ega-btn:hover {
  background: var(--btn-bg-hover);
  color: var(--btn-color-hover);
  border-color: transparent;
}
.ega-btn.ega-bg--secondary {
  background-color: #999;
  border-color: #999;
}
.ega-btn.ega-btn--outline {
  background-color: transparent;
  color: var(--btn-bg);
  border: 1px solid var(--btn-bg);
}
.ega-btn.ega-btn--loading svg {
  -webkit-animation: spin 0.4s linear infinite;
  animation: spin 0.4s linear infinite;
  vertical-align: top;
  font-size: 18px;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.ega-body {
  background: var(--body-bg);
  height: 100%;
  min-height: 60vh;
  padding-bottom: 30px;
}
.ega-card {
  background-color: var(--card-bg);
  border: none;
  box-shadow: 3px 3px 6px 0 #e5e5e5;
}
/* Start PromotionBar */
.ega-promotion {
  line-height: 1.5;
  align-items: center;
  background: var(--header-promotion-bg);
  color: var(--header-promotion-color);
  border: 1px dashed var(--header-promotion-color);
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  margin-bottom: 15px;
  border-radius: var(--border-radius);
  padding: 5px 10px;
}
.ega-promotion a {
  text-decoration: none;
  color: var(--text-color);
}
.ega-promotion-close {
  display: none;
  font-size: 20px;
  position: absolute;
  right: 30px;
  top: 6px;
}

.ega-btn[data-coupon] {
  cursor: pointer;
  background: transparent;
  color: var(--header-promotion-color);
  float: right;
  border: 1px solid var(--header-promotion-color);
  padding: 5px 10px;
}
/* End PromotionBar */

/* Start Header */
.ega-header {
  background-color: var(--header-bg);
  padding: 0px;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 12;
  border: none;
  padding-bottom: 8px;
  padding-top: 8px;
}
.ega-header > .ega-container {
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
}
.ega-header .ega-logo,
.ega-header__hotline {
  height: 50px;
  display: flex;
  align-items: center;
}
.ega-logo {
  margin: 0;
  font-size: 1rem;
}
.ega-header .ega-logo img {
  max-height: 50px;
}
.ega-header__hotline {
  justify-content: flex-end;
  color: var(--header-color);
}
.ega-header__hotline-icon {
  display: block;
  text-align: center;
  padding-right: 5px;
}
.ega-header__hotline-content {
  margin: 0;
  line-height: 1.3;
}
.ega-header__hotline-content span {
  display: block;
}
.ega-header__hotline-content a {
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  color: inherit;
}
.ega-cart {
  display: inline-block;
  width: 40px;
  position: relative;
  margin-left: auto;
}
.ega-cart span {
  position: absolute;
  right: 0px;
  width: 20px;
  height: 20px;
  color: var(--addcart-color);
  background: var(--addcart-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  font-size: 10px;
  border-radius: 100%;
  top: -5px;
}
.ega-cart svg {
  color: #fff;
  font-size: 25px;
}
/* End Header */

/* Start Search */
.ega-fastorder__search {
  margin-bottom: 15px;
}
.ega-fastorder__search-form {
  height: 35px;
  position: relative;
  background-color: #fff;
  padding-left: 34px;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
}
.ega-fastorder__search-form svg {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 34px;
  color: var(--primary-color);
}
.ega-fastorder__search-input {
  border: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  color: var(--text-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
}
.ega-fastorder__search-clear {
  position: absolute;
  right: 0;
  top: 4px;
  width: 33px;
  height: 33px;
  line-height: 30px;
  font-size: 20px;
  color: #a9a6a6;
  cursor: pointer;
}
/* End Search */

/* Start Menu */
#ega-coll-menu {
  margin-left: -15px;
  margin-right: -15px;
  transition: transform 0.4s;
  overflow: hidden;
  height: 48px;
}
#ega-coll-menu .ega-menu {
  height: 100%;
  display: flex;
  text-align: center;
  overflow-x: auto;
  width: auto;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  margin-left: 15px;
}
#ega-coll-menu .ega-menu::-webkit-scrollbar {
  display: none;
}
#ega-coll-menu .ega-menu__item {
  min-width: 100px;
  margin-left: -2px;
  margin-right: -2px;
  flex: 0 0 auto;
  height: 100%;
}
#ega-coll-menu .ega-menu__link {
  padding: 10px 14px;
  display: flex;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-color);
  align-items: center;
  height: 100%;
  justify-content: center;
}
#ega-coll-menu .has-icon .ega-menu__link {
  justify-content: flex-start;
}
#ega-coll-menu .ega-menu__icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: 100% auto;
  background-position: center;
  margin-right: 5px;
}
#ega-coll-menu .ega-menu__link.current {
  color: var(--primary-color);
  position: relative;
}
#ega-coll-menu .ega-menu__link.current:before {
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  opacity: 0.1;
  position: absolute;
}
.ega-page-order.fix-menu #ega-coll-menu {
  z-index: 11;
  top: 0;
  width: 100%;
  left: 0;
  margin-left: 0;
  margin-right: 0;
  box-shadow: -7px 3px 15px 1px rgb(0 0 0 / 30%);
}
.ega-page-order.fix-menu #ega-coll-menu .ega-menu {
  display: flex;
  text-align: center;
  overflow-x: auto;
  width: auto;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-left: 0;
}
.ega-page-order.fix-menu #ega-coll-menu .ega-menu__item {
  flex: 0 0 auto;
}
/* End Menu */

/* Start Product */
.ega-fastorder__main > .ega-col {
  padding-left: 0;
  padding-right: 0;
}
.ega-pro__heading {
  font-size: 18px;
  margin: 0 0 15px 0;
  background: rgba(8, 0, 64, 0.04);
  padding: 7px;
  font-weight: 500;
  text-align: center;
  border-radius: 8px 8px 0 0;
}
.ega-pro__list {
  display: flex;
  flex-wrap: wrap;
}
.ega-pro {
  padding: 12px;
  border-top: var(--product-border);
  background-color: #ffffff;
  flex: 0 0 100%;
  max-width: 100%;
  flex-wrap: initial;
}
.ega-pro:first-child {
  border-top: none;
}
.ega-pro .ega-media__left,
.ega-pro .ega-media__content {
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
}
.ega-pro .ega-media__left {
  margin-right: 1rem;
  margin-bottom: 0;
  width: 150px;
  flex-basis: 150px;
}
.ega-pro .ega-pro__image {
  cursor: pointer;
}
.ega-pro__image img {
  border-radius: var(--border-radius);
}
.ega-pro .ega-media__content {
  width: calc(100% - 150px - 1rem);
}
.ega-pro .ega-pro__title {
  overflow: hidden;
  line-height: 1.3em;
  font-size: 14px;
  color: #333;
  margin-bottom: 7px;
  text-overflow: ellipsis;
  white-space: initial;
  cursor: pointer;
  box-sizing: border-box;
}
.ega-pro .ega-pro__title,
.ega-cart__item-left .ega-pro__title {
  font-weight: 500;
}
.ega-pro__price-group {
  font-size: 15px;
  width: 100%;
  min-height: 30px;
  position: relative;
  padding-right: 30px;
}
.ega-pro__price {
  color: var(--price-color);
  font-weight: 500;
  font-size: 16px;
}
.ega-pro__price-del {
  color: var(--compare-price-color);
}
.ega-pro .ega-pro__description {
  display: block;
  font-size: 14px;
}
.ega-pro__options .ega-form__group label {
  position: relative;
  padding-left: 25px;
  font-weight: normal;
  line-height: 24px;
  cursor: pointer;
}
.ega-pro__options .ega-form__group label input[type="radio"],
.ega-pro__options .ega-form__group label input[tye="checkbox"] {
  display: none;
}
.grid .ega-pro {
  flex: 0 0 50%;
  max-width: 50%;
  flex-wrap: wrap;
  padding: 12px;
  background-color: #ffffff;
  border-radius: var(--border-radius);
}
.grid .ega-pro .ega-media__left,
.grid .ega-pro .ega-media__content {
  flex: 0 0 100%;
  max-width: 100%;
}
.grid .ega-pro .ega-media__left {
  margin-right: 0;
  margin-bottom: 15px;
}
.grid .ega-pro .ega-pro__image {
  text-align: center;
  max-width: 100%;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  padding-top: 100%;
}
.grid .ega-pro .ega-pro__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px;
}
.grid .ega-pro .ega-pro__title {
  padding: 10px 0 0;
}
.grid .ega-pro .ega-pro__description {
  display: none;
}
.ega-add-cart {
  color: var(--addcart-color);
  height: var(--qty-height, 30px);
  display: inline-flex;
  margin-left: auto;
  font-size: 26px;
  line-height: 26px;
  width: var(--qty-btn-width, 30px);
  background: linear-gradient(#fff, #f3f3f3);
  user-select: none;
  border: 1px solid #ececec;
  justify-content: center;
  align-items: center;
}
.ega-pro__list .ega-pro .ega-add-cart {
  border: 2px solid var(--addcart-bg);
  color: var(--addcart-bg);
  background: var(--addcart-color);
  display: block;
  text-align: center;
  line-height: 1;
  font-weight: normal;
  text-decoration: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
}
.ega-pro__list .ega-pro .ega-add-cart.ega-btn--loading {
  border: 0;
  padding: 6px;
}
.ega-pro__addcart {
  display: flex!important;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 12px;
  line-height: 1.3;
  background-color: var(--checkout-bg);
  padding: 5px 20px;
  color: var(--checkout-color);
  min-height: 45px;
  border-radius: 4px;
}
.ega-pro__addcart .ega-pro__price {
  color: inherit;
  font-size: 14px;
}
.ega-pro__qty {
  width: auto;
}
.ega-pro__qty-control {
  position: static;
  color: var(--addcart-bg);
  vertical-align: top;
  border-radius: var(--border-radius);
}
.ega-pro__qty-control svg {
  font-size: 20px;
}
.ega-pro__qty-input {
  border-radius: 0px;
  float: none;
  width: var(--qty-input-width) !important;
  line-height: 22px;
  height: var(--qty-height);
  border: none;
  display: inline-block;
  min-width: 0;
  -moz-appearance: textfield;
}
.ega-pro__qty-input::-webkit-outer-spin-button,
.ega-pro__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* End Product */

/* Start Modal */
.ega-modal {
  background-color: rgba(0, 0, 0, 0.7);
  padding-left: 12px;
  padding-right: 12px;
  transition: opacity 0.2s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
}
.ega-modal__content {
  margin: auto auto 0 auto;
  transition: transform 0.2s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
  top: 50%;
  transform: scale(0) translateY(-50%);
}
.ega-modal__close {
  font-size: 18px;
  line-height: 26px;
  z-index: 1;
}
.ega-modal__body {
  max-height: 93vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.ega-modal.show .ega-modal__content {
  transform: scale(1) translateY(-50%);
  max-width: 650px;
}

.ega-modal .ega-pro__title {
  text-overflow: unset;
  display: block;
  font-size: 22px;
}
.ega-modal.ega-modal--fullmb {
  padding: 0px;
  overflow: hidden;
  width: 100vw;
  height: 100%;
}
.ega-modal.ega-modal--fullmb * {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}
.ega-modal .ega-pro__info .ega-form__group {
  margin-bottom: 0px;
}
.ega-modal .ega-pro {
  padding: 0px;
}
.ega-modal.ega-modal--fullmb .ega-modal__content {
  padding: 0px;
  top: 0px;
  height: 100%;
  transform: translateY(0);
  max-width: 100%;
  opacity: 1;
  margin: auto;
}
.ega-modal__back {
  display: block;
  text-decoration: none;
  position: absolute;
  width: 30px;
  height: 30px;
  right: -12px;
  top: -12px;
  text-align: center;
  line-height: 25px;
  background-color: #444;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
}
.ega-modal.ega-modal--fullmb .ega-modal__close, .ega-modal.ega-modal--fullmb .ega-modal__back {
  left: 15px;
  right: auto;
  top: 15px;
  z-index: 20;
  color: var(--text-color);
  background: none;
  border: none;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0px;
}
.ega-modal.ega-modal--fullmb .ega-modal__body {
  max-height: 100%;
  padding: 0 15px;
  height: 100%;
  top: 0;
}
.ega-modal.ega-modal--fullmb .ega-pro,
.ega-modal.ega-modal--fullmb .ega-row {
  height: 100%;
  padding-left: 0px;
  padding-right: 0px;
  border: 0px;
}
.ega-modal.ega-modal--fullmb .ega-pro > .ega-row {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  grid-template-rows: 100vw 1fr auto;
}
.ega-modal.ega-modal--fullmb .ega-modal__media {
  grid-row: 1;
  grid-column: 1;
  padding: 0px;
}
.ega-modal.ega-modal--fullmb .ega-pro__info {
  grid-row: 1/3;
  grid-column: 1;
  min-height: 100%;
  max-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0px;
}
.ega-modal.ega-modal--fullmb .ega-pro__cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
  background: #fff;
  padding: 5px 15px;
  border-top: 1px solid #efefef;
  position: sticky;
  position: -webkit-sticky;
  bottom: 0px;
  width: 100%;
  z-index: 999;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ega-modal.ega-modal--fullmb .ega-pro__image {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}
.ega-modal.ega-modal--fullmb .ega-modal__media img {
  position: absolute;
  top: 0;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translateX(-50%);
}
.ega-modal.ega-modal--fullmb .ega-pro__info .ega-pro__wrapper {
  display: flex;
  flex-direction: column;
  overflow: auto;
  height: auto;
  background: #fff;
  text-align: left;
  position: relative;
  top: 100vw;
  overflow-x: hidden;
  padding: 15px 15px 60px;
}
.ega-modal.ega-modal--fullmb .ega-form__group {
  flex-direction: column;
  align-items: flex-start;
}
.ega-modal.ega-modal--fullmb .ega-pro__qty {
  margin: 10px 0px;
  display: block;
  text-align: center;
}
.ega-modal.ega-modal--fullmb .ega-form__group {
  flex-direction: column;
  align-items: flex-start;
}
.ega-modal.ega-modal--fullmb .ega-form__group .ega-form__label {
  width: calc(100% + 30px);
  background: rgba(8, 0, 64, 0.04);
  margin: 10px -15px;
  padding: 7px 15px;
  font-weight: 400;
}
.ega-modal.ega-modal--fullmb
  .ega-pro__options
  .ega-form__group.radio-button {
  flex-direction: row;
  overflow: auto;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  margin: 10px 0px;
}
.ega-pro__options .ega-form__group label {
  margin-right: 15px;
}
.ega-pro__options .ega-form__group label:before {
  content: "";
  line-height: 17px;
  font-size: 17px;
  color: #fff;
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  left: 0;
  top: 1px;
  border-radius: 3px;
  text-align: center;
  border: 1px solid var(--primary-color);
}
.ega-pro__options .ega-form__group label.selected:before {
  content: "\2713";
  background-color: var(--primary-color);
}
.ega-modal.ega-modal--fullmb
  .ega-pro__options
  .ega-form__group.radio-button
  .ega-pro__option-ic {
  display: none;
}
.ega-modal.ega-modal--fullmb .ega-pro__desc {
  max-height: 100%;
  overflow-y: auto;
}
.ega-modal.ega-modal--fullmb .ega-pro__desc img {
  height: auto;
}
.ega-modal.ega-modal--fullmb.show .ega-pro__desc-wrapper {
  max-height: 300px;
  overflow-y: auto
}
.ega-modal.ega-modal--fullmb.show .ega-pro__desc-wrapper::-webkit-scrollbar {
  width: 3px;
}
.ega-modal.ega-modal--fullmb.show .ega-pro__desc-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  outline: 1px solid var(--primary-color);
}
.ega-pro__desc-wrapper .desc-overlay {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0px 0px;
  background: linear-gradient(180deg, #ffffff00, #ffff, #ffff);
  position: absolute;
  bottom: 0px;
  width: 100%;
  cursor: pointer;
  height: 70%;
}
.ega-modal.ega-modal--fullmb .ega-pro__desc-wrapper.show {
  max-height: initial;
}
.ega-pro__desc-wrapper.show .desc-overlay {
  position: initial;
}
.ega-pro__desc-wrapper.show .desc-overlay svg {
  transform: rotate(180deg);
}
.ega-modal.ega-modal--fullmb .ega-pro__cta .ega-pro__price-group {
  margin: 0px;
}
.ega-modal.ega-modal--fullmb
  .ega-pro__cta
  .ega-pro__price-group
  .ega-pro__price {
  color: var(--price-color);
  font-weight: bold;
  font-size: 18px;
}
/* End Modal */

/* Start Cart */
#ega-fastorder-cart {
  position: fixed;
  bottom: 0;
  top: auto;
  margin: 0;
  z-index: 999;
  width: 100%;
  left: 0;
  height: auto;
  display: grid;
  grid-template-columns: 60% 40%;
  grid-template-rows: 1fr;
  grid-template-areas:
    "cartBody cartBody"
    "cartTime cartTime"
    "cartBottom cartTop";
  box-shadow: 3px 3px 6px 0 #e5e5e5;
}
#ega-fastorder-cart.is-show {
  height: 100%;
  grid-template-areas:
    "cartBody cartBody"
    "cartTime cartTime"
    "cartTop cartTop";
}
#ega-fastorder-cart.is-show .ega-pro__note {
  padding: 0 15px;
}
#ega-fastorder-cart.is-show .ega-pro__note,
#ega-fastorder-cart.is-show .ega-header__action {
  display: block;
  grid-column: 1/ -1;
  padding: 0 15px;
}
.ega-cart__top,
.ega-cart__body,
.ega-cart__bottom {
  padding: 7px 0px;
  border-top: 1px solid #ececec;
}
.ega-cart__bottom {
  position: relative;
  padding-right: 0px;
  grid-area: cartBottom;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: unset;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}
#ega-fastorder-cart.is-show .ega-cart__bottom {
  display: none;
}
.ega-cart__total {
  padding: 0 15px;
  width: 100%;
}
.ega-cart__total .ega-row {
  align-items: center;
  height: 100%;
}
.ega-cart__more,
button#toggle-time-delivery {
  display: block;
  font-size: 12px;
}
.ega-cart__more {
  text-decoration: none;
  color: var(--text-color);
}
.ega-cart__price-group {
  display: grid;
  grid-template-columns: 1fr 105px;
  align-items: center;
}
button#toggle-time-delivery,
.cart-btn {
  margin: auto;
  background: none;
  border: none;
  outline: none;
  padding: 0px;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cart-icon {
  position: relative;
}
.cart-icon b {
  position: absolute;
  right: -8px;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 90px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 10px;
  line-height: 15px;
}
.is-show .cart-text {
  font-weight: bold;
  color: var(--primary-color);
}
button#toggle-time-delivery img,
.cart-btn img {
  max-width: 20px;
  max-height: 20px;
}
#ega-fastorder-cart.is-show .ega-cart__checkout {
  display: block;
  line-height: 35px;
}
#ega-fastorder-cart.is-show .ega-cart__checkout.loading {
  display: flex;
}
#ega-fastorder-cart.is-show .ega-cart__checkout .ega-pro__price {
  margin-left: 8px;
}
@media(max-width: 767px){
  button#toggle-time-delivery img,
  .cart-btn img {
   margin-bottom: 3px;
  }
}
#ega-fastorder-cart .ega-pro__note,
#ega-fastorder-cart .ega-header__action {
  display: none;
  margin-top: 15px;
}
.ega-cart__body {
  padding: 0;
  grid-area: cartBody;
  overflow-y: auto;
  background-color: #f5f5f5;
  flex-direction: column-reverse;
}
.ega-cart__body.is-hidden {
  display: none;
}
.ega-cart__top {
  grid-area: cartTop;
  padding: 7px;
}
.ega-cart__checkout {
  border-radius: var(--border-radius);
  background: var(--checkout-bg);
  color: var(--checkout-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  line-height: 1.3;
  min-height: 45px;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
}
.ega-cart__checkout.ega-disabled {
  opacity: 0.4;
}
.ega-cart__checkout .ega-pro__price {
  color: inherit;
  font-size: 14px;
}
.ega-cart__heading {
  border-bottom: var(--product-border);
  padding: 6px 0;
  height: 46px;
  line-height: 34px;
  position: sticky;
  position: -webkit-sticky;
  top: 0px;
  background: #fff;
  z-index: 20;
}
.ega-cart__close {
  position: absolute;
  font-size: 30px;
  left: 5px;
  top: 3px;
  line-height: 60px;
  width: 40px;
  height: 40px;
  display: block;
}
.ega-cart__heading h3 {
  line-height: inherit;
}
.ega-cart__products {
  max-height: 100%;
  padding-left: 15px;
  padding-right: 15px;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #fff;
  border-radius: 8px;
}
.ega-cart__item {
  padding: 10px 0;
  flex: 0 0 100%;
  flex-wrap: wrap;
  max-width: 100%;
  align-items: center;
  border-top: var(--product-border);
}
.ega-cart__item:first-child {
  border-top: none;
}
.ega-cart__item .ega-media__left {
  flex-basis: 70px;
  max-width: 70px;
  margin: 0;
}
.ega-cart__item .ega-pro__image {
  max-width: 70px;
}
.ega-cart__item .ega-media__content {
  display: flex;
  flex-basis: calc(100% - 70px);
  max-width: calc(100% - 70px);
  position: relative;
  align-items: center;
  flex-wrap: wrap;
}
.ega-cart__item-left {
  flex: 0 0 100%;
  max-width: 100%;
  padding-right: 25px;
  padding-left: 15px;
}
.ega-cart__item-right {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 0;
  text-align: left !important;
}
.ega-cart__item-left .ega-pro__title {
  font-size: 14px;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  max-height: 6ex;
}
.ega-cart__remove {
  display: inline-block;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: absolute;
  right: -20px;
  top: 0;
  margin-top: 0;
}
.ega-cart__item-right {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 0;
  text-align: left !important;
}
.ega-pro__note input[type="text"] {
  height: 40px;
  padding-left: 40px;
}
.ega-pro__note svg {
  position: absolute;
  font-size: 18px;
  top: 34px;
  left: 12px;
  color: #bbb;
}
#ega-fastorder-cart.is-show .ega-pro__note svg {
  left: 25px;
}
.ega-cart__delivery {
  position: sticky;
  top: 46px;
  margin-bottom: 10px;
  background-color: #f5f5f5;
  z-index: 1;
}
.ega-cart__delivery-heading {
  padding: 10px 15px 10px 15px;
  margin-bottom: 0;
  font-size: 16px;
  background-color: #fff;
}
.ega-cart__delivery-item {
  background-color: #fff;
  padding: 5px 15px;
  margin-bottom: 5px;
  display: grid;
  grid-template-columns: 35px 1fr 70px;
  align-items: center;
}
.ega-cart__delivery-item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ega-cart__delivery-item img {
  max-width: 25px;
  margin-left: auto;
  margin-right: auto;
}
.ega-cart__delivery-item a {
  text-decoration: none;
  color: #2E72D2;
}
/* End Cart */

/* Start Footer */
.ega-footer {
  margin-top: 30px;
}
.ega-footer {
  background-color: var(--footer-bg);
  color: var(--footer-color);
  padding-top: 15px;
  line-height: 1.3;
  font-size: 16px;
}
.ega-footer a {
  color: var(--footer-color);
}
.ega-footer__col {
  padding: 15px 0;
}
.ega-footer__heading {
  margin-bottom: 15px;
}
.ega-footer .ega-logo img {
  max-width: 120px;
}
.ega-footer__socials {
  margin-top: 20px;
}
.ega-footer__socials li:first-child a {
  margin-left: 0;
}
.ega-footer .ega-menu {
  padding-left: 20px;
}
.ega-footer .ega-menu__link {
  padding-left: 0;
  padding-top: 0;
  color: var(--footer-color);
}
.ega-btn.ega-btn--social {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  padding: 5px;
  background-color: #fff;
  color: var(--text-color);
}
.ega-btn.ega-btn--social.facebook:hover {
  background-color: #3b5998;
  color: #fff;
}
.ega-btn.ega-btn--social.instagram:hover {
  background-color: #f58529;
  color: #fff;
}
.ega-footer__bct img {
  max-width: 120px;
}
.ega-copyright {
  background-color: var(--copyright-bg);
  font-size: 88%;
  color: var(--copyright-color);
}
.ega-footer + .ega-copyright {
  margin-top: 0;
}
.ega-copyright p {
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: var(--product-border);
}
/* End Footer */

/* Start Skeleton */
.ega-skeleton {
  display: flex;
  height: 125px;
  padding: 1%;
  background-color: white;
}
.ega-skeleton .img-container {
  width: 15%;
  padding: 10px;
}
.ega-skeleton .img {
  border: 1px solid white;
  width: 100%;
  height: 100%;
  background-color: #eee;
}
.ega-skeleton .content {
  border: 1px solid white;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 10px;
  justify-content: space-between;
}
.ega-skeleton .stripe {
  border: 1px solid white;
  height: 20%;
  background-color: #eee;
}
.ega-skeleton .small-stripe {
  width: 40%;
}
.ega-skeleton .medium-stripe {
  width: 70%;
}
.ega-skeleton .long-stripe {
  width: 100%;
}
.ega-skeleton .img,
.ega-skeleton .stripe {
  animation: hintloading 2s ease-in-out 0s infinite reverse;
  -webkit-animation: hintloading 2s ease-in-out 0s infinite reverse;
}
@keyframes hintloading {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
@-webkit-keyframes hintloading {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
/* End Skeleton */

/* Start Address */
.modal-address.ega-modal.ega-modal--fullmb {
  height: 100%;
  width: 100vw;
}
.modal-address.ega-modal.ega-modal--fullmb .ega-modal__close, .modal-address.ega-modal.ega-modal--fullmb .ega-modal__back {
  background-color: transparent;
  top: 3px;
  left: 5px;
  font-size: 30px;
  line-height: 60px;
  display: block;
}
.modal-address .ega-modal__header h3 {
  margin: 0 60px;
  text-align: center;
}
.modal-address.ega-modal.ega-modal--fullmb .ega-modal__body {
  padding-left: 0;
  padding-right: 0;
  height: calc(100vh - 45px - 65px);
  background-color: #F7F7F7;
}
.modal-address .form-address {
  padding: 8px 12px;
  position: relative;
}
.modal-address .input-address {
  border-radius: 0;
  border: 1px solid #ccc;
  line-height: 32px;
  width: 100%;
  padding-left: 35px;
  padding-right: 40px;
  border-radius: 4px;
}
.modal-address .form-address svg {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  left: 15px;
}
.modal-address .ega-modal__footer {
  padding: 10px;
  background-color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.modal-address .ega-modal__footer .ega-btn {
  line-height: 28px;
  height: auto;
}
.form-address {
  position: relative;
}
.address-prediction__title {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
.modal-address .address-prediction__item {
  background-color: #fff;
  padding: 15px 34px 15px 15px;
  box-shadow: inset 0px 1px 0px #E4E5E7;
  position: relative;
}
.modal-address .address-prediction__item:first-child {
  box-shadow: none;
}
.modal-address .address-prediction__item p {
  display: grid;
  grid-template-columns: 20px 1fr;
}
.modal-address .address-prediction__item p:last-child {
  margin-bottom: 0;
}
.modal-address .address-prediction__item p img {
  max-width: 15px;
}
.address-default {
  color: #2E72D2;
}
.address-check {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  right: 15px;
  top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s ease;
}
.address-check.is-checked  {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.address-check svg  {
  color: #fff;
  width: 12px;
  height: 12px;
  opacity: 0;
  transition: opacity .3s ease;
}
.address-check.is-checked  svg {
  opacity: 1;
}
#map {
  height: 100%;
  position: relative;
}
#map.no-map .mapboxgl-ctrl-geocoder {
  width: auto;
  max-width: none;
  margin-left: 15px;
  margin-right: 15px;
  top: 10px;
}
@keyframes showToast {
  0% {
    opacity: 1;
    z-index: 5;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
.ega-map__toast {
  position: absolute;
  z-index: -1;
  top: 10px;
  left: 15px;
  right: 15px;
  background-color: #fff;
  padding: 8px 24px;
  text-align: center;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  opacity: 0;
}
.permission-denied-toast.is-show {
  animation: showToast 6s ease 1;
}
.ega-map__toast.map-permission-guide {
  padding: 12px;
  text-align: left;
  min-width: 300px;
  transition: all .4s ease;
  right: 0px;
  left: auto;
  transform: none;
  bottom: 30px;
  top: auto;
}
.map-permission-guide ul {
  padding-left: 20px;
}
.map-permission-guide ul a {
  color: var(--primary-color);
  text-decoration: none;
}
.btn-view-position {
  width: 29px;
  display: block;
  position: absolute;
  height: 29px;
  bottom: 20px;
  text-align: center;
  right: 10px;
  background-color: #fff;
  border-radius: 8px;
  line-height: 29px;
  box-shadow: 0 1px 4px rgb(0 0 0 / 30%);
  cursor: pointer;
}
.btn-view-position.permission-denied:hover .map-permission-guide {
  opacity: 1;
  z-index: 5;
}
/* End Address */

/** Start Goong Style **/
.mapboxgl-canvas-container {
  height: 100%;
}
.mapboxgl-ctrl-top-left {
  right: 0;
  padding-left: 10px;
  padding-right: 10px;
}
.mapboxgl-ctrl-top-left .mapboxgl-ctrl {
  float: none;
  width: auto;
  margin: 10px 0 0 0;
}
/** End Goong Style **/
.ega-btn--clear {
  position: absolute;
  font-size: 15px;
  top: 17px;
  right: 22px;
}
/* Responsive */
@media (min-width: 0) and (max-width: 992px) {
  .fix-menu #ega-coll-menu {
    position: fixed;
  }
}
@media (min-width: 768px) {
  .ega-btn:hover {
    background: var(--addcart-bg-hover);
    color: var(--addcart-color-hover);
    border-color: transparent;
  }
  .ega-modal__content {
    border-radius: 10px;
    overflow: hidden;
  }
  .ega-header {
    padding-bottom: 8px;
  }
  .ega-header__action-mb {
    position: static;
  }
  .ega-promotion-close {
    display: block;
    right: 15px;
  }
  .ega-header .ega-logo img {
    max-width: 100%;
  }
  .ega-modal.ega-modal--fullmb .ega-modal__content {
    height: auto;
    overflow: initial;
    top: 50%;
    opacity: 1;
    transform: translateY(-50%);
    max-width: 900px;
  }
  .ega-modal.ega-modal--fullmb .ega-pro > .ega-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "qvMedia qvInfo" "qvCta qvCta";
    grid-column-gap: 15px;
  }
  .ega-modal.ega-modal--fullmb .ega-modal__media {
    grid-area: qvMedia;
    padding-left: 15px;
  }
  .ega-modal.ega-modal--fullmb .ega-pro__info {
    grid-area: qvInfo;
    padding-right: 15px;
    max-height: calc(85vh - 60px);
    min-height: 480px;
    grid-column: 2;
    padding-top: 0px;
  }
  .ega-modal.ega-modal--fullmb .ega-pro__cta {
    grid-area: qvCta;
    justify-content: flex-end;
    box-shadow: 0px 0px 0px rgba(63, 63, 68, 0.05),
      0px -1px 3px rgba(63, 63, 68, 0.15);
  }
  .ega-modal.ega-modal--fullmb .ega-pro__qty {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .ega-modal.ega-modal--fullmb .ega-pro__info::-webkit-scrollbar {
    width: 3px;
  }
  .ega-modal.ega-modal--fullmb .ega-pro__info .ega-pro__wrapper {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    top: 0px;
    border-top: none;
  }
  .ega-modal.ega-modal--fullmb .ega-modal__body {
    padding-top: 20px;
    padding-bottom: 0px;
  }
  .ega-modal.ega-modal--fullmb .ega-pro__title {
    font-size: 24px;
    line-height: 1.2;
  }
  .ega-modal.ega-modal--fullmb .ega-form__group .ega-form__label {
    width: 100%;
    margin: 10px 0;
  }
  .ega-modal.ega-modal--fullmb .ega-pro__desc-wrapper {
    max-height: 300px;
  }
  button#toggle-time-delivery {
    cursor: pointer;
    font-size: 16px;
    text-align: left;
  }
  .ega-pro__qty-group {
    display: flex;
    align-items: center;
    padding-right: 50px;
  }
  .ega-pro__qty-group label {
    padding-right: 10px;
    font-size: 18px;
  }
  .ega-modal.ega-modal--fullmb .ega-modal__close, .ega-modal.ega-modal--fullmb .ega-modal__back {
    opacity: 1;
    background-color: #fff;
    box-shadow: 0px 0px 0px rgba(63, 63, 68, 0.05),
      0px 1px 3px rgba(63, 63, 68, 0.15);
    right: -15px;
    top: -15px;
    font-size: 35px;
    left: auto;
  }
  .ega-modal.ega-modal--fullmb .ega-modal__back {
    box-shadow: none;
  }
  .modal-address.ega-modal.ega-modal--fullmb .ega-modal__content {
    top: 0;
    transform: none;
    margin-top: 100px;
    margin-bottom: 100px;
    height: auto;
  }
  .modal-address.ega-modal.ega-modal--fullmb .ega-modal__body {
    height: calc(100vh - 45px - 65px - 200px);
  }
  .modal-address.ega-modal.ega-modal--fullmb .ega-modal__close {
    top: -15px;
    right: -15px;
    background-color: #fff;
    left: auto;
    line-height: 40px;
    font-size: 20px;
  }
  .modal-address .ega-modal__footer {
    position: static;
  }
  #map.no-map .mapboxgl-ctrl-geocoder {
    top: 0;
  }
  .ega-map__toast {
    left: 50%;
    transform: translateX(-50%);
  }
}
button#toggle-time-delivery + p {
  margin-bottom: 0px;
}
@media (min-width: 992px) {
  .ega-promotion {
    font-size: 100%;
    overflow: hidden;
    height: auto;
    margin-top: 0;
  }
  .ega-header {
    position: sticky;
  }
  .ega-header > .ega-container {
    grid-template-columns: 1fr 2fr 1fr;
  }
  #ega-coll-menu {
    top: 80px;
    height: auto;
    position: sticky;
  }
  #ega-coll-menu .ega-menu {
    flex-direction: column;
    margin: 0;
    text-align: left;
    align-items: start;
  }
  #ega-coll-menu .ega-menu__item {
    margin: 0;
    flex-basis: 100%;
    width: 100%;
  }
  #ega-coll-menu .ega-menu__link {
    font-size: 14px;
    min-height: 50px;
    justify-content: flex-start;
  }
  #ega-coll-menu .ega-menu__icon {
    margin-right: 10px;
    margin-bottom: 0;
    width: 45px;
    height: 45px;
  }
  .ega-body {
    padding-top: 20px;
  }
  .ega-pro__heading {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 24px;
  }
  .ega-fastorder__search {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .ega-container {
    max-width: 1280px;
  }
  .ega-header > .ega-container {
    grid-template-columns: 3fr 5fr 4fr;
    grid-column-gap: 15px;
  }
  .ega-fastorder__search-form {
    height: 40px;
    padding-left: 40px;
  }
  .ega-fastorder__search-form svg {
    top: 3px;
    left: 3px;
  }
  .ega-fastorder__search-input {
    font-size: 14px;
  }
  .ega-pro__list .ega-add-cart__wrapper {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
  }
  .ega-pro__list .ega-add-cart__wrapper:hover .ega-add-cart,
  .ega-pro__list .ega-pro .ega-add-cart:hover {
    color: var(--addcart-color);
    background: var(--addcart-bg);
  }
  #ega-coll-menu,
  .ega-page-order.fix-menu #ega-coll-menu,
  #ega-fastorder-cart {
    top: 76px;
    border-radius: var(--border-radius);
  }
  .ega-footer .ega-logo img {
    max-width: 100%;
  }
  .ega-btn.ega-btn--social {
    width: 36px;
    height: 36px;
    font-size: 24px;
    padding: 6px;
  }
  .ega-footer a:hover {
    text-decoration: underline;
  }
  .ega-footer__bct img {
    max-width: 150px;
  }
  .ega-footer__col {
    padding-bottom: 30px;
  }
  .ega-copyright p {
    padding: 10px 0;
  }
  #ega-coll-menu {
    margin-right: -8px;
    margin-left: 0;
  }
  #ega-fastorder-cart {
    display: flex;
    margin-left: -8px;
    width: auto;
    position: sticky;
    height: auto;
    position: -webkit-sticky;
    z-index: 1;
    background-color: transparent;
    box-shadow: none;
  }
  .ega-cart__top, .ega-cart__bottom {
    padding: 15px;
    border-top: none;
    background-color: #fff;
  }
  .ega-cart__top {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  .ega-cart__bottom {
    order: 3;
    padding: 15px;
    border-top: none;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  .ega-cart__total {
    padding: 0;
  }
  .ega-cart__total .ega-row {
    flex-direction: row;
  }
  .ega-cart__total .ega-pro__price {
    font-size: 20px;
    color: var(--cart-price-color);
    display: block;
  }
  .ega-cart__top {
    order: 4;
    display: block;
    padding-top: 0;
  }
  .cta-btn {
    left: 0;
    border-radius: var(--border-radius);
  }
  .ega-cart__body {
    padding-top: 5px;
    border-top: none;
  }
  .ega-cart__body.is-hidden {
    display: flex;
  }
  .ega-cart__products {
    max-height: var(--cart-max-height);
  }
  .ega-cart__item {
    padding-left: 0;
    padding-right: 0;
  }
  .ega-pro .ega-pro__title,
  .ega-cart__item-left .ega-pro__title {
    font-size: 16px;
  }
  #ega-fastorder-cart .ega-pro__note {
    display: block;
    order: 1;
    background-color: #fff;
    padding: 15px;
    margin: 0;
  }
  .ega-pro__note svg {
    left: 25px;
  }
  button#toggle-time-delivery {
    margin: 0;
    flex-direction: row;
    align-items: flex-end;
  }
  button#toggle-time-delivery img,
  .cart-btn img {
    height: 25px;
    margin-right: 5px;
  }
  .ega-btn[data-coupon]:hover {
    background: var(--header-promotion-color);
    color: var(--header-promotion-bg);
  }
  .ega-cart__delivery {
    background-color: #fff;
    margin-top: 15px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin-bottom: 0;
  }
  .ega-cart__delivery-heading, .ega-cart__delivery-item {
    background-color: transparent;
  }
  .ega-cart__delivery-item {
    cursor: pointer;
  }
}
@media (min-width: 1440px) {
  .ega-container {
    max-width: 1400px;
  }
}
button#toggle-time-delivery + p {
  font-size: 14px;
}

button#toggle-time-delivery + p {
	margin-top: 5px
}
@media(max-width: 1024px){
	  button#toggle-time-delivery ,
  button#toggle-time-delivery + p {
    text-align: center;
    font-size: 12px;
	margin-top: 0px
  }
}
/* End Responsive */
.ega-delivery {
  --input-color: #0b0b0b;
  --input-background: #ffff;
  --input-border: #eee;
  --title-border: #0b0b0b;
  --datepicker-border: grey;
  --datepicker-color: #0b0b0b;
  --datepicker-square: #cfefb4;
}
.ega-delivery input,
.ega-delivery select,
.ega-delivery textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.ega-delivery__title {
  border-bottom: 1.5px solid;
}
.ega-delivery__note p,
.ega-delivery__title p {
  margin: 0px;
  line-height: 1.5;
}
.ega-delivery__note *:empty,
.ega-delivery .ega-delivery__title *:empty {
  display: none;
}
.ega-delivery input,
.ega-delivery select {
  font-size: 16px;
  width: auto;
  padding: 0.5rem 0.75rem;
  border: 1px solid #eee;
  border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
  margin-right: 5px;
  border-radius: 4px;
  flex: 1;
  margin-bottom: 0px;
}
.ega-delivery__wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 10px;
}

.ega-delivery label {
  display: flex;
  flex-direction: column;
  align-items: start;
  line-height: 1.8;
  font-size: 14px;
  margin-right: 15px;
  font-weight: bold;
}
.ega-delivery input,
.ega-delivery select {
  min-width: 200px;
  min-height: 32px;
  font-size: 14px;
  font-weight: normal;
  background-color: var(--input-background);
  border-color: var(--input-border);
  color: var(--input-color);
  border-radius: 0.26392em;
  -webkit-border-radius: 0.26392em;
  -moz-border-radius: 0.26392em;
  -ms-border-radius: 0.26392em;
  -o-border-radius: 0.26392em;
}
/* Start Delivery */
.ega-form__group label {
  line-height: 1.5;
  font-size: 14px;
  width: 100%;
  margin-right: 0;
}
.ega-delivery input {
  width: 100%;
  margin-right: 0;
  margin-top: 5px;
}
.ega-form__group label:not(:first-child) {
  margin-top: 15px;
}
.ega-delivery__modal {
  display: none;
  position: fixed;
  top: 50% !important;
  right: 50%;
  width: 300px;
  z-index: 1001;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(54,54,53,0.3);
  transform: translate(50%, -50%);
}
.ega-delivery__modal.is-show {
  display: block;
  padding-bottom: 15px;
  border-radius: 10px;
}
.ega-delivery__title {
  border: none;
  padding: 0px 15px;
}
.ega-delivery.ega-form__group {
  padding: 15px;
  border-top: 1px solid var(--primary-color);
  flex-wrap: wrap;
  margin: 0;
}
.ega-delivery__overlay {
  z-index: -1;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.3);
}
.ega-delivery__modal.is-show + .ega-delivery__overlay {
  z-index: 1000;
  display: block;
}
.ega-delivery.ega-form__group label {
  display: flex;
}
.ega-delivery__modal .ega-delivery__submit,
.ega-delivery__modal .ega-delivery__submit:hover {
  display: block;
  margin: 0 15px 15px 15px;
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
}
.ega-delivery__modal .ega-delivery__close {
  margin: 0 15px;
  display: block;
  border-radius: 3px;
}
.ega-delivery__modal .ega-delivery__close,
.ega-delivery__modal .ega-delivery__close:hover {
  border: 1px solid #656565;
  color: #656565;
  background-color: transparent;
}
.ega-body {
  background: var(--body-bg);
  border-radius: 20px 20px 0px 0px;
  padding-top: 15px;
  height: 100%;
  min-height: 60vh;
}
.ega-body.empty {
  min-height: 100vh;
}
@media (max-width: 576px) {
  .ega-delivery.ega-form__group {
    flex-wrap: wrap;
  }
  .ega-delivery label,
  .ega-delivery input,
  .ega-delivery select {
    min-width: 100%;
  }
  .ega-delivery input,
  .ega-delivery input,
  .ega-delivery select {
    padding: 10px;
  }
}

.ega-delivery input,
.ega-delivery select,
.ega-delivery textarea {
  width: 100%;
  margin-right: 0;
  margin-top: 5px;
}
.v3dp__datepicker {
  width: 100% !important;
  --vdp-selected-bg-color: var(--primary-color);
  --vdp-hover-bg-color: var(--primary-color);
  --vdp-elem-border-radius: 100%;
}

.v3dp__popout {
  width: 100% !important;
}

/* End Delivery */