/** MediaQueries*/
body {
  font-family: "Neue Frutiger World", serif;
  font-size: 18px;
  font-weight: 300;
  color: #1a1a1a;
}
body main {
  min-height: calc( 100vh - 3rem - 15rem );
  box-sizing: border-box;
}
a {
  color: #1a1a1a;
}
a:hover {
  color: #c24227;
  text-decoration: none;
}
a.color-orange {
  color: #ea5b23;
}

.color_orange_light {
  color: #ea5b23;
}

.color_orange_dark {
  color: #c24227;
}

.color_red_light {
  color: #ee5357;
}

.color_red_dark {
  color: #c24227;
}

.color_green_light {
  color: #b0e435;
}

.color_purple_dark {
  color: #693a7a;
}

.color_gray_xlight {
  color: #F1F1F1;
}

.color_gray_light {
  color: #b3b3b3;
}

.color_gray_dark {
  color: #1a1a1a;
}

button:focus {
  outline: 0;
}

.container-fluid {
  max-width: 1920px;
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1440px;
  }
}

.card {
  border-radius: 0;
}

.text-nowrap {
  white-space: nowrap !important;
}

.breadcrumb {
  background-color: transparent;
}
.breadcrumb .breadcrumb-item {
  font-size: 0.8rem;
}

.btn-orange {
  color: white;
  background-color: #ea5b23;
  border-color: #ea5b23;
  padding: 0.5rem 1.5rem;
}
.btn-orange:hover {
  background-color: #c24227;
  color: white;
}

.btn-outline-orange {
  color: #c24227;
  border-color: #c24227;
}
.btn-outline-orange:hover {
  background-color: #c24227;
  color: white;
}

.badge-outline-orange {
  background-color: white;
  color: black;
}

input, text-area {
  font-size: 1.2rem;
}

.spinnerButton {
  content: " ";
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 3px solid #fff;
  border-color: #fff #ea5b23 #fff #ea5b23;
  animation: lds-dual-ring 1.2s linear infinite;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.messageResponse {
  transform: scale(1);
  animation-name: display-message;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: not-allowed;
}
.messageResponse.hidden-message {
  animation-name: hidden-message;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}

@keyframes display-message {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes hidden-message {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
.loading {
  display: inline-block;
  width: 80px;
  height: 80px;
  margin: auto;
}
.loading:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #ea5b23;
  border-color: #ea5b23 transparent #ea5b23 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

.form-search {
  max-width: 50rem;
  width: 100%;
}
@media (max-width: 575px) {
  .form-search {
    margin: auto;
  }
}
.form-search .search-bar {
  height: 60px;
  background-color: white;
  border-radius: 30px;
  padding: 2px;
  margin: auto;
  width: 100%;
  box-sizing: border-box;
}
.form-search .search-bar:hover .search_input {
  caret-color: #c24227;
  transition: width 0.4s linear;
}
.form-search .search-bar:hover .search_icon {
  background: #c24227;
  color: white;
}
.form-search .search-bar label {
  width: calc(100% - 56px);
  margin: 0;
}
.form-search .search-bar label .search_input {
  color: #1a1a1a;
  border: 0;
  outline: 0;
  background: transparent;
  caret-color: transparent;
  line-height: 57px;
  transition: width 0.4s linear;
  border-radius: 20px;
  padding: 0 20px;
  width: 100%;
  caret-color: #1a1a1a;
  transition: width 0.4s linear;
}
.form-search .search-bar .search_icon {
  height: 56px;
  width: 56px;
  float: right;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  outline: none;
  background: #ea5b23;
  color: white;
}
.form-search .search-bar .search_icon .lx-search {
  background-image: url("/static/img/main/ic_search.f675dc212a4c.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 2rem;
  height: 2rem;
}

.cookie_banner {
  align-items: center;
  background: rgba(38, 45, 61, 0.95);
  bottom: 0;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 20px 50px;
  position: fixed;
  right: 0;
  transition: opacity 0.5s;
  z-index: 999;
}
.cookie_banner.is-privacy_shield {
  display: flex;
  flex-direction: row;
  padding: 20px 15px;
}
@media (max-width: 575px) {
  .cookie_banner.is-privacy_shield {
    flex-direction: column;
  }
}
.cookie_banner.is-privacy_shield .cookie_banner-message {
  color: #c4c6ca;
  padding-right: 20px;
  text-align: left;
}
@media (max-width: 575px) {
  .cookie_banner.is-privacy_shield .cookie_banner-message {
    text-align: center;
  }
}
.cookie_banner.is-privacy_shield .cookie_banner-message a {
  color: #c4c6ca;
}
.cookie_banner.is-privacy_shield .cookie_banner-buttons_container {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0;
}
.cookie_banner.is-privacy_shield .cookie_banner-buttons_container .cookie_banner-btn_allow {
  background: 0 0;
  border: 1px solid #fff;
  padding: 10px 34px;
  color: #fff;
}
.cookie_banner.is-privacy_shield .cookie_banner-buttons_container .cookie_banner-btn_allow:hover {
  background: #fff;
  color: #262d3d;
}
.cookie_banner.is-visible {
  opacity: 1;
  pointer-events: inherit;
}
.cookie_banner .is-hidden {
  pointer-events: none;
  opacity: 0;
}

header {
  background: #fff;
  width: 100%;
  height: 3rem;
  border-bottom: 1px solid #F1F1F1;
}
header .top {
  height: 3rem;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .top figure {
  margin: 0;
}
header .top figure a {
  display: block;
}
header .top figure a img {
  width: auto;
  height: 2rem;
  margin: auto;
}
header .top nav ul {
  margin: 0;
  padding: 0;
  display: flex;
}
header .top nav ul li {
  list-style: none;
}
header .top nav ul li + li {
  margin-left: 1rem;
}
header .top nav ul li a {
  display: inline;
  color: #b3b3b3;
  font-size: 1.2rem;
  font-weight: normal;
  white-space: nowrap;
}
header .top nav ul li a img {
  max-height: 1.5rem;
  height: 100%;
  width: auto;
}
@media (max-width: 575px) {
  header .top nav ul li a img {
    max-height: 2rem;
    width: 3rem;
  }
}
header .top .block-search-top {
  width: 100%;
  max-width: 40rem;
  box-sizing: border-box;
  padding: 0 1rem;
}
header .top .block-search-top .form-search .search-bar {
  height: 30px;
}
@media (max-width: 575px) {
  header .top .block-search-top .form-search .search-bar:hover {
    position: absolute;
    top: 50%;
    bottom: 50%;
    left: 0;
    right: 0;
  }
  header .top .block-search-top .form-search .search-bar:hover label {
    width: calc(100% - 26px);
  }
}
header .top .block-search-top .form-search .search-bar label {
  width: calc(100% - 26px);
}
header .top .block-search-top .form-search .search-bar label .search_input {
  line-height: 26px;
  padding: 0 10px;
}
header .top .block-search-top .form-search .search-bar .search_icon {
  height: 26px;
  width: 26px;
}
header .top .block-search-top .form-search .search-bar .search_icon .lx-search {
  height: 1rem;
  width: 1rem;
}

footer {
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  box-sizing: border-box;
}
footer figure {
  text-align: center;
  padding: 0.5rem;
}
footer figure img {
  margin: auto;
}
footer .caption {
  text-align: center;
  color: #fff;
  font-size: 0.8rem;
}
footer .links-footer {
  text-align: center;
}
footer .links-footer a {
  color: #ffffff;
  text-decoration: none;
  display: block;
}
footer .follow {
  text-align: center;
  color: #fff;
}
footer .follow a {
  text-decoration: none;
  margin: 1rem;
  color: white;
}

.home section.one {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 575px) {
  .home section.one {
    min-height: 400px;
  }
}
.home section.one .links-top-home {
  position: absolute;
  top: 2rem;
  right: 3rem;
}
@media (max-width: 575px) {
  .home section.one .links-top-home {
    width: 100%;
    right: 0;
    left: 0;
  }
}
.home section.one .links-top-home ul {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .home section.one .links-top-home ul {
    text-align: center;
  }
}
.home section.one .links-top-home ul li {
  display: inline;
  margin-right: 2rem;
}
@media (max-width: 575px) {
  .home section.one .links-top-home ul li {
    width: 100%;
    display: block;
    padding: 0.5rem 0;
    margin-right: 0;
  }
}
.home section.one .links-top-home ul li a {
  display: inline;
  color: white;
  font-size: 1.2rem;
  font-weight: normal;
  white-space: nowrap;
}
.home section.one .links-top-home ul li a:hover {
  color: #ea5b23;
}
@media (max-width: 575px) {
  .home section.one .links-top-home ul li a {
    font-size: 1rem;
  }
}
.home section.one .links-top-home ul li a img {
  max-height: 1.5rem;
  height: 100%;
  width: auto;
}
.home section.one .content-search-home {
  width: 100%;
}
.home section.one .content-search-home figure {
  margin-bottom: 2rem;
  width: inherit;
  text-align: center;
}
.home section.one .content-search-home figure img {
  max-width: 25rem;
  width: 100%;
  height: auto;
  margin: auto;
  padding: 3rem;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .home section.one .content-search-home figure img {
    max-width: 20rem;
  }
}
.home section.one .content-search-home .block-search {
  width: 100%;
}
.home section.one .content-search-home .block-search .form-search {
  margin: auto;
}
.home section.products-home {
  display: block;
  position: relative;
}
.home section.products-home .list-rest-home {
  width: 70%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: auto;
  margin-top: -5rem;
}
@media (max-width: 1199px) {
  .home section.products-home .list-rest-home {
    width: 100%;
  }
}
.home section.products-home .list-rest-home .item {
  border-bottom: 1px solid #b3b3b3;
  box-sizing: border-box;
  margin: 0.5rem;
  padding: 0.5rem;
}
.home section.products-home .list-rest-home .item > a {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.5rem;
  display: block;
  box-sizing: border-box;
}
.home section.products-home .list-rest-home .item > a .logo-restaurant {
  background-color: rgba(255, 255, 255, 0.8);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-color: white;
  height: 15rem;
  width: 15rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .home section.products-home .list-rest-home .item > a .logo-restaurant {
    height: 7rem;
    width: 7rem;
  }
}
.home section.products-home .list-rest-home .item .caption {
  padding: 0.5rem;
  width: 15rem;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .home section.products-home .list-rest-home .item .caption {
    width: 7rem;
    font-size: 0.8rem;
  }
}
.home section.products-home .list-rest-home .item .caption .title {
  font-weight: bold;
  color: #1a1a1a;
}
.home section.two {
  padding: 5rem 0;
}
.home section.two .steps-orders figure {
  margin-bottom: 1rem;
}
.home section.two .steps-orders figure img {
  width: auto;
  height: 7.3rem;
  margin: auto;
}
@media (max-width: 575px) {
  .home section.two .steps-orders figure img {
    height: 4.5em;
  }
}
.home section.two .steps-orders .caption {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 300;
}
@media (max-width: 575px) {
  .home section.two .steps-orders .caption {
    font-size: 1rem;
  }
}
.home section.two .top-restaurants {
  text-align: center;
}
.home section.two .top-restaurants .title-home {
  font-weight: bold;
}
@media (max-width: 575px) {
  .home section.two .top-restaurants .title-home {
    font-size: 1.5rem;
  }
}
.home section.two .top-restaurants p {
  font-size: 1.3rem;
  font-weight: 300;
}
@media (max-width: 575px) {
  .home section.two .top-restaurants p {
    font-size: 1rem;
  }
}
.home section.two .suscriber-button .icono-chef {
  text-align: right;
}
@media (max-width: 575px) {
  .home section.two .suscriber-button .icono-chef {
    text-align: center;
  }
}
.home section.two .suscriber-button .icono-chef figure img {
  max-width: 27rem;
  width: 100%;
  height: auto;
}
@media (max-width: 575px) {
  .home section.two .suscriber-button .icono-chef figure img {
    max-width: 15rem;
  }
}
.home section.two .suscriber-button .caption {
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.home section.two .suscriber-button .caption h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 575px) {
  .home section.two .suscriber-button .caption h2 {
    text-align: center;
    font-size: 1.5rem;
  }
}
.home section.two .suscriber-button .caption a {
  font-size: 1.6rem;
  max-width: 300px;
  width: 100%;
}
@media (max-width: 575px) {
  .home section.two .suscriber-button .caption a {
    margin: auto;
    font-size: 1.2rem;
  }
}

.search section.one {
  position: relative;
}
.search section.two {
  padding: 5rem 0;
}
.search section.two .card.block-categories-search {
  border: none;
}
.search section.two .card.block-categories-search .card-body {
  background-color: #F1F1F1;
  margin-bottom: 0.2rem;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.search section.two .card.block-categories-search .card-body .ranking-list {
  margin: 0;
}
.search section.two .card.block-categories-search .card-body .category-list {
  margin: 0;
}
.search section.two .item-list > div:nth-child(1) .item, .search section.two .item-list > div:nth-child(2) .item {
  border-top: 1px solid #b3b3b3;
}
.search section.two .item-list .item {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  border-bottom: 1px solid #b3b3b3;
}
.search section.two .item-list .item a .logo-restaurant {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 10rem;
  height: 10rem;
  margin: auto;
}
.search section.two .item-list .item .caption {
  padding-left: 1rem;
  text-align: center;
}
.search section.two .item-list .item .caption .title {
  font-weight: bold;
}
.search section.two .item-list .item .caption .type {
  color: #1a1a1a;
}
.search section.two .item-list .item .caption .type small {
  font-weight: bold;
}
.search section.two .item-list .item .caption .address {
  color: #b3b3b3;
}
.search section.two .item-list .item .caption .price {
  color: #b3b3b3;
}

.detail_item section.one {
  position: relative;
}
.detail_item section.one .banner {
  background-color: #1a1a1a;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 350px;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 575px) {
  .detail_item section.one .banner {
    min-height: 200px;
  }
}
.detail_item section.one .banner .information {
  max-width: 50rem;
  width: 100%;
  text-align: center;
  margin-bottom: 0.3rem;
}
.detail_item section.one .banner .information figure {
  padding: 1rem;
  box-sizing: border-box;
  margin: auto;
}
.detail_item section.one .banner .information figure img {
  max-height: 10rem;
}
@media (max-width: 575px) {
  .detail_item section.one .banner .information figure img {
    max-height: 7rem;
  }
}
.detail_item section.one .banner .information .caption {
  color: white;
  padding-bottom: 0;
}
.detail_item section.one .banner .information .caption .name {
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0;
}
@media (max-width: 575px) {
  .detail_item section.one .banner .information .caption .name {
    font-size: 1.3rem;
  }
}
.detail_item section.one .banner .information .caption .address {
  text-align: center;
}
.detail_item section.one .top-notice {
  margin: 5px;
}
.detail_item section.one .top-notice .description {
  margin-bottom: 0;
  text-align: center;
}
.detail_item section.two .search {
  padding-bottom: 1rem;
}
.detail_item section.two .search .form-search {
  margin: auto;
}
.detail_item section.two .search .form-search .search-bar {
  border: 1px solid #ea5b23;
}
.detail_item section.three {
  padding: 2rem 0;
  min-height: calc(100vh + 15rem);
}
@media (max-width: 1199px) {
  .detail_item section.three .sectionCategory.open {
    background-color: rgba(0, 0, 0, 0.7);
    bottom: 0;
    box-sizing: border-box;
    height: 100%;
    margin-bottom: 0 !important;
    position: fixed;
    padding: 0;
    min-width: 100vw;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 1199px) and (max-width: 1199px) {
  .detail_item section.three .sectionCategory.open .category-list {
    width: 90vw;
    height: 80vh;
  }
}
@media (max-width: 1199px) {
  .detail_item section.three .sectionCategory.open .category-list .card-header .title-card::after {
    content: "";
    background-image: url("/static/img/main/ic_close.bfb1f13e3484.svg");
  }
}
@media (max-width: 1199px) {
  .detail_item section.three .sectionCategory.open .category-list .card-body {
    overflow: auto;
    height: 100%;
    display: block;
  }
}
.detail_item section.three .sectionCategory .category-list {
  margin-bottom: 2rem;
}
.detail_item section.three .sectionCategory .category-list.sticky {
  position: fixed;
  top: 0;
  max-width: 190px;
  width: 100%;
  max-height: calc(100vh - 15rem);
  z-index: 9;
}
.detail_item section.three .sectionCategory .category-list .card-header {
  padding: 0;
}
.detail_item section.three .sectionCategory .category-list .card-header .title-card {
  font-size: 1rem;
  margin: 0;
  position: relative;
  padding: 0.75rem 1.25rem;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
}
@media (max-width: 1199px) {
  .detail_item section.three .sectionCategory .category-list .card-header .title-card {
    background: #ea5b23;
    color: white;
  }
  .detail_item section.three .sectionCategory .category-list .card-header .title-card::after {
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 1.25rem;
  }
}
.detail_item section.three .sectionCategory .category-list .card-body {
  height: 100%;
  overflow: auto;
}
.detail_item section.three .sectionCategory .category-list .card-body .button_item_type_list {
  margin: 0;
  padding: 0;
}
.detail_item section.three .sectionCategory .category-list .card-body .button_item_type_list li {
  list-style: none;
  position: relative;
}
.detail_item section.three .sectionCategory .category-list .card-body .button_item_type_list li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: transparent;
  border: solid #ea5b23;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  left: 0;
  top: 50%;
}
.detail_item section.three .sectionCategory .category-list .card-body .button_item_type_list li.active a {
  color: #ea5b23;
}
.detail_item section.three .sectionCategory .category-list .card-body .button_item_type_list li.active::before {
  border: solid #ea5b23;
}
.detail_item section.three .sectionCategory .category-list .card-body .button_item_type_list li a {
  padding-left: 1rem;
}
.detail_item section.three .sectionCategory .category-list .card-body .nav.list-categories > li > a {
  font-weight: bold;
  position: relative;
}
.detail_item section.three .sectionCategory .category-list .card-body .nav.list-categories > li > a::before {
  content: "";
  height: 5px;
  width: 5px;
  background-color: #ea5b23;
  position: absolute;
  left: -10px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.detail_item section.three .sectionCategory .category-list .card-body .nav li {
  display: block;
  width: 100%;
}
.detail_item section.three .sectionCategory .category-list .card-body .nav > li > a {
  position: relative;
  color: #1a1a1a;
  padding: 6px 10px 6px 0px;
  font-size: 13px;
  display: block;
}
.detail_item section.three .sectionCategory .category-list .card-body .nav.children > li > a {
  padding-left: 15px;
  display: block;
}
.detail_item section.three .sectionCategory .category-list .card-body .children .nav.children > li > a {
  padding-left: 30px;
  display: block;
  font-weight: normal;
}
.detail_item section.three .sectionCategory .category-list .card-body .children .children .nav.children > li > a {
  padding-left: 45px;
  display: block;
  font-weight: normal;
}
.detail_item section.three .sectionCategory .category-list .card-body .nav > li > a:hover, .detail_item section.three .sectionCategory .category-list .card-body .nav > li > a:focus {
  color: #ea5b23;
}
.detail_item section.three .sectionCategory .category-list .card-body .nav > li > a.active {
  color: #ea5b23;
  font-weight: bold;
}
.detail_item section.three .sectionCategory .category-list .card-body .nav > li > a.active::before {
  content: " ";
  display: block;
  position: absolute;
  width: 4px;
  height: 100%;
  left: 1px;
  top: 0;
  background-color: transparent;
}
.detail_item section.three .item-list .make-me-sticky {
  position: sticky;
  background-color: white;
  top: 0;
  z-index: 9;
  padding: 0.5rem;
  margin-bottom: 2px;
  text-transform: uppercase;
  font-weight: bold;
  color: #ea5b23;
}
.detail_item section.three .item-list .make-me-sticky::after {
  content: "";
  background-image: url("/static/img/main/ic_menu.d8c8ef0c08e8.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 1.25rem;
}
.detail_item section.three .item-list .item {
  margin-bottom: 2rem;
}
.detail_item section.three .item-list .item figure .image-item {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 6rem;
  cursor: pointer;
  border: 1px solid #b3137f;
}
.detail_item section.three .item-list .item figure .image-item.default {
  background-image: url("/static/img/main/logo_sga.ae4504c25254.svg");
  background-size: 5rem;
  background-color: #F1F1F1;
}
.detail_item section.three .item-list .item .caption {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 2rem - 12rem + 1rem);
}
.detail_item section.three .item-list .item .caption .name {
  font-weight: bold;
  color: #1a1a1a;
  font-size: 1rem;
  cursor: pointer;
}
.detail_item section.three .item-list .item .caption .description {
  color: #1a1a1a;
  font-size: 0.9rem;
  font-weight: 100;
}
.detail_item section.three .item-list .item .caption .price {
  font-weight: bold;
  color: #ea5b23;
  display: flex;
  justify-content: space-between;
}
.detail_item section.three .item-list .item .caption .price del {
  font-weight: 300;
  color: #b3b3b3;
}
.detail_item section.three .item-list .item .caption .price .button-plus {
  background-color: #ea5b23;
  padding: 0px 10px 3px 10px;
  border-radius: 0;
  border: 0;
  color: white;
}
.detail_item section.three .item-list .item .caption .price .button-plus:hover {
  background-color: #c24227;
}
.detail_item section.three .item-list .item .modal-detail-item .modal-content .modal-body .close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 5px 5px 10px;
  margin: 0;
  line-height: 0;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  background: white;
  opacity: 1;
}
.detail_item section.three .item-list .item .modal-detail-item .modal-content .modal-body .caption .name {
  font-weight: bold;
  color: #ea5b23;
}
.detail_item section.three .item-list .item .modal-detail-item .modal-content .modal-body .caption .price {
  font-weight: bold;
  color: #1a1a1a;
}
.detail_item section.three .item-list .item .modal-detail-item .modal-content .modal-body .description {
  font-weight: 100;
  color: #1a1a1a;
}
.detail_item #backToTop {
  background-image: url("/static/img/main/ic_back_top.6d591936cc39.svg");
  background-size: 5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: none;
  position: fixed;
  bottom: 4rem;
  right: 1rem;
  z-index: 9;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  padding: 1.3rem;
  border-radius: 10px;
  font-size: 18px;
}
@media (max-width: 575px) {
  .detail_item #backToTop {
    padding: 1.5rem;
  }
}

@media (max-width: 1199px) {
  .cart-section {
    position: fixed;
    bottom: 0;
    z-index: 99;
    height: auto;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    margin-bottom: 0 !important;
  }
  .cart-section.open {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cart-section.open .card.cart_items {
    width: 90vw;
    height: 80vh;
  }
  .cart-section.open .card.cart_items .card-header .title-card::after {
    background-image: url("/static/img/main/ic_close.bfb1f13e3484.svg");
  }
  .cart-section.open .card.cart_items .card-body {
    overflow: auto;
    display: block;
  }
  .cart-section.open .card.cart_items .card-footer {
    display: block;
  }
}
.cart-section .card.cart_items.sticky {
  position: fixed;
  top: 0;
  max-width: 300px;
  width: 100%;
  max-height: calc(100vh - 15rem);
  z-index: 9;
}
@media (max-width: 1199px) {
  .cart-section .card.cart_items .card-header {
    background: #ea5b23;
    color: white;
    padding: 0;
  }
}
.cart-section .card.cart_items .card-header .title-card {
  font-size: 1.2rem;
  margin: 0;
  padding: 0;
}
@media (max-width: 1199px) {
  .cart-section .card.cart_items .card-header .title-card {
    padding: 0.75rem 45px 0.75rem 45px;
  }
  .cart-section .card.cart_items .card-header .title-card::after {
    content: "";
    background-image: url("/static/img/main/ic_menu.d8c8ef0c08e8.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 15px;
  }
  .cart-section .card.cart_items .card-header .title-card::before {
    content: "";
    background-image: url("/static/img/main/ic_shopping-cart.6a034ed4bfff.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 10px;
  }
}
.cart-section .card.cart_items .card-body {
  height: 100%;
  overflow: auto;
}
@media (max-width: 1199px) {
  .cart-section .card.cart_items .card-body {
    display: none;
  }
}
.cart-section .card.cart_items .card-body .product-list {
  padding: 0;
}
.cart-section .card.cart_items .card-body .product-list li {
  list-style: none;
  padding: 0.5rem;
}
.cart-section .card.cart_items .card-body .product-list li .product-details .product-details-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-section .card.cart_items .card-body .product-list li .product-details .product-details-wrapper .name {
  font-size: 0.8rem;
}
.cart-section .card.cart_items .card-body .product-list li .product-details .product-details-wrapper .product-remove {
  background-color: transparent;
  padding: 0 8px 4px;
  line-height: 1;
  top: 0;
  right: 0;
  border: none;
  color: #b3b3b3;
}
.cart-section .card.cart_items .card-body .product-list li .product-details .product-details-wrapper .product-remove:hover {
  color: #ea5b23;
}
.cart-section .card.cart_items .card-body .product-list li .product-details .product-qty-wrapper {
  font-size: 14px;
  margin-top: 5px;
  line-height: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-section .card.cart_items .card-body .product-list li .product-details .product-qty-wrapper .price {
  font-size: 1rem;
  display: flex;
  flex-wrap: nowrap;
  font-weight: bold;
}
.cart-section .card.cart_items .card-body .product-list li .product-details .product-qty-wrapper .quantity {
  padding: 5px 0;
  box-sizing: border-box;
}
.cart-section .card.cart_items .card-body .product-list li .product-details .product-qty-wrapper .quantity button {
  background-color: transparent;
  border-radius: 0;
  border: 1px solid #b3b3b3;
  color: #1a1a1a;
  display: inline-table;
  font-size: 1rem;
  font-weight: bold;
  padding: 5px 10px 7px 10px;
  text-align: center;
  width: 2rem;
}
.cart-section .card.cart_items .card-body .product-list li .product-details .product-qty-wrapper .quantity button:hover {
  background-color: #ea5b23;
  color: white;
}
.cart-section .card.cart_items .card-body .cart-bottom .sales-cart-subtotal .order-subtotal {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  font-weight: bold;
  font-size: 1rem;
}
.cart-section .card.cart_items .card-body .cart-bottom .sales-cart-subtotal .order-subtotal .subtotal-order {
  color: #ea5b23;
}
.checkout .card .card-header {
  padding: 0.3rem 1.25rem;
}
.checkout .card .card-header h5 {
  margin: 0;
  font-size: 1rem;
}
.checkout .card .card-body h6 {
  font-size: 0.8rem;
  margin-top: 0.5rem;
}
.checkout form input, .checkout form select, .checkout form textarea, .checkout form label {
  font-size: 0.8rem;
  margin: 0.1rem 0;
  border-radius: 0;
}
.checkout form label::after, .checkout form label::before {
  top: 0.1rem;
}
.checkout form #map {
  height: 300px;
  width: 100%;
}

main.cart-summary .card.cart_items .card-header .title-card {
  font-size: 1.2rem;
  margin: 0;
  padding: 0;
}
main.cart-summary .card.cart_items .card-body {
  height: 100%;
  overflow: auto;
}
main.cart-summary .card.cart_items .card-body .product-list {
  padding: 0;
}
main.cart-summary .card.cart_items .card-body .product-list li {
  list-style: none;
  padding: 0.5rem;
}
main.cart-summary .card.cart_items .card-body .product-list li .product-details .product-details-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main.cart-summary .card.cart_items .card-body .product-list li .product-details .product-details-wrapper .name {
  font-size: 0.8rem;
}
main.cart-summary .card.cart_items .card-body .product-list li .product-details .product-details-wrapper .product-remove {
  background-color: transparent;
  padding: 0 8px 4px;
  line-height: 1;
  top: 0;
  right: 0;
  border: none;
  color: #b3b3b3;
}
main.cart-summary .card.cart_items .card-body .product-list li .product-details .product-details-wrapper .product-remove:hover {
  color: #ea5b23;
}
main.cart-summary .card.cart_items .card-body .product-list li .product-details .product-qty-wrapper {
  font-size: 14px;
  margin-top: 5px;
  line-height: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main.cart-summary .card.cart_items .card-body .product-list li .product-details .product-qty-wrapper .price {
  font-size: 1rem;
  display: flex;
  flex-wrap: nowrap;
  font-weight: bold;
}
main.cart-summary .card.cart_items .card-body .product-list li .product-details .product-qty-wrapper .quantity {
  padding: 5px 0;
  box-sizing: border-box;
  display: flex;
}
main.cart-summary .card.cart_items .card-body .product-list li .product-details .product-qty-wrapper .quantity button {
  background-color: transparent;
  border-radius: 0;
  border: 1px solid #b3b3b3;
  color: #1a1a1a;
  display: inline-table;
  font-size: 1rem;
  font-weight: bold;
  padding: 5px 10px 7px 10px;
  text-align: center;
  width: 2rem;
  margin-right: 0.2rem;
}
main.cart-summary .card.cart_items .card-body .product-list li .product-details .product-qty-wrapper .quantity button:hover {
  background-color: #ea5b23;
  color: white;
}
main.cart-summary .card.cart_items .card-body .cart-bottom .sales-cart-subtotal .order-subtotal {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  font-weight: bold;
  font-size: 1rem;
}
main.cart-summary .card.cart_items .card-body .cart-bottom .sales-cart-subtotal .order-subtotal .subtotal-order {
  color: #ea5b23;
}

/*# sourceMappingURL=lacarta.css.map */
