@import url("https://fonts.googleapis.com/css?family=Lato:300,400,400i,700,900");

.md_col_container {
  max-width: 1450px;
  margin: 0 auto;
}

.md_col_container::after {
  clear: both;
  content: "";
  display: block;
}

.md_col_container.expanded {
  max-width: none;
}

.md_col_one_third {
  width: calc(100% - 30px);
  float: left;
  margin-left: 15px;
  margin: 50px;
}

@media (min-width: 992px) {
  .md_col_one_third {
    width: calc(27.33333% - 20px);
    float: left;
    margin-left: 15px;
    padding-left: 15px;
  }
}

.md_col_two_third {
  width: calc(100% - 30px);
  float: left;
  margin-left: 15px;
  padding: 30px;
}

@media (min-width: 992px) {
  .md_col_two_third {
    width: calc(66.66667% - 25px);
    float: left;
    margin-left: 15px;
  }
}

.md_col_one_quarter {
  width: calc(100% - 30px);
  float: left;
  margin-left: 15px;
}

@media (min-width: 992px) {
  .md_col_one_quarter {
    width: calc(25%);
    float: left;
    margin-left: 0;
  }
}

.md_col_three_quarter {
  width: calc(100% - 30px);
  float: left;
  margin-left: 15px;
}

@media (min-width: 992px) {
  .md_col_three_quarter {
    width: calc(75%);
    float: left;
    margin-left: 0;
  }
}

.md_col_half {
  width: calc(100%);
  float: left;
  margin-left: 0;
}

@media (min-width: 768px) {
  .md_col_half {
    width: calc(100% - 30px);
    float: left;
    margin-left: 15px;
  }
}

@media (min-width: 992px) {
  .md_col_half {
    width: calc(50% - 22.5px);
    float: left;
    margin-left: 15px;
  }
}

@media (min-width: 992px) {
  .expanded .md_col_half {
    width: calc(50%);
    float: left;
    margin-left: 0;
  }
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  height: 100%;
  font-family: var(--main-font, "Lato"), system-ui, Avenir, Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-p, #8c8c8f);
  line-height: 26px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2px;
  background-color: #fff;
  min-height: 100%;
}

body.modal-active .md_modal_overlay {
  visibility: visible;
  opacity: 1;
  z-index: 1000;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  height: 100%;
}

body > #root {
  height: 100%;
}

.md_separator_title {
  background: rgba(191, 191, 191, 0.4);
  padding: 10px 15px;
  text-align: center;
  margin-bottom: 10px;
}

.md_separator_title h2 {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 15px;
  text-transform: uppercase;
  color: #0b2135;
}

ul {
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

li {
  list-style: none;
}

h2 {
  font-weight: 400;
  letter-spacing: 0.2px;
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  color: #0b2135;
}

h3 {
  font-weight: 300;
  letter-spacing: 0.2px;
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
  color: #0b2135;
}

h4 {
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0;
  line-height: 1.1;
  color: #0b2135;
}

h5 {
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.1;
  color: #0b2135;
}

h6 {
  letter-spacing: 1.5px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  font-size: 10px;
}

p {
  color: #8c8c8f;
  font-weight: 400;
  letter-spacing: 0.2px;
  margin: 0 0 10px;
  margin-bottom: 0;
}

label {
  font-weight: 400;
  margin-bottom: 0;
  display: inline-block;
  max-width: 100%;
}

input[type="text"], input[type="email"], input[type="number"], input[type="password"] {
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  letter-spacing: 0.2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  width: 335px;
  height: 80px;
  border-radius: 10px;
  border: 1.5px solid var(--neutral-1);
  background: var(--full-white);
  color: var(--color-p);
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  padding-left: 19px;
}

a, button, input[type="button"] {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.flex {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.flex .align-top {
  -webkit-align-self: flex-start;
  -ms-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.flex .align-bottom {
  -webkit-align-self: flex-end;
  -ms-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.md_locations h3, .menu .inside ul a {
  display: inline-block;
}

.md_locations h3:after, .menu .inside ul a:after {
  background: #fd4f57;
  content: "";
  display: block;
  height: 2px;
  -webkit-transition: width 350ms ease-in-out;
  transition: width 350ms ease-in-out;
  width: 0%;
}

.md_locations h3:hover, .menu .inside ul a:hover {
  cursor: pointer;
}

.md_locations h3:hover:after, .menu .inside ul a:hover:after {
  width: 100%;
}

.alert_info.md_separator_title h2 {
  color: #8894a3;
  font-size: 10px;
  text-align: left;
}

.alert_info .ico_info {
  display: inline-block;
  padding-right: 10px;
}

.out_padding_bottom {
  padding-bottom: 0 !important;
}

.alert_promo.md_separator_title {
  background-color: #00c3a7;
  text-align: left;
}

.alert_promo.md_separator_title h3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 400;
  padding: 2px 0;
}

.md_full_title_border {
  width: 100%;
  padding: 5px !important;
  border-bottom: 1px solid #e9e9e9;
}

.md_full_title_border h2 {
  font-weight: 300px;
  line-height: 1.5;
}

.space_extra_top {
  margin-top: 10px;
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  .space_extra_top {
    margin-top: 45px;
  }
}

input[type="tel"] {
  height: 50px;
}

.btn.width_auto {
  width: auto !important;
  display: inline-block;
  padding: 0 40px;
}

.btn:disabled {
  cursor: inherit;
  pointer-events: none;
  background: #c0c0c0;
}

.btn.btn_light_gray {
  width: 100%;
  background-color: #f9f9f9;
  border: none;
  display: block;
  text-align: center;
  color: #0b2135;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  height: 50px;
  letter-spacing: 1px;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.btn.btn_light_gray:hover, .btn.btn_light_gray:focus {
  background-color: #2c4155;
  color: white;
}

main, .main {
  position: relative;
  z-index: 0;
}

.content:before {
  z-index: 10;
}

.md_fullwidth {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 768px) {
  .md_fullwidth {
    margin-right: 0;
    margin-left: 0;
  }
}

.md_m_bottom_small {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .md_m_bottom_small {
    margin-bottom: inherit;
  }
}

.md_m_bottom_medium {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .md_m_bottom_medium {
    margin-bottom: inherit;
  }
}

.clear::after {
  clear: both;
  content: "";
  display: block;
}

.hide-mobile {
  display: none;
}

@media (min-width: 992px) {
  .hide-mobile {
    display: block;
  }
}

.hide-desktop {
  display: block;
}

@media (min-width: 992px) {
  .hide-desktop {
    display: none !important;
  }
}

.hide-all {
  display: none;
}

.md_header {
  padding-bottom: 50px;
}

.md_header_navigation {
  background-color: var(--header-color) !important;
  border: none;
  display: flex;
  height: 50px;
  margin-bottom: 0;
  position: fixed;
  width: 100%;
  z-index: 5;
  -webkit-transform: translate(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.md_header_navigation_left_button {
  display: flex;
  height: 100%;
  width: auto;
}

.md_header_navigation_left_button_icon {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: flex;
  padding-left: 20px;
}

.md_header_navigation_left_button_icon svg g {
  stroke: #fff;
}

.md_header_navigation_left_button_text {
  margin: 0 0 3px 10px;
  color: #fff;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1.1;
}

.md_header_navigation_title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.md_header_navigation_title_text {
  color: #fff;
  font-size: 18px;
  text-align: center;
  text-transform: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0;
  line-height: 1.1;
}

.md_header_navigation_right_button {
  display: flex;
  height: 100%;
  width: 55px;
}

.md_header_navigation_right_button_icon {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: flex;
  padding-left: 20px;
}

.md_header_navigation_right_button_icon svg g {
  stroke: #fff;
}

.md_header_navigation_right_button_text {
  margin: 0 0 3px 10px;
  color: #fff;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1.1;
}

.md_menu_delivery_method_box ul {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
}

.md_menu_delivery_method_box li {
  list-style: none;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.md_menu_delivery_method_box li span {
  border-left: solid 1px #e9e9e9;
  float: left;
  height: 30px;
  margin-top: 11px;
  text-align: center;
}

.md_menu_delivery_method_box button, .md_menu_delivery_method_box a {
  background: transparent;
  border: none;
  color: #0b2135;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 0;
  text-transform: uppercase;
  width: 70%;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  border-bottom: 3px solid transparent;
}

.md_menu_delivery_method_box button.active, .md_menu_delivery_method_box button.selected, .md_menu_delivery_method_box a.active, .md_menu_delivery_method_box a.selected {
  outline: 0;
  outline-offset: 0;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom-color: #fd4f57;
  color: #fd4f57;
}

.md_tabs_wrapper {
  position: relative;
}

.md_tabs_wrapper > .md_content {
  position: relative;
}

.md_tabs_wrapper .md_tab_content {
  width: 100%;
  top: 0;
  left: 0;
  padding: 15px 0;
}

.md_tabs_wrapper .md_tab_content#info {
  padding-right: 0;
  padding-left: 0;
}

@media (min-width: 768px) {
  .md_tabs_wrapper .md_tab_content#info {
    padding: 15px;
  }
}

.md_tabs_wrapper .md_tab_menu .cart {
  padding-top: 33px;
}

.md_tabs_wrapper .tab_promo .md_menu_items {
  border-top: 1px solid #e9e9e9;
  margin-top: 20px;
  display: block;
}

@media (min-width: 768px) {
  .md_tabs_wrapper .tab_promo .md_menu_items {
    margin-top: 45px;
  }
}

.md_tabs_wrapper .tab_promo .md_menu_item {
  border-bottom: 1px solid #e9e9e9;
  padding: 10px 0;
  line-height: 0;
  width: 100%;
}

.md_tabs_wrapper .tab_promo .cart {
  padding-top: 45px;
}

@media screen and (max-width: 992px) {
  .md_tabs_wrapper .tab_promo .tab_info .md_col_two_third {
    width: 100%;
    margin: 0;
  }
}

.md_tabs_wrapper .tab_promo .tab_info h2 {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 992px) {
  .md_tabs_wrapper .tab_promo .tab_info h2 {
    padding-left: 0;
    padding-right: 0;
  }
}

.md_tabs_wrapper .map {
  width: 100%;
  height: 175px;
}

@media (min-width: 992px) {
  .md_tabs_wrapper .map {
    height: 365px;
  }
}

.md_content > .md_menu {
  padding-bottom: 81px;
}

.md_menu .md_tab_menu {
  padding-top: 0;
}

.content-wrap .md_bottom {
  position: fixed;
}

.md_menu_discount_box {
  font-size: 14px;
  line-height: 1.42857;
  color: #fff;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
  border-radius: 31px;
  border: solid 1px #fd4f57;
  background-color: rgba(253, 79, 87, 0.12);
  margin: 0 auto;
  display: flex;
  margin-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 10px;
}

.md_menu_discount_box:hover {
  opacity: 0.5;
}

@media (max-width: 927px) {
  .md_menu_discount_box {
    margin-bottom: 10px;
  }
}

.md_menu_discount_box_text {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  padding: 2px 0;
  opacity: 0.7;
  font-family: Lato;
  font-size: 13px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.23;
  letter-spacing: normal;
  text-align: left;
  color: #fd4f57;
}

.menu-search {
  width: 100%;
  font-size: 12px !important;
  margin-top: 10px;
  border: 1px solid #e9e9e9;
  padding: 10px;
  height: 40px !important;
  border-radius: 10px;
  background: url(../images/step3-menu-list/icon-search.png) no-repeat 98% center;
}

.menu-search:focus {
  outline: 0;
}

.md_goto_search.is_stuck {
  background: white;
  z-index: 2;
  top: 110px;
  padding-bottom: 10px;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .md_goto_search.is_stuck {
    width: 93%;
    position: fixed;
  }
}

.menu-separator {
  margin-top: 15px;
  background-color: #e9e9e9;
  height: 1px;
  border-bottom: none;
  border: none;
}

.md_checkout_payment_method_form {
  padding: 0 !important;
}

@media (min-width: 768px) {
  .md_checkout_payment_method_form {
    padding: 15px 15px 10px 15px !important;
  }
}

.md_menu_items {
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .md_menu_items {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.md_menu_item {
  min-height: 120px;
  border-bottom: 1px solid #e9e9e9;
  cursor: pointer;
  padding: 0 !important;
  line-height: 0;
}

@media (min-width: 768px) {
  .md_menu_item {
    border: 1px solid transparent;
    padding: 10px 50px 10px 0;
    width: 50%;
  }
}

.md_menu_item:hover h4 {
  color: #fd4f57;
}

.md_menu_item:hover p {
  color: #000;
}

.md_menu_item:hover .md_menu_item_price {
  font-weight: 700;
}

.md_menu_item_name {
  font-size: 14px;
  margin-bottom: 8px;
  margin-top: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 17px;
  color: #0b2135;
  letter-spacing: 0.2px;
}

.md_menu_item_name span {
  color: #fd4f57;
}

.md_menu_item_description {
  display: -webkit-box;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.57;
  color: #8c8c8f;
  margin-bottom: 0;
  margin: 0 0 10px;
  text-transform: none;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.md_menu_item_price {
  font-size: 14px;
  letter-spacing: 0.2px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
  color: #0b2135;
  text-transform: none;
  text-align: left;
}

.md_menu_category .banner-category {
  height: auto;
  overflow: hidden;
}

.md_menu_category .banner-category img {
  width: 100%;
  border-radius: 5px !important;
}

.md_menu_category {
  position: relative;
}

.md_menu_category .md_menu_category_title {
  padding: 7px 0 0;
  padding-bottom: 12px;
  margin-top: 10px !important;
}

@media (min-width: 768px) {
  .md_menu_category .md_menu_category_title {
    padding: 24px 0 11px;
  }
}

.md_menu_category .md_menu_category_title.is_stuck {
  -webkit-box-shadow: 0 10px 15px 5px #fff;
  box-shadow: 0 10px 15px 5px #fff;
  background: linear-gradient(to bottom, #fff 0, #fff 80px, rgba(255, 255, 255, 0.21));
  border-bottom: 0;
  margin-top: 0;
  z-index: 2;
  position: fixed;
  top: 50px;
}

.md_menu_category .md_menu_category_title.is_stuck span h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-top: 5px;
  max-width: 80%;
  overflow: hidden;
  padding-bottom: 2px;
  text-overflow: unset;
  text-transform: none;
  vertical-align: bottom;
  white-space: normal;
}

@media (min-width: 768px) {
  .md_menu_category .md_menu_category_title.is_stuck span h2 {
    font-size: 26px;
    max-width: 60%;
  }
}

.md_menu_category .md_menu_category_title.is_stuck span h2:hover {
  cursor: pointer;
}

.md_menu_category .md_menu_category_title.is_stuck span h2 + .icn-arrow {
  display: inline-block;
  visibility: visible;
  margin-bottom: 2px;
  margin-left: 12px;
}

.md_menu_category .md_menu_category_title.is_stuck span h2 + .icn-arrow svg {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  width: 12px;
}

.md_menu_category .md_menu_category_title.is_stuck span h2 + .icn-arrow svg path {
  stroke: #fd4f57;
}

.md_menu_category .md_menu_category_title.is_stuck span.open + .sub_menu {
  display: block;
  height: auto;
}

.md_menu_category .md_menu_category_title.is_stuck span.open .icn-arrow svg {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.md_menu_category .md_menu_category_title .icn-arrow {
  visibility: hidden;
}

.md_menu_category .md_menu_category_title span h2 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-top: 5px;
  margin-bottom: 0;
  text-transform: uppercase;
  vertical-align: bottom;
  white-space: nowrap;
  color: #fd4f57;
  line-height: 24px;
  display: inline-block;
}

.md_menu_category.is_stuck_container {
  padding-top: 15px;
}

@media (min-width: 768px) {
  .md_menu_category.is_stuck_container {
    padding-top: 68px;
  }
}

.sub_menu {
  -webkit-box-shadow: 5px 10px 12px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 5px 10px 12px 0 rgba(0, 0, 0, 0.15);
  height: 75vh;
  z-index: 1;
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  padding: 25px;
  display: none;
  background: #fff;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .sub_menu {
    height: auto;
    -webkit-column-count: 1;
    column-count: 1;
    -webkit-column-gap: 50px;
    column-gap: 50px;
  }
}

@media (min-width: 768px) {
  .sub_menu.cols_2 {
    -webkit-column-count: 2;
    column-count: 2;
  }
}

@media (min-width: 768px) {
  .sub_menu.cols_3 {
    -webkit-column-count: 3;
    column-count: 3;
  }
}

.sub_menu li {
  -webkit-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
}

.sub_menu li:first-child > a {
  padding-top: 0;
}

.sub_menu a {
  color: #8c8c8f;
  display: block;
  padding: 8px 0;
  text-decoration: none;
}

.sub_menu a.active {
  color: #fd4f57;
  text-decoration: underline;
}

.sub_menu a:hover {
  color: #0b2135;
  text-decoration: none;
}

@-webkit-keyframes to-up {
    from {
        padding-top: 5px;
        } to {
        padding-top: 0px;
        }
    }

@keyframes to-up {
    from {
        padding-top: 5px;
        } to {
        padding-top: 0px;
        }
    }

.landing-wrapper {
  overflow: hidden !important;
}

@media screen and (max-width: 450px) {
  .landing-wrapper {
    overflow: auto !important;
  }
}

.landing-wrapper .pac-container {
  padding-bottom: 15px;
  top: 50px !important;
  left: 0 !important;
  z-index: 9999999;
}

.md_content_landing {
  background-size: cover;
  height: 100vh;
}

.md_content_landing .hgroups h1 {
  margin: 0;
  text-align: center;
  padding-top: 100px;
  color: #fff;
}

.md_content_landing .contratar-button {
  position: absolute;
  right: 15px;
  bottom: 60px;
  text-align: center;
  color: #fff;
}

.md_content_landing .md_locations_search_box {
  background: none;
  border-bottom: 0;
}

@media screen and (max-width: 450px) {
  .md_content_landing .md_locations_search_box .md_locations_search_box_address {
    width: 100% !important;
    margin-top: 10px;
  }
}

.md_content_landing .cards_payment {
  text-align: center;
  margin-top: 10px;
}

.md_content_landing .cards_payment .paymentText {
  color: #fff;
}

.md_content_landing .cards_payment .cardImg .visa, .md_content_landing .cards_payment .cardImg .western, .md_content_landing .cards_payment .cardImg .mastercard, .md_content_landing .cards_payment .cardImg .american, .md_content_landing .cards_payment .cardImg .discover, .md_content_landing .cards_payment .cardImg .maestro {
  background-color: #fff;
  width: 32px;
  height: 32px;
  -webkit-mask: url(../images/landing/visa.svg) no-repeat center;
  mask: url(../images/landing/visa.svg) no-repeat center;
  display: inline-block;
}

.md_content_landing .cards_payment .cardImg .western {
  -webkit-mask: url(../images/landing/western.svg) no-repeat center;
  mask: url(../images/landing/western.svg) no-repeat center;
}

.md_content_landing .cards_payment .cardImg .mastercard {
  -webkit-mask: url(../images/landing/mastercard.svg) no-repeat center;
  mask: url(../images/landing/mastercard.svg) no-repeat center;
}

.md_content_landing .cards_payment .cardImg .american {
  -webkit-mask: url(../images/landing/american.svg) no-repeat center;
  mask: url(../images/landing/american.svg) no-repeat center;
}

.md_content_landing .cards_payment .cardImg .discover {
  -webkit-mask: url(../images/landing/discover.svg) no-repeat center;
  mask: url(../images/landing/discover.svg) no-repeat center;
}

.md_content_landing .cards_payment .cardImg .maestro {
  -webkit-mask: url(../images/landing/maestro.svg) no-repeat center;
  mask: url(../images/landing/maestro.svg) no-repeat center;
}

.touch-mobile {
  background: #fd7e84;
  cursor: pointer;
}

@media screen and (max-width: 668px) {
  .md_content_list .hgroups h1 {
    margin: 10px;
    font-size: 18px;
  }
}

.md_content_list .md_item_container {
  float: left;
  width: 100%;
}

.md_content_list .md_item_container:last-child {
  margin-bottom: 50px;
}

@media screen and (max-width: 668px) {
  .md_content_list .md_item_container .md_locations_item_name {
    font-size: 17px;
  }
}

.md_content_list .md_item_container .md_locations_item_name span img {
  width: 15px;
}

.md_content_list .md_item_container .md_locations_item_name:hover {
  cursor: pointer;
}

.md_content_list .md_item_container .md_locations_item_address {
  height: 23px;
}

.md_content_list .md_locations_item_image {
  float: left;
  margin: 0.5em;
  width: 10%;
  z-index: 11;
  position: relative;
}

@media screen and (max-width: 668px) {
  .md_content_list .md_locations_item_image {
    width: 20%;
    margin-top: 0;
  }
}

.md_content_list .md_locations_item_image img {
  width: 80%;
}

@media screen and (max-width: 668px) {
  .md_content_list .md_locations_item_image img {
    width: 100%;
    height: 68px;
  }
}

.md_content_list .md_locations_item_image:hover {
  cursor: pointer;
}

.md_content_list .md_locations_item_image_mp {
  float: left;
  margin: 0.5em;
  width: 10%;
  z-index: 11;
  position: relative;
}

@media screen and (max-width: 668px) {
  .md_content_list .md_locations_item_mp {
    width: 100%;
    margin-bottom: 0 !important;
  }
}

.md_content_list .md_locations_item_mp:last-child {
  margin-bottom: 0;
}

.md_content_list .md_locations_item_mp:hover {
  background: none;
}

@media screen and (max-width: 668px) {
  .md_content_list .md_hot_deals {
    min-height: 130px;
    max-height: 150px;
    padding-top: 10px;
    margin-top: 0;
  }
}

@media screen and (max-width: 668px) {
  .md_content_list .md_hot_deals .md_promo_in_list {
    position: absolute;
    left: 0;
    width: 100%;
  }
}

@media screen and (min-width: 667px) {
  .md_content_list .md_hot_deals .md_promo_in_list {
    position: relative;
  }
}

.md_content_list .md_item_button {
  float: left;
  width: 40%;
}

@media (min-width: 768px) {
  .md_content_list .md_item_button {
    width: 50%;
  }
}

.md_content_list .md_item_button .md_cart_bottom_button {
  width: auto;
  font-size: 10px;
  padding: 5px;
  height: auto;
  margin-top: 25px;
  float: right;
}

@media screen and (max-width: 668px) {
  .md_content_list .md_item_button .md_cart_bottom_button {
    margin-top: 0;
  }
}

.md_content_list .md_locations_item {
  float: left;
  width: 100%;
  margin-bottom: 20px !important;
}

@media screen and (max-width: 668px) {
  .md_content_list .md_locations_item {
    width: 100%;
    margin-bottom: 0 !important;
  }
}

.md_content_list .md_locations_item:last-child {
  margin-bottom: 0;
}

.md_content_list .md_locations_item:hover {
  background: none;
}

.md_content_list .md_locations_item_mp {
  float: left;
  width: 100%;
  margin-bottom: 20px !important;
}

.md_content_list .md_locations_item_descripcion {
  font-size: 11px;
}

.md_content_list .footer-item {
  float: left;
  width: 100%;
  font-size: 11px;
}

@media (min-width: 768px) {
  .md_content_list .footer-item {
    float: right;
    width: calc(100% - 10.5% - 0.5em);
  }
}

.md_content_list .infoFooter {
  float: left;
  width: 60%;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .md_content_list .infoFooter {
    width: 50%;
  }
}

@media screen and (max-width: 668px) {
  .md_content_list .infoFooter {
    margin-top: 0;
  }
}

.md_content_list .infoFooter div {
  display: inline-block;
  margin-right: 15px;
}

.md_content_list .cards {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.md_content_list .cards__item {
  display: flex;
  padding: 1rem;
}

@media (min-width: 40rem) {
  .md_content_list .cards__item {
    width: 50%;
  }
}

@media (min-width: 56rem) {
  .md_content_list .cards__item {
    width: 33.3333%;
  }
}

.md_content_list .card {
  padding: 20px 5px;
  background-color: white;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.25);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.25);
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 668px) {
  .md_content_list .card {
    padding: 5px 5px;
  }
}

@media (min-width: 768px) {
  .md_content_list .card {
    height: 180px;
    padding: 20px;
    width: 100%;
  }
}

.md_content_list .card .md_menu_item_name {
  font-size: 11px;
}

.md_content_list .card .md_menu_item_description {
  font-size: 12px;
  text-transform: lowercase;
}

@media screen and (max-width: 668px) {
  .md_content_list .card .md_menu_item_description {
    margin-bottom: 0 !important;
  }
}

.md_content_list .card:hover {
  cursor: pointer;
}

.md_content_list .card:hover .md_menu_item_name {
  color: #fd4f57;
  font-weight: bold;
}

.md_content_list .card:hover .md_menu_item_description {
  font-weight: bold;
}

.md_content_list .card__content {
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1rem;
}

.md_content_list .card__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  -webkit-filter: contrast(70%);
  filter: contrast(70%);
  overflow: hidden;
  position: relative;
  -webkit-transition: -webkit-filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
  transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91), -webkit-filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
}

.md_content_list .card__image::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

@media (min-width: 40rem) {
  .md_content_list .card__image::before {
    padding-top: 66.6%;
  }
}

.md_content_list .card__title {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.md_content_list .card__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.md_content_list .slick-dots {
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
}

.md_content_list .slick-dots li {
  display: inline-block;
  border-radius: 50px/50px;
  border: solid 1px #8c8c8f;
  width: 10px;
  height: 10px;
  margin: 4px;
  font-size: 0;
  text-indent: -9999999px;
}

.md_content_list .slick-dots .slick-active {
  background-color: #8c8c8f;
}

.md_content_list .slick-arrow {
  display: block;
  position: absolute;
  z-index: 5;
  top: 45%;
  font-size: 20px;
}

.md_content_list .fa-angle-left {
  left: -5px;
}

@media screen and (max-width: 668px) {
  .md_content_list .fa-angle-left {
    left: 10px;
  }
}

.md_content_list .fa-angle-right {
  right: -5px;
}

@media screen and (max-width: 668px) {
  .md_content_list .fa-angle-right {
    right: 10px;
  }
}

.touch-mobile-listpage {
  background: #8acdd0;
  -webkit-transition: none;
  transition: none;
}

.loader {
  position: absolute;
  top: 44%;
  left: 50%;
  z-index: 99999999;
  font-size: 10px;
  margin: 50px auto;
  text-indent: -9999em;
  border-width: 6px;
  height: 45px;
  width: 45px;
  -webkit-animation: md_loading_spinner_animation 0.5s infinite linear;
  animation: md_loading_spinner_animation 0.5s infinite linear;
  border: 4px solid rgba(253, 79, 87, 0.25);
  border-radius: 100%;
  border-top: 4px solid #fd4f57;
  display: block;
}

@-webkit-keyframes md_loading_spinner_animation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        } to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
        }
    }

@keyframes md_loading_spinner_animation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        } to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
        }
    }

@-webkit-keyframes line_in_hover {
    from {
        width: 0;
        } to {
        width: 100%;
        }
    }

@keyframes line_in_hover {
    from {
        width: 0;
        } to {
        width: 100%;
        }
    }

.md_loading_spinner_overlay {
  background: rgba(255, 255, 255, 0.7);
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1001;
}

.md_loading_spinner {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  border-width: 6px;
  height: 45px;
  width: 45px;
  -webkit-animation: md_loading_spinner_animation 0.5s infinite linear;
  animation: md_loading_spinner_animation 0.5s infinite linear;
  border: 4px solid rgba(128, 128, 128, 0.25) !important;
  border-radius: 100%;
  border-top: 4px solid var(--primary) !important;
  display: block;
}

.md_modal {
  z-index: 1000;
  position: relative;
}

.md_modal_overlay {
  background: rgba(4, 4, 15, 0.75);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
  overflow-y: hidden;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.md_modal_overlay .hide_modal {
  opacity: 0;
  visibility: hidden;
  display: none;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.md_modal_overlay .show_modal {
  opacity: 1;
  visibility: visible;
  display: block;
}

.md_modal_overlay .view_modal:target {
  display: block;
}

.full-height {
  top: 0 !important;
  margin-bottom: 0 !important;
}

.md_reset_password_container .md_modal_close, .md_generic_modal .md_modal_close, .md_register_container .md_modal_close {
  right: 0 !important;
}

.md_modal_content {
  height: 100%;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  top: 0;
  -webkit-transform: none;
  transform: none;
  width: 100%;
  background: #fff;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  padding: 0;
  position: fixed;
  z-index: 1050;
}

@media screen and (min-width: 768px) {
  .md_modal_content > div {
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    height: 100%;
  }
}

@media (min-width: 768px) {
  .md_modal_content {
    height: auto;
  }
}

@media screen and (min-width: 768px) {
  .md_modal_content {
    width: 562px;
    max-height: 100%;
    top: 10%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
}

.md_modal_content .md_login_container.modal_theme .md_modal_field, .md_modal_content .md_register_container.modal_theme .md_modal_field, .md_modal_content .md_delivery_address_container.modal_theme .md_modal_field, .md_modal_content .md_reset_password_container.modal_theme .md_modal_field, .md_modal_content .md_order_detail_container.modal_theme .md_modal_field, .md_modal_content .md_generic_modal.modal_theme .md_modal_field {
  margin-bottom: 22px;
}

.md_modal_content .md_login_container.modal_theme .md_modal_field.password_field, .md_modal_content .md_register_container.modal_theme .md_modal_field.password_field, .md_modal_content .md_delivery_address_container.modal_theme .md_modal_field.password_field, .md_modal_content .md_reset_password_container.modal_theme .md_modal_field.password_field, .md_modal_content .md_order_detail_container.modal_theme .md_modal_field.password_field, .md_modal_content .md_generic_modal.modal_theme .md_modal_field.password_field {
  position: relative;
}

.md_modal_content .md_login_container.modal_theme .md_modal_field.password_field .md_login_forgot_password_text, .md_modal_content .md_register_container.modal_theme .md_modal_field.password_field .md_login_forgot_password_text, .md_modal_content .md_delivery_address_container.modal_theme .md_modal_field.password_field .md_login_forgot_password_text, .md_modal_content .md_reset_password_container.modal_theme .md_modal_field.password_field .md_login_forgot_password_text, .md_modal_content .md_order_detail_container.modal_theme .md_modal_field.password_field .md_login_forgot_password_text, .md_modal_content .md_generic_modal.modal_theme .md_modal_field.password_field .md_login_forgot_password_text {
  text-align: center;
  display: block;
  width: 100%;
  padding-top: 20px;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .md_modal_content .md_login_container.modal_theme .md_modal_field.password_field .md_login_forgot_password_text:hover, .md_modal_content .md_login_container.modal_theme .md_modal_field.password_field .md_login_forgot_password_text:focus, .md_modal_content .md_register_container.modal_theme .md_modal_field.password_field .md_login_forgot_password_text:hover, .md_modal_content .md_register_container.modal_theme .md_modal_field.password_field .md_login_forgot_password_text:focus, .md_modal_content .md_delivery_address_container.modal_theme .md_modal_field.password_field .md_login_forgot_password_text:hover, .md_modal_content .md_delivery_address_container.modal_theme .md_modal_field.password_field .md_login_forgot_password_text:focus, .md_modal_content .md_reset_password_container.modal_theme .md_modal_field.password_field .md_login_forgot_password_text:hover, .md_modal_content .md_reset_password_container.modal_theme .md_modal_field.password_field .md_login_forgot_password_text:focus, .md_modal_content .md_order_detail_container.modal_theme .md_modal_field.password_field .md_login_forgot_password_text:hover, .md_modal_content .md_order_detail_container.modal_theme .md_modal_field.password_field .md_login_forgot_password_text:focus, .md_modal_content .md_generic_modal.modal_theme .md_modal_field.password_field .md_login_forgot_password_text:hover, .md_modal_content .md_generic_modal.modal_theme .md_modal_field.password_field .md_login_forgot_password_text:focus {
    color: #fc030f;
  }
}

.md_modal_content .md_login_container.modal_theme.out_lateral_padding, .md_modal_content .md_register_container.modal_theme.out_lateral_padding, .md_modal_content .md_delivery_address_container.modal_theme.out_lateral_padding, .md_modal_content .md_reset_password_container.modal_theme.out_lateral_padding, .md_modal_content .md_order_detail_container.modal_theme.out_lateral_padding, .md_modal_content .md_generic_modal.modal_theme.out_lateral_padding {
  margin-left: 0;
  margin-right: 0;
}

.md_modal_content .modal_wrapper {
  position: relative;
  padding-bottom: 81px;
}

@media screen and (min-width: 768px) {
  .md_modal_content .modal_wrapper {
    height: 100%;
    padding-bottom: 0;
  }
}

.md_modal_content .modal_wrapper .btn {
  margin-top: 10px;
  margin-bottom: 0;
}

.md_modal_content .modal_wrapper .md_order .info_delivery {
  color: #0b2135;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2px;
  line-height: 1.1;
}

.md_modal_content .modal_wrapper .md_order .description {
  margin: -15px 15px 15px 15px;
}

.md_modal_content .modal_wrapper .md_order .info_delivery_detail {
  width: 100%;
  margin: 0;
  padding: 0;
}

.md_modal_content .modal_wrapper .md_order .info_delivery_detail li {
  display: inline-block;
  color: #8c8c8f;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.38;
  padding-right: 13px;
  position: relative;
  vertical-align: middle;
}

.md_modal_content .modal_wrapper .md_order .info_delivery_detail li:after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8c8c8f;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  margin-right: 3px;
}

.md_modal_content .modal_wrapper .md_order .info_delivery_detail li:last-child:after {
  display: none;
}

.md_modal_content .modal_wrapper .md_order .md_cart {
  border-bottom: none;
}

.md_modal_content .modal_wrapper .md_order .md_cart .md_cart_totals_items .md_cart_totals_loyalty_points {
  padding-bottom: 0;
}

.md_modal_content .modal_wrapper .md_order .md_cart .md_cart_items {
  pointer-events: none;
}

.md_modal_content .modal_wrapper.max_height_600 {
  max-height: 600px;
}

.md_modal_content .md_login_facebook {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.md_modal_content .md_login_facebook:hover, .md_modal_content .md_login_facebook:focus {
  opacity: 0.8;
}

.md_modal_content .md_login_facebook .md_login_facebook_button {
  cursor: pointer;
}

.md_modal_content .md_login_facebook .md_login_facebook_button:hover, .md_modal_content .md_login_facebook .md_login_facebook_button:focus {
  outline: none;
}

.md_modal_content .md_login_google_button {
  cursor: pointer;
  outline: none;
}

.md_modal_content .md_login_google {
  margin: 0 0 20px;
}

@media screen and (min-width: 768px) {
  .md_modal_content .md_reset_password_send_button {
    margin: 20px 0 24px;
  }
}

.md_modal_content .md_login_register_text {
  font-size: 14px;
  padding-bottom: 12px;
}

.md_modal_content .md_login_register_text .md_login_register_button {
  width: auto;
  height: auto;
  font-size: 14px;
  padding: 0 4px;
  cursor: pointer;
  outline: none;
  text-transform: capitalize;
  font-weight: normal;
  letter-spacing: normal;
  background-color: transparent;
  color: #fd4f57;
}

.md_modal_content .md_login_register_text .md_login_register_button:hover, .md_modal_content .md_login_register_text .md_login_register_button:focus {
  color: #fc030f;
}

.md_modal_content .md_register_container .md_modal_field {
  margin-bottom: 20px !important;
}

.md_modal_content .button_red {
  cursor: pointer;
}

.md_modal_content .button_red:hover, .md_modal_content .button_red:focus {
  background-color: rgba(253, 79, 87, 0.9);
  outline: none;
}

.md_modal_content .md_reset_password .md_modal_field {
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .md_modal_content .md_reset_password .md_modal_field {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 768px) {
  .md_modal_content .md_product_details_wrapper .md_product_details_bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 20px 40px;
    bottom: 0;
    background: #fff;
  }
}

.md_modal_content .md_product_details_wrapper .md_product_details_bottom .md_product_details_button {
  outiline: none;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .md_modal_content .md_product_details_wrapper .md_product_details_bottom .md_product_details_button {
    margin-left: 40px;
  }
}

.md_modal_content .md_product_details_wrapper .md_product_details_bottom .md_product_details_button:hover, .md_modal_content .md_product_details_wrapper .md_product_details_bottom .md_product_details_button:focus {
  background: #8acdd0;
}

.md_modal_content .md_modal_close {
  text-align: right;
  position: inherit;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .md_modal_content .md_modal_close {
    right: -10px;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .md_modal_content .md_product_details_top {
    padding: 20px 40px 0 40px;
  }
}

.md_modal_content .btn_delete {
  height: auto;
  outline: none;
  cursor: pointer;
}

.md_modal_content .btn_delete:hover, .md_modal_content .btn_delete:focus {
  color: #fd4f57;
}

@media screen and (min-width: 768px) {
  .md_modal_content .select_group label {
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
  }
}

@media screen and (min-width: 768px) {
  .md_modal_content .md_product_details_options_group_options {
    margin: 14px 0 28px;
  }
}

.md_modal_content .md_product_details_options_group_options > li {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

@media screen and (min-width: 768px) {
  .md_modal_content .md_product_details_options_group_options > li {
    margin: 12px 0;
    cursor: pointer;
    position: relative;
    width: 50%;
    vertical-align: top;
  }
}

@media screen and (min-width: 768px) {
  .md_modal_content .md_product_details_options_group_options > li:hover > div, .md_modal_content .md_product_details_options_group_options > li:focus > div {
    -webkit-box-shadow: 0 0 0 1px #5eb3b7;
    box-shadow: 0 0 0 1px #5eb3b7;
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  }
}

.md_modal_content .md_product_details_options_group_options > li label {
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .md_modal_content .md_product_details_options_group_options > li label {
    width: 168px;
  }
}

@media screen and (min-width: 768px) {
  .md_modal_content .md_product_details_options_group_options > li span {
    display: inline-block;
    margin-left: auto;
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .md_modal_content .md_product_details_options_group_options > li span:nth-of-type(2) {
    margin-left: 5px;
  }
}

.md_modal_content .md_product_details_options_group_options > li select {
  outline: none !important;
}

.md_modal_content .md_product_details_options_group_options > li select:hover {
  border-color: #5eb3b7;
}

.md_modal_content .md_product_details_options_group_options > li input[type=checkbox] {
  visibility: hidden;
}

.md_modal_content .md_product_details_options_group_options > li.pressed > div {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

@media screen and (min-width: 768px) {
  .md_modal_content .md_product_details_options_group_options .select_group label {
    z-index: -1;
  }
}

@media screen and (min-width: 768px) {
  .md_modal_content .md_product_details_special_instructions {
    margin-bottom: 0;
    padding-bottom: 48px;
  }
}

@media screen and (min-width: 768px) {
  .md_modal_content .md_modal_close_button {
    margin: 0;
  }
}

.md_modal_close {
  display: block;
  position: absolute;
  right: 0;
  z-index: 3;
  cursor: pointer;
}

.md_modal_close_button {
  display: block;
  margin: 15px;
  margin-right: 0;
}

.md_modal_bottom {
  background: #fff;
  border-top: 1px solid #e9e9e9;
  bottom: 0;
  padding: 10px;
  position: fixed;
  width: 95%;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .md_modal_bottom {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    border-top: 1px solid #e9e9e9;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    z-index: 10;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 20px 15px;
    position: relative;
  }
}

.md_modal_bottom_button {
  font-size: 14px;
  display: flex;
  padding: 20px 15px;
  width: 100%;
  height: 60px;
  line-height: 1.25;
  background: #5eb3b7;
  color: #fff;
  border: none;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
}

.md_modal_bottom_button:hover, .md_modal_bottom_button:focus {
  background: #8acdd0;
}

.md_modal_bottom_button[disabled], .md_modal_bottom_button[disabled]:hover, .md_modal_bottom_button[disabled]:active, .md_modal_bottom_button[disabled]:focus {
  background: #c0c0c0 !important;
  color: #fff;
  cursor: initial;
  opacity: 1;
}

.btn_green {
  background: #5eb3b7;
  cursor: pointer;
  outline: none;
}

.btn_green:hover, .btn_green:focus {
  background: #8acdd0;
}

.btn_green.disabled, .btn_green.disabled:hover, .btn_green.disabled:active, .btn_green.disabled:focus {
  background: #c0c0c0 !important;
  color: #fff;
  cursor: initial;
  opacity: 1;
}

.md_modal_bottom_button_text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: left;
}

.md_modal_field {
  margin-bottom: 15px;
}

.md_modal_field label {
  color: #0b2135;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.md_modal_field .txt_error {
  display: none;
  color: #ed524d;
  font-size: 12px;
  padding-top: 5px;
  text-transform: capitalize;
}

.md_modal_field.msg_error .txt_error {
  display: block;
}

.md_modal_field_input {
  border: 1px solid #e9e9e9;
  border-radius: 2px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #0b2135;
  display: block;
  padding: 10px 15px;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  width: 100%;
}

.md_modal_field_input:focus {
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

.smoothing {
  position: relative;
}

@media screen and (min-width: 768px) {
  .smoothing::before {
    background: linear-gradient(to bottom, rgba(254, 255, 255, 0) 0%, rgba(255, 255, 255, 0.74) 50%, white 100%);
    content: " ";
    display: block;
    width: 100%;
    height: 30px;
    left: 0;
    position: absolute;
    top: -31px;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .md_modal_content.modal_detail .md_product_details_options_group_options > li.select_group label {
    padding-left: 60px;
  }
}

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.md_modal_map {
  height: 300px;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  background: rgba(0, 0, 0, 0.75);
  width: 100vw;
  height: 100vh;
  opacity: 1;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}

.popup .popUpContainer {
  width: 100%;
  max-width: 550px;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-top: -225px;
  margin-left: -250px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  z-index: 9999999;
}

@media screen and (max-width: 668px) {
  .popup .popUpContainer {
    margin-top: -150px;
  }
}

.popup h2 {
  padding: 0.5em;
  text-align: center;
  color: #444;
  margin: 0;
}

.popup img {
  width: 100%;
  display: block;
}

.popup article {
  height: 450px;
}

@media screen and (max-width: 668px) {
  .popup article {
    height: 300px;
  }
}

.popup a.closePopUp {
  font-family: verdana;
  color: #e74c3c;
  position: absolute;
  top: 0.2em;
  right: 0.375em;
  margin: 0;
  padding: 5px;
  font-weight: bold;
  font-size: 1.5em;
  text-decoration: none;
}

.popup a:hover {
  color: #c0392b;
}

.popup:target {
  opacity: 1;
  top: 0;
}

.popup .closePopUpOutSide {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999991;
}

.popup:target .popUpContainer {
  top: 50px;
  -webkit-transition: top 0.35s ease;
  transition: top 0.35s ease;
}

@media (max-width: 796px) {
  .popup .popUpContainer {
    width: 90%;
    max-width: none;
    left: 5%;
    margin-left: 0;
  }
}

@media (max-width: 796px) {
  .popup ul {
    padding: 0 1em 0 1em;
  }
}

@media (max-width: 796px) {
  .popup:target .popUpContainer {
    top: 25px;
    -webkit-transition: top 0.35s ease;
    transition: top 0.35s ease;
  }
}

.close-promo-popup {
  position: absolute;
  right: 10px;
  color: #c0392b;
  font-weight: bold;
  text-decoration: none;
  font-size: 20px;
}

.md_location_logo_image {
  height: 80px !important;
  width: 80px !important;
  border: none !important;
  border-radius: 5px !important;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.md_locations_logo_image {
  height: 100px !important;
  width: 100px !important;
  border: none !important;
  border-radius: 3px;
}

.md_locations_search_box {
  padding: 15px;
  text-align: center;
  background-color: #fff;
  border-bottom: 1px solid #e9e9e9;
  background-size: cover;
  background-image: url(https://pedidos.masdelivery.com/panel/images/gallery/260/gallery.jpg);
  background-position: center center;
}

.md_locations_search_box .md_locations_search_box_inner {
  max-width: 600px;
  margin: 0 auto;
}

.md_locations_search_box .pac-container {
  width: 100% !important;
}

.md_locations_search_box_instructions {
  color: #0b2135;
  font-size: 18px;
  padding: 10px 0 15px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.55);
}

.md_locations_search_box_container {
  background: rgba(46, 46, 46, 0.5);
  width: 100%;
  margin: auto;
  padding: 10px 20px;
  border-radius: 6px;
}

.md_locations_search_box_address, .md_locations_search_box_localname {
  border-color: #e9e9e9;
  height: 50px;
  padding: 0 10px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #0b2135;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 400;
  display: block;
  width: 100%;
  line-height: 1.42857;
  background-color: #fff;
  background-image: none;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  outline: 0;
}

.md_locations_search_box_button {
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  margin-top: 15px;
  padding: 10px 18px;
  background: var(--primary-700);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  height: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.md_locations_search_box_button:hover {
  background: var(--primary-800);
  cursor: pointer;
}

.md_locations_item_mp {
  width: 100%;
  padding: 15px 15px;
  background-color: #fff;
  border-bottom: 1px solid #e9e9e9;
}

.md_locations_item_mp:hover {
  background: #f9f9f9;
}

.md_locations_item_mp:hover h3:after {
  width: 100%;
}

.md_locations_item_mp:last-child {
  margin-bottom: 50px;
}

.md_locations_item_mp.infowindow {
  margin-bottom: 0 !important;
  border: 0;
  padding: 10px 0;
}

.md_locations_item_mp.infowindow:hover h3:after {
  width: 0%;
}

.md_locations_item {
  width: calc(100% - 30px);
  margin: auto;
  background-color: #fff;
  border-bottom: 1px solid #e9e9e9;
  border-radius: 5px;
  box-shadow: 0 1px 9px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.md_locations_item:hover {
  background: var(--color_background_info);
}

.md_locations_item:hover h3:after {
  width: 100%;
}

.md_locations_item.infowindow {
  margin-bottom: 0 !important;
  border: 0;
  padding: 10px 0;
}

.md_locations_item.infowindow:hover h3:after {
  width: 0%;
}

@media (min-width: 480px) {
  .md_locations_item {
    width: calc(33.33% - 30px);
    float: left;
    margin: 15px;
  }
}

@media (max-width: 927px) {
  .md_locations_item {
    width: calc(100% - 30px);
  }
}

.md_locations_item_name {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.2px;
  color: #0b2135;
  font-weight: 700;
  text-transform: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 24px;
  padding: 15px;
  padding-bottom: 3px;
}

.infowindow .md_locations_item_name {
  font-size: 16px;
  line-height: 20px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0;
}

.md_locations_item_name_mp {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.2px;
  color: #0b2135;
  font-weight: 700;
  text-transform: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 24px;
  padding-bottom: 3px;
}

.infowindow .md_locations_item_name_mp {
  font-size: 16px;
  line-height: 20px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0;
}

.md_locations_item_address {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.2px;
  color: #0b2135;
  text-transform: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 19px;
  padding: 0 15px;
}

.infowindow .md_locations_item_address {
  line-height: 16px;
  font-size: 12px;
}

.md_locations_item_address_mp {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.2px;
  color: #0b2135;
  text-transform: none;
  line-height: 19px;
}

.infowindow .md_locations_item_address_mp {
  line-height: 16px;
  font-size: 12px;
}

.md_locations_item_online {
  color: #4b6c8b !important;
  border-radius: 8px;
  width: 80px;
  height: 20px;
  line-height: 20px !important;
  font-weight: bold !important;
  text-align: center;
  float: right;
}

.md_locations_item_pickup_delivery {
  margin-top: 10px;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  border-top: solid 1px rgba(37, 62, 85, 0.1);
  justify-content: space-between;
}

.md_locations_item_pickup_delivery div {
  display: flex;
  text-decoration: none;
  margin-right: 5px;
  margin: 0;
  font-size: 12px;
  letter-spacing: normal;
  line-height: 25px;
  color: #fd4f57;
  font-weight: 700;
  font-family: Lato;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.md_locations_item_pickup_delivery div img {
  margin-right: 5px;
}

.md_locations {
  height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: space-between !important;
  background-color: var(--background);
}

.md_content .md_locations {
  margin-top: 0;
  padding-bottom: 0;
}

.md_locations .map {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .md_locations .md_locations {
    height: calc(100vh - 379px);
  }
}

.md_locations .md_map_container {
  display: none;
}

@media (min-width: 992px) {
  .md_locations .md_map_container {
    -moz-flex-grow: 1;
    -ms-flex-grow: 1;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: block;
  }
}

.md_locations .md_col_container {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  max-width: none !important;
  padding: 0 40px !important;
}

@media (min-width: 992px) {
  .md_locations .content-wrap {
    overflow: hidden;
  }
}

.md_locations .md_show_map .md_map_container {
  display: block;
  margin-left: 0;
  width: 100%;
  height: calc(100vh - 86px);
}

@media (min-width: 992px) {
  .md_locations .md_show_map .md_map_container {
    height: auto;
  }
}

.md_locations .md_show_map .md_locations {
  display: none;
}

.md_locations .md_separator_title {
  margin-bottom: 0 !important;
}

ul a.menu_tag.tag_selected {
  color: black;
  font-size: 16px;
  font-weight: bold;
}

.tag_container {
  background: #f9f9f9;
}

.tag_container .md_col_container {
  padding: 0 auto;
  margin: 0 auto;
}

.tag_container .md_col_half {
  width: 100%;
  padding: 0;
  margin: 0;
  height: auto;
}

.tag_container .md_col_half .categories-bar {
  margin-bottom: 0;
}

.md_cart {
  border: 1px solid #e9e9e9;
}

@media (min-width: 768px) {
  .md_cart .md_scroll_cart_items {
    height: 130px;
    overflow-y: scroll;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .cart .md_separator_title {
    margin-bottom: 0 !important;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .cart .md_cart_totals_items .md_cart_totals_loyalty_points {
    border-top: none;
  }
}

.md_cart_item {
  border-bottom: 1px solid #e9e9e9;
  color: #0b2135;
  cursor: pointer;
  display: flex;
  font-weight: 700;
  padding: 10px 15px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.md_cart_item .btn_edit {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  right: -60px;
  top: 10px;
  -webkit-transition: right 0.25s ease-in-out;
  transition: right 0.25s ease-in-out;
}

.md_cart_item .btn_edit:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fd4f57;
  position: absolute;
  bottom: 0;
  right: 0;
}

.md_cart_item:hover {
  background-color: #f9f9f9;
}

.md_cart_item:hover .btn_edit {
  opacity: 1;
  visibility: visible;
  right: 20px;
}

.md_cart_item:hover .price {
  display: none;
}

.md_cart_item:last-child {
  border-bottom: none;
}

.md_cart_item_quantity {
  color: #fd4f57;
  margin-right: 5px;
  text-align: right;
}

.md_cart_item_description {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-top: 2px;
}

.md_cart_item_description_name {
  font-size: 14px;
}

.md_cart_item_description_options {
  color: #8c8c8f;
  font-weight: 400;
  padding-top: 10px;
}

.md_cart_item_description_comments {
  color: #0b2135;
  font-size: 12px;
  font-style: italic;
  padding-top: 12px;
  word-wrap: break-word;
}

.md_cart_item_value {
  margin-left: 15px;
  text-align: right;
}

.md_cart_totals_items {
  padding: 10px 15px;
}

@media screen and (min-width: 768px) {
  .md_cart_totals_items {
    border-top: 1px solid #e9e9e9;
  }
}

.md_cart_totals_item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: flex;
}

.md_cart_totals_item_name {
  color: #8c8c8f;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  line-height: 2.2;
}

.md_cart_totals_item_value {
  color: #0b2135;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.57;
  margin-left: 10px;
}

.md_cart_totals_discount_code_input_wrapper {
  position: relative;
}

.md_form_field_discount_code_input {
  padding-right: 70px !important;
  text-transform: uppercase !important;
}

.md_cart_totals_discount_code_button {
  position: absolute;
  top: 1px;
  right: 1px;
  padding: 0 10px;
  background: #fff;
  color: #0b2135;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
  border: none;
  border-radius: 2px;
  text-transform: none;
  height: 48px;
}

.md_cart_totals_discount_code_button:after {
  background: transparent;
  content: " ";
  display: block;
  height: 1px;
  width: 100%;
}

.md_cart_totals_discount_code_button:hover {
  font-weight: 700;
}

.md_cart_totals_grandtotal {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #0b2135;
  display: flex;
  padding-top: 20px;
}

.md_cart_totals_grandtotal_name {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 18px;
}

.md_cart_totals_grandtotal_value {
  font-size: 18px;
  font-weight: 700;
  margin-left: 10px;
  text-align: right;
}

.md_cart_special_instructions {
  margin-bottom: 10px;
  padding: 10px 15px;
  position: relative;
  border: 1px solid #e9e9e9;
  border-top: none;
}

.md_cart_special_instructions_title {
  color: #fd4f57;
  margin: 10px 0;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.1;
}

.md_cart_special_instructions_textarea {
  background: #f9f9f9;
  border: 1px solid #e9e9e9;
  color: #0b2135;
  font-size: 16px;
  font-style: italic;
  outline: none;
  padding: 22px;
  resize: none;
  width: 100%;
  overflow: auto;
  margin: 0;
}

.md_cart_special_instructions_textarea:hover, .md_cart_special_instructions_textarea:focus {
  border: 1px solid #8c8c8f;
  -webkit-transition: border 300ms ease;
  transition: border 300ms ease;
}

.md_cart_container .md_cart_container_inner {
  padding-top: 10px;
}

.md_cart_container .md_cart_container_inner.is_stuck {
  position: static;
  top: 30px;
}

.md_cart_empty {
  padding: 62px 42px;
  border: 1px solid #e9e9e9;
  border-radius: 2px;
}

.md_cart_empty h5 {
  color: #c0c0c0;
  font-size: 14px;
  line-height: 1.71;
  margin: 0 auto 25px auto;
  text-align: center;
  letter-spacing: 1px;
}

.md_cart_empty .md_empty_icon {
  display: block;
  height: 124px;
  margin: 0 auto;
}

.md_login {
  overflow: auto;
}

@media screen and (min-width: 768px) {
  .md_modal_content.modal_height_auto {
    height: auto;
  }
}

.md_login_container {
  margin: 20px;
}

@media screen and (min-width: 768px) {
  .md_login_container {
    margin: 0;
    padding: 20px;
    overflow-y: auto;
    height: 100%;
    max-height: 80vh;
  }
}

@media screen and (min-width: 768px) {
  .md_login_container > div {
    margin-bottom: 0;
  }
}

.md_login_title {
  text-align: center;
}

.md_login_title_separator {
  border: 1px solid #fd4f57;
  height: 2px;
  margin: 16px auto 32px;
  width: 25px;
}

.md_login_forgot_password {
  padding-bottom: 12px;
  text-align: center;
}

.md_login_forgot_password_text {
  color: #8c8c8f;
  text-transform: uppercase;
}

.md_login_button {
  padding: 0 20px;
  width: 100%;
  background: #fd4f57;
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  height: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.md_login_forgot_password_button {
  padding: 0 20px;
  width: 100%;
  background: #0b2135;
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  height: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  cursor: pointer;
}

.md_login_forgot_password_button:hover, .md_login_forgot_password_button:focus {
  background: #2c4155;
}

.md_login_separator_or {
  border-bottom: 1px solid #c0c0c0;
  font-size: 12px;
  height: 20px;
  margin: 15px auto 30px;
  text-align: center;
  width: 70px;
}

.md_login_separator_or_text {
  background: #fff;
  line-height: 38px;
  padding: 0 10px;
}

.md_login_facebook {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 2px 0 22px;
}

.md_login_facebook_button {
  background-color: #3b5998;
  color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  border: none;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  height: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.md_login_facebook_button_inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.md_login_facebook_button_text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-right: 21px;
}

.md_login_google {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 2px 0 22px;
}

.md_login_google_button {
  background-color: #fff;
  border: 1px solid #e9e9e9;
  color: #0b2135;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  height: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 20px;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.md_login_google_button_inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.md_login_google_button_text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-right: 21px;
}

.md_login_register_text {
  text-align: center;
  color: #8c8c8f;
  text-transform: uppercase;
  padding-bottom: 12px;
}

.md_login_register_button {
  padding: 0 20px;
  width: 100%;
  background: #fd4f57;
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  height: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.md_register {
  overflow: auto;
}

.md_register_container {
  margin: 15px 15px 0 15px;
}

@media screen and (min-width: 768px) {
  .md_register_container {
    margin: 0;
    padding: 20px 20px 0 20px;
    overflow-y: auto;
    height: 100%;
    max-height: 80vh;
  }
}

.md_register_title {
  text-align: center;
}

.md_register_title_separator {
  border: 1px solid #fd4f57;
  height: 2px;
  margin: 16px auto 28px;
  width: 25px;
}

.md_register_register_button {
  padding: 0 20px;
  width: 100%;
  background: #fd4f57;
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  height: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .md_register_register_button {
    margin-bottom: 15px;
  }
}

.md_reset_password, .md_generic {
  overflow: auto;
}

.md_reset_password_container {
  margin: 15px 15px 0 15px;
}

@media screen and (min-width: 768px) {
  .md_reset_password_container {
    margin: 0;
    padding: 20px 20px 0 20px;
    overflow-y: auto;
    height: 100%;
    max-height: 70vh;
  }
}

.md_generic_modal {
  margin: 50px 20px;
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .md_generic_modal {
    margin: 0;
    padding: 20px;
    overflow-y: auto;
    height: 100%;
    max-height: 70vh;
  }
}

.md_reset_password_title {
  text-align: center;
}

.md_reset_password_title_separator {
  border: 1px solid #fd4f57;
  height: 2px;
  margin: 16px auto 28px;
  width: 25px;
}

.md_reset_password_text {
  line-height: 1.5;
  margin: -14px 0 32px;
  padding: 0 10px;
  text-align: center;
}

.md_reset_password_send_button, .btn_blue_dark {
  border: none;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  height: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #0b2135;
  color: #fff;
  padding: 0 20px;
  width: 100%;
  margin: 30px 0 22px;
  cursor: pointer;
}

.md_reset_password_send_button:hover, .md_reset_password_send_button:focus, .btn_blue_dark:hover, .btn_blue_dark:focus {
  background: #2c4155;
}

.md_form_field {
  margin-bottom: 15px;
}

.md_form_field label {
  color: #0b2135;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.md_form_field.half {
  width: 100%;
}

@media (min-width: 768px) {
  .md_form_field.half {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px;
  }
}

.md_form_field_input {
  border: 1px solid #e9e9e9;
  border-radius: 2px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #0b2135;
  display: block;
  padding: 10px 15px;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  width: 100% !important;
  background: transparent !important;
}

.md_form_field_input:focus {
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

.md_form_field_input.error {
  border: 1px solid #ed524d;
  -webkit-transition: border 300ms ease;
  transition: border 300ms ease;
}

.md_form_field_input.cod_security {
  float: none !important;
  padding-right: 10px !important;
}

.md_form_field_select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url(https://cf.chownowcdn.com/marketplace-react-prod/static/media/icon-chevron-down.9861177c.svg) right 15px top 50% no-repeat;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  letter-spacing: 0.2px;
  padding-right: 35px;
  border: 1px solid #e9e9e9;
  border-radius: 2px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #0b2135;
  display: block;
  padding: 10px 15px;
  -webkit-transition: border-color ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s;
  width: 100%;
}

.md_form_field_error_message {
  color: #ed524d !important;
  text-transform: none !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
}

.md_field_container::after {
  clear: both;
  content: "";
  display: block;
}

.md_field_container .md_width_50 {
  width: 100%;
}

@media (min-width: 768px) {
  .md_field_container .md_width_50 {
    width: 50%;
    float: left;
    padding: 0 10px;
  }
}

@media (min-width: 768px) {
  .md_field_container .md_width_50:first-child {
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .md_field_container .md_width_50:last-child {
    padding-right: 0;
  }
}

@media (min-width: 768px) {
  .md_field_container .md_width_50.end {
    padding: 0 10px 0 0;
  }
}

.md_field_container .md_width_30 {
  width: 100%;
}

@media (min-width: 768px) {
  .md_field_container .md_width_30 {
    width: 30%;
    float: left;
    padding: 0 10px;
  }
}

@media (min-width: 768px) {
  .md_field_container .md_width_30:first-child {
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .md_field_container .md_width_30:last-child {
    padding-right: 0;
  }
}

.md_field_container .md_width_25 {
  width: 100%;
}

@media (min-width: 768px) {
  .md_field_container .md_width_25 {
    width: 25%;
    float: left;
    padding: 0 10px;
  }
}

@media (min-width: 768px) {
  .md_field_container .md_width_25:first-child {
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .md_field_container .md_width_25:last-child {
    padding-right: 0;
  }
}

.md_field_container .w70 {
  width: 100%;
}

@media (min-width: 768px) {
  .md_field_container .w70 {
    width: 70%;
    float: left;
    padding: 0 10px;
  }
}

@media (min-width: 768px) {
  .md_field_container .w70:first-child {
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .md_field_container .w70:last-child {
    padding-right: 0;
  }
}

@media (min-width: 768px) {
  .md_field_container .w20 {
    width: 21%;
    float: left;
    padding: 0 10px;
  }
}

html, body, .container, .content-wrap {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

html.show-menu, body.show-menu {
  position: fixed;
  overflow: hidden;
}

.container {
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  height: 100%;
}

.show-menu .container {
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.content-wrap {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.show-menu .content-wrap {
  overflow-y: hidden;
}

.content {
  position: relative;
  min-height: 100%;
}

.show-menu .content {
  position: static;
}

.content::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  content: "";
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transition: opacity 0.4s, -webkit-transform 0s 0.4s;
  transition: opacity 0.4s, transform 0s 0.4s, -webkit-transform 0s 0.4s;
}

@media screen and (max-width: 668px) {
  .content::before {
    display: block !important;
  }
}

.menu-wrap a {
  color: #0b2135;
  text-decoration: none;
  line-height: 25px;
}

.menu-wrap a:hover, .menu-wrap a:focus {
  color: #c94e50;
}

.menu-wrap .name-company {
  letter-spacing: 1px;
  line-height: 13.2px;
  color: #fd4f57;
  margin-top: 23px;
  margin-bottom: 10px;
}

.menu-button {
  z-index: 1000;
  padding: 0;
  border: none;
  text-indent: 2.5em;
  font-size: 0;
  color: transparent;
  background: transparent;
  outline: none;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  padding-top: 17px;
}

.menu-button svg g {
  fill: #fff;
}

.close-button {
  height: 1em;
  width: 1em;
  position: absolute;
  top: 1em;
  right: 1em;
  overflow: hidden;
  text-indent: 1em;
  font-size: 0.75em;
  border: none;
  background: transparent;
  color: transparent;
}

.close-button::before, .close-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 3px;
  background: #bdc3c7;
}

.close-button::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.close-button::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-wrap {
  overflow: auto;
  padding: 0;
  position: absolute;
  height: 100%;
  width: 300px;
  -webkit-transform: translate3d(-320px, 0, 0);
  transform: translate3d(-320px, 0, 0);
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  background: #fff;
  z-index: 100;
}

@media screen and (max-width: 320px) {
  .menu-wrap {
    height: 100%;
    width: 270px;
  }
}

.menu {
  height: 100%;
}

.menu .inside {
  height: 100%;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.menu .inside ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.menu .inside ul li {
  line-height: 49px;
  list-style: none;
}

.menu .inside ul a {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 24px;
  color: #0b2135;
  cursor: pointer;
  text-decoration: none;
}

.menu .inside .align-top {
  -moz-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  -webkit-box-flex: 1;
  flex: 1 0 auto;
}

.menu .inside .align-bottom {
  border-top: none;
  padding: 32px 0;
  width: inherit;
}

.menu .social {
  list-style: none;
  position: relative;
  padding-top: 10px;
  padding-left: 0;
  margin: 0;
}

.menu .social li {
  margin-right: 15px;
}

.menu .social li:last-child {
  margin-right: 0;
}

.menu .social li:hover path {
  fill: #fd4f57;
}

.menu .social li:hover circle {
  stroke: #fd4f57;
}

.menu .social:before {
  content: "";
  background: #fd4f57;
  height: 2px;
  width: 25px;
  position: absolute;
  top: -10px;
  left: 0;
  display: block;
}

.show-menu {
  width: 100%;
  height: 100%;
}

.show-menu .menu-wrap {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.show-menu .content::before, .show-menu .overlay::before {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.md_checkout .md_content {
  margin-top: 0;
}

@media (min-width: 768px) {
  .md_checkout .md_separator_title:first-child {
    margin-bottom: 20px;
  }
}

.md_checkout .md_map {
  height: 150px;
  width: 100%;
  margin-bottom: 15px;
}

.my_account .list_account {
  margin-left: -15px;
  margin-right: -15px;
}

@media (min-width: 992px) {
  .my_account .list_account {
    margin-left: 0;
    margin-right: 0;
  }
}

.my_account .list_account li {
  border-bottom: 1px solid #e9e9e9;
}

.my_account .list_account li a {
  color: #0b2135;
  display: block;
  font-size: 16px;
  font-weight: 400;
  padding: 24px 0 24px 0;
  text-decoration: none;
  padding-left: 15px;
}

@media (min-width: 992px) {
  .my_account .list_account li a {
    padding-left: 0;
  }
}

.my_account .list_account li a:hover, .my_account .list_account li a:focus {
  color: #fc030f;
}

.my_account .list_account li.active {
  border-right: 3px solid #fd4f57;
}

.my_account .panel_wrapper {
  padding: 25px 0 15px 0;
}

@media (min-width: 992px) {
  .my_account .panel_wrapper {
    border-left: 1px solid #e9e9e9;
    padding: 25px 30px 130px;
  }
}

@media (min-width: 992px) {
  .my_account .panel_wrapper .max_width {
    width: 500px;
  }
}

.my_account .panel_wrapper .form_theme fieldset {
  width: 100%;
  border: none;
  margin: 0;
  padding: 0;
}

.my_account .panel_wrapper .form_theme label {
  font-size: 12px;
  color: #0b2135;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 10px;
  font-weight: 700;
  display: inline-block;
}

.my_account .panel_wrapper .form_theme .wrapper_field {
  margin-bottom: 30px;
}

.my_account .panel_wrapper .form_theme .wrapper_field .field {
  width: 100%;
  display: block;
  border-radius: 2px;
  border: 1px solid #e9e9e9;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 10px 15px;
}

.my_account .panel_wrapper .form_theme .wrapper_field .field:focus, .my_account .panel_wrapper .form_theme .wrapper_field .field:active {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border-color: #0b2135;
}

.my_account .panel_wrapper .form_theme .wrapper_field .txt_error {
  display: none;
  color: #ed524d;
  font-size: 12px;
  padding-top: 5px;
  text-transform: capitalize;
}

.my_account .panel_wrapper .form_theme .wrapper_field.msg_error .txt_error {
  display: block;
}

.my_account .panel_wrapper .form_theme .wrapper_field.msg_error .field {
  border-color: #ed524d;
}

.my_account .panel_wrapper .btn {
  width: 100%;
  text-transform: uppercase;
  color: white;
  height: 50px;
  letter-spacing: 1px;
  font-weight: 700;
  border: none;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}

@media (min-width: 992px) {
  .my_account .panel_wrapper .btn.btn_blue_dark {
    width: auto;
    display: inline-block;
  }
}

.my_account .panel_wrapper .btn.out_margin_top {
  margin-top: 0;
}

.my_account .panel_wrapper .list_address {
  border-top: 1px solid #e9e9e9;
}

.my_account .panel_wrapper .list_address li {
  padding: 24px 20px;
  border-bottom: 1px solid #e9e9e9;
}

@media (min-width: 992px) {
  .my_account .panel_wrapper .list_address li {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    display: flex;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
}

.my_account .panel_wrapper .list_address li .address {
  color: #0b2135;
  display: block;
}

.my_account .panel_wrapper .list_address li .md_product_details_product_delete_item {
  display: inline-block;
  height: auto;
  margin-left: auto;
  margin-top: 35px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

@media (min-width: 992px) {
  .my_account .panel_wrapper .list_address li .md_product_details_product_delete_item {
    margin-top: 0;
  }
}

.my_account .panel_wrapper .list_address li .link_text {
  color: #0b2135;
  font-size: 14px;
  letter-spacing: 0.2px;
  font-weight: 400;
  padding-bottom: 2px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-top: 35px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

@media (min-width: 992px) {
  .my_account .panel_wrapper .list_address li .link_text {
    margin-left: auto;
    margin-top: 0;
  }
}

.my_account .panel_wrapper .list_address li .link_text:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fd4f57;
  position: absolute;
  bottom: 0;
  left: 0;
}

.my_account .panel_wrapper .list_address li .link_text:hover, .my_account .panel_wrapper .list_address li .link_text:focus {
  color: #fd4f57;
}

.my_account .panel_wrapper .list_address li .link_text:hover:after, .my_account .panel_wrapper .list_address li .link_text:focus:after {
  -webkit-animation: line_in_hover 0.25s ease-in-out;
  animation: line_in_hover 0.25s ease-in-out;
}

.my_account .panel_wrapper .list_orders li {
  border: 1px solid #e9e9e9;
  margin-bottom: 10px;
}

.my_account .panel_wrapper .list_orders li .wrapper_order {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  padding: 10px;
}

.my_account .panel_wrapper .list_orders li .wrapper_order .description h3 > a {
  font-size: 18px;
  font-weight: 700;
  color: #0b2135;
  padding-bottom: 3px;
  text-decoration: none;
  width: 290px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.my_account .panel_wrapper .list_orders li .wrapper_order .description h3 > a:after {
  content: "";
  width: 100%;
  height: 1px;
  background: white;
  position: absolute;
  bottom: 0;
  left: 0;
}

.my_account .panel_wrapper .list_orders li .wrapper_order .description h3 > a:hover, .my_account .panel_wrapper .list_orders li .wrapper_order .description h3 > a:focus {
  color: #fd4f57;
}

.my_account .panel_wrapper .list_orders li .wrapper_order .description h3 > a:hover:after, .my_account .panel_wrapper .list_orders li .wrapper_order .description h3 > a:focus:after {
  -webkit-animation: line_in_hover 0.25s ease-in-out;
  animation: line_in_hover 0.25s ease-in-out;
  background: #fd4f57;
}

.my_account .panel_wrapper .list_orders li .wrapper_order .description .detail_order {
  font-size: 12px;
  font-weight: 300px;
}

.my_account .panel_wrapper .list_orders li .wrapper_order .date {
  display: none;
  margin-left: auto;
  padding-left: 10px;
}

@media (min-width: 992px) {
  .my_account .panel_wrapper .list_orders li .wrapper_order .date {
    display: block;
  }
}

.my_account .panel_wrapper .list_orders li .wrapper_buttons {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  border-top: 1px solid #e9e9e9;
}

.my_account .panel_wrapper .list_orders li .wrapper_buttons .btn_text:first-child {
  border-right: 1px solid #e9e9e9;
}

.my_account .panel_wrapper .list_orders li .wrapper_buttons .btn_text .ico {
  width: 15px;
  height: 13px;
  margin-right: 5px;
  background-repeat: no-repeat;
  background-position: top left;
  display: none;
}

@media (min-width: 992px) {
  .my_account .panel_wrapper .list_orders li .wrapper_buttons .btn_text .ico {
    display: inline-block;
  }
}

.my_account .panel_wrapper .list_orders li .wrapper_buttons .btn_text .ico.ico-detail {
  background-image: url(../_assets/images/ico-orderDetail.jpg);
}

.my_account .panel_wrapper .list_orders li .wrapper_buttons .btn_text .ico.ico-order {
  background-image: url(../_assets/images/ico-order.jpg);
}

.my_account .panel_wrapper .list_orders li .wrapper_buttons .btn_text:hover .ico, .my_account .panel_wrapper .list_orders li .wrapper_buttons .btn_text:focus .ico {
  background-position: bottom left;
}

.my_account .panel_wrapper .list_orders .btn_text {
  color: #0b2135;
  font-weight: 700;
  width: 50%;
  padding: 10px 0;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
}

.my_account .panel_wrapper .list_orders .btn_text:hover, .my_account .panel_wrapper .list_orders .btn_text:focus {
  color: #fd4f57;
}

.md_product_details_wrapper {
  min-height: 100%;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 81px;
}

@media screen and (min-width: 768px) {
  .md_product_details_wrapper {
    padding-bottom: 0;
  }
}

.md_product_details_top {
  padding: 0 15px 40px 15px;
  max-height: 100%;
  overflow-y: auto;
  -ms-flex: 1 1 auto;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  -webkit-overflow-scrolling: touch;
  position: initial;
}

@media screen and (min-width: 768px) {
  .md_product_details_top {
    max-height: 70vh;
  }
}

.md_product_details_bottom {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 124px;
  flex: 0 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 10px 10px;
  z-index: 10;
  border-top: 1px solid #e9e9e9;
  display: flex;
}

@media screen and (max-width: 767px) {
  .md_product_details_bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

.md_product_details_product {
  padding: 0 0 10px;
}

.md_product_details_product_name {
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  color: #0b2135;
}

.md_product_details_product_description {
  font-size: 16px;
  line-height: 1.38;
  padding-top: 10px;
  color: #8c8c8f;
  font-weight: 400;
  letter-spacing: 0.2px;
  margin: 0 0 10px;
  margin-bottom: 0;
}

.md_product_details_product_delete_item {
  margin-top: 20px;
  background: #fff;
  color: #0b2135;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
  padding: 0;
  text-transform: none;
  border: none;
  border-radius: 2px;
  height: 50px;
}

.md_product_details_product_delete_item:after {
  background: #fd4f57;
  content: " ";
  display: block;
  height: 1px;
  width: 100%;
}

.md_product_details_options_group {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: white;
  border-bottom: 1px solid #e9e9e9;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0;
  padding: 15px 0 10px;
}

.md_product_details_options_group_name {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  font-size: 14px;
  color: #fd4f57;
}

.md_product_details_options_group_condition {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 12px;
  line-height: 14px;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

@media screen and (min-width: 768px) {
  .md_product_details_options_group_options {
    margin: 14px 0 28px !important;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .md_product_details_options_group_options li {
    padding-right: 20px;
  }
}

@media screen and (min-width: 768px) {
  .md_product_details_options_group_options li:nth-child(even) {
    padding-right: 0;
  }
}

.md_product_details_options_group_options li {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
  display: flex;
}

.md_product_details_options_group_option {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #0b2135;
  display: flex;
  cursor: pointer;
}

.md_product_details_options_group_option.md_option_choice_selected {
  background: #f3f4f6;
  border-radius: 8px;
}

@media (max-width: 991px) {
  .md_product_details_options_group_option {
    border-bottom: none;
    margin: 0 !important;
  }
}

@media (max-width: 991px) {
  .md_product_details_options_group_option:first-child {
    margin-top: 0 !important;
  }
}

.md_product_details_options_group_option_input_checkbox {
  display: block !important;
  height: 25px;
  width: 25px;
  accent-color: var(--primary);
}

.md_product_details_options_group_option_checkbox {
  background: #fff;
  -webkit-box-shadow: 0 0 0 1px #e9e9e9;
  box-shadow: 0 0 0 1px #e9e9e9;
  position: relative;
  border: 2px solid #fff;
  display: inline-block;
  height: 18px;
  margin-right: 10px;
  min-width: 18px;
  vertical-align: top;
}

.md_product_details_options_group_option_checkbox_icon > svg {
  height: 11px;
  margin-bottom: 3px;
  margin-left: 2px;
  width: 10px;
}

.md_product_details_options_group_option_checkbox_icon path {
  stroke: #fff;
}

.md_product_details_options_group_option_input_checkbox:checked + .md_product_details_options_group_option_checkbox {
  background: #5eb3b7;
  vertical-align: top;
}

.md_product_details_options_group_option_radio {
  background: #fff;
  -webkit-box-shadow: 0 0 0 1px #e9e9e9;
  box-shadow: 0 0 0 1px #e9e9e9;
  position: relative;
  border-radius: 10px;
  border: 2px solid #fff;
  display: inline-block;
  height: 18px;
  margin-right: 10px;
  vertical-align: top;
  min-width: 18px;
}

.md_product_details_options_group_option_radio::after {
  background: #fff;
  border-radius: 100%;
  content: " ";
  height: 4px;
  left: 50%;
  margin-left: -2px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 4px;
}

.md_product_details_options_group_option_radio svg {
  display: none;
}

.md_product_details_options_group_option_radio_icon > svg {
  height: 11px;
  margin-bottom: 3px;
  margin-left: 2px;
  width: 10px;
}

.md_product_details_options_group_option_radio_icon path {
  stroke: #fff;
}

.md_product_details_options_group_option_input_checkbox:checked + .md_product_details_options_group_option_radio {
  background: #5eb3b7;
}

.md_product_details_options_group_option_select {
  border-radius: 0;
  font-size: 14px;
  height: 24px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 0.2px;
  border: 1px solid #e9e9e9;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #0b2135;
  display: block;
  padding: 0 4px;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  margin-right: 10px;
  vertical-align: top;
}

@media screen and (min-width: 768px) {
  .md_product_details_options_group_option_select {
    display: inline-block;
  }
}

.md_product_details_options_group_option_name {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-right: 20px;
}

.md_product_details_options_group_option_price {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
  margin-left: 4px;
}

@media screen and (min-width: 768px) {
  .md_product_details_options_group_option_price {
    margin-right: 0;
    margin-top: 4px;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}

@media (max-width: 991px) {
  .md_product_details_options_group_option_price {
    font-size: 14px;
  }
}

.md_product_details_special_instructions {
  margin-bottom: 30px;
  padding-top: 0;
  position: relative;
}

.md_product_details_special_instructions_title {
  color: #fd4f57;
  margin: 10px 0;
  margin-top: 15px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.1;
}

.md_product_details_special_instructions_textarea {
  background: #f9f9f9;
  border: 1px solid #e9e9e9;
  color: #0b2135;
  font-size: 16px;
  font-style: italic;
  outline: none;
  padding: 22px;
  resize: none;
  width: 100%;
  overflow: auto;
  margin: 0;
}

.md_product_details_special_instructions_textarea:hover, .md_product_details_special_instructions_textarea:focus {
  border: 1px solid #8c8c8f;
  -webkit-transition: border 300ms ease;
  transition: border 300ms ease;
}

.md_product_details_quantity {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: flex;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .md_product_details_quantity {
    margin-bottom: 0;
  }
}

.md_product_details_quantity_minus_button, .md_product_details_quantity_plus_button {
  height: 30px;
  width: 30px;
  cursor: pointer;
}

.md_product_details_quantity_minus_button g, .md_product_details_quantity_plus_button g {
  stroke: #f9f9f9;
}

.md_product_details_quantity_minus_button path, .md_product_details_quantity_plus_button path, .md_product_details_quantity_minus_button:active g, .md_product_details_quantity_plus_button:active g {
  stroke: #0b2135;
}

.md_product_details_quantity_minus_button:active circle, .md_product_details_quantity_plus_button:active circle {
  fill: #0b2135;
}

.md_product_details_quantity_minus_button:active path, .md_product_details_quantity_plus_button:active path {
  stroke: #fff;
}

.md_product_details_quantity_minus_button:hover g, .md_product_details_quantity_plus_button:hover g {
  stroke: #0b2135;
}

.md_product_details_quantity_minus_button.disabled, .md_product_details_quantity_plus_button.disabled {
  cursor: auto;
}

.md_product_details_quantity_minus_button.disabled path, .md_product_details_quantity_plus_button.disabled path {
  stroke: #c0c0c0;
}

.md_product_details_quantity_minus_button.disabled:hover g, .md_product_details_quantity_plus_button.disabled:hover g, .md_product_details_quantity_minus_button.disabled:active g, .md_product_details_quantity_plus_button.disabled:active g {
  stroke: #f9f9f9;
}

.md_product_details_quantity_minus_button.disabled:hover circle, .md_product_details_quantity_plus_button.disabled:hover circle, .md_product_details_quantity_minus_button.disabled:active circle, .md_product_details_quantity_plus_button.disabled:active circle {
  fill: #f9f9f9;
}

.md_product_details_button {
  margin: 0;
  font-size: 14px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: flex;
  /* padding: 0 20px; */
  /* width: 100%; */
  /* height: 60px; */
  line-height: 1.25;
  background: var(--primary);
  /* color: #fff; */
  border: none;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.md_product_details_button.disabled, .md_product_details_button.disabled:hover, .md_product_details_button.disabled:active, .md_product_details_button.disabled:focus {
  background: #c0c0c0 !important;
  color: #fff;
  cursor: initial;
  opacity: 1;
}

.md_product_details_quantity_text {
  border: none;
  border-radius: 2px;
  caret-color: #8c8c8f;
  color: #fd4f57;
  font-size: 22px;
  font-weight: 700;
  height: 33px;
  line-height: 15px;
  margin: 0 !important;
  padding: 0;
  text-align: center;
  width: 32px;
  letter-spacing: 0.2px;
}

.md_product_details_quantity_text:focus, .md_product_details_quantity_text:hover {
  border: 1px solid #e9e9e9;
  border-radius: 2px;
  cursor: pointer;
  outline: none;
}

.md_product_details_button_text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
}

.md_bottom {
  background: #fff;
  border-top: 1px solid #e9e9e9;
  bottom: 0;
  padding: 10px;
  position: fixed;
  width: 100% !important;
  z-index: 2;
}

.md_bottom_button, .md_cart_bottom_button {
  font-size: 14px;
  display: flex;
  padding: 20px 15px;
  width: 100%;
  height: 60px;
  line-height: 1.25;
  background: #5eb3b7;
  color: #fff;
  border: none;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.md_bottom_button.disabled, .md_bottom_button.disabled:hover, .md_bottom_button.disabled:active, .md_bottom_button.disabled:focus, .md_cart_bottom_button.disabled, .md_cart_bottom_button.disabled:hover, .md_cart_bottom_button.disabled:active, .md_cart_bottom_button.disabled:focus {
  background: #c0c0c0 !important;
  color: #fff;
  cursor: initial;
  opacity: 1;
}

.md_bottom_button_text, .md_cart_bottom_button_text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: left;
}

.md_location_info_box {
  border-bottom: none !important;
  margin-top: 15px;
}

.md_menu_info_box {
  font-size: 14px;
  line-height: 1.42857;
  color: #8894a3;
  background: #f9f9f9;
}

.md_menu_info_box .md_menu_info_box_inner {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  max-width: 1200px;
  margin: 0 !important;
  padding: 10px 10px !important;
  align-items: center;
  justify-content: start;
}

.md_menu_info_box_text {
  color: #0b2135;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0 10px;
  text-transform: none;
  line-height: 17.4px;
  text-align: justify;
  padding-right: 10px;
  padding-left: 0 !important;
}

.md_info_box {
  font-size: 14px;
  line-height: 1.42857;
  display: flex;
  justify-content: center;
}

.md_info_box .md_info_box_inner {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 15px;
}

.md_info_box_text {
  color: #8894a3;
  font-weight: bold;
  letter-spacing: 1px;
  font-family: Lato;
  font-size: 12px;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.71;
  text-align: center;
  width: 100%;
  padding: 0 10px !important;
}

.md_info_box_text span button {
  color: #5eb3b7;
  font-weight: bold;
  background: white;
  border: none;
  font-size: 15px;
  text-decoration: underline;
}

.md_info_box_text span button:hover {
  opacity: 0.5;
}

.md_dropdown {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: flex;
  height: 44px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 100%;
  border-radius: 100px;
  background: #fff;
  border: none !important;
  color: #0b2135;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.md_dropdown:active {
  border-color: #00233d;
  color: #00233d;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.md_dropdown:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.md_dropdown.active ~ .md_dropdown_items_container, .md_dropdown.active ~ .md_dropdown_items_container {
  display: block;
}

.md_dropdown_selected_item {
  display: inline-block;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #0b2135;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2px;
  margin-left: 7px;
}

.md_dropdown_arrow {
  position: absolute;
  right: 20px;
  top: 10px !important;
}

.md_dropdown_items_container {
  left: 0;
  padding: 5px 15px;
  position: absolute;
  width: 100%;
  z-index: 9999 !important;
}

.md_dropdown_items {
  background: #fff;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.11);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.11);
  border-radius: 10px !important;
}

.md_dropdown_item {
  background: #fff;
  border: none;
  border-radius: 0;
  height: 50px;
  margin-left: 0;
  padding: 16px 20px;
  position: relative;
  text-align: left;
  width: 100%;
  color: #0b2135;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.md_dropdown_item + .md_dropdown_item {
  border-top: 1px solid #e9e9e9;
}

.md_dropdown_item:hover {
  background: #f9f9f9;
}

.md_dropdown_item:active, .md_dropdown_item:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.md_dropdown_item_name {
  position: relative;
  top: -2.5px;
  color: #0b2135;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
  margin-left: 7px;
}

.md_dropdown_item_check {
  position: absolute;
  right: 20px;
}

.md_dropdown_item_check path {
  stroke: #5eb3b7;
}

.md_dropdown_item_form {
  margin: 10px 20px 5px;
}

.md_dropdown_item_select {
  background-size: 10px 8px;
  border-radius: 0;
  font-size: 16px;
  height: 40px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url(../_assets/static/images/dropdown_item_select_arrow.svg) right 15px top 50% no-repeat;
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 0.2px;
  padding-right: 35px;
  border: 1px solid #e9e9e9;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #0b2135;
  display: block;
  padding: 10px 15px;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  width: 100%;
}

.md_dropdown_item_select_error {
  color: #ed524d;
  font-size: 12px;
  letter-spacing: normal;
  line-height: normal;
  opacity: 0;
  padding: 2px 0;
  text-align: left;
  text-transform: none;
}

.md_confirmation {
  padding: 50px 15px;
  text-align: center;
  background: #f9f9f9;
  overflow-y: auto;
}

@media screen and (max-width: 320px) {
  .md_confirmation {
    padding: 20px 15px;
  }
}

.md_confirmation_logo_image {
  height: 100px;
  width: 100px;
  border: 1px solid #fff;
  border-radius: 3px;
}

.md_confirmation_title {
  padding: 22px 15px;
  text-align: center;
}

.md_confirmation_title_text {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.23;
  margin: 0 auto;
  word-wrap: break-word;
  color: #0b2135;
}

.md_confirmation_infotext {
  background: #f9f9f9;
  color: #0b2135;
  text-align: center;
  width: 100%;
  padding-top: 50px;
}

.md_confirmation_infotext_order_number {
  font-size: 21px;
  font-weight: 400;
}

.md_confirmation_infotext_separator {
  margin: 20px auto;
  border: 1px solid #fd4f57;
  height: 2px;
  width: 25px;
}

.md_confirmation_infotext_message {
  padding: 4px 20px 0;
}

.md_confirmation_infotext_message strong {
  font-weight: 700;
}

.md_order_detail_container {
  padding: 0 15px 0 15px;
}

@media screen and (min-width: 768px) {
  .md_order_detail_container {
    padding: 20px 20px 20px 20px;
    max-height: 60vh;
    overflow-y: auto;
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    -webkit-overflow-scrolling: touch;
    position: initial;
  }
}

.md_menu_address_box {
  padding: 10px 0;
  font-size: 14px;
  line-height: 20px;
  color: #0b2135;
  text-transform: none;
  letter-spacing: 0.2px;
  font-weight: 400;
}

.md_menu_address_box_street {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0.2px;
  color: #0b2135;
  text-transform: none;
}

.md_menu_address_modify_button {
  margin-top: 0;
  background: #fff;
  color: #fd4f57;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
  padding: 0;
  text-transform: none;
  border: none;
  border-radius: 2px;
}

.md_menu_address_modify_button:after {
  background: #fd4f57;
  content: " ";
  display: block;
  height: 1px;
  width: 100%;
}

.md_menu_scheduler, .md_menu_delivery_method {
  position: relative;
  padding: 10px 15px;
}

@media screen and (min-width: 768px) {
  .md_menu_scheduler, .md_menu_delivery_method {
    position: relative;
    padding: 10px 15px;
    width: 49%;
    display: inline-block;
    margin: 0 !important;
  }
}

.md_delivery_address {
  overflow: unset;
  max-height: 65vh !important;
}

@media screen and (min-width: 768px) {
  .md_delivery_address {
    max-height: 60vh;
    overflow-y: auto;
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    -webkit-overflow-scrolling: touch;
    position: initial;
  }
}

.md_payment_card {
  overflow: auto;
}

@media screen and (min-width: 768px) {
  .md_payment_card {
    max-height: 100%;
    overflow-y: auto;
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    -webkit-overflow-scrolling: touch;
    position: initial;
  }
}

.md_delivery_address_container {
  margin: 30px 15px;
  margin-top: 0;
  padding-bottom: 80px;
  height: 100% !important;
  padding: 0 !important;
  width: auto !important;
}

@media screen and (min-width: 768px) {
  .md_delivery_address_container {
    margin: 0;
    padding: 20px 20px;
    max-height: 100%;
    overflow-y: auto;
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    -webkit-overflow-scrolling: touch;
    position: initial;
  }
}

.md_delivery_address_title {
  text-align: center;
}

.md_delivery_address_title_separator {
  border: 1px solid #fd4f57;
  height: 2px;
  margin: 16px auto 28px;
  width: 25px;
}

.md_information {
  padding-bottom: 100px;
}

@media (min-width: 992px) {
  .md_information {
    padding-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
  }
}

.md_information .list_text_info {
  width: 100%;
  margin: 0;
  padding: 10px 0;
  text-align: center;
}

.md_information .list_text_info li {
  width: 33%;
  display: inline-block;
  margin-left: -4px;
  color: #0b2135;
  font-weight: 700;
  font-size: 18px;
  vertical-align: top;
  border-right: 1px solid #e9e9e9;
}

.md_information .list_text_info li .sub_header {
  font-size: 14px;
  font-weight: normal;
  display: block;
}

.md_information .list_text_info li:last-child {
  border-right: none;
}

.md_information .list_ref {
  width: 100%;
  margin: 15px auto 0 auto;
  padding: 0;
}

.md_information .list_ref li {
  width: 49%;
  display: inline-block;
  margin-left: -4px;
  margin: 5px 0;
  padding: 0 10px;
  vertical-align: top;
  color: #8c8c8f;
}

.md_information .list_ref li .ref_color {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.md_information .description {
  padding-top: 10px;
  padding-bottom: 20px;
  text-align: center;
  border-bottom: 1px solid #e9e9e9;
}

@media (min-width: 992px) {
  .md_information .description {
    border-bottom: none;
    width: 40%;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 14px;
    text-align: left;
  }
}

.md_information .description h3 {
  color: #0b2135;
  font-size: 22px;
  font-weight: 500;
}

.md_information .description h4 {
  margin-top: 24px;
  margin-bottom: 10px;
  color: #8c8c8f;
  font-size: 16px;
  font-weight: 700;
}

.md_information .description address {
  color: #0b2135;
  font-weight: 500;
  font-size: 14px;
  font-style: normal;
  text-transform: uppercase;
}

.md_information .description address .city {
  display: block;
}

.md_information .hours_detail {
  padding-top: 40px;
}

@media (min-width: 992px) {
  .md_information .hours_detail {
    width: 60%;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 4px;
    padding-top: 35px;
  }
}

.md_information .hours_detail h3 {
  color: #fd4f57;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 700;
}

.md_information .hours_detail .hours_list {
  padding-left: 4px;
}

.md_information .hours_detail .hours_list dt {
  width: 30%;
}

.md_information .hours_detail .hours_list dd {
  width: 70%;
}

.md_information .hours_detail .hours_list dt, .md_information .hours_detail .hours_list dd {
  display: inline-block;
  vertical-align: top;
  margin-left: -4px;
  color: #0b2135;
  margin-top: 20px;
  line-height: 15px;
  font-size: 14px;
}

.pac-container {
  padding-bottom: 15px;
}

.pac-container .pac-item {
  color: #0b2135;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 15px;
  letter-spacing: 0.2px;
  line-height: 19px;
  border: 0;
}

.pac-container .pac-item .pac-icon {
  display: none;
}

.pac-container .pac-item:hover, .pac-container .pac-item.pac-item-selected {
  background: #f9f9f9;
}

.pac-container.pac-logo:after {
  padding-top: 30px;
  margin-right: 30px;
}

.md_map_button {
  position: fixed;
  right: 25px;
  bottom: 25px;
}

.md_map_button button {
  -webkit-box-shadow: 0 2px 17px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 17px 0 rgba(0, 0, 0, 0.2);
  height: 50px;
  width: 50px;
  padding: 0;
  border-radius: 100px;
  background: #fd4f57;
  color: #fff;
  border: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.md_map_button button div {
  background: url(..as/images/list-icon.svg) center center no-repeat;
}

.md_map_button button .md_list_icon {
  display: none;
}

.md_map_button button .md_map_icon {
  display: block;
}

.md_map_button button.open .md_list_icon {
  display: block;
}

.md_map_button button.open .md_map_icon {
  display: none;
}

.md_order_details_container {
  padding-bottom: 81px;
}

.md_delivery_info {
  margin: 0 0 20px;
  padding: 15px 18px;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f9f9f9;
  color: #0b2135;
}

.md_delivery_info h6 {
  color: #fd4f57;
  margin: 0;
  text-transform: uppercase;
  line-height: 17px;
  display: none;
}

@media (min-width: 768px) {
  .md_delivery_info h6 {
    display: block;
  }
}

@media (min-width: 992px) {
  .md_delivery_info h6 {
    display: none;
  }
}

.md_delivery_info svg g {
  fill: #fd4f57;
}

.md_delivery_info span {
  height: 16px;
  padding-right: 5px;
}

.md_delivery_info .date {
  line-height: 20px;
}

@media (min-width: 768px) {
  .md_delivery_info .date {
    margin: 5px 20px;
  }
}

@media (min-width: 992px) {
  .md_delivery_info .date {
    margin: 0;
  }
}

.md_saved_delivery_addresses_container {
  font-size: 16px;
  position: relative;
  text-align: left;
}

.md_saved_delivery_addresses_list {
  background: #fff;
  border: solid 1px #e9e9e9;
  border-radius: 10px !important;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  left: 0;
  margin-left: -1px;
  position: absolute;
  right: 0;
  top: 100%;
  width: calc(100% + 2px);
  z-index: 1000;
}

.md_saved_delivery_addresses_list_item_container {
  border-top: 1px solid #e9e9e9;
  padding-bottom: 14px;
  max-height: 300px;
  overflow-y: auto;
}

.md_saved_delivery_addresses_list_title {
  font-size: 12px;
  font-style: italic;
  padding: 20px 10px 8px;
}

.md_saved_delivery_addresses_list_not_addresses {
  line-height: 1.25;
  color: #0b2135;
  cursor: initial;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 10px;
}

@media screen and (min-width: 768px) {
  .md_saved_delivery_addresses_list_not_addresses {
    padding: 14px 20px;
  }
}

.md_saved_delivery_addresses_list_item {
  line-height: 1.25;
  color: #0b2135;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 10px;
}

@media screen and (min-width: 768px) {
  .md_saved_delivery_addresses_list_item {
    padding: 14px 20px;
  }
}

.md_saved_delivery_addresses_list_item:hover, .md_saved_delivery_addresses_list_item:focus {
  background: #f9f9f9;
}

.md_search_delivery_addresses_list_item {
  line-height: 1.25;
  color: #0b2135;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 10px;
}

@media screen and (min-width: 768px) {
  .md_search_delivery_addresses_list_item {
    padding: 14px 20px;
  }
}

.md_search_delivery_addresses_list_item:hover, .md_search_delivery_addresses_list_item:focus {
  background: #f9f9f9;
}

.md_landing_footer {
  background-color: #0b2135;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 40px;
  color: white;
}

.md_saved_delivery_addresses_add_address {
  color: #fd4f57;
}

.md_location_address {
  position: relative;
  width: 100%;
}

@media (max-width: 768px) {
  .md_location_address {
    position: unset;
  }
}

.md_location_address_input {
  position: relative;
}

@media (max-width: 768px) {
  .md_location_address_input {
    position: relative;
  }
}

.md_pin_icon {
  background: #fff;
  color: #fd4f57;
  height: 48px;
  line-height: 50px;
  width: 50px;
  font-size: 25px;
  display: inline-block;
}

@media (max-width: 768px) {
  .md_pin_icon {
    display: none;
  }
}

.md_location_container {
  width: 140px;
  background: transparent !important;
  border-radius: 3px;
  display: inline-block;
  float: right;
  margin-top: 5px;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .md_location_container {
    width: 100%;
  }
}

.md_location_container_location {
  width: 100%;
  background: #F6F8F8;
  border-radius: 3px;
  display: inline-block;
  float: right;
  margin-top: 5px;
  margin-bottom: 20px;
}

.md_locations_items {
  background: white;
  padding-bottom: 50px;
  overflow: hidden;
}

@media (min-width: 480px) {
  .md_locations_items {
    overflow: hidden;
  }
}

.md_locations_address_list {
  -moz-appearance: none;
  -webkit-appearance: none;
  display: block;
  height: 40px;
  line-height: 40px;
  color: #0B2135;
  outline: 0;
  word-break: normal;
  background: transparent;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 16px;
  width: 100%;
  float: right;
  border: 1px solid #e9e9e9;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .md_locations_address_list {
    height: 48px;
    font-size: 16px;
  }
}

.md_locations_address_list + i {
  float: right;
  margin-top: -31px;
  pointer-events: none;
  padding-right: 8px;
  font-size: 16px;
  color: #0B2135;
}

.md_location_element_container {
  width: 191px;
  position: absolute;
  top: 0;
  height: 50px;
  border-radius: 3px;
  border-left: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  border-top: 1px solid #e9e9e9;
}

@media (max-width: 768px) {
  .md_location_element_container {
    padding-top: 5px;
    width: 100%;
    position: unset;
  }
}

.md_locations_search_box_address.md_input_padding_left {
  padding-left: 200px;
  height: 45px !important;
  width: 100% !important;
  border: none !important;
  background-color: #fff !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

@media (max-width: 768px) {
  .md_locations_search_box_address.md_input_padding_left {
    padding-left: 20px !important;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    height: 45px !important;
    border: none !important;
    background-color: #fff !important;
    border-radius: 10px !important;
  }
}

.md_locations_search_box_address.md_input_padding_left + .md_location_element_container {
  display: block;
}

.md_locations_cancel_geocoding {
  position: absolute;
  top: 1px;
  right: 1px;
  padding: 45px 10px 10px 0;
  background: transparent;
  color: #0b2135;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
  border: none;
  border-radius: 2px;
  text-transform: none;
  height: 30px;
}

.md_locations_cancel_geocoding:after {
  background: #fff;
  content: " ";
  display: block;
  height: 1px;
  width: 100%;
}

.md_locations_cancel_geocoding:hover {
  font-weight: 700;
}

.md_locations_cancel_geocoding.location {
  padding: 45px 10px 10px 0;
  height: 30px;
  background: transparent;
}

.select {
  border-color: #e9e9e9;
  height: 50px;
  padding: 0 10px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #0b2135;
  border: 1px solid #e9e9e9;
  border-radius: 10px !important;
  font-size: 16px;
  font-weight: 400;
  display: block;
  width: 100%;
  line-height: 1.42857;
  background-color: #fff;
  background-image: none;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  outline: 0;
  cursor: pointer;
  user-select: none;
  float: left;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select .contenido-select {
  display: inline-block;
  width: 100%;
  text-align: left;
}

.select .contenido-select p {
  line-height: 50px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: url(/images/arrow-down.svg) no-repeat right 0 center;
  padding-right: 20px;
}

.select i {
  width: 10%;
  text-align: center;
  height: 50px;
  line-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.md_form_field.geocoding {
  position: relative;
}

.md_saved_delivery_addresses_list_item_new {
  line-height: 1.25;
  color: #0b2135;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 10px;
  display: list-item;
}

@media screen and (min-width: 768px) {
  .md_saved_delivery_addresses_list_item_new {
    padding: 14px 20px;
  }
}

.md_saved_delivery_addresses_list_item_new:hover, .md_saved_delivery_addresses_list_item_new:focus {
  background: #f9f9f9;
}

.md_saved_delivery_addresses_list_item_default {
  color: #0b2135;
}

.md_delivery_address_form {
  overflow: unset;
}

@media screen and (min-width: 768px) {
  .md_delivery_address_form {
    max-height: 60vh;
    overflow-y: unset;
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    -webkit-overflow-scrolling: touch;
    position: initial;
  }
}

.md_payment_card_form {
  overflow: unset;
}

@media screen and (min-width: 768px) {
  .md_payment_card_form {
    max-height: 85vh;
    overflow-y: unset;
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    -webkit-overflow-scrolling: touch;
    position: initial;
  }
}

.md_form_field .md_width_50 {
  width: 50%;
}

@media (min-width: 768px) {
  .md_form_field .md_width_50 {
    width: 50%;
    float: left;
    padding: 0 10px;
  }
}

.md_form_field .md_width_30 {
  width: 100%;
}

.md_form_field .md_width_40 {
  width: 100%;
}

@media (min-width: 768px) {
  .md_field_container .md_width_40 {
    width: 40%;
    float: left;
    padding: 0 10px;
  }
}

@media (min-width: 768px) {
  .md_field_container .md_width_40:first-child {
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .md_field_container .md_width_40:last-child {
    padding-right: 0;
  }
}

.md_form_field .md_width_70 {
  width: 100%;
}

@media (min-width: 768px) {
  .md_field_container .md_width_70 {
    width: 70%;
    float: left;
    padding: 0 10px;
  }
}

@media (min-width: 768px) {
  .md_field_container .md_width_70:first-child {
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .md_field_container .md_width_70:last-child {
    padding-right: 0;
  }
}

.md_cart_item_image {
  border-radius: 3px;
  float: right;
  margin: 0.5em;
  margin-right: 0;
  width: 96px;
  position: relative;
}

@media screen and (max-width: 668px) {
  .md_cart_item_image {
    width: 96px;
    margin-top: 0;
  }
}

.md_cart_item_image img {
  border-radius: 3px;
  width: 100%;
}

@media screen and (max-width: 668px) {
  .md_cart_item_image img {
    border-radius: 3px;
    width: 100%;
    height: 100%;
  }
}

.md_cart_item_image:hover {
  cursor: pointer;
}

.md_product_details_img {
  margin: 0 0 20px 0;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 668px) {
  .md_product_details_img {
    width: 100%;
    margin-top: 0;
  }
}

.md_product_details_img .md_product_img {
  border-radius: 3px;
  width: 65%;
}

@media screen and (max-width: 668px) {
  .md_product_details_img .md_product_img {
    border-radius: 3px;
    width: 100%;
    height: 100%;
  }
}

.categories-bar {
  height: 60px;
  width: 100%;
  background: #f9f9f9;
  overflow: hidden;
  overflow-x: auto;
  padding-top: 10px;
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .categories-bar::-webkit-scrollbar {
    width: 7px;
    height: 7px;
  }
}

@media (min-width: 992px) {
  .categories-bar::-webkit-scrollbar-button {
    width: 0;
    height: 0;
  }
}

@media (min-width: 992px) {
  .categories-bar::-webkit-scrollbar-thumb {
    background: #A8A8A8;
    border: none;
    border-radius: 50px;
  }
}

@media (min-width: 992px) {
  .categories-bar::-webkit-scrollbar-track {
    background: transparent;
    border: none;
    border-radius: 50px;
  }
}

@media (min-width: 992px) {
  .categories-bar::-webkit-scrollbar-corner {
    background: transparent;
  }
}

@media (max-width: 991px) {
  .categories-bar-fixed {
    right: 15px;
    width: calc(100vw - 30px);
    max-width: calc(100vw - 30px);
  }
}

.categories-bar-fixed {
  position: fixed;
  z-index: 1000;
  top: 50px;
  width: 100%;
}

ul.categories-bar-list {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 60px;
  display: block;
  white-space: nowrap;
}

ul.categories-bar-list li {
  display: inline-block !important;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 8px;
  height: 38px;
  position: relative;
  margin-left: 5px;
  margin-right: 5px;
  padding-left: 10px;
  padding-right: 10px;
}

ul.categories-bar-list li a {
  text-align: center;
  color: #0b2135;
  line-height: 37px;
  display: block;
  text-decoration: none;
}

ul.categories-bar-list li a:hover {
  font-weight: 600;
}

.md_form_add_new_card {
  border: 1px solid #0b2135;
  background-color: white;
  color: #0b2135;
  padding: 8px 16px;
  font-size: 16px;
  cursor: pointer;
  border-color: #0b2135;
  border-radius: 10px;
}

.md_form_add_new_card:hover {
  border-color: #fd4f57;
  color: #fd4f57;
}

.md_payment_card_detail {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #0b2135;
  display: flex;
}

@media (max-width: 991px) {
  .md_payment_card_detail {
    border-bottom: none;
    margin: 28px 0;
  }
}

@media (max-width: 991px) {
  .md_payment_card_detail:first-child {
    margin-top: 28px;
  }
}

.md_payment_card_detail_input_checkbox {
  display: none;
}

.md_payment_card_detail_input_checkbox:checked + .md_product_details_options_group_option_radio {
  background: #5eb3b7;
}

.md_select_card_img {
  left: 12px;
  position: absolute;
  top: 42px;
  width: 60px;
}

.md_checkout_steps {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.md_checkout_step {
  margin-left: 20px;
  margin-right: 20px;
}

.md_checkout_step_number {
  border: 2px solid #0b2135;
  width: 50px;
  height: 50px;
  padding: 2.5px;
  border-radius: 50%;
  margin: auto;
  background: white;
  position: relative;
  z-index: 2;
}

.md_checkout_step_number span {
  background: #0b2135;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  margin: auto;
  justify-content: center;
  z-index: 2;
  font-family: Lato;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}

.md_checkout_steps .md_checkout_step .old {
  width: 40px;
  height: 40px;
  margin-top: 5px;
  margin-bottom: 5px;
  border-color: #86909a;
}

.md_checkout_steps .md_checkout_step .old span {
  width: 30px;
  height: 30px;
  background: #86909a;
}

.md_checkout_steps .md_checkout_step .old span svg {
  width: 15px;
  height: 15px;
  margin-top: 2px;
}

.md_checkout_step_text {
  text-align: center;
  width: 80px;
  color: #0b2135;
  font-weight: bold;
}

.md_checkout_step_connect {
  width: 80px;
  border-style: none;
  height: 2px;
  position: relative;
  background: #0b2135;
  top: -70px;
  z-index: 1;
}

.md_order_details {
  width: calc(100% - 30px);
  margin-left: 15px;
  padding: 10px 0 10px 0;
  font-family: Lato;
  font-size: 14px;
  color: #0b2135;
  display: flex;
  justify-content: start;
  gap: 10px;
}

.md_order_details_content {
  border-bottom: 4px solid rgba(139, 155, 172, 0.1);
  cursor: pointer;
}

.md_order_details_price {
  display: block;
  background: #5eb3b7;
  border: solid 1px rgba(199, 203, 213, 0.5);
  width: 56px;
  height: 32px;
  border-radius: 4px;
  color: white;
  text-align: center;
  line-height: 32px;
  float: right;
  margin-top: -5.5px;
}

.md_order_details_arrow {
  margin-bottom: -2px;
  color: var(--primary);
}

.md_order_details_hide {
  padding: 15px;
  overflow: hidden;
  background: white;
  width: 100%;
  position: absolute;
  display: none;
  z-index: 5;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.md_order_details_hide div {
  float: left;
}

.md_order_details_hide h4 {
  width: 230px;
  margin-top: 10px;
}

.md_order_details_text_hide {
  font-size: 12px;
  margin-top: 2px;
  margin-left: 10px;
  width: 230px;
}

.md_order_details_dish {
  color: #fd4f57;
}

.md_order_details_price_hide {
  float: right;
  color: #0b2135;
  font-weight: bold;
  margin-top: 10px;
}

.md_order_details_back {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.time {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.time_green {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: green;
  min-height: 10px;
}

.badge {
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}

.badge-warning {
  color: #fff;
  background-color: #ffc107;
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

.custom-radio {
  display: flex;
  align-items: center;
}

.custom-radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #bfbfbf;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-right: 10px;
  transition: border-color 0.3s;
}

.custom-radio input[type="radio"]:checked {
  border-color: #009ee3;
}

.custom-radio input[type="radio"]:checked::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #009ee3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom-radio label {
  font-size: 16px;
  color: #0b2135;
  cursor: pointer;
}

.custom-payment-text {
  display: flex;
  max-width: 70%;
  padding: 5px 0 5px 0;
}

.custom-payment-text .title {
  color: #1a1a1a;
  font-size: 16px;
  text-transform: none;
}

.custom-payment-text .description {
  color: #737373;
  font-size: 14px;
  text-transform: none;
}

.payment-grid-container {
  border: 1px solid #e9e9e9;
  border-radius: 5px;
  overflow: hidden;
}

.payment-type-box {
  border-top: 1px solid #e9e9e9;
  padding: 0 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #fff;
  cursor: pointer;
  min-height: 78px;
  transition: border-color 0.3s, background-color 0.3s;
}

.payment-type-box:first-child {
  border-radius: 5px 5px 0 0;
  border-top: none;
}

.payment-type-box:hover {
  background-color: #f5f5f5;
}

.payment-type-box-selected {
  background-color: #f5f5f5;
}

.payment-type-box:last-child {
  border-radius: 0 0 5px 5px;
}

.custom-logo-img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c4c4c4;
  border-radius: 50%;
  padding: 1px;
  box-sizing: border-box;
  background: #fff;
}

.custom-decidir-add-card {
  margin-left: 41px;
}

.disabled-div {
  pointer-events: none;
  opacity: 0.5;
}

.md_exchange_points_button {
  position: absolute;
  top: 1px;
  right: 1px;
  padding: 0 10px;
  background: #fff;
  color: #0b2135;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
  border: none;
  border-radius: 2px;
  text-transform: none;
  height: 48px;
}

.md_exchange_points_button:after {
  background: #fd4f57;
  content: " ";
  display: block;
  height: 1px;
  width: 100%;
}

.md_exchange_points_button:hover {
  font-weight: 700;
}

.md_remove_points_button {
  position: absolute;
  top: 1px;
  right: 1px;
  padding: 0 10px;
  background: #fff;
  color: #0b2135;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
  border: none;
  border-radius: 2px;
  text-transform: none;
  height: 48px;
}

.md_remove_points_button:after {
  background: #fd4f57;
  content: " ";
  display: block;
  height: 1px;
  width: 100%;
}

.md_remove_points_button:hover {
  font-weight: 700;
}

.md_cart_totals_loyalty_points {
  padding: 10px 15px;
}

@media screen and (min-width: 768px) {
  .md_cart_totals_loyalty_points {
    border-top: 1px solid #e9e9e9;
  }
}

.md_cart_totals_lotalty_points_value_input_wrapper {
  position: relative;
}

.loyalty-container {
  width: 100% !important;
}

.loyalty-title {
  margin-bottom: 15px;
}

.loyalty-table-container {
  max-height: 75vh;
  overflow-y: auto;
}

.loyalty-table {
  width: 100%;
  border-collapse: collapse;
}

.loyalty-table th, .loyalty-table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

.loyalty-table th {
  background-color: #f2f2f2;
  font-weight: 700;
  position: sticky;
  top: 0;
  z-index: 1;
}

.loyalty-table .positive {
  color: green;
}

.loyalty-table .negative {
  color: red;
}

.loyalty-table-container::-webkit-scrollbar {
  width: 8px;
}

.loyalty-table-container::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.loyalty-table-container::-webkit-scrollbar-thumb {
  background: #888;
}

.loyalty-filters {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
}

.loyalty-filters input, .loyalty-filters select, .loyalty-filters button {
  padding: 5px 10px;
}

.menu-exchange {
  height: 60px;
  width: 100%;
  overflow: hidden;
  overflow-x: auto;
  padding-top: 10px;
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .menu-exchange::-webkit-scrollbar {
    width: 7px;
    height: 7px;
  }
}

@media (min-width: 992px) {
  .menu-exchange::-webkit-scrollbar-button {
    width: 0;
    height: 0;
  }
}

@media (min-width: 992px) {
  .menu-exchange::-webkit-scrollbar-thumb {
    background: #A8A8A8;
    border: none;
    border-radius: 50px;
  }
}

@media (min-width: 992px) {
  .menu-exchange::-webkit-scrollbar-track {
    background: transparent;
    border: none;
    border-radius: 50px;
  }
}

@media (min-width: 992px) {
  .menu-exchange::-webkit-scrollbar-corner {
    background: transparent;
  }
}

@media (max-width: 991px) {
  .menu-exchange-fixed {
    right: 15px;
    width: calc(100vw - 30px);
    max-width: calc(100vw - 30px);
  }
}

.menu-exchange-fixed {
  position: fixed;
  z-index: 1000;
  top: 50px;
  width: 100%;
}

ul.menu-exchange-list {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 37px;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}

ul.menu-exchange-list li {
  display: inline-block !important;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 8px;
  height: 38px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  width: 60%;
}

@media (max-width: 991px) {
  ul.menu-exchange-list {
    display: block;
  }
}

@media (max-width: 991px) {
  ul.menu-exchange-list li {
    width: 100%;
    margin: 0;
    display: block !important;
  }
}

ul.menu-exchange-list li a {
  text-align: center;
  color: #0b2135;
  line-height: 37px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-family: Lato;
  font-size: 13px;
  font-weight: 700;
  height: 100%;
}

ul.menu-exchange-list li a:hover {
  font-weight: 600;
}

ul.menu-exchange-list li a svg {
  width: 12px;
  height: 12px;
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
}

ul.menu-exchange-list li a span {
  display: inline-block;
  vertical-align: middle;
}

.md_menu_exchange_box_text {
  display: flex;
  align-items: center;
  gap: 5px;
}

html, body {
  touch-action: pan-x pan-y;
  -ms-touch-action: pan-x pan-y;
  overscroll-behavior: none;
}

#app, main, section, div, iframe {
  touch-action: pan-x pan-y;
  -ms-touch-action: pan-x pan-y;
}

.slider-center {
  display: flex !important;
  justify-content: center !important;
}

@media screen and (min-width: 768px) {
  .carouse-innner-width {
    width: 36% !important;
  }
}

.subtitle-large {
  color: var(--color-p);
  font-size: 24px;
  font-weight: 400;
  line-height: 38px;
  text-align: left;
}

.subtitle-default {
  color: var(--color-p);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}

.subtitle-small {
  color: var(--color-p);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

.text-regular-400 {
  color: var(--color-p);
  font-size: 24px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
}

.text-medium-400 {
  color: var(--color-p);
  font-size: 24px;
  font-weight: 500;
  line-height: 26px;
  text-align: left;
}

.text-bold-400 {
  color: var(--color-p);
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
  text-align: left;
}

.text-regular-300 {
  color: var(--color-p);
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
}

.text-medium-300 {
  color: var(--color-p);
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
}

.text-bold-300 {
  color: var(--color-p);
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  text-align: left;
}

.text-regular-200 {
  color: var(--color-p);
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}

.text-medium-200 {
  color: var(--color-p);
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
}

.text-bold-200 {
  color: var(--color-p);
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
}

.text-regular-100 {
  color: var(--color-p);
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
}

.text-medium-100 {
  color: var(--color-p);
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  text-align: left;
}

.text-bold-100 {
  color: var(--color-p);
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-align: left;
}

.input-label {
  display: block;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

input:not([type="checkbox"]):not([type="radio"]):not([class="input-addresses"]):not([class="number-output"]):not([class="md_form_field_discount_code_input"]) {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  width: 335px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-color-1);
  background: var(--background);
  color: var(--color-p);
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  padding-left: 19px;
}

@media (max-width: 425px) {
  input:not([type="checkbox"]):not([type="radio"]):not([class="input-addresses"]):not([class="number-output"]):not([class="md_form_field_discount_code_input"]) {
    padding-left: 3px;
    padding-right: 8px;
  }
}

input:not([type="checkbox"]):not([type="radio"])::placeholder {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  color: var(--text-gray);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px !important;
}

input:not(.address-input):not(.number-output):focus, input:not(.address-input):not(.number-output):hover, input:not(.address-input):not(.number-output):active, input:not(.address-input):not(.number-output):focus-within {
  outline-style: none;
  box-shadow: var(--shadow-1);
}

@media (max-width: 425px) {
  textarea {
    width: 200px;
  }
}

textarea::placeholder {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  color: var(--color-p);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px !important;
}

textarea:focus, textarea:hover, textarea:active, textarea:focus-within {
  outline-style: none;
  box-shadow: var(--shadow-1);
}

.check-label {
  /* color: var(--primary-0); */
  color: #0B2135;
  font-weight: 500;
  font-size: 17px;
  /* line-height: 16px; */
}

.check-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.input-radio-button {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-color: transparent !important;
  height: 25px !important;
  width: 25px !important;
  border-radius: 50% !important;
  border-color: var(--neutral-1) !important;
  border-style: solid !important;
  border-width: 1px !important;
  position: relative !important;
  margin: 2px 3px 2px 5px !important;
  transition: 0.4s !important;
}

.input-radio-button:checked {
  border-color: var(--primary) !important;
}

.input-radio-button:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--primary) !important;
}

.radio-label {
  color: var(--primary-0);
  font-weight: 500;
  font-size: 17px;
  /* line-height: 16px; */
}

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--neutral-7);
  transition: 0.4s;
  border-radius: 24px;
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: var(--full-white);
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .switch-slider {
  background-color: var(--primary-2);
}

input:checked + .switch-slider:before {
  transform: translatex(20px);
}

.switch-small {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
}

.switch-small input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider-small {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--neutral-7);
  transition: 0.4s;
  border-radius: 20px;
}

.switch-slider-small:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 2px;
  bottom: 3px;
  background-color: var(--full-white);
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .switch-slider-small {
  background-color: var(--primary);
}

input:checked + .switch-slider-small:before {
  transform: translatex(20px);
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.2px;
  border: 1px solid var(--neutral-1);
  border-radius: 10px;
  width: 355px;
  height: 40px;
  color: var(--color-p);
  padding-left: 19px;
  padding-right: 19px;
  background: var(--background) url(/images/arrow-down.svg) no-repeat right 19px center;
  transition: 0.4s;
}

@media (max-width: 425px) {
  select {
    width: 255px;
  }
}

select:focus, select:hover, select:active, select:focus-within {
  outline: none;
  box-shadow: var(--shadow-1);
}

.select-wrapper {
  position: relative;
  display: inline-block;
  user-select: none;
  height: 40px !important;
  border: 1px solid var(--color-p2);
  border-radius: 10px;
}

.blue-header {
  position: relative;
  left: 50%;
  transform: translatex(-50%);
  width: 100vw;
  display: flex;
  align-items: start;
  justify-content: flex-start;
  background-color: var(--secondary);
  padding-inline-start: 10px;
  z-index: 99;
  margin-top: 15px;
  clear: both;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .blue-header {
    position: relative;
    left: 0;
    transform: none;
    width: 100%;
    justify-content: start;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.alert-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 7px;
}

.alert-message {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding-right: 10px;
  text-align: justify;
}

.alert-message img {
  width: 15px;
  height: auto;
}

.alert-message span {
  font-size: 12px;
  font-weight: 600;
  line-height: 17.4px;
  color: var(--primary-2);
  text-transform: uppercase;
}

.blue-header .alert-message {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1px;
}

.blue-header .alert-message span {
  font-size: 11px;
  font-weight: 200;
  line-height: 17.4px;
  letter-spacing: 0.1em;
  text-align: justify;
  color: var(--full-white);
  text-transform: none;
}

.menu-logo {
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 47px;
}

.menu-logo img {
  height: 40px;
}

.location-brand-logo {
  display: block;
}

.md_locations_buttons {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: end;
}

.container-locations-button {
  padding: 5px;
}

.md_locations_button {
  text-decoration: none;
  display: inline-block;
  color: var(--primary-text-color);
}

.locations-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.locations-modal-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#locations-modal {
  height: auto;
  min-height: 500px;
}

#locations-modal .md_locations_item {
  margin-bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 9px 0 rgba(0, 0, 0, 0.3) !important;
}

@media (max-width: 768px) {
  #locations-modal {
    width: 100% !important;
    min-height: 80%;
    top: 20% !important;
  }
}

@media (max-width: 768px) {
  .location-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  #locations-modal .product-card-header h3 {
    font-size: 16px;
  }
}

.locations-modal-close {
  padding: 15px 15px 0 0;
}

@keyframes slideUp {
    0% {
        transform: translateY(100%);
        } 100% {
        transform: translateY(0);
        }
    }

#locations-modal .popup-body::-webkit-scrollbar {
  width: 6px;
}

#locations-modal .popup-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

#locations-modal .popup-body::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

@media (min-width: 1024px) {
  #locations-modal {
    width: 100% !important;
    height: 100vh !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
  }
}

@media (min-width: 1024px) {
  .popup-handle {
    display: none;
  }
}

@media (min-width: 1024px) {
  .popup-close {
    top: 30px !important;
    right: 30px !important;
  }
}

@media (min-width: 1024px) {
  .popup-body {
    max-height: none !important;
  }
}

.select-map-areas-locations {
  height: 40px;
  width: 355px;
  background-color: #fff !important;
  border: 1px solid var(--neutral-1);
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.2px;
  border-radius: 10px;
  color: var(--color-p);
  padding-left: 19px;
  padding-right: 19px;
  background: var(--background) url(../images/arrow-down.svg) no-repeat right 19px center;
  transition: 0.4s;
}

@media (max-width: 768px) {
  .select-map-areas-locations {
    width: 100% !important;
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
  }
}

.md_locations_search_box_locations {
  text-align: center;
  background-color: #fff;
  border: none;
  background-size: cover;
  background-position: center center;
  height: 300px;
}

@media (max-width: 768px) {
  .md_locations_search_box_locations_mobile_height_200 {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .md_locations_search_box_locations_mobile_height_350 {
    height: 350px;
  }
}

.md_locations_search_box_inner {
  width: 600px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

@media (max-width: 768px) {
  .md_locations_search_box_inner {
    width: 95%;
  }
}

.md_locations_search_box_address {
  border-radius: 10px !important;
}

.select_trigger_doc_type {
  display: flex !important;
  align-items: center !important;
  justify-content: start !important;
  padding-top: 8px !important;
}

@media (max-width: 767px) {
  .md_form_field {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .md_delivery_address_container {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .md_field_container .md_width_50 {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .md_form_field label {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .security_code_field {
    width: 100% !important;
  }
}

.input-text-security-code-field {
  width: 100% !important;
}

@media (max-width: 767px) {
  .md_form_field_mercadopago_new_card {
    width: 100% !important;
  }
}

@media (min-width: 669px) {
  .md_col_one_third {
    position: sticky !important;
    top: 135px !important;
  }
}

@media (max-width: 668px) {
  .md_col_two_third {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .md_col_container {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.md_cart_totals_discount_code_button_new {
  background: var(--buttons-color) !important;
  color: var(--buttons-color-text) !important;
}

.md_cart_bottom_button_price_new {
  background: var(--buttons-color) !important;
  color: var(--buttons-color-text) !important;
}

.md_product_details_button_new {
  background: var(--buttons-color) !important;
  color: var(--buttons-color-text) !important;
}

.md_cart_bottom_button_text_new {
  background: var(--buttons-color) !important;
  color: var(--buttons-color-text) !important;
}

.time-div {
  display: flex;
  flex-direction: row;
  height: 36px;
  flex-shrink: 0;
  justify-content: start;
  align-items: center;
  background-color: var(--neutral-5);
  border-radius: 10px;
  text-wrap: nowrap;
  margin-top: 10px;
  margin-bottom: 5px;
  width: 100%;
  gap: 7px;
}

@media (min-width: 1024px) {
  .time-div {
    justify-content: center;
    gap: 10px;
    width: 60%;
  }
}

.time-div span {
  font-size: 13px;
  font-weight: 500;
  line-height: 18.85px;
  text-align: left;
  color: var(--secondary-3);
}

.time-div a {
  font-size: 12px;
  font-weight: 500;
  line-height: 17.4px;
  text-align: left;
  color: var(--discount-text-color);
  text-underline-position: from-font;
}

.percent-div {
  display: flex;
  flex-direction: row;
  height: 36px;
  flex-shrink: 0;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 10px;
  background-color: var(--discount-text-color-light);
  border-radius: 10px;
  text-wrap: nowrap;
  margin-top: 5px;
  margin-bottom: 10px;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .percent-div {
    justify-content: center;
    gap: 10px;
    padding: 0 10px;
    width: 60%;
  }
}

@media (max-width: 767px) {
  .percent-div {
    padding-left: 10px;
  }
}

.percent-div img {
  margin-left: 10px;
}

.percent-div span {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.005em;
  text-align: center;
  color: var(--discount-text-color);
}

@media (max-width: 767px) {
  .md_form_add_new_card {
    width: 100%;
    box-sizing: border-box;
  }
}

.md_order_details_full {
  padding: 10px 0 10px 0;
  font-family: Lato;
  font-size: 14px;
  color: #0b2135;
  display: flex;
  justify-content: start;
  gap: 10px;
  border-radius: 10px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--border-color-1);
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 5px;
  width: 100%;
  height: 90%;
  overflow-y: auto;
}

.order-summary {
  height: 50%;
  display: none !important;
  flex-direction: column;
  justify-content: space-between;
}

.md_order_details_v3 {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 0 120px;
}

.md_order_details_hero {
  text-align: center;
  margin-bottom: 24px;
}

.md_order_details_brand_bar {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
  font-size: 14px;
}

.md_order_details_logo {
  display: flex;
  justify-content: center;
  margin: 24px 0 16px;
}

.md_order_details_logo img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.md_order_details_title {
  font-size: 22px;
  font-weight: 700;
  color: #0B2135;
  margin: 0;
}

.md_order_details_sections {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.md_order_details_items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.md_order_details_card {
  display: flex;
  gap: 16px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #E5E7EB;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  align-items: stretch;
  cursor: pointer;
}

.md_order_details_card_media {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: #E5E7EB;
  overflow: hidden;
  flex-shrink: 0;
}

.md_order_details_card_media .product-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.md_order_details_card_placeholder {
  width: 100%;
  height: 100%;
  background: #D1D5DB;
  border-radius: 16px;
}

.md_order_details_card_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.md_order_details_card_title {
  display: flex;
  gap: 6px;
  align-items: baseline;
  flex-wrap: wrap;
  color: #111827;
  font-size: 16px;
  font-weight: 600;
}

.md_order_details_card_quantity {
  color: #0B2135;
  font-weight: 700;
}

.md_order_details_card_options {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.4;
}

.md_order_details_card_options ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.md_order_details_card_options li {
  margin: 0;
}

.md_order_details_card_price {
  margin-top: auto;
  font-weight: 700;
  font-size: 18px;
  color: #0B2135;
}

.md_order_details_options_toggle {
  border: none;
  background: none;
  color: #0B2135;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  cursor: pointer;
}

.md_order_details_card_options_collapsed {
  display: none;
}

.md_order_details_card_actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
}

.md_order_details_quantity_control {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.md_order_details_quantity_button {
  width: 35px;
  height: 35px;
  /* min-width: 28px; */
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.md_order_details_quantity_button:focus {
  outline: none;
}

.md_order_details_quantity_button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.md_order_details_extras_quantity_button {
  width: 25px;
  height: 25px;
  /* min-width: 28px; */
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.md_order_details_extras_quantity_button:focus {
  outline: none;
}

.md_order_details_extras_quantity_button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.md_order_details_quantity_value {
  display: inline-block;
  min-width: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: #0B2135;
}

.md_order_details_remove_button {
  border: 1px solid #f87171;
  background: #fff;
  color: #dc2626;
  font-size: 12px;
  font-weight: 400;
  padding: 0 12px;
  border-radius: 10px;
  cursor: pointer;
  text-transform: none;
  min-width: 100px;
}

.md_order_details_total_summary span:first-child {
  font-size: 16px;
  font-weight: 600;
}

.md_order_details_totals {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.md_order_details_total_summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F3F4F6;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 5px;
  font-weight: 600;
  color: #111827;
}

.md_order_details_total_amount {
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
}

.md_order_details_breakdown_list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 14px;
  border: 1px solid #E5E7EB;
  background: #fff;
}

.md_order_details_breakdown_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid #F3F4F6;
}

.md_order_details_breakdown_item:last-child {
  border-bottom: none;
}

.md_order_details_breakdown_label {
  color: #4B5563;
}

.md_order_details_breakdown_label_muted {
  font-size: 12px;
  color: #9CA3AF;
}

.md_order_details_breakdown_value {
  font-weight: 600;
  color: #0F172A;
}

.md_order_details_v3 .md_cart_special_instructions {
  border: none;
  padding: 0;
}

.md_order_details_v3 .md_cart_special_instructions textarea {
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  padding: 12px;
  font-size: 14px;
}

.md_order_details_v3 .md_cart_special_instructions_title {
  font-weight: 600;
  color: #0B2135;
}

@media (max-width: 480px) {
  .md_order_details_card {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .md_order_details_card_actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 425px) {
  .select-map-areas-locations {
    width: 255px;
  }
}

.select-map-areas-locations:focus, .select-map-areas-locations:hover, .select-map-areas-locations:active, .select-map-areas-locations:focus-within {
  outline: none;
  box-shadow: var(--shadow-1);
}

.btn-n {
  height: 45px !important;
  border-radius: 10px !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 23.2px !important;
  border: 0 !important;
  transition: 0.4s !important;
  gap: 5px !important;
}

.btn-n-small {
  height: 30px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 23.2px !important;
  border: 0 !important;
  transition: 0.4s !important;
  width: 89px !important;
}

.btn-n-primary {
  background-color: var(--btn-primary-bg) !important;
  color: var(--white) !important;
}

.btn-n-primary:hover {
  background-color: color-mix(in srgb, var(--btn-primary-bg) 80%, white) !important;
}

.btn-n-disabled {
  background-color: var(--muted) !important;
  color: var(--white-custom) !important;
}

.btn-n-card-form {
  height: 45px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 23.2px !important;
  border: 0 !important;
  transition: 0.4s !important;
  gap: 5px !important;
  width: 90% !important;
}

.btn-n-small-card-form {
  height: 30px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 23.2px !important;
  border: 0 !important;
  transition: 0.4s !important;
  width: 89px !important;
}

.btn-n-primary-card-form {
  background-color: var(--btn-primary-bg) !important;
  color: var(--white) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.btn-n-primary-card-form:hover {
  background-color: color-mix(in srgb, var(--btn-primary-bg) 80%, white) !important;
}

.btn-n-primary-card-form-disabled {
  background-color: var(--muted) !important;
  color: var(--white-custom) !important;
}

.address-window {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--black-transparent);
  border-radius: 15px;
  box-shadow: var(--shadow-2);
  padding: 10px;
  transition: all 0.4s ease;
  width: 100%;
  font-family: var(--main-font), system-ui, Avenir, Helvetica, Arial, sans-serif !important;
}

.address-window .inputs-wrapper {
  display: flex;
  flex-direction: column;
  width: 95%;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  transition: all 0.4s ease;
}

@media (min-width: 768px) {
  .address-window .inputs-wrapper {
    flex-direction: row;
    column-gap: 0;
    row-gap: 10px;
  }
}

@media (min-width: 1440px) {
  .address-window .inputs-wrapper {
    flex-direction: row;
    column-gap: 0;
    row-gap: 10px;
    width: 90%;
  }
}

.address-window .add-address {
  display: none;
  position: absolute;
  top: 20%;
  left: 10%;
  align-items: center;
  width: 80%;
  opacity: 0;
  transition: all 0.4s ease;
}

@media (min-width: 768px) {
  .address-window .add-address {
    top: 24%;
    margin-left: 20px;
    width: 94%;
    left: 0;
  }
}

@media (min-width: 1024px) {
  .address-window .add-address {
    top: 24%;
    margin-left: 20px;
    width: 94%;
    left: 0;
  }
}

@media (min-width: 1440px) {
  .address-window .add-address {
    top: 24%;
    left: 0;
    margin-left: 0;
    padding-left: 10px;
    width: 534px;
  }
}

.address-window .visible {
  display: flex;
  flex-direction: column;
  opacity: 1;
}

.address-window .hidden {
  display: none;
  opacity: 0;
}

.address-window .input-label {
  color: var(--full-white);
  font-size: 18px;
  font-weight: 400;
  line-height: 24.48px;
  margin-top: 5px;
  text-transform: none;
}

.address-window .btn-n {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  width: 45%;
}

.address-window .input-wrapper {
  position: relative;
  display: inline-block;
  justify-content: center;
  align-items: center;
  width: 90%;
}

.address-input {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  font-weight: var(--text-md-regular-font-weight) !important;
  color: var(--gray-900) !important;
  font-family: var(--text-md-regular-font-family) !important;
  font-size: var(--text-md-regular-font-size) !important;
  letter-spacing: var(--text-md-regular-letter-spacing) !important;
  line-height: var(--text-md-regular-line-height) !important;
  font-style: var(--text-md-regular-font-style) !important;
}

.address-input:focus {
  outline: none;
}

.address-window .separator-container {
  background-color: var(--full-white);
  height: 45px;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .address-window .separator-container {
    display: none;
  }
}

.address-window .input-addresses {
  height: 45px;
  border-radius: 10px;
  border: none;
  background: var(--full-white);
  color: var(--color-p);
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  padding-left: 19px;
  padding-right: 85px;
  box-sizing: border-box;
  width: 100%;
}

@media (max-width: 425px) {
  .address-window .input-addresses {
    padding-left: 13px;
    padding-right: 8px;
  }
}

@media (min-width: 768px) {
  .address-window .input-addresses {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}

.address-window .input-addresses::placeholder {
  color: var(--color-p2);
  font-weight: 200;
  font-size: 16px;
  line-height: 26px !important;
}

.address-window .input-link {
  position: absolute;
  cursor: pointer;
  right: 25px;
  top: 50%;
  text-transform: uppercase;
  text-decoration-line: underline;
  transform: translatey(-50%);
  color: var(--secondary-2);
  font-weight: 400;
  font-size: 11px;
  line-height: 26px;
  text-underline-position: from-font;
}

@media (max-width: 425px) {
  .address-window .input-link {
    right: 15px;
  }
}

@media (min-width: 1024px) {
  .address-window .input-link {
    right: 12px;
  }
}

.address-window .input-link:hover {
  color: var(--secondary-hover-2);
}

.address-window .select-wrapper {
  position: relative;
  display: inline-block;
  user-select: none;
  width: 90%;
}

@media (min-width: 768px) {
  .address-window .select-wrapper {
    width: 50%;
  }
}

.address-window .select-input {
  position: relative;
  display: inline-block;
  cursor: pointer;
  height: 45px;
  border: none;
  border-radius: 10px;
  background-color: var(--full-white);
  transition: 0.4s;
  width: 100%;
}

.address-window .select-trigger {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-p2);
}

.address-window .select-icon {
  margin-right: 5px;
  background-image: url(../images/mark.svg);
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.address-window .select-arrow {
  margin-right: 3px;
  background-image: url(../images/arrow-down.svg);
  width: 12px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.4s ease;
}

.address-window .select-options {
  position: absolute;
  display: none;
  flex-direction: column;
  width: 100%;
  border-top: none;
  border-radius: 0 0 10px 10px;
  background-color: var(--snowwhite);
  box-shadow: var(--shadow-1);
  top: 82%;
}

.address-window .select-option {
  padding-left: 34px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.2px;
  color: var(--color-p);
  cursor: pointer;
}

.address-window .select-option:first-child {
  margin-top: 10px;
}

.address-window .select-option:last-child {
  margin-bottom: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.address-window .select-option:hover {
  background-color: var(--neutral-2);
}

.address-window .select-open .select-options {
  display: flex;
  gap: 10px;
}

.address-window .select-open .select-arrow {
  transform: rotate(180deg);
}

.input-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.input-link {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translatey(-50%);
  color: var(--primary-700);
  font-size: 14px;
  cursor: pointer;
}

.separator-line-v {
  width: 1px;
  height: 44px;
  background: var(--gray-200);
  margin: 0;
  border: none;
}

.selects-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  flex-shrink: 0;
  border-radius: 10px;
  border-style: solid;
  border-width: 2px;
  border-color: var(--border-color-1);
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

@media (min-width: 1024px) {
  .selects-box {
    width: 100%;
    flex-direction: row;
    height: 46px;
    gap: 20px;
  }
}

.md_menu_scheduler {
  padding: 0;
}

@media (max-width: 767px) {
  .md_menu_scheduler {
    width: 100%;
  }
}

.md_menu_delivery_method {
  padding: 0;
}

@media (max-width: 767px) {
  .md_menu_delivery_method {
    width: 100%;
  }
}

.selects-box .select-wrapper {
  width: 90%;
}

@media (min-width: 1024px) {
  .selects-box .select-wrapper {
    width: 50%;
    text-align: center;
  }
}

.selects-box .separator-line {
  width: 90%;
  height: 1px;
  border: none;
  background-color: var(--neutral-1);
}

@media (min-width: 1024px) {
  .selects-box .separator-line {
    width: 1px;
    height: 27px;
  }
}

.selects-box .select-input {
  position: relative;
  display: inline-block;
  cursor: pointer;
  height: 41px;
  border: none;
  transition: 0.4s;
  width: 95%;
}

@media (min-width: 1024px) {
  .selects-box .select-input {
    width: 80%;
    text-align: start;
  }
}

.selects-box .select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 6px;
  font-size: 13px;
  font-weight: 400;
  line-height: 23.2px;
  color: var(--text-gray4);
  width: 100%;
}

.selects-box .select-text {
  width: 100%;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}

.selects-box .select-arrow {
  background-image: url(../images/arrow-down.svg);
  width: 9px;
  height: 6px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.4s ease;
}

.selects-box .select-options {
  position: absolute;
  display: none;
  flex-direction: column;
  width: 100%;
  background-color: var(--snowwhite);
  border-top: none;
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow-1);
  z-index: 5;
}

.selects-box .select-option {
  padding: 10px 19px;
  font-size: 12px;
  font-weight: 400;
  line-height: 23.2px;
  color: var(--color-p);
  cursor: pointer;
}

.selects-box .select-option:last-child {
  border-radius: 0 0 10px 10px;
}

.selects-box .select-option:hover {
  background-color: var(--neutral-9);
}

.selects-box .select-open .select-options {
  display: flex;
}

.selects-box .select-open .select-arrow {
  transform: rotate(180deg);
}

.select-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  cursor: pointer;
}

.select-text {
  color: var(--gray-900);
  font-size: 16px;
  line-height: 24px;
}

.select-arrow {
  margin-left: auto;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23667085' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transition: transform 0.2s ease;
}

.search-address-new-btn {
  color: var(--full-white);
  background-color: var(--btn-primary-bg);
  cursor: pointer;
  border: none;
  padding: 0;
  font: inherit;
  margin-top: 0;
  font-family: var(--main-font), system-ui, Avenir, Helvetica, Arial, sans-serif !important;
  text-transform: none;
}

.search-address-new-btn:hover {
  background-color: color-mix(in srgb, var(--btn-primary-bg) 80%, white) !important;
}

.search-address-new-btn.invisible {
  visibility: hidden;
}

.container-wrapper-carousel {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 0 10px;
  border-radius: 10px;
  position: relative;
}

.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: 15px;
  height: 221px;
  display: flex;
  align-items: center;
  scroll-snap-type: x mandatory;
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 185.8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: block;
  min-width: 80%;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 10px;
}

.carousel-item.active {
  opacity: 1;
  visibility: visible;
}

.carousel-item img {
  width: 100%;
  transition: transform 0.8s ease-in-out;
}

.carousel-dots {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translatex(-50%);
  display: flex;
  gap: 8px;
  padding: 10px 0;
  z-index: 1;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot:hover {
  transform: scale(1.2);
}

.dot.active {
  background-color: #000;
  transform: scale(1.2);
}

.container2 {
  margin-top: 10px;
}

.heading-and-supporting-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}

.heading1 {
  font-size: 17px;
  font-weight: 400;
  color: var(--primary-text-color);
  text-align: center;
  margin-bottom: 8px;
  width: 100%;
}

.supporting-text {
  font-size: 13px;
  color: var(--color-p);
  text-align: center;
  margin-bottom: 16px;
  width: 100%;
}

.contact-text-parent {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
}

.contact-text, .contact-text1 {
  width: 110px;
  height: 80px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-hover-2);
  opacity: 0.5;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 5px !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-text.selected, .contact-text1.selected {
  background-color: var(--delivery-type-button-color);
  border: 1px solid #000;
  opacity: 1;
}

.featured-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  color: #000;
}

.text4 {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: center;
  width: 100%;
}

.menu-off-canvas {
  top: 0;
  left: -390px;
  background-color: var(--snowwhite);
  min-width: 270px;
  height: 100%;
  border-bottom-right-radius: 20px;
  transition: all 0.3s ease;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-off-canvas-visible {
  transform: translatex(390px);
}

.menu-cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 159px 4px 48.3px 163px #000;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.menu-cover-visible {
  opacity: 1;
  pointer-events: auto;
}

.off-canvas-header {
  background-color: var(--header-color);
  padding-top: 0;
  padding-left: 30px;
  color: var(--full-white);
  font-weight: 500;
  line-height: 27.2px;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 75px;
}

.off-canvas-menu {
  padding-left: 30px;
}

.off-canvas-menu ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 0;
}

.off-canvas-menu .menu-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: var(--menu-item);
  transition: all 0.3s ease;
}

.off-canvas-menu .menu-item:hover {
  color: var(--color-p);
}

@media screen and (max-width: 668px) {
  .c-landing::before {
    display: none !important;
  }
}

.theme-selector {
  font-size: 12px;
}

.theme-selector ul {
  padding-left: 20px;
  gap: 0;
}

.theme-selector .theme-list {
  display: none;
}

.theme-list.visible {
  display: flex;
  flex-direction: column;
}

.off-canvas-footer {
  padding-bottom: 10px;
  color: var(--menu-item-ligth);
}

.off-canvas-footer div a {
  color: var(--menu-item);
  transition: all 0.3s ease;
}

.terms-container {
  padding-left: 30px;
}

.off-canvas-footer div a:hover {
  color: var(--color-p);
}

.ul-aside-menu {
  margin-top: 16px;
}

.md_header_navigation_menu_hamburger {
  cursor: pointer;
  display: inline-block;
  z-index: 3;
  margin: auto;
  padding-right: 20px;
}

.md_header_navigation_menu_hamburger .line {
  transition: all 0.3s ease;
}

.md_header_navigation_menu_hamburger:hover .top {
  transform: translatey(-4.5px) rotate(45deg);
  transform-origin: center;
}

.md_header_navigation_menu_hamburger:hover .middle {
  transform: scalex(0);
  transform-origin: center;
}

.md_header_navigation_menu_hamburger:hover .bottom {
  transform: translatey(4.5px) rotate(-45deg);
  transform-origin: center;
}

.map-areas-selector.hidden {
  display: none;
}

.map-areas-selector {
  display: block;
  margin-bottom: 10px;
}

.map-areas-selector .select-input {
  position: relative;
  width: 100%;
}

.map-areas-selector .select-trigger {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 15px;
}

.map-areas-selector .select-icon {
  background-image: url(../images/icons/location.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  height: 20px;
  margin-right: 10px;
  width: 20px;
}

.map-areas-selector .select-arrow {
  background-image: url(../images/icons/arrow-down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  height: 12px;
  margin-left: auto;
  width: 12px;
}

.map-areas-selector .select-options {
  position: absolute;
  display: none;
  flex-direction: column;
  width: 100%;
  border-top: none;
  border-radius: 0 0 10px 10px;
  background-color: var(--snowwhite);
  box-shadow: var(--shadow-1);
  top: 100%;
  z-index: 10;
}

.text-gray3 {
  color: var(--text-gray3);
}

.blue-button-inactive {
  background-color: var(--blue-button-inactive);
}

.blue-button-active {
  background-color: var(--blue-button-active);
}

.blue-button-active2 {
  background-color: var(--blue-button-active2);
}

.text-cyan {
  color: var(--text-cyan);
}

.text-gray {
  color: var(--text-gray);
}

.text-gray2 {
  color: var(--text-gray2);
}

.text-gray4 {
  color: var(--text-gray4);
}

.menu-hamburger:hover .middle {
  transform: scalex(0);
  transform-origin: center;
}

.icon-percent {
  background-image: url(../../images/percent.svg);
  margin-right: 5px;
  width: 20px;
  height: 20px;
  display: inline-block;
  flex-shrink: 0;
}

.desc-top {
  display: inline-flex;
  flex-direction: row;
  gap: 3px;
}

.product-detail {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--border-color-1);
  width: 100% !important;
  padding: 20px 20px;
  gap: 10px;
}

@media (min-width: 1300px) {
  .product-detail {
    width: 80%;
  }
}

.product-detail .product-detail-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
}

.product-detail .product-detail-header .product-detail-header-inner1 {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 5px;
  width: 80%;
}

.product-detail .product-detail-header .product-detail-header-inner1 .product-detail-image {
  width: 52px;
  height: 48px;
  border-radius: 5px;
}

.product-detail .product-detail-header .product-detail-header-inner1 .product-detail-header-inner1-text {
  display: flex;
  flex-direction: column;
  width: 80%;
}

.product-detail .product-detail-header .product-detail-header-inner1 .product-detail-header-inner1-text .product-name {
  display: inline-flex;
  flex-direction: row;
  gap: 5px;
  width: 80%;
}

.product-detail .product-detail-header .product-detail-header-inner1 .product-detail-header-inner1-text .product-name .text-danger {
  font-size: 16px;
  font-weight: 700;
  line-height: 21.76px;
  text-align: left;
  color: var(--secondary-2);
}

.product-detail .product-detail-header .product-detail-header-inner1 .product-detail-header-inner1-text .product-name .text-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 21.76px;
  text-align: left;
  color: var(--black);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.product-detail .product-detail-header .product-detail-header-inner1 .product-detail-header-inner1-text .text-subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 20.3px;
  text-align: left;
  color: var(--color-p);
  text-wrap: nowrap;
  text-overflow: ellipsis;
}

.product-detail .product-detail-header .product-detail-header-inner2 {
  display: flex;
  align-items: start;
  justify-content: end;
  width: 20%;
}

.product-detail .product-detail-header .product-detail-header-inner2 .text-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 21.76px;
  color: var(--black);
}

.product-detail .product-detail-price {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-detail .product-detail-price .product-detail-price-data {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.product-detail .product-detail-price .product-detail-price-data .text-gray {
  font-size: 14px;
  font-weight: 500;
  line-height: 14.14px;
  color: var(--text-gray);
}

.product-detail .product-detail-price .product-detail-price-data .text-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 14.14px;
  color: var(--dark-black);
}

.product-detail .product-detail-price .product-detail-price-info {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 14.14px;
  color: var(--discount-text-color);
}

.product-detail .product-detail-price .product-detail-price-total {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 10px;
}

.product-detail .product-detail-price .product-detail-price-total .text-dark {
  font-size: 16px;
  font-weight: 700;
  line-height: 21.76px;
  text-align: left;
  color: var(--dark-black);
}

.product-detail .product-detail-price .product-detail-price-total .text-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 21.76px;
  text-align: left;
  color: var(--black);
}

.product-detail .coupon-discount {
  display: flex;
  flex-direction: column;
}

.product-detail .coupon-discount .input-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 20.3px;
  text-transform: none;
  color: var(--dark-black);
}

.product-detail .coupon-discount .mini-form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}

.product-detail .coupon-discount .mini-form input {
  width: 55% !important;
  background-color: transparent;
  height: 40px;
  border-radius: 10px;
  border-width: 2px;
  border-color: var(--border-color-1);
  border-style: solid;
}

.product-detail .coupon-discount .mini-form .btn-mini-form {
  height: 40px;
  border-radius: 10px;
  border-color: transparent;
  background-color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 20.3px;
  color: var(--full-white);
  cursor: pointer;
  width: 30%;
}

.product-detail .coupon-discount .mini-form .btn-mini-form:hover {
  background-color: color-mix(in srgb, var(--primary) 80%, white) !important;
}

.product-detail .clarify {
  display: flex;
  flex-direction: column;
}

.product-detail .clarify .input-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 20.3px;
  text-transform: uppercase;
  color: var(--primary);
}

.product-detail .clarify .textarea {
  border: 2px solid var(--border-color-1);
  border-radius: 10px;
  resize: none;
  background-color: transparent;
}

.product-order .btn-order {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border-color: transparent;
  background-color: var(--primary);
  font-size: 30px;
  font-weight: 600;
  line-height: 23.2px;
  color: var(--full-white);
  padding: 40px 45px;
  cursor: pointer;
}

.product-order .btn-order:hover {
  background-color: color-mix(in srgb, var(--btn-primary-bg) 80%, white) !important;
}

.categories-container {
  width: 100%;
  position: sticky;
  top: 50px;
  z-index: 10;
  background-color: var(--full-white);
  margin: 25px 0;
}

@media (min-width: 992px) {
  .categories-container {
    padding: 10px 0;
  }
}

.categories-bar-box {
  display: flex;
  flex-shrink: 0;
  align-self: start;
  flex-direction: row;
  scroll-behavior: smooth;
  width: 100%;
  padding-left: 0;
  background-color: var(--full-white);
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-snap-type: x mandatory !important;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 992px) {
  .categories-bar-box {
    width: 90%;
    padding-left: 70px;
  }
}

.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--full-white);
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 11;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.scroll-arrow:hover {
  background-color: #f8f8f8;
}

.scroll-right {
  right: 10px;
}

.scroll-arrow svg {
  width: 20px;
  height: 20px;
  fill: #666;
}

@media (max-width: 768px) {
  .scroll-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .categories-bar-box {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
}

@media (max-width: 768px) {
  .categories-bar-box::-webkit-scrollbar {
    display: none;
  }
}

.filter-list2 {
  display: flex !important;
  flex-direction: row !important;
  gap: 15px !important;
  flex-wrap: nowrap !important;
  list-style: none !important;
  scroll-snap-align: start !important;
  padding: 0 !important;
  white-space: nowrap !important;
  justify-content: center !important;
}

@media (max-width: 425px) {
  .filter-list2 {
    padding: 10px 0 !important;
    font-size: 15px !important;
  }
}

@media (min-width: 425px) {
  .filter-list2-landing-desktop {
    width: 100% !important;
  }
}

.filter-item2 {
  text-wrap: nowrap;
  scroll-snap-align: center;
  font-size: 22px;
  line-height: 21px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--text-gray3);
  height: 25px;
  cursor: pointer;
}

.filter-item2.active {
  color: var(--menu-item);
  border-bottom-color: var(--menu-item);
  border-bottom-width: 3px;
  border-bottom-style: solid;
}

.filter-item2 a {
  text-decoration: none;
  color: inherit;
}

.filtered-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: var(--snowwhite);
  width: 100%;
}

.filtered-list .most-wanted {
  display: flex;
  flex-direction: column;
}

.filtered-list .most-wanted .filtered-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 20.3px;
  text-align: left;
  color: var(--primary);
  text-transform: uppercase;
  top: -5px;
  position: relative;
}

.filtered-list .most-wanted .most-wanted-image {
  height: 58px;
  min-width: 100%;
  max-width: 100%;
  width: auto;
  border-radius: 5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.filtered-list .items-list {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  flex-wrap: wrap;
}

@media (max-width: 425px) {
  .filtered-list .items-list {
    align-items: center;
  }
}

@media (min-width: 768px) {
  .filtered-list .items-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.filtered-list .items-list .filtered-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  cursor: pointer;
  border: none;
}

@media (min-width: 768px) {
  .filtered-list .items-list .filtered-item {
    width: 48%;
  }
}

.filtered-list .items-list .filtered-item .filtered-item-description {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  top: 14.2px;
  position: relative;
}

.filtered-list .items-list .filtered-item .filtered-item-description .filtered-item-description-text {
  display: flex;
  flex-direction: column;
}

.filtered-list .items-list .filtered-item .filtered-item-description .filtered-item-description-text .item-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 21.76px;
  text-align: left;
  color: var(--black);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.filtered-list .items-list .filtered-item .filtered-item-description .filtered-item-description-text .item-subtitle {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  margin-top: 5px;
  color: var(--text-gray);
  height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  width: 95%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.filtered-list .items-list .filtered-item .filtered-item-description .item-image img {
  width: 85px;
  height: 79px;
  border-radius: 5px;
}

.filtered-list .items-list .filtered-item .item-price {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 15px;
  color: #000000;
}

.filtered-list .items-list .filtered-item .item-price .price-ok {
  font-size: 16px;
  font-weight: 700;
  line-height: 16.94px;
  text-align: left;
  color: var(--discount-text-color);
}

.filtered-list .items-list .filtered-item .item-price .price-muted {
  font-size: 14px;
  font-weight: 400;
  line-height: 18.85px;
  text-align: left;
  color: var(--color-p);
  text-decoration: line-through;
}

.filtered-list .items-list .filtered-item .item-price .price-muted-without-discount {
  font-size: 16px;
  font-weight: 700;
  line-height: 18.85px;
  text-align: left;
  color: var(--color-p);
}

.product-order {
  margin-top: 15px;
}

@media (max-width: 1024px) {
  .product-order {
    width: 81%;
  }
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--full-black);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9;
}

.window-popup {
  position: fixed;
  top: 50% !important;
  transform: translatey(-50%);
  left: 0;
  width: 100%;
  height: 90%;
  background-color: var(--full-white);
  transition: top 0.3s ease;
  z-index: 12;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

@media (min-height: 650px) and (min-width: 768px) {
  .window-popup {
    height: 70%;
    position: fixed;
    bottom: -100%;
    top: auto !important;
  }
}

@media (max-height: 450px) and (max-width: 768px) {
  .window-popup {
    visibility: hidden;
    top: 50% !important;
    overflow: scroll;
  }
}

@media (max-height: 650px) and (max-width: 768px) {
  .window-popup-address-content {
    top: 50% !important;
  }
}

@media (min-width: 768px) {
  .window-popup {
    width: 50%;
    left: 25%;
    border-radius: 20px;
    box-shadow: var(--shadow-2);
    position: fixed;
    bottom: -100%;
    top: auto !important;
  }
}

@media (min-width: 1024px) {
  .window-popup {
    position: fixed;
    top: 50% !important;
    transform: translatey(-50%);
    height: 70%;
    width: 40%;
    left: calc(100% / 3.5);
  }
}

@media (min-width: 1440px) {
  .window-popup {
    height: fit-content;
    width: 40%;
    left: calc(100% / 3.5);
    visibility: hidden;
  }
}

.window-popup .popup-content {
  overflow-y: auto;
  height: 100%;
  scrollbar-width: none;
  position: relative;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  padding-bottom: 5px;
  padding-top: 5px;
}

@media (min-width: 768px) {
  .address-desktop-content {
    justify-content: start !important;
  }
}

.window-popup .popup-content .sticky-top {
  position: sticky;
  top: 0;
  background-color: var(--full-white);
  z-index: 10;
}

@media (max-height: 650px) {
  .window-popup .popup-content .sticky-top {
    position: relative;
  }
}

@media (min-width: 1024px) {
  .window-popup .popup-content .sticky-top {
    position: relative;
  }
}

@media (min-width: 768px) {
  .address-sticky-top {
    height: 100%;
  }
}

.window-popup .popup-content .popup-close {
  display: flex;
  width: 100%;
  justify-content: end;
  padding-top: 10px;
  padding-right: 10px;
}

.window-popup .popup-content .popup-close .close-popup {
  margin: 12px 12px 2px 10px;
  cursor: pointer;
}

.window-popup .popup-content .popup-close .close-popup path {
  stroke: var(--close-popup-icon);
}

.window-popup .popup-content .product-presentation {
  display: flex;
  flex-direction: column;
  padding: 0 30px;
}

@media (min-width: 768px) {
  .window-popup .popup-content .product-presentation {
    padding: 0 30px;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .window-popup .popup-content .product-presentation {
    padding: 0 10%;
    align-items: center;
  }
}

.window-popup .popup-content .product-presentation .product-image {
  text-align: center;
}

.window-popup .popup-content .product-presentation .product-image .image-product {
  border-radius: 8px;
  width: 50%;
  height: auto;
}

.window-popup .popup-content .product-presentation .product-description1 {
  font-size: 16px;
  font-weight: 700;
  line-height: 21.76px;
  text-align: left;
  color: var(--black);
}

.window-popup .popup-content .product-presentation .product-description2 {
  font-size: 14px;
  font-weight: 400;
  line-height: 20.3px;
  color: var(--text-gray);
}

.window-popup.show {
  bottom: 0;
  visibility: visible;
}

@media (min-width: 768px) {
  .window-popup.show {
    top: 10%;
  }
}

@media (min-width: 1024px) {
  .window-popup.show {
    top: 20%;
  }
}

.backdrop.show {
  opacity: 0.95;
  visibility: visible;
}

.choose-dressings {
  display: flex;
  flex-direction: column;
  /* padding: 0 30px; */
  width: 100%;
  /* margin-top: 10px; */
}

/* .md_product_details_options {
  position: relative;
  width: 100%;
  max-width: 520px;
} */

.md_product_details_options {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  gap: 15px;
}

@media (min-width: 768px) {
  .choose-dressings {
    padding: 0 30px;
  }
}

@media (min-width: 1024px) {
  .choose-dressings {
    padding: 0 10%;
  }
}

.choose-dressings .clarify {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  margin-top: 10px;
}

.choose-dressings .clarify .input-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 20.3px;
  text-transform: uppercase;
  color: var(--text-black);
}

.choose-dressings .clarify .textarea {
  border: 2px solid var(--border-color-1);
  border-radius: 10px;
  resize: none;
  background-color: transparent;
}

.choose-dressings .choose-dressings-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  /* margin-top: 10px; */
}

.choose-dressings .choose-dressings-title .title-choose {
  font-size: 18px;
  font-weight: 600;
  line-height: 20.3px;
  color: var(--black);
  text-transform: uppercase;
}

.choose-dressings .choose-dressings-title .subtitle-choose {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text-gray4);
}

.choose-dressings .choose-dressings-form {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 10px;
  gap: 5px;
}

.md_option_quantity_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 10px;
  border: 1px solid var(--border-color-1);
  border-radius: 5px;
  padding: 8px 5px;
  background: #fff;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.md_option_quantity_row.md_option_quantity_selected {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.md_option_quantity_info {
  /* flex: 1;
  min-width: 0; */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.md_option_quantity_label {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 17px;
  font-weight: 500;
  color: #0B2135;
  text-transform: uppercase;
}

.md_option_quantity_multiplier {
  min-width: 32px;
  font-weight: 700;
  font-size: 16px;
  color: #0B2135;
  display: none;
}

.md_option_quantity_name {
  flex: 1;
}

.md_option_quantity_price .dressings-prices {
  display: block;
  margin-top: 4px;
  margin-left: 20px;
}

.md_option_quantity_price .price,
.md_option_quantity_price .price-ok,
.md_option_quantity_price .price-muted {
  /* font-size: 13px;
  line-height: 18px; */
  font-size: 17px;
  font-weight: 500;
  line-height: 18.85px;
  color: var(--black);
}

.md_option_quantity_control {
  flex-shrink: 0;
  width: auto;
  gap: 5px;
}

.md_option_quantity_control .md_option_quantity_value {
  min-width: 24px;
}

.choose-dressings .choose-dressings-form .input-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border-color-1);
  border-radius: 5px;
  padding: 8px 5px;
}

.choose-dressings .choose-dressings-form .input-group .dressings-prices {
  display: inline-flex;
  flex-direction: row;
  gap: 5px;
}

.choose-dressings .choose-dressings-form .input-group .dressings-prices .price-muted {
  font-size: 17px;
  font-weight: 500;
  line-height: 18.85px;
  color: var(--color-p);
  text-decoration-line: line-through;
}

.choose-dressings .choose-dressings-form .input-group .dressings-prices .price-ok {
  font-size: 17px;
  font-weight: 500;
  line-height: 18.85px;
  color: var(--valid-cyan);
}

.choose-dressings .choose-dressings-form .input-group .dressings-prices .price {
  font-size: 17px;
  font-weight: 500;
  line-height: 18.85px;
  color: var(--black);
}

.choose-dressings .choose-dressings-form .input-chooses .dressings-prices .price-muted {
  font-size: 13px;
  font-weight: 500;
  line-height: 18.85px;
  color: var(--color-p);
  text-decoration-line: line-through;
}

.choose-dressings .choose-dressings-form .input-chooses .dressings-prices .price-ok {
  font-size: 13px;
  font-weight: 500;
  line-height: 18.85px;
  color: var(--valid-cyan);
}

.choose-dressings .choose-dressings-form .input-chooses .dressings-prices .price {
  font-size: 13px;
  font-weight: 500;
  line-height: 18.85px;
  color: var(--black);
}

.choose-dressings .choose-dressings-form .input-chooses {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.choose-dressings .choose-dressings-form .input-chooses .input-chooses-badge {
  display: inline-block;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 17.4px;
  color: var(--primary-0);
  border-radius: 5px;
  border-color: var(--neutral-4);
  border-width: 1px;
  border-style: solid;
  height: 18px;
  width: 24px;
  margin-right: 5px;
}

.choose-dressings .choose-dressings-form .input-chooses .input-chooses-badge.muted {
  color: var(--neutral-4);
}

.choose-dressings .choose-dressings-form .input-chooses .input-chooses-name {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  text-align: left;
  color: var(--primary-0);
}

.add-dressings-controller {
  display: flex;
  flex-direction: row;
  gap: 10px;
  height: 45px;
  width: 137px;
  border-radius: 10px;
  border-color: var(--border-color-1);
  border-style: solid;
  border-width: 1.5px;
  justify-content: space-evenly;
  align-items: center;
  margin: 10px auto 10px;
}

@media (min-width: 1024px) {
  .add-dressings-controller {
    margin: 0;
  }
}

.md_product_details_layout {
  padding: 20px 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.md_modal_sheet_handle {
  width: 72px;
  height: 6px;
  border-radius: 999px;
  background: #d5d7dc;
  margin: 10px auto;
}

@media (min-width: 1024px) {
  .md_product_details_layout {
    padding: 40px 0 96px;
  }
}

.md_product_details_header {
  width: 100%;
  display: flex;
  /* max-width: 520px; */
  text-align: center;
  gap: 10px;
  /* position: relative; */
  /* padding: 20px 24px 0; */
}

.md_product_details_header_sticky {
  width: 100%;
  display: flex;
  /* max-width: 520px; */
  text-align: center;
  gap: 10px;
  /* position: relative; */
  /* padding: 20px 24px 0; */
}

.md_product_details_close_sticky {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: sticky;
  top: 12px;
  padding: 8px 24px 0;
  z-index: 5;
  box-sizing: border-box;
}

.md_product_details_close_sticky .popup-close {
  position: static;
}

.md_product_details_summary_sticky {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 72px;
  z-index: 4;
  background: #ffffff;
  /* padding: 0 24px 20px; */
  margin-bottom: 16px;
  width: 100%;
  /* box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  border-radius: 24px; */
}

.md_product_details_media {
  /* margin-top: 24px; */
  margin-bottom: 24px;
}

.md_product_details_image {
  width: 240px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
}

.md_product_details_info {
  /* margin-bottom: 16px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.md_product_details_name {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

.md_product_details_description {
  font-size: 16px;
  line-height: 24px;
  color: #6B7280;
  margin-top: 10px;
}

.md_product_details_quantity_wrapper {
  display: flex;
  justify-content: center;
  /* margin: 24px auto 8px; */
}

.md_product_details_quantity_wrapper .md_order_details_quantity_control {
  justify-content: center;
  gap: 10px;
  width: auto;
}

.md_product_details_delete_action {
  margin-top: 12px;
}

.md_product_details_header .btn_delete {
  border: none;
  background: transparent;
  color: #EF4444;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.md_product_details_actions {
  width: 100%;
  /* max-width: 520px;
  margin: 0 auto; */
  text-align: center;
}

.md_product_details_divider {
  border: none;
  height: 1px;
  width: 100%;
  background: #E5E7EB;
  /* margin: 8px auto 24px; */
}

.md_product_details_actions_buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: center;
  /* width: 100%; */
}

.md_product_details_customize_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 5px;
  background: var(--primary);
  color: #fff;
  padding: 20px 15px;
  font-weight: 400;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.md_product_details_customize_button:hover, .md_product_details_customize_button:focus {
  outline: none;
  transform: translatey(-1px);
  box-shadow: 0 10px 24px rgba(28, 100, 242, 0.35);
}

.md_product_details_actions .add-to-order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #ffffff;
  border: 1px solid #dfe3eb;
  border-radius: 5px;
  padding: 12px 15px;
  gap: 10px;
  font-weight: 600;
  font-size: 22px;
}

.md_product_details_actions .add-to-order-button .text {
  /* color: #0B2135;   */
  color: #ffffff;
}

.md_product_details_actions .add-to-order-button.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.md_product_details_section_highlight {
  box-shadow: 0 0 0 3px rgba(28, 100, 242, 0.25);
  border-radius: 24px;
  transition: box-shadow 0.2s ease;
}

.add-dressings-controller .rest-control {
  font-size: 16px;
  font-weight: 600;
  line-height: 23.2px;
  color: var(--secondary-3);
  margin-left: 10px;
  cursor: pointer;
}

.add-dressings-controller .add-control {
  font-size: 14px;
  font-weight: 600;
  line-height: 20.3px;
  color: var(--black);
  margin-right: 10px;
  cursor: pointer;
}

.add-dressings-controller .separator-line-v {
  width: 1.5px;
  height: 80%;
  border: none;
  margin: 0;
  background-color: var(--border-color-1);
}

.add-dressings-controller .number-output {
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 20.3px !important;
  color: var(--black) !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  padding-left: 0 !important;
}

.add-dressings-controller .number-output:hover {
  background: transparent !important;
}

.add-order-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px 0;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  visibility: hidden;
}

@media (min-width: 1024px) {
  .add-order-container {
    display: flex !important;
    flex-direction: column !important;
    width: 70% !important;
    margin-left: 15% !important;
    border-radius: 0;
    gap: 10px;
    align-items: center;
    padding: 10px 10%;
    height: auto;
    background-color: transparent;
    visibility: visible;
  }
}

.add-order-container .add-to-order-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  border: none;
  border-radius: 10px;
  background-color: var(--primary);
  padding: 10px 15px;
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .add-order-container .add-to-order-button {
    width: 100%;
    height: 45px;
  }
}

.add-order-container .add-to-order-button .text, .add-order-container .add-to-order-button .amount {
  font-size: 15px;
  font-weight: 600;
  line-height: 23.2px;
  color: var(--full-white);
}

.add-order-container .add-to-order-button:hover {
  background-color: color-mix(in srgb, var(--btn-primary-bg) 80%, white) !important;
}

.mobil {
  display: flex;
}

@media (min-width: 1024px) {
  .mobil {
    display: none;
  }
}

.no-mobil {
  display: flex;
}

@media (max-width: 768px) {
  .no-mobil {
    display: none;
  }
}

.relative-wrapper {
  position: sticky;
  width: auto;
  height: auto;
  bottom: 0;
  background-color: var(--full-white);
  z-index: 99;
}

.window-popup.show .add-order-container {
  visibility: visible;
}

.address-container {
  margin-bottom: 20px;
  background-color: var(--neutral-3);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-bottom: 25px;
  padding-top: 25px;
}

.address-container.padded {
  padding: var(--padding-base);
  background-color: var(--gray-50);
  border-radius: var(--br-base);
}

.address-title {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--text-md-semibold-font-family);
  font-weight: 600;
  color: var(--menu-item);
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 23.2px;
}

.my-address-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--text-md-semibold-font-family);
  font-weight: var(--text-md-semibold-font-weight);
  color: var(--gray-900);
}

.my-address-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--text-md-semibold-font-family);
  font-weight: var(--text-md-semibold-font-weight);
  color: var(--gray-900);
}

.my-address-delete-item {
  display: flex;
  align-items: center;
}

.address-subtitle {
  font-family: var(--text-md-regular-font-family);
  font-size: 16px;
  color: var(--color-p);
  line-height: 23.2px;
  font-weight: 500;
}

.schedule-container {
  background-color: var(--gray-50);
  border-radius: var(--br-base);
  display: flex;
  flex-direction: column;
}

.schedule-container.padded {
  padding: var(--padding-base);
}

.schedule-title {
  font-family: var(--text-md-semibold-font-family);
  font-weight: 600;
  color: var(--primary-2);
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20.3px;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 10px;
  padding: 10px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--border-color-1);
  margin-bottom: 20px;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-bottom: 10px;
}

.schedule-day {
  font-family: var(--text-md-regular-font-family);
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 19.04px;
  width: 50%;
}

.schedule-time {
  font-family: var(--text-md-regular-font-family);
  color: var(--gray-900);
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 50%;
}

.schedule-time span {
  display: block;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  line-height: 20.3px;
  color: var(--color-p);
}

.md_disable_scrolling {
  overflow: hidden;
}

.promos-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: var(--padding-base);
  background-color: var(--gray-50);
  border-radius: var(--br-base);
  margin: 0 20px;
}

.promo-item {
  padding: 16px;
  background-color: var(--base-white);
  border-radius: var(--br-5xs);
  box-shadow: var(--shadow-sm);
}

.promo-title {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 14.14px;
  color: var(--discount-text-color);
  margin-bottom: 8px;
}

.promo-dates {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--text-md-regular-font-family);
  font-size: var(--text-sm-regular-size);
  color: var(--gray-600);
}

.no-promos {
  text-align: center;
  padding: var(--padding-base);
  color: var(--gray-500);
  font-family: var(--text-md-regular-font-family);
  font-size: var(--text-md-regular-font-size);
}

.content-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  background-color: var(--snowwhite);
  justify-content: center;
}

@media (min-width: 1024px) {
  .content-container {
    padding-top: 10%;
    display: flex;
    height: 100vh;
  }
}

@media (min-width: 1300px) {
  .content-container {
    padding-top: 5%;
    display: flex;
    height: 100vh;
  }
}

@media (min-width: 1920px) {
  .content-container {
    padding-top: 5%;
    display: flex;
    height: 100vh;
  }
}

@media (max-width: 768px) {
  .content-container {
    padding-top: 20%;
  }
}

@media (max-width: 425px) {
  .content-container {
    padding-top: 30%;
  }
}

@media (max-width: 375px) {
  .content-container {
    padding-top: 40%;
  }
}

.step-selector {
  display: flex;
  gap: 10px;
  align-items: start;
  justify-content: center;
  padding-bottom: 20px;
}

.step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.step-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 15.73px;
  text-align: center;
  color: var(--step-name-color);
}

.step-name.active {
  color: var(--step-name-color-active);
}

.step-symbol {
  border-radius: 50%;
  border-color: var(--step-border);
  border-style: solid;
  border-width: 3px;
  background-color: var(--step-bg);
  color: var(--step-font-color);
  font-size: 13px;
  font-weight: 700;
  line-height: 15.73px;
  height: 32px;
  width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-symbol.active {
  border-color: var(--step-border-active);
  background-color: var(--primary);
  color: var(--step-font-color-active);
}

.step-trail-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 39px;
}

.step-trail-container .step-trail {
  background-color: var(--step-border);
  height: 3px;
  width: 43px;
}

.step-trail-container .step-trail.active {
  background-color: var(--primary);
}

.step-title {
  border-radius: 5px;
  background-color: var(--background-neutral-gray);
  font-size: 14px;
  font-weight: 600;
  line-height: 20.3px;
  color: var(--gray-950);
  text-transform: uppercase;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .pad-form .order-resumen {
    display: none;
  }
}

.pad .separator-line-h {
  width: 90%;
}

@media (min-width: 1024px) {
  .pad .separator-line-h {
    display: none;
  }
}

.delivery-form {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.delivery-form .input-label {
  font-size: 12px;
  font-weight: 600;
  line-height: 17.4px;
  text-align: left;
  color: var(--secondary);
  margin-bottom: 0;
}

.input-text {
  border-width: 1.5px !important;
  background-color: var(--full-white) !important;
  width: auto !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.input-text::placeholder {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  color: var(--color-p);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px !important;
}

.footer-button-container {
  align-items: end;
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
  width: 100%;
}

.footer-button-container .btn {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding: 0 10px;
}

.footer-button-container .btn-primary {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: var(--full-white);
  background-color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 23.2px;
}

.footer-button-container .btn .btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tab-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 1023px) {
  .tab-container {
    gap: 15px;
  }
}

.tab-container .tab-item {
  font-size: 15px;
  font-weight: 500;
  line-height: 21.75px;
  color: var(--color-p);
  text-align: center;
  width: 33%;
  margin-left: 10px;
  margin-right: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-payment-method {
  border-radius: 8px;
  background: #e5e5e5;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  box-sizing: border-box;
  height: 80%;
}

.card-inner-payment-method {
  background: #c5c5c5;
  color: var(--full-white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.card-inner-payment-method.active {
  background: var(--primary-hover);
  color: var(--full-white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.card-span-payment-method {
  color: #1883ff;
  font-size: 28px;
  font-weight: bold;
}

.card-text-payment-method {
  color: #111;
  font-size: 16px;
  font-weight: 500;
  margin-top: 2px;
}

.tab-container .tab-item.active {
  border: 2px solid var(--btn-primary-bg) !important;
  background: #fff !important;
  width: 200px !important;
  height: 140px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.cash-form {
  display: none;
}

.cash-form.active {
  display: block;
}

.cash-form .input-label {
  font-size: 12px;
  font-weight: 600;
  line-height: 17.4px;
  color: var(--text-black);
  margin-bottom: 10px;
}

.cash-form .input-text {
  width: 93% !important;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .md_form_field_input {
    width: 100% !important;
  }
}

.online-form {
  display: none;
}

.online-form.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.black-info {
  font-size: 14px;
  font-weight: 500;
  line-height: 20.3px;
  color: var(--text-black);
}

.btn-white {
  border-radius: 10px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--black);
  background-color: var(--full-white);
  font-size: 14px;
  font-weight: 600;
  line-height: 20.3px;
  color: var(--menu-item);
  transition: all 0.3s ease;
  padding: 10px 20px;
}

.btn-white:hover {
  background-color: var(--neutral-9);
}

.online-form .btn-white {
  width: 50%;
}

@media (max-width: 372px) {
  .online-form .btn-white {
    width: 60%;
  }
}

@media (max-width: 300px) {
  .online-form .btn-white {
    width: 100%;
    height: auto;
  }
}

.online-form .separator-line-h {
  width: 100%;
}

.credit-card-display {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.credit-card-display .left-part {
  display: flex;
  gap: 5px;
}

.credit-card-display .left-part .text-container {
  display: flex;
  flex-direction: column;
}

.text-container .credit-card-type {
  font-size: 12px;
  font-weight: 600;
  line-height: 17.4px;
  color: var(--primary-2);
}

.text-container .credit-card-owner {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: var(--color-p);
}

.resumen-container {
  border-radius: 10px;
  border: var(--border-color-1) solid 2px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}

.resumen-container .separator-line-h {
  width: 100%;
}

.resumen-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.resumen-total {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.resumen-item .name {
  font-size: 14px;
  font-weight: 500;
  line-height: 14.14px;
  color: var(--text-gray);
}

.resumen-item .value {
  font-size: 14px;
  font-weight: 600;
  line-height: 14.14px;
  color: var(--dark-black);
}

.resumen-container .resumen-info {
  font-size: 14px;
  font-weight: 500;
  line-height: 14.14px;
  color: var(--text-cyan);
}

.resumen-total .name, .resumen-total .value {
  font-size: 16px;
  font-weight: 700;
  line-height: 21.76px;
  color: var(--black);
}

.window-popup .popup-content .popup-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 21.76px;
  text-align: center;
  color: var(--dark-black);
}

.window-popup .popup-content .popup-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

@media (min-width: 1024px) {
  .window-popup .popup-content .popup-body {
    padding: 10px 30px;
  }
}

.address-info-box {
  margin-top: 24px;
  margin-bottom: 10px;
  color: #8c8c8f;
  font-size: 16px;
  font-weight: 700;
}

.description-info-box-address {
  color: #0b2135;
  font-weight: 500;
  font-size: 14px;
  font-style: normal;
  text-transform: uppercase;
}

.popup-body-info {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .popup-body-info {
    flex-direction: column;
    gap: 1em;
  }
}

.info-section-address {
  display: flex;
  flex-direction: column;
  text-align: start;
  width: 50% !important;
}

@media (max-width: 768px) {
  .info-section-address {
    text-align: center;
    width: 100% !important;
  }
}

@media (min-width: 768px) {
  .separator-info-box {
    display: none;
  }
}

.window-popup.h-70 {
  max-width: 1200px;
  position: fixed;
  top: 50% !important;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 98%;
}

.window-popup-new {
  max-width: 1200px;
  position: fixed;
  top: 60% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  height: 100%;
}

.md_modal_sheet {
  width: 100%;
  /* max-width: 640px; */
  bottom: 0;
  top: 10% !important;
  left: 50% !important;
  transform: translate(-50%, 100%);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -10px 40px rgba(15, 23, 42, 0.2);
  background: #fff;
  height: auto;
  max-height: 90vh;
  transition: transform 0.35s ease-out;
  overflow: hidden;
}

.md_modal_sheet.md_modal_sheet_entered {
  transform: translate(-50%, 0);
}

.md_modal_sheet .popup-content {
  max-height: calc(90vh - 24px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 24px;
}

.md_modal_sheet .popup-body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.window-popup .popup-content .popup-body .multi-inputs {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.window-generic-popup {
  height: 40% !important;
}

.generic-popup-content-content {
  height: 100% !important;
}

.multi-inputs .input-label, .popup-body .input-group .input-label {
  margin-bottom: 5px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 12px;
  line-height: 17.4px;
  margin-top: 5px;
}

.popup-body .input-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.popup-body .input-group .input-text {
  margin-bottom: 5px;
  width: 100% !important;
}

.multi-inputs .input-text {
  width: 85% !important;
}

.icon-card {
  position: absolute;
  right: 15px;
  top: 50%;
  width: 36px;
  height: 22px;
  z-index: 99;
  margin-top: 17%;
}

.icon-card2 {
  position: absolute;
  left: 70%;
  top: 13%;
  width: 36px;
  height: 23px;
}

.doc-type-input {
  display: flex;
}

.type-doc-input-container .doc-type-input .select-input {
  position: relative;
  display: inline-block;
  cursor: pointer;
  height: 41px;
  border: none;
  transition: 0.4s;
  width: 25%;
}

.type-doc-input-container .doc-type-input .select-wrapper .select-input .select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.2px;
  color: var(--color-p);
  width: 100%;
  border-style: solid;
  border-width: 1.5px;
  background-color: var(--full-white);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-color: var(--border-color-1);
}

.type-doc-input-container .doc-type-input .select-text {
  width: 100%;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}

.type-doc-input-container .doc-type-input .select-arrow {
  background-image: url(../img/page1/arrow-down.svg);
  width: 13px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.4s ease;
}

.type-doc-input-container .doc-type-input .select-options {
  position: absolute;
  display: none;
  flex-direction: column;
  width: auto;
  text-wrap: nowrap;
  background-color: var(--snowwhite);
  border: 1px solid var(--neutral-1);
  border-top: none;
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow-1);
  z-index: 5;
}

.type-doc-input-container .doc-type-input .select-option {
  padding: 10px 19px;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.2px;
  color: var(--color-p);
  border-radius: 0 0 10px 10px;
  cursor: pointer;
}

.type-doc-input-container .doc-type-input .select-option:hover {
  background-color: var(--neutral-9);
}

.type-doc-input-container .doc-type-input .select-open .select-options {
  display: flex;
}

.type-doc-input-container .doc-type-input .select-open .select-arrow {
  transform: rotate(180deg);
}

.type-doc-input-container .doc-type-input .input-text {
  border-left-style: none !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  height: 41px !important;
  width: 100% !important;
}

.popup-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-color: var(--full-white);
}

.popup-footer .footer-content button, .popup-footer button {
  margin: 10px 10px;
  color: var(--full-white);
}

.popup-footer .footer-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: calc(100vh / 2.2);
}

.input-group .select-input {
  position: relative;
  display: inline-block;
  cursor: pointer;
  height: 41px;
  border: none;
  transition: 0.4s;
  width: 95%;
}

.input-group .select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.2px;
  color: var(--color-p);
  width: 100%;
  border-style: solid;
  border-width: 1.5px;
  background-color: var(--full-white);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-color: var(--border-color-1);
}

.select-option.hidden {
  display: none;
}

.input-group .select-text {
  width: 100%;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}

.input-group .select-arrow {
  background-image: url(../img/page1/arrow-down.svg);
  width: 12px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.4s ease;
}

.input-group .select-options {
  position: absolute;
  display: none;
  flex-direction: column;
  width: 103%;
  text-wrap: nowrap;
  background-color: var(--snowwhite);
  border: 2px solid var(--border-color-1);
  border-top: none;
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow-1);
  z-index: 5;
}

@media (min-width: 768px) {
  .input-group .select-options {
    width: 102%;
  }
}

.input-group .select-option {
  padding: 10px 19px;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.2px;
  color: var(--color-p);
  border-radius: 0 0 10px 10px;
  cursor: pointer;
}

.input-group .select-option:hover {
  background-color: var(--neutral-9);
}

.input-group .select-open .select-options {
  display: flex;
}

.input-group .select-open .select-arrow {
  transform: rotate(180deg);
}

.order-done-logo {
  width: 105px !important;
  height: auto !important;
}

.part1, .part2 {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.no-top-margin {
  margin-top: 0 !important;
}

.no-bottom-margin {
  margin-bottom: 0 !important;
}

.sub-title {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.2px;
  color: var(--text-gray4);
  text-align: center;
}

.text-white {
  color: var(--full-white);
}

.padded {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.email-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
}

.email-group .input-label {
  margin-bottom: 5px;
  font-weight: 600;
}

.email-group input {
  margin-bottom: 10px;
}

.btn-container {
  width: 100%;
  text-align: center;
}

.btn-container button {
  width: 100%;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.my-address-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 25px;
  padding-top: 25px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .my-address-container {
    width: 50%;
  }
}

.schedule-item:last-child {
  margin-bottom: 0;
}

.checkout {
  display: none;
}

@media (min-width: 1024px) {
  .checkout {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

.checkout-card {
  border-radius: 5px;
  border: 1.5px solid var(--border-color-1);
  padding-bottom: 10px;
}

.checkout-header {
  background-color: var(--background);
  font-size: 14px;
  font-weight: 600;
  line-height: 20.3px;
  color: var(--color-tittles);
  text-transform: uppercase;
  text-align: center;
  vertical-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.checkout-body {
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.checkout-body .separator-line-h {
  display: block;
  width: 100%;
}

.checkout-data {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
  padding: 0 10px;
}

.data-item {
  display: flex;
  justify-content: space-between;
}

.data-item .text-gray {
  font-size: 14px;
  font-weight: 500;
  line-height: 14.14px;
  color: var(--text-gray);
}

.data-item.text-announce {
  font-size: 14px;
  font-weight: 500;
  line-height: 14.14px;
  color: var(--text-cyan);
}

.data-item .text-dark {
  font-size: 14px;
  font-weight: 600;
  line-height: 14.14px;
  color: var(--black);
}

.checkout-clarify {
  padding: 0 15px;
}

.checkout-clarify label {
  font-size: 14px;
  font-weight: 700;
  line-height: 20.3px;
  color: var(--primary-2);
}

.checkout-clarify textarea {
  width: 95%;
}

.pad-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 84vh;
}

@media (min-width: 1024px) {
  .pad-form {
    width: 100%;
  }
}

.pad-checkout {
  display: none;
}

@media (max-width: 1920px) {
  .pad-checkout {
    width: 20%;
    display: block;
    margin-top: 4.5%;
  }
}

@media (max-width: 1440px) {
  .pad-checkout {
    width: 25%;
    display: block;
    margin-top: 5.85%;
  }
}

@media (max-width: 1366px) {
  .pad-checkout {
    width: 25%;
    display: block;
    margin-top: 6.15%;
  }
}

@media (max-width: 1024px) {
  .pad-checkout {
    width: 30%;
    display: block;
    margin-top: 8.15%;
  }
}

.flex-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

@media (min-width: 1024px) {
  .flex-box {
    flex-direction: row;
    width: 100%;
  }
}

.flex-box-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.flex-box-item input {
  width: 96% !important;
}

@media (min-width: 1024px) {
  .flex-box-item input {
    width: auto !important;
  }
}

.checkout-button button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
}

.checkout-total span {
  font-size: 14px;
  font-weight: 600;
  line-height: 14.14px;
  color: var(--black);
}

.container-wrapper {
  width: 100%;
  position: relative;
  height: 221px;
  overflow: hidden;
  flex-shrink: 0;
  margin-top: 20px;
}

@media (min-width: 1024px) {
  .container-wrapper {
    width: 25%;
  }
}

.carousel img {
  scroll-snap-align: center;
  flex: 0 0 auto;
}

.carousel-frame {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.carousel-frame img {
  width: calc(100% / 6);
  height: auto;
}

.contact-sections {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  gap: 20px;
  background-color: var(--white);
  text-align: center;
}

.heading-and-supporting-text, .heading-and-supporting-text1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.container1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: var(--gray-50);
  border-radius: 12px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.heading {
  font-size: 16px;
  color: var(--text-black);
  margin-bottom: 16px;
  text-align: center;
  width: 100%;
}

.md_menu_delivery_options {
  border: 1px solid #e9e9e9;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .md_dropdown {
    justify-content: space-between !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

.element {
  background-color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
}

.element .content-1 {
  background-color: #fff;
  overflow: hidden;
  width: 100%;
  height: 126px;
  position: relative;
}

.element .group {
  position: absolute;
  width: 390px;
  height: 825px;
  top: 127px;
  left: 0;
}

.element .CTA-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 126px;
  align-items: center;
  padding: 0 0 24px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--basewhite);
}

.element .container {
  width: 390px;
  height: 126px;
  gap: 32px;
  padding: 0 16px;
  margin-bottom: -24px;
  margin-left: -0.5px;
  margin-right: -0.5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.element .content {
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 16px 24px;
  align-self: stretch;
  width: 50%;
  background-color: var(--gray-50);
  border-radius: 16px;
  display: flex;
  position: relative;
}

@media (max-width: 768px) {
  .element .content {
    width: 90%;
  }
}

.element .content-2 {
  height: 24px;
  align-items: center;
  gap: 8px;
  display: flex;
  position: relative;
}

.element .map {
  position: relative;
  width: 20px;
  height: 20px;
}

.element .text {
  flex: 1;
  font-weight: var(--text-md-regular-font-weight);
  color: var(--gray-900);
  position: relative;
  margin-top: -1px;
  font-family: var(--text-md-regular-font-family);
  font-size: var(--text-md-regular-font-size);
  letter-spacing: var(--text-md-regular-letter-spacing);
  line-height: var(--text-md-regular-line-height);
  font-style: var(--text-md-regular-font-style);
}

.element .horizontal-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px;
  position: relative;
  align-self: stretch;
  background-color: var(--gray-50);
  border-radius: 8px;
  border: 1px solid;
  border-color: var(--gray-200);
}

@media (max-width: 768px) {
  .element .horizontal-tabs {
    flex-direction: column;
  }
}

.element .tab-button-base {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: var(--gray-200);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid;
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.element .text-wrapper {
  width: fit-content;
  font-weight: var(--text-md-semibold-font-weight);
  color: var(--gray-700);
  white-space: nowrap;
  position: relative;
  margin-top: -1px;
  font-family: var(--text-md-semibold-font-family);
  font-size: var(--text-md-semibold-font-size);
  letter-spacing: var(--text-md-semibold-letter-spacing);
  line-height: var(--text-md-semibold-line-height);
  font-style: var(--text-md-semibold-font-style);
}

.element .div-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  border-radius: 6px;
  overflow: hidden;
}

.element .text-2 {
  width: fit-content;
  font-weight: var(--text-md-semibold-font-weight);
  color: var(--gray-500);
  white-space: nowrap;
  position: relative;
  margin-top: -1px;
  font-family: var(--text-md-semibold-font-family);
  font-size: var(--text-md-semibold-font-size);
  letter-spacing: var(--text-md-semibold-letter-spacing);
  line-height: var(--text-md-semibold-line-height);
  font-style: var(--text-md-semibold-font-style);
}

.element .contact-sections {
  display: flex;
  flex-direction: column;
  width: 389px;
  align-items: center;
  gap: 16px;
  position: absolute;
  top: 126px;
  left: 1px;
  background-color: var(--basewhite);
}

.element .background-overlap {
  position: relative;
  width: 404px;
  height: 74px;
  margin-left: -7.5px;
  margin-right: -7.5px;
  background-color: var(--gray-950);
}

.element .p {
  position: absolute;
  width: 332px;
  top: 11px;
  left: 23px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 16px;
  white-space: nowrap;
}

.element .image {
  width: 376px;
  height: 526px;
  position: relative;
  object-fit: cover;
}

.element .frame {
  flex-direction: column;
  width: 406px;
  align-items: flex-start;
  position: fixed;
  top: 1px;
  left: 1px;
  background-color: #fff;
  display: flex;
  gap: 8px;
}

.element .group-2 {
  position: relative;
  width: 390px;
  height: 67px;
}

.element .status-bar {
  display: flex;
  width: 390px;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 181px;
  padding: 14px 20px 12px;
  position: absolute;
  top: 0;
  left: 0;
}

.element .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
}

.element .items {
  width: 35px;
  position: relative;
  height: 14px;
  margin-top: -2.5px;
  margin-bottom: -2.5px;
}

.element .right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 3px 0 0;
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
}

.element .img {
  width: 76px;
  position: relative;
  height: 14px;
  margin-top: -2.5px;
  margin-bottom: -2.5px;
}

.element .overlap-group-wrapper {
  position: absolute;
  width: 378px;
  height: 32px;
  top: 35px;
  left: 7px;
}

.element .overlap-group {
  position: relative;
  width: 376px;
  height: 32px;
  background-color: var(--gray-100);
  border-radius: 27px;
}

.element .text-wrapper-2 {
  position: absolute;
  width: 164px;
  top: 8px;
  left: 115px;
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #000;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 16px;
  white-space: nowrap;
}

.element .frame-wrapper {
  padding: 0 12px 0 15px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.element .frame-2 {
  width: 374px;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
  display: flex;
  gap: 8px;
}

.element .img-2 {
  position: relative;
  width: 24px;
  height: 24px;
}

.element .image-2 {
  width: 56px;
  height: 30px;
  position: relative;
  object-fit: cover;
}

.element .supporting-text {
  position: relative;
  width: 224px;
  height: 18px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: var(--basewhite);
  font-size: 13px;
  letter-spacing: 0;
  line-height: 16px;
  white-space: nowrap;
}

.element .nav-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.selectable {
  cursor: pointer;
}

.input {
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 4px;
  width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-select-wrapper {
  padding: 0;
  width: 100%;
}

.schedule-select-wrapper .select-input {
  width: 100%;
  position: relative;
  border: 1px solid #E4E4E7;
  border-radius: 4px;
  margin-bottom: 8px;
}

.schedule-select-wrapper .select-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
  box-sizing: border-box;
}

.schedule-select-wrapper .select-text {
  color: #71717A;
  flex-grow: 1;
}

.schedule-select-wrapper .select-arrow {
  transition: transform 0.2s ease;
  color: #71717A;
  flex-shrink: 0;
  margin-left: 8px;
  position: relative;
}

.schedule-select-wrapper .select-options {
  position: absolute;
  width: 100%;
  top: calc(100% + 4px);
  background: #fff;
  border: 1px solid #E4E4E7;
  border-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-sizing: border-box;
}

.schedule-select-wrapper .select-option {
  padding: 12px 16px;
  cursor: pointer;
}

.schedule-select-wrapper .select-option:hover {
  background-color: #F4F4F5;
}

.select-input.active .select-arrow {
  transform: rotate(180deg);
}

.separator-line-h {
  width: 100%;
  height: 1.2px;
  margin: 8px 0;
  border: none;
  background-color: var(--border-color-1);
}

.right-aligned {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.right-aligned .select-input {
  width: 100%;
  position: relative;
}

.right-aligned .select-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
}

.right-aligned .select-options {
  position: absolute;
  width: 100%;
  right: 0;
  left: auto;
  top: 100%;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-top: 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
}

.right-aligned .select-option {
  padding: 8px 12px;
  cursor: pointer;
}

.right-aligned .select-option:hover {
  background-color: #f5f5f5;
}

@media (max-width: 768px) {
  .right-aligned .select-input {
    width: 200px;
  }
}

.page-content {
  margin-top: 0 !important;
  position: relative !important;
  z-index: 0 !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.payment-done-container {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  margin: 30px 40px !important;
  height: 44vh !important;
}

.payment-done-container .order-title {
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 25.92px !important;
  color: var(--black) !important;
  margin-top: 20px !important;
}

.payment-done-container .sub-title {
  margin-top: 10px !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 23.2px !important;
  color: var(--text-gray4) !important;
  text-align: center !important;
}

.payment-done-container .question {
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 20.3px !important;
  color: var(--black) !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
}

.payment-done-container .phone {
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 23.2px !important;
  color: var(--color-p) !important;
  display: flex !important;
  align-items: center !important;
}

.payment-done-container .phone img {
  width: 22px !important;
  height: 23px !important;
  margin-right: 5px !important;
}

.my-orders-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  gap: 5px;
  width: 90%;
}

@media (min-width: 768px) {
  .my-orders-container {
    width: 50%;
  }
}

.my-order-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.order-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.order-header .order-title {
  font-size: 14px;
  font-weight: 600;
}

.order-actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 10px;
}

.order-item {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
}

.order-item-inner {
  display: flex;
  gap: 16px;
}

.order-item-image {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.order-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.order-item-content {
  flex: 1;
}

.order-item-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  gap: 8px;
}

.order-item-quantity {
  color: #E91E63;
  font-weight: 600;
}

.order-item-name {
  flex: 1;
  font-weight: 600;
}

.order-item-price {
  font-weight: 600;
}

.order-item-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.order-item-option {
  color: #666;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.option-plus {
  color: #E91E63;
}

.order-item-comments {
  color: #666;
  font-size: 0.9em;
  font-style: italic;
}

.order-totals {
  padding: 16px;
  background: #fff;
  border-radius: 8px;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.order-total-row:last-child {
  margin-bottom: 0;
}

.total-label {
  color: #666;
}

.total-value {
  font-weight: 600;
}

.order-total-row.final {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.order-total-row.final .total-label, .order-total-row.final .total-value {
  font-size: 1.1em;
  font-weight: 700;
  color: #000;
}

.my-account-delivery-form {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

@media (min-width: 1024px) {
  .my-account-delivery-form {
    width: 70%;
  }
}

.my-account-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px;
}

@media (min-width: 1024px) {
  .my-account-container {
    width: 50%;
  }
}

.my-account-button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  gap: 5px;
  width: 100%;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.8);
}

.carousel-arrow:hover {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

.carousel-arrow.prev {
  left: 10px;
  transform: translate(-50%, -50%);
}

.carousel-arrow.next {
  right: 10px;
  transform: translate(50%, -50%);
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
  fill: #333;
}

@media (max-width: 768px) {
  .carousel-arrow {
    display: none;
    width: 32px;
    height: 32px;
  }
}

.top-presentation {
  position: relative;
  width: 100%;
  min-height: 320px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.top-presentation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--top-presentation-mask);
  z-index: 1;
}

.top-presentation > * {
  position: relative;
  z-index: 2;
}

.welcome-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.logo-container {
  text-align: center;
}

.business-logo {
  max-width: 80%;
  height: auto;
}

.loading-dots {
  text-align: center;
  margin-top: 20px;
}

.loading-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  margin: 0 5px;
  opacity: 0;
  animation: loadingDots 1.4s infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes loadingDots {
    0% {
        opacity: 0;
        } 50% {
        opacity: 1;
        } 100% {
        opacity: 0;
        }
    }

.welcome-screen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container img {
  width: 50% !important;
  height: 50% !important;
}

.md_landing_bg {
  background-color: var(--background);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.md_landing_footer_text {
  padding-top: 10px;
  font-family: sans-serif;
  font-size: 15px;
  vertical-align: top;
  text-align: center;
  color: var(--full-white);
  margin: 0 auto;
}

.bold-title {
  font-weight: 700;
  color: var(--step-font-color);
}

.md_locations_search_box_container_relative {
  position: relative;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 175px;
  overflow: visible;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 363px;
  height: 202px;
  left: 50%;
  top: 0;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translatex(-50%) scale(0.7);
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 1;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
  transform: translatex(-50%) scale(1);
  z-index: 3;
  height: 100%;
}

.slide.next {
  opacity: 0.5;
  transform: translatex(30%) scale(0.85);
  z-index: 2;
}

.slide.prev {
  opacity: 0.5;
  transform: translatex(-130%) scale(0.85);
  z-index: 2;
}

.slide:not(.active):not(.next):not(.prev) {
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

@media (min-width: 769px) {
  .carousel-arrow {
    display: flex;
  }
}

@media (max-width: 768px) {
  .slider-container {
    max-width: 100%;
    height: 190px;
    margin: 15px auto;
  }
}

@media (max-width: 768px) {
  .slide {
    width: 340px;
    height: 190px;
  }
}

@media (max-width: 768px) {
  .carousel-arrow svg {
    width: 20px;
    height: 20px;
  }
}

.filial-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #fff;
  padding-bottom: 50px;
}

.filial-list .filial-header {
  width: 100%;
  background-color: var(--neutral-9);
  height: 37px;
  color: var(--menu-item);
  font-weight: 500;
  font-size: 14px;
  line-height: 35px;
  align-content: center;
  text-align: center;
  text-transform: uppercase;
}

.filial-list .product-list {
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  width: 100%;
}

@media (min-width: 768px) {
  .filial-list .product-list {
    display: grid;
    width: auto;
    grid-template-columns: repeat(3, minmax(330px, 1fr));
  }
}

.filial-list .product-list .product-card {
  background-color: var(--white);
  border-radius: 10px;
  width: 100%;
  padding-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 768px) {
  .filial-list .product-list .product-card {
    margin-left: 0;
    margin-right: 0;
  }
}

.filial-list .product-list .product-card .product-card-header {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0 15px;
}

.filial-list .product-list .product-card .product-card-header .header-main {
  display: flex;
  align-items: flex-start;
  width: 100%;
  position: relative;
  gap: 10px;
}

.filial-list .product-list .product-card .product-card-header .product-logo {
  width: 57px;
  height: auto;
  margin-right: 5px;
}

.filial-list .product-list .product-card .product-card-header .product-card-data {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.filial-list .product-list .product-card .product-card-header .featured-star {
  margin-left: 8px;
  display: flex;
  align-items: center;
}

.filial-list .product-list .product-card .product-card-header h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 27.2px;
  color: var(--dark-black);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.filial-list .product-list .product-card .product-card-header p {
  display: flex;
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 20.3px;
  color: var(--text-semi-black);
}

.icon-clock {
  background-image: url(../../images/clock.svg);
  margin-right: 5px;
  width: 20px;
  height: 20px;
  display: inline-block;
  flex-shrink: 0;
}

@media (max-width: 320px) {
  .filial-list .product-list .product-card .product-card-header p {
    font-size: 14px;
    word-spacing: -2px;
  }
}

.filial-list .product-list .product-card .product-card-header svg.put-color-icon {
  stroke: var(--text-semi-black);
}

.filial-list .product-list .product-card hr {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-top: solid 1px var(--line-color);
  border-bottom: none;
  width: 95%;
  margin: 3px auto;
}

.filial-list .product-list .product-card .product-card-content {
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.filial-list .product-list .product-card .product-card-content .content-time {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.2px;
  color: var(--text-gray);
  width: 100%;
}

.filial-list .product-list .product-card .product-card-content .text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1;
}

.filial-list .product-list .product-card .product-card-content .content-discount {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 23.2px;
  color: var(--text-cyan);
  width: 100%;
}

.filial-list .product-list .product-card .product-card-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 11px;
  margin-inline-start: 20px;
  margin-inline-end: 20px;
  padding: 5px 0;
}

.filial-list .product-list .product-card .product-card-footer .badge {
  border-radius: 91px;
  background-color: var(--primary);
  color: var(--white);
  padding: 4px;
}

.filial-list .product-list .product-card .product-card-footer span {
  position: relative;
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  color: var(--color-footer-text);
  font-weight: 400;
  gap: 0;
}

.filial-list .product-list .product-card .product-card-footer span i {
  margin-right: 3px;
}

.filial-list .product-list .product-card .product-card-footer .delivery-icon, .retiro-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
}

.filial-list .product-list .product-card .product-card-footer .delivery-icon {
  margin-right: 6px;
}

.md_locations h3:after {
  background: var(--primary) !important;
}

.btn_remove {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  right: -60px;
  top: 50%;
  transform: translatey(-50%);
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out, right 0.25s ease-in-out;
  color: #fd4f57;
}

.btn_remove:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fd4f57;
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
}

.md_cart_totals_item:hover .btn_remove {
  opacity: 1;
  visibility: visible;
  right: 20px;
}

.loyalty_item:hover .btn_remove {
  opacity: 1;
  visibility: visible;
  right: 20px;
}

.loyalty_item:hover .md_cart_totals_item_value {
  display: none;
}

.loyalty_item {
  position: relative;
}

.benefits-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(330px, 1fr));
}

.menu-benefits .benefits-title {
  font-size: 14px;
  font-weight: 600;
}

#mercadopago_payment_brick_container input:not([type="checkbox"]):not([type="radio"]), select {
  width: auto;
  background: transparent;
  border: 1px solid #BFBFBF;
  border-radius: 6px;
  padding-left: 12px;
}

.md_cart_item_benefit {
  border-bottom: 1px solid #e9e9e9;
  color: #0b2135;
  cursor: pointer;
  display: flex;
  font-weight: 700;
  padding: 10px 15px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.md_cart_item_benefit .btn_edit_benefits {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  right: -60px;
  top: 10px;
  -webkit-transition: right 0.25s ease-in-out;
  transition: right 0.25s ease-in-out;
}

.md_cart_item_benefit .btn_edit_benefits:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fd4f57;
  position: absolute;
  bottom: 0;
  right: 0;
}

.md_cart_item_benefit:hover {
  background-color: #f9f9f9;
}

.md_cart_item_benefit:hover .btn_edit_benefits {
  opacity: 1;
  visibility: visible;
  right: 20px;
}

.md_cart_item_benefit:hover .price {
  display: none;
}

.md_cart_item_benefit:last-child {
  border-bottom: none;
}

.benefits-exchange-modal .md_modal {
  border-radius: 16px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
  border: none !important;
  background: transparent !important;
}

.benefits-exchange-modal .popup-content {
  border-radius: 16px !important;
  overflow: hidden !important;
  background: white !important;
  border: none !important;
  box-shadow: none !important;
  position: relative !important;
}

.benefits-exchange-modal .order-detail-header {
  display: none !important;
}

.benefits-exchange-modal .popup-title {
  display: none !important;
}

.benefits-exchange-modal .popup-body {
  background: white !important;
  padding: 20px 15px !important;
  padding-top: 50px !important;
}

.benefits-exchange-modal .md_money_equivalent {
  background: white !important;
  padding: 15px 20px !important;
  border-radius: 12px !important;
  margin-bottom: 25px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.benefits-exchange-modal .md_money_equivalent span {
  color: #2C3E50 !important;
  font-weight: 600 !important;
  font-size: 18px !important;
}

.benefits-exchange-modal .benefits-container {
  margin-bottom: 20px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.benefits-exchange-modal .benefits-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
  overflow-y: auto !important;
  max-height: 500px !important;
  max-width: 1000px !important;
  overflow-x: hidden !important;
}

.benefits-exchange-modal .benefit-card {
  background: white !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  flex-shrink: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  padding: 0 !important;
  margin: 0 auto !important;
}

.benefit-icon {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefits-exchange-modal .benefit-icon {
  width: 100% !important;
  height: 85px !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.benefits-exchange-modal .benefit-icon i {
  color: white !important;
  font-size: 18px !important;
}

.benefits-exchange-modal .benefit-name {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  color: #2C3E50 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
}

.benefits-exchange-modal .benefit-content {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  align-items: start !important;
  width: 100% !important;
}

.benefits-exchange-modal .benefit-body {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  align-items: start !important;
  width: 100% !important;
  padding: 10px !important;
  gap: 10px !important;
}

.benefits-exchange-modal .benefit-description {
  color: #6C757D !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 20.3px !important;
  margin: 5px 0 12px 0 !important;
  max-height: 2.8em !important;
  overflow: hidden !important;
  position: relative !important;
  max-width: 40% !important;
}

.benefits-exchange-modal .benefit-description.expanded {
  max-height: none !important;
  overflow: visible !important;
  max-width: 100% !important;
}

.benefit-action-button-active {
  display: block !important;
}

.benefits-exchange-modal .benefit-description-container {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: start !important;
  gap: 10px !important;
  width: 100% !important;
}

.benefits-exchange-modal .benefit-description-text {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.benefits-exchange-modal .benefit-view-more {
  color: var(--primary) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
}

.benefits-exchange-modal .benefit-points {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.benefits-exchange-modal .points-required {
  background: var(--loyalty-points-color) !important;
  padding: 0 10px !important;
  padding-top: 0 !important;
  border-radius: 15px !important;
  font-size: 10px !important;
  font-weight: 600;
  display: inline-block !important;
}

.benefits-exchange-modal .points-missing {
  background: var(--loyalty-points-color) !important;
  color: var(--primary) !important;
  padding: 0 10px !important;
  border-radius: 15px !important;
  font-size: 10px !important;
  font-weight: 400 !important;
  display: inline-block !important;
}

.benefits-exchange-modal .points-required-container {
  display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;
}

.benefits-exchange-modal .md_product_details_product_description {
  background: white !important;
  padding: 16px 20px !important;
  border-radius: 12px !important;
  color: #2C3E50 !important;
  font-weight: 600 !important;
  text-align: center !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  margin: 0 !important;
}

.benefits-exchange-modal .benefit-message {
  background: white !important;
  padding: 16px 20px !important;
  border-radius: 12px !important;
  color: #2C3E50 !important;
  font-weight: 600 !important;
  text-align: center !important;
  margin-top: 20px !important;
}

.benefits-exchange-modal .benefit-disabled {
  opacity: 0.5 !important;
  pointer-events: none !important;
}

.benefits-exchange-modal .benefit-image-container {
  width: 90px !important;
  min-width: 90px !important;
  background: var(--loyalty-points-color) !important;
  height: 100% !important;
}

.points-expiry {
  display: flex !important;
  justify-content: start !important;
  align-items: start !important;
  width: 100% !important;
}

.add-benefit-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.add-benefit-container .add-to-order-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: none;
  border-radius: 10px;
  background-color: var(--primary);
  padding: 10px 15px;
  transition: all 0.3s ease;
  height: 25px;
  font-size: 12px;
}

@media (min-width: 1024px) {
  .add-benefit-container .add-to-order-button {
    width: 100%;
    height: 25px;
  }
}

.benefit-type-text {
  font-size: 10px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 15px;
}

.benefit-button-disabled {
  background: #c0c0c0 !important;
  color: #fff;
  cursor: initial;
  opacity: 1;
}

.md-idle-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  user-select: none;
  padding: 0;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.md-idle-overlay.is-active {
  display: flex;
}

.md-idle-overlay__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.md-idle-overlay__slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.md-idle-overlay__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.md-idle-overlay__slide.is-active {
  opacity: 1;
}

.md-idle-overlay__slide-image {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.md-idle-overlay__message {
  display: none;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
  padding: 32px;
  text-align: center;
  z-index: 1;
}

.md-idle-overlay__message.is-visible {
  display: block;
}

.md-idle-overlay--fallback {
  background: #fff;
  color: #0f172a;
}

.md-idle-overlay--fallback .md-idle-overlay__slider {
  display: none;
}

.md-idle-overlay--fallback .md-idle-overlay__message {
  display: block;
}

.md_service_mode {
  position: fixed;
  inset: 0;
  font-family: "Tight", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.md_service_mode_wrapper {
  /* width: 100%; */
  height: 100%;
  /* max-width: 900px;
  padding: 40px 24px; */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
}

.md_service_mode_logo img {
  max-width: 230px;
  margin: 130px auto 0 auto;
  display: block;
}

.md_service_mode_title {
  font-size: 54px;
  color: var(--primary);
}

.md_service_mode_subtitle {
  font-size: 30px;
  color: #999;
  margin-bottom: 47px;
  margin-top: 25px;
}

.md_service_mode_options {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.md_service_mode_option {
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  background: #fff;
  padding: 35px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 16px;
  transition: all 0.2s ease;
  cursor: pointer;
  width: 273px;
  height: 338px;
}

.md_service_mode_option:focus, .md_service_mode_option:hover {
  border-color: var(--primary-hover);
  box-shadow: 0 12px 32px rgba(28, 100, 242, 0.15);
  outline: none;
}

.md_service_mode_icon {
  width: 88px;
  height: 88px;
}

.md_service_mode_icon path, .md_service_mode_icon line, .md_service_mode_icon rect, .md_service_mode_icon polyline {
  stroke: currentColor;
}

.md_service_mode_option_label {
  font-size: 32px;
  letter-spacing: -1px;
  font-weight: bold;
  color: #0B2135;
}

body.md_service_mode_hide_header .md_header_navigation {
  display: none !important;
}

body.md_service_mode_hide_header .content-wrap {
  padding-top: 0 !important;
}

.md_payment_selector {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 16px 80px;
}

.md_payment_selector .brand-logo, .md_checkout_payment_method_form .brand-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.md_payment_selector .brand-logo img, .md_checkout_payment_method_form .brand-logo img {
  max-width: 160px;
  height: auto;
}

.md_payment_selector_logo img {
  max-width: 160px;
  display: block;
  margin: 0 auto 24px auto;
}

.md_payment_selector_header {
  text-align: center;
  margin-bottom: 40px;
}

.md_payment_selector_header h1 {
  font-size: 28px;
  font-weight: 700;
  color: #0B2135;
  margin-bottom: 8px;
}

.md_payment_selector_header p {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
}

.md_payment_selector_grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.md_payment_selector_card {
  width: 275px;
  height: 304px;
  border-radius: 21px;
  border: 1px solid #E5E7EB;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.md_payment_selector_card:focus, .md_payment_selector_card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(28, 100, 242, 0.15);
  outline: none;
}

.md_payment_selector_card_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.md_payment_selector_card_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.md_payment_selector_empty {
  text-align: center;
  padding: 32px;
  border-radius: 16px;
  border: 1px dashed #E5E7EB;
  color: #6b7280;
  font-size: 16px;
}

.md_payment_selector_summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding: 16px 20px;
  border-radius: 10px;
  background: #f1f1f5;
  color: #0B2135;
  font-size: 18px;
  font-weight: 600;
}

.md_payment_selector_summary strong {
  font-size: 22px;
  color: var(--primary);
}
