/*--------------------------------------------------------------
# Variables and mixins
--------------------------------------------------------------*/
/* Variables
--------------------------------------------- */
/**
 * Abstracts : Variables
 */
:root {
  --colorGrayLightest: #d0d0d0;
  --colorGrayLighter: #f4f4f4;
  --colorGrayLight: #efefef;
  --colorGrayText:#cccccc;
  --colorGrayDark: #272526;
  --colorGray: #7c7c7c;
  --colorDark: #161616;
  --colorDarker: #252525;
  --colorGreenDark: #636254;
  --colorError: #f63e3e;
  --colorWarning: #eb6464;
  --fontMain: "PT Sans", sans-serif;
  --fontSecondary: "Romic W01 Light1489700", serif;
}

/* Mixins
--------------------------------------------- */
/**
 * Abstracts : Mixins
 */
/* Extends
--------------------------------------------- */
/**
 * Abstracts : Extends
 */
::-moz-selection {
  color: var(--colorGrayLight);
  background-color: var(--colorDark);
}
::selection {
  color: var(--colorGrayLight);
  background-color: var(--colorDark);
}

body#reservations.gift-cards {
  /*--------------------------------------------------------------
  # Base
  --------------------------------------------------------------*/
  /* Typography
  --------------------------------------------- */
  /**
   * Typography : Typography
   */
  /**
   * Typography : Headings
   */
  /**
   * Typography : Copy
   */
  /*--------------------------------------------------------------
  # Components
  --------------------------------------------------------------*/
  /* Buttons
  --------------------------------------------- */
  /**
   * Components : Buttons
   */
  /* Modal
  --------------------------------------------- */
  /**
   * Components : Modal
   */
  /* Nav Tabs
  --------------------------------------------- */
  /**
   * Components : Nav Tabs
   */
  /* Cart Resume
  --------------------------------------------- */
  /**
   * Components : Cart Resume
   */
  /* Toggle Content
  --------------------------------------------- */
  /**
   * Components : Toggle Content
   */
  /* iFrame
  --------------------------------------------- */
  /**
   * Components : iframe
   */
  /* Intro
  --------------------------------------------- */
  /**
   * Components : Intro
   */
  /* Processing
  --------------------------------------------- */
  /**
   * Components : Processing
   */
  /* Ads
  --------------------------------------------- */
  /**
   * Components : Ads
   */
  /* Accessibility
  --------------------------------------------- */
  /**
   * Accessibility
   */
  /* Text meant only for screen readers. */
  /* Do not show the outline on the skip link target. */
  /* Pages
  --------------------------------------------- */
  /**
   * Pages : Gift Cards
   */
  /**
   * Pages : Gift Cards - Home
   */
  /**
   * Pages : Gift Cards - Orders
   */
  /**
   * Pages : Gift Cards - Summary
   */
  /**
   * Pages : Gift Cards - Address
   */
  /**
   * Pages : Gift Cards - Confirmation
   */
}
body#reservations.gift-cards .fw-100 {
  font-weight: 100 !important;
}
body#reservations.gift-cards .fw-200 {
  font-weight: 200 !important;
}
body#reservations.gift-cards .fw-300 {
  font-weight: 300 !important;
}
body#reservations.gift-cards .fw-400 {
  font-weight: 400 !important;
}
body#reservations.gift-cards .fw-500 {
  font-weight: 500 !important;
}
body#reservations.gift-cards .fw-600 {
  font-weight: 600 !important;
}
body#reservations.gift-cards .fw-700 {
  font-weight: 700 !important;
}
body#reservations.gift-cards .fw-800 {
  font-weight: 800 !important;
}
body#reservations.gift-cards .fw-900 {
  font-weight: 900 !important;
}
body#reservations.gift-cards .modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 11;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  opacity: 1;
  transition: all 0.3s ease;
}
body#reservations.gift-cards .modal.visible {
  opacity: 1;
  visibility: visible;
}
body#reservations.gift-cards .modal .modal-content {
  position: relative;
  z-index: 12;
  width: 800px;
  margin: 0 auto;
  padding: 50px;
  text-align: center;
  border-radius: 12px;
}
body#reservations.gift-cards .modal .modal-content img {
  width: 100%;
  height: auto;
}
body#reservations.gift-cards .modal .modal-content .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 55px;
  height: 55px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
body#reservations.gift-cards .modal .modal-content .btn-close:before, body#reservations.gift-cards .modal .modal-content .btn-close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 3px;
  background: var(--colorDark);
  transition: all 0.3s ease;
}
body#reservations.gift-cards .modal .modal-content .btn-close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
body#reservations.gift-cards .modal .modal-content .btn-close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
body#reservations.gift-cards .modal .modal-content .btn-close:focus:before, body#reservations.gift-cards .modal .modal-content .btn-close:focus:after, body#reservations.gift-cards .modal .modal-content .btn-close:hover:before, body#reservations.gift-cards .modal .modal-content .btn-close:hover:after, body#reservations.gift-cards .modal .modal-content .btn-close:active:before, body#reservations.gift-cards .modal .modal-content .btn-close:active:after {
  width: 35px;
}
body#reservations.gift-cards .modal#modal-preview img {
  max-width: 80vw;
  max-height: 90vh;
  width: unset;
}
body#reservations.gift-cards .nav-tabs {
  display: flex;
  max-width: 750px;
  margin: 20px -5px 0;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .nav-tabs {
    margin: 20px auto 0;
  }
}
body#reservations.gift-cards .nav-tabs li {
  flex: 0 0 50%;
  width: 50%;
  padding: 0 5px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .nav-tabs li {
    padding: 0 15px;
  }
}
body#reservations.gift-cards .nav-tabs li.active {
  color: #fff !important;
  background: var(--colorGrayDark) !important;
}
body#reservations.gift-cards .nav-tabs li.completed span {
  color: #efefef;
  background: #7c7c7c;
}
body#reservations.gift-cards .nav-tabs li.completed:focus span, body#reservations.gift-cards .nav-tabs li.completed:hover span, body#reservations.gift-cards .nav-tabs li.completed:active span {
  color: #efefef;
  background: #7c7c7c;
}
body#reservations.gift-cards .nav-tabs span, body#reservations.gift-cards .nav-tabs button {
  width: 100%;
  padding: 20px 10px;
  text-align: center;
  font-size: 17px;
  letter-spacing: 0.05em;
  color: var(--colorGray);
  font-family: var(--fontSecondary);
  background: var(--colorGrayLightest);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .nav-tabs span, body#reservations.gift-cards .nav-tabs button {
    padding: 20px;
  }
}
body#reservations.gift-cards .nav-tabs span.active, body#reservations.gift-cards .nav-tabs button.active {
  color: #fff !important;
  background: var(--colorGrayDark) !important;
}
body#reservations.gift-cards .nav-tabs span:focus, body#reservations.gift-cards .nav-tabs span:hover, body#reservations.gift-cards .nav-tabs span:active, body#reservations.gift-cards .nav-tabs button:focus, body#reservations.gift-cards .nav-tabs button:hover, body#reservations.gift-cards .nav-tabs button:active {
  color: #fff;
  background: var(--colorDark);
}
body#reservations.gift-cards .tab-content {
  width: 100%;
}
body#reservations.gift-cards .tab-content + .wrapper_btn {
  margin-top: 0 !important;
}
body#reservations.gift-cards .sub-tab-menu {
  background: var(--colorGrayLightest);
  position: relative;
  z-index: 8;
}
body#reservations.gift-cards .sub-tab-menu ul {
  display: none;
  padding-top: 0;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  body#reservations.gift-cards .sub-tab-menu ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--colorGrayLightest);
  }
}
@media (min-width: 768px) {
  body#reservations.gift-cards .sub-tab-menu ul {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
  }
}
body#reservations.gift-cards .sub-tab-menu li {
  margin: 0 auto;
}
body#reservations.gift-cards .sub-tab-menu li a {
  display: block;
  padding: 15px 10px;
  color: var(--colorDark);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .sub-tab-menu li a {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
body#reservations.gift-cards .sub-tab-menu li a:focus-visible, body#reservations.gift-cards .sub-tab-menu li a:hover, body#reservations.gift-cards .sub-tab-menu li a:active, body#reservations.gift-cards .sub-tab-menu li a.active {
  background: var(--colorDark);
  color: var(--colorGrayLightest);
}
@media (min-width: 768px) and (max-width: 935px) {
  body#reservations.gift-cards .sub-tab-menu li.separator {
    display: none;
  }
}
@media (max-width: 767px) {
  body#reservations.gift-cards .sub-tab-menu li.separator {
    width: 80%;
    height: 1px;
    background: var(--colorDarker);
  }
  body#reservations.gift-cards .sub-tab-menu li.separator a {
    display: none;
  }
}
body#reservations.gift-cards .sub-tab-menu li.separator a {
  pointer-events: none;
}
body#reservations.gift-cards .sub-tab-menu button {
  display: block;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
  padding: 25px 10px;
  color: var(--colorGray);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1rem;
  font-weight: 700;
  font-family: var(--fontMain);
  background-color: var(--colorGrayLightest);
}
@media (min-width: 768px) {
  body#reservations.gift-cards .sub-tab-menu button {
    display: none;
  }
}
body#reservations.gift-cards .sub-tab-menu button:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 45px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: url("/images/LS_arrow_down_b.svg") no-repeat center center;
  background-size: 15px auto;
}
body#reservations.gift-cards .sub-tab-menu.filtersOpen ul {
  display: block;
}
body#reservations.gift-cards .sub-tab-menu.filtersOpen button:before {
  transform: translateY(-50%) rotate(180deg);
}
body#reservations.gift-cards .cart_resume__header {
  padding-top: 50px !important;
}
body#reservations.gift-cards .cart_resume__content {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
body#reservations.gift-cards .cart_resume__content .mobile-title {
  margin-bottom: 5px !important;
  font-size: 10px !important;
}
body#reservations.gift-cards .cart_resume__sub_total {
  margin-top: 40px;
}
body#reservations.gift-cards .cart_resume__sub_total .group {
  display: flex;
  align-items: center;
}
body#reservations.gift-cards .cart_resume__sub_total .group .price {
  margin-top: 0 !important;
  margin-left: auto;
}
body#reservations.gift-cards .cart_resume__total .group {
  display: flex;
  align-items: center;
}
body#reservations.gift-cards .cart_resume__total .group .price {
  margin-top: 0 !important;
  margin-left: auto;
}
body#reservations.gift-cards .cart_resume .group {
  flex-wrap: wrap;
  line-height: 1.4;
}
body#reservations.gift-cards .cart_resume .group span.item {
  display: block;
  flex: 0 0 100%;
  color: var(--colorGray);
}
body#reservations.gift-cards .cart_resume .group span.description {
  width: 100% !important;
  font-size: 12px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: #7C7C7C !important;
  line-height: 1.2 !important;
}
body#reservations.gift-cards .cart_resume .mobile-flex {
  display: flex;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .cart_resume .mobile-flex {
    width: 40%;
  }
}
body#reservations.gift-cards .cart_resume .mobile-flex .price,
body#reservations.gift-cards .cart_resume .mobile-flex .quantity {
  width: 50% !important;
}
@media (max-width: 767px) {
  body#reservations.gift-cards .cart_resume .mobile-flex .price {
    padding-left: 2rem;
  }
}
@media (min-width: 992px) {
  body#reservations.gift-cards .cart_resume .quantity {
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  body#reservations.gift-cards .cart_resume .price {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }
}
body#reservations.gift-cards .toggle-btn {
  position: relative;
  width: 50px;
  flex: 0 0 30px;
  height: 30px;
  padding: 0;
}
body#reservations.gift-cards .toggle-btn .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  height: 10px;
  width: 10px;
  padding: 0;
  transform: translate(-50%, calc(-50% - 2px));
  transition: all 0.3s ease;
}
body#reservations.gift-cards .toggle-btn .arrow::after {
  content: "";
  border: solid var(--colorDark);
  border-width: 0 1px 1px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: rotate(45deg);
  display: block;
}
body#reservations.gift-cards .toggle-btn:hover .arrow::after, body#reservations.gift-cards .toggle-btn:active .arrow::after {
  border-color: var(--colorGray);
}
body#reservations.gift-cards .toggle-btn.active .arrow {
  transform: translate(-50%, calc(-50% + 3px)) rotateX(180deg);
}
body#reservations.gift-cards .toggle-content {
  width: 100%;
  height: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
body#reservations.gift-cards .toggle-content.visible {
  height: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 0 20px;
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .toggle-content.visible {
    margin-top: 50px;
    padding: 0 15% 0 29%;
  }
}
@media (min-width: 1024px) {
  body#reservations.gift-cards section.intro {
    height: 50vh;
    min-height: 500px;
  }
}
body#reservations.gift-cards .processing {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
}
body#reservations.gift-cards .processing .wrapper {
  width: 100%;
  max-width: 800px;
  margin: auto auto 150px;
  padding: 20px;
  text-align: center;
  background: var(--colorGrayLight);
}
@media (min-width: 768px) {
  body#reservations.gift-cards .processing .wrapper {
    padding: 50px;
  }
}
@media (min-width: 992px) {
  body#reservations.gift-cards .processing .wrapper {
    padding: 100px;
  }
}
body#reservations.gift-cards .processing .wrapper svg {
  width: 75px;
  height: auto;
}
body#reservations.gift-cards .processing .wrapper svg path {
  fill: var(--colorGray);
}
body#reservations.gift-cards .processing .wrapper .loading {
  width: 40px;
  height: auto;
}
body#reservations.gift-cards .processing .wrapper p {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 300;
  color: var(--colorGray);
  line-height: 1.2;
  letter-spacing: 0.1rem;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .processing .wrapper p {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  body#reservations.gift-cards .processing .wrapper p {
    font-size: 25px;
  }
}
body#reservations.gift-cards .ads {
  position: relative;
  background-color: #272525;
}
body#reservations.gift-cards .ads .content {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .ads .content {
    display: flex;
  }
}
body#reservations.gift-cards .ads .img {
  display: none;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .ads .img {
    display: block;
    width: 30%;
  }
}
body#reservations.gift-cards .ads .img img {
  max-width: 100%;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body#reservations.gift-cards .ads .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 20px;
  text-align: center;
  background: url("/images/ads-bg.png") no-repeat left center;
  background-size: auto 100%;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .ads .text {
    width: 70%;
    padding: 20px;
  }
}
@media (min-width: 1024px) {
  body#reservations.gift-cards .ads .text {
    padding: 40px;
  }
}
body#reservations.gift-cards .ads .text h2 {
  margin-bottom: 10px;
  color: var(--colorGrayLightest);
  font-size: 18px;
  font-family: var(--fontSecondary);
  letter-spacing: 0.05rem;
}
body#reservations.gift-cards .ads .text p {
  color: var(--colorGray);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05rem;
}
body#reservations.gift-cards .ads .close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  padding: 0;
  background: none;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .ads .close {
    top: 20px;
    right: 20px;
  }
}
body#reservations.gift-cards .ads .close:before, body#reservations.gift-cards .ads .close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 1px;
  background: #EBEBEB;
  transition: all 0.3s ease;
}
body#reservations.gift-cards .ads .close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
body#reservations.gift-cards .ads .close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
body#reservations.gift-cards .ads .close:focus:before, body#reservations.gift-cards .ads .close:focus:after, body#reservations.gift-cards .ads .close:hover:before, body#reservations.gift-cards .ads .close:hover:after, body#reservations.gift-cards .ads .close:active:before, body#reservations.gift-cards .ads .close:active:after {
  width: 35px;
  height: 2px;
  background: #fff;
}
body#reservations.gift-cards .screen-reader-text, body#reservations.gift-cards .form_group .radio_wrapper input[type=radio],
body#reservations.gift-cards .form_group .radio_wrapper input[type=checkbox],
body#reservations.gift-cards .form_group .checkbox_wrapper input[type=radio],
body#reservations.gift-cards .form_group .checkbox_wrapper input[type=checkbox] {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
body#reservations.gift-cards #primary[tabindex="-1"]:focus {
  outline: 0;
}
body#reservations.gift-cards main {
  position: static;
  overflow: visible !important;
}
body#reservations.gift-cards .print-only {
  display: none;
}
body#reservations.gift-cards section.detail {
  padding-top: 55px;
}
@media (min-width: 768px) {
  body#reservations.gift-cards section.detail {
    padding-top: 183px;
  }
}
@media (min-width: 1024px) {
  body#reservations.gift-cards section.detail {
    padding-top: 107px;
  }
}
body#reservations.gift-cards .reservations_steps_nav {
  width: calc(100% + 40px);
  margin-left: -20px;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .reservations_steps_nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 55px;
    z-index: 5;
    background: var(--colorGrayDark);
    transition: all 0ms ease;
  }
  body#reservations.gift-cards .reservations_steps_nav ul {
    background: #ededed;
  }
  body#reservations.gift-cards .reservations_steps_nav ul li {
    flex-grow: 4;
  }
  body#reservations.gift-cards .reservations_steps_nav ul li.active a {
    color: var(--colorGrayDark);
  }
  body#reservations.gift-cards .reservations_steps_nav ul li.completed a {
    color: var(--colorGrayLight);
    background: var(--colorGray);
  }
  body#reservations.gift-cards .reservations_steps_nav ul li.completed a:active, body#reservations.gift-cards .reservations_steps_nav ul li.completed a:focus, body#reservations.gift-cards .reservations_steps_nav ul li.completed a:hover {
    background: var(--colorGrayDark);
  }
}
body#reservations.gift-cards .cta .added-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease;
}
body#reservations.gift-cards .cta .idle-text {
  transition: all 0.3s ease;
}
body#reservations.gift-cards .cta.added .added-text {
  opacity: 2;
}
body#reservations.gift-cards .cta.added .idle-text {
  opacity: 0;
}
body#reservations.gift-cards .spacer {
  padding-bottom: 50px;
}
@media (min-width: 992px) {
  body#reservations.gift-cards .spacer {
    margin-bottom: 75px;
  }
}
@media (min-width: 1024px) {
  body#reservations.gift-cards .spacer {
    margin-bottom: 400px;
  }
}
body#reservations.gift-cards .inner:before {
  display: none !important;
}
body#reservations.gift-cards .lowercase {
  text-transform: lowercase;
}
body#reservations.gift-cards span.price {
  letter-spacing: 0.25em;
}
body#reservations.gift-cards .btn_white {
  color: var(--colorDark);
  background: #fff;
}
body#reservations.gift-cards .line {
  display: block;
  position: relative;
  width: 100%;
  height: 30px;
  margin: 20px 0;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .line {
    margin-top: 35px;
    margin-bottom: 35px;
  }
}
body#reservations.gift-cards .line:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  display: block;
  width: 1px;
  background: var(--colorGrayDark);
}
body#reservations.gift-cards .section-price-banner {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 200px;
}
body#reservations.gift-cards .section-price-banner,
body#reservations.gift-cards .section-price-banner * {
  box-sizing: border-box;
}
@media (max-width: 768px) {
  body#reservations.gift-cards .section-price-banner {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (min-width: 992px) {
  body#reservations.gift-cards .section-price-banner {
    min-height: 380px;
  }
}
body#reservations.gift-cards .section-price-banner .title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  body#reservations.gift-cards .section-price-banner .title {
    left: 20px;
    right: 20px;
  }
}
@media (min-width: 992px) {
  body#reservations.gift-cards .section-price-banner .title {
    font-size: 48px;
  }
  body#reservations.gift-cards .section-price-banner .title .pre {
    font-size: 0.75em;
  }
}
body#reservations.gift-cards .section-price-banner:before {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
}
body#reservations.gift-cards .section-price-banner .title {
  z-index: 2;
  margin-bottom: 0 !important;
  color: #fff;
}
body#reservations.gift-cards section .title {
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
body#reservations.gift-cards section .title .pre {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 300;
}
body#reservations.gift-cards section .title .text {
  color: var(--colorDark);
}
body#reservations.gift-cards .instruction {
  display: block;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.25;
  width: 800px;
  max-width: 100%;
}
@media (min-width: 992px) {
  body#reservations.gift-cards .instruction {
    font-size: 18px;
  }
}
body#reservations.gift-cards .warning {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.4;
  color: #EF6568;
}
body#reservations.gift-cards .warning a {
  color: #EF6568;
}
body#reservations.gift-cards .detail .wrapper_btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 75px;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .detail .wrapper_btn {
    margin-top: 60px;
    margin-bottom: 120px;
  }
}
body#reservations.gift-cards .detail .wrapper_btn a,
body#reservations.gift-cards .detail .wrapper_btn button {
  display: block;
  width: auto;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  padding-left: 40px;
  padding-right: 40px;
  color: #fff;
  background-color: #272526;
  margin-top: 30px;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .detail .wrapper_btn a,
  body#reservations.gift-cards .detail .wrapper_btn button {
    margin-top: 0;
    padding-left: 55px;
    padding-right: 55px;
  }
}
body#reservations.gift-cards .detail .wrapper_btn a:focus, body#reservations.gift-cards .detail .wrapper_btn a:hover, body#reservations.gift-cards .detail .wrapper_btn a:active,
body#reservations.gift-cards .detail .wrapper_btn button:focus,
body#reservations.gift-cards .detail .wrapper_btn button:hover,
body#reservations.gift-cards .detail .wrapper_btn button:active {
  background-color: #272526;
}
body#reservations.gift-cards .detail .wrapper_btn a:disabled,
body#reservations.gift-cards .detail .wrapper_btn button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .detail .wrapper_btn a + a,
  body#reservations.gift-cards .detail .wrapper_btn a + button,
  body#reservations.gift-cards .detail .wrapper_btn button + a,
  body#reservations.gift-cards .detail .wrapper_btn button + button {
    margin-left: 30px;
  }
}
body#reservations.gift-cards .detail .wrapper_btn a {
  cursor: pointer;
  display: inline-block;
  font-family: Romic W01 Light1489700, serif;
  font-size: 15px;
  padding: 20px 52px;
  text-decoration: none;
}
body#reservations.gift-cards .detail .wrapper_btn span {
  padding-left: 0;
  padding-right: 36px;
  background: url(../images/LS_arrow_right_w.svg) 100% no-repeat;
}
body#reservations.gift-cards .detail .wrapper_btn .btn-go-to-cart {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 52px;
}
body#reservations.gift-cards .detail .wrapper_btn .btn-go-to-cart span {
  background: none;
  padding-right: 0;
}
body#reservations.gift-cards .detail .wrapper_btn .btn-go-to-cart .icon {
  margin-left: 20px;
}
body#reservations.gift-cards .detail .status-error {
  color: #EF6568;
  padding-left: 20px;
}
body#reservations.gift-cards .detail div.status-error {
  width: 100%;
  flex: 0 0 100%;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.15em;
}
body#reservations.gift-cards .fields_payment {
  /*
  .checkbox_wrapper {
      @include breakpoint(mobile) {
          width: 100%;
          flex: 0 0 100%;
      }
  }
  */
}
body#reservations.gift-cards .fields_payment input, body#reservations.gift-cards .fields_payment select {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  background-color: var(--colorGrayLight) !important;
  border-bottom: 0 !important;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .fields_payment div.status-error {
    padding-left: calc(50% + 15px);
    text-align: center;
  }
}
@media (max-width: 768px) {
  body#reservations.gift-cards .fields_payment label, body#reservations.gift-cards .fields_payment input, body#reservations.gift-cards .fields_payment select {
    width: 50%;
  }
}
body#reservations.gift-cards form .form_group.cc_dates_group {
  justify-content: flex-start;
}
body#reservations.gift-cards form .form_group.cc_dates_group .payment-cc-dates {
  flex-shrink: 0;
}
body#reservations.gift-cards form .form_group.cc_dates_group .payment-cc-date-fields {
  display: flex;
}
body#reservations.gift-cards form .form_group.cc_dates_group .payment-cc-date-fields input:first-child {
  margin-right: 10px;
}
body#reservations.gift-cards form .form_group.cc_dates_group .payment-cc-date-fields .payment-cc-month {
  width: 50px !important;
  text-align: center;
}
body#reservations.gift-cards form .form_group.cc_dates_group .payment-cc-date-fields .payment-cc-year {
  width: 70px !important;
  text-align: center;
}
body#reservations.gift-cards form .form_group.cc_dates_group .payment-cc-date-fields [data-lastpass-icon-root=true] {
  display: none;
}
body#reservations.gift-cards .form_group .payment-conditions-label {
  width: 100% !important;
}
body#reservations.gift-cards .conditions_group {
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .conditions_group div.status-error {
    padding: 0;
    text-align: center;
  }
}
body#reservations.gift-cards .gift_cards_header {
  margin-bottom: 35px;
}
@media (min-width: 480px) {
  body#reservations.gift-cards .gift_cards_header {
    margin-bottom: 50px;
  }
}
body#reservations.gift-cards .gift_cards_header h1 {
  margin-bottom: 35px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .gift_cards_header h1 {
    font-size: 24px;
    letter-spacing: 0.3em;
  }
}
body#reservations.gift-cards .gift_cards_header p {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.2;
  color: #7c7c7c;
}
body#reservations.gift-cards .gift_cards_header p.warning {
  max-width: 90%;
  letter-spacing: 0.25rem;
}
body#reservations.gift-cards .form_group {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .form_group {
    display: flex;
  }
}
body#reservations.gift-cards .form_group * {
  align-self: center;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .form_group.flex-end {
    justify-content: flex-end !important;
  }
}
@media (max-width: 767px) {
  body#reservations.gift-cards .form_group label,
  body#reservations.gift-cards .form_group .label,
  body#reservations.gift-cards .form_group input:not([type=number]),
  body#reservations.gift-cards .form_group select {
    width: 100%;
    text-align: left;
  }
}
body#reservations.gift-cards .form_group label,
body#reservations.gift-cards .form_group .label {
  font-size: 16px !important;
  text-transform: uppercase;
  font-style: normal !important;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .form_group label,
  body#reservations.gift-cards .form_group .label {
    width: 50%;
    flex: 0 0 50%;
    padding-right: 15px;
    text-align: right;
    margin: 0 !important;
  }
}
@media (min-width: 768px) {
  body#reservations.gift-cards .form_group label,
  body#reservations.gift-cards .form_group .label {
    width: 50%;
    flex: 0 0 50%;
    padding-right: 15px;
    text-align: right;
    margin: 0 !important;
  }
}
body#reservations.gift-cards .form_group label.product-name,
body#reservations.gift-cards .form_group .label.product-name {
  font-size: 16px !important;
}
@media (min-width: 992px) {
  body#reservations.gift-cards .form_group label.product-name,
  body#reservations.gift-cards .form_group .label.product-name {
    font-size: 25px !important;
  }
}
body#reservations.gift-cards .form_group .price {
  font-size: 14px;
}
@media (max-width: 768px) {
  body#reservations.gift-cards .form_group .price {
    width: 15%;
  }
}
@media (min-width: 768px) {
  body#reservations.gift-cards .form_group .price {
    min-width: 90px;
    text-align: right;
    font-size: 25px;
  }
}
body#reservations.gift-cards .form_group .toggle-btn {
  margin-left: 0;
  margin-right: 0;
}
body#reservations.gift-cards .form_group .radio_wrapper,
body#reservations.gift-cards .form_group .checkbox_wrapper {
  position: relative;
  text-align: left;
}
body#reservations.gift-cards .form_group .radio_wrapper input[type=radio]:checked + label:after,
body#reservations.gift-cards .form_group .radio_wrapper input[type=checkbox]:checked + label:after,
body#reservations.gift-cards .form_group .checkbox_wrapper input[type=radio]:checked + label:after,
body#reservations.gift-cards .form_group .checkbox_wrapper input[type=checkbox]:checked + label:after {
  opacity: 1;
}
body#reservations.gift-cards .form_group .radio_wrapper label,
body#reservations.gift-cards .form_group .checkbox_wrapper label {
  position: relative;
  padding-left: 30px !important;
  text-align: left;
  cursor: pointer;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .form_group .radio_wrapper label,
  body#reservations.gift-cards .form_group .checkbox_wrapper label {
    padding-left: 50px !important;
  }
}
body#reservations.gift-cards .form_group .radio_wrapper label:before, body#reservations.gift-cards .form_group .radio_wrapper label:after,
body#reservations.gift-cards .form_group .checkbox_wrapper label:before,
body#reservations.gift-cards .form_group .checkbox_wrapper label:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
}
body#reservations.gift-cards .form_group .radio_wrapper label:before,
body#reservations.gift-cards .form_group .checkbox_wrapper label:before {
  box-sizing: border-box;
  width: 17px;
  height: 17px;
  border: 1px solid var(--colorDark);
}
body#reservations.gift-cards .form_group .radio_wrapper label:after,
body#reservations.gift-cards .form_group .checkbox_wrapper label:after {
  top: 8px;
  left: 4px;
  width: 8px;
  height: 8px;
  background-color: var(--colorDark);
  opacity: 0;
  transition: all 0.3s ease;
}
body#reservations.gift-cards .form_group .radio_wrapper {
  max-width: calc(100% - 120px);
  display: flex;
}
body#reservations.gift-cards .form_group .radio_wrapper label {
  max-width: 80%;
  display: inline-block;
  flex-grow: 1;
}
body#reservations.gift-cards .form_group .radio_wrapper label:before, body#reservations.gift-cards .form_group .radio_wrapper label:after {
  border-radius: 100%;
}
body#reservations.gift-cards .form_group .actions_group {
  display: flex;
  justify-content: flex-end;
  width: 135px;
}
@media (max-width: 768px) {
  body#reservations.gift-cards .form_group .actions_group {
    width: 90px;
  }
}
body#reservations.gift-cards .form_group .actions_group .toggle-btn {
  order: 1;
  margin: 0 auto;
}
body#reservations.gift-cards .form_group .actions_group .counter {
  order: 2;
  width: 80px;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .form_group .actions_group .counter {
    width: 120px;
  }
}
body#reservations.gift-cards .form_group .actions_group .counter::-moz-placeholder {
  color: var(--colorGrayText);
}
body#reservations.gift-cards .form_group .actions_group .counter::placeholder {
  color: var(--colorGrayText);
}
body#reservations.gift-cards .form_group .actions_group .counter input {
  font-family: var(--fontMain);
}
@media (max-width: 768px) {
  body#reservations.gift-cards .form_group .actions_group .counter input {
    width: 35px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  body#reservations.gift-cards .form_group .actions_group .counter button {
    width: 20px;
    height: 20px;
  }
}
body#reservations.gift-cards .cc-fields .form_group {
  flex-wrap: wrap;
}
body#reservations.gift-cards input[type=number] {
  font-family: var(--fontMain);
}
body#reservations.gift-cards .custom-price {
  box-sizing: border-box;
  width: 100%;
  max-width: 75px;
  padding: 10px !important;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.2em;
  border: 0;
  line-height: 1;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  background-color: var(--colorGrayLight) !important;
  border-bottom: 0 !important;
}
body#reservations.gift-cards .custom-price::-moz-placeholder {
  color: var(--colorGrayText);
}
body#reservations.gift-cards .custom-price::placeholder {
  color: var(--colorGrayText);
}
@media (min-width: 768px) {
  body#reservations.gift-cards .custom-price {
    max-width: 150px;
    margin-left: 15%;
    font-size: 20px;
  }
}
body#reservations.gift-cards .spacing-bottom-large {
  margin-bottom: 25px !important;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .spacing-bottom-large {
    margin-bottom: 50px !important;
  }
}
body#reservations.gift-cards .cart_modify p {
  text-transform: none !important;
  font-weight: 400;
  font-size: 14px !important;
}
body#reservations.gift-cards .newsletter_btn {
  display: inherit;
  margin: 35px auto;
  background-color: #efefef;
  transition: all 0.3s ease;
}
body#reservations.gift-cards .newsletter_btn:focus, body#reservations.gift-cards .newsletter_btn:hover, body#reservations.gift-cards .newsletter_btn:active {
  color: #fff;
  background-color: var(--colorDark);
}
body#reservations.gift-cards .date-field {
  width: 25% !important;
}
body#reservations.gift-cards label.status-error,
body#reservations.gift-cards legend.status-error {
  color: var(--colorDark) !important;
}
body#reservations.gift-cards .pla-consent-module {
  --pla-consent-colour-title-bg: var(--colorDarker);
  --pla-consent-colour-btn-bg-agree: var(--colorDarker);
  --pla-consent-colour-btn-bg-refuse: var(--colorDarker);
  text-align: left;
}
body#reservations.gift-cards .pla-consent-module .pla-consent-title {
  font-weight: 700;
  text-align: left;
}
body#reservations.gift-cards .pla-consent-module .pla-consent-content {
  text-align: left;
  line-height: 1.5;
}
body#reservations.gift-cards .pla-consent-module .pla-consent-btn {
  font-family: var(--fontMain);
}
body#reservations.gift-cards .grey-box {
  margin-bottom: 30px;
  padding: 30px 30px 0;
  text-align: center;
  background: var(--colorGrayLight);
}
@media (min-width: 768px) {
  body#reservations.gift-cards .grey-box {
    padding: 50px 20% 10px;
  }
}
@media (min-width: 1024px) {
  body#reservations.gift-cards .grey-box {
    padding: 70px 30% 20px;
  }
}
body#reservations.gift-cards .grey-box h2 {
  margin-bottom: 25px;
  font-size: 30px;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--colorGrayDark);
}
@media (min-width: 768px) {
  body#reservations.gift-cards .grey-box h2 {
    margin-bottom: 40px;
  }
}
body#reservations.gift-cards .grey-box p {
  margin: 15px 0;
}
body#reservations.gift-cards .grey-box .wrapper_btn {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  transform: translateY(50%);
}
@media (min-width: 768px) {
  body#reservations.gift-cards .grey-box .wrapper_btn {
    top: 10px;
  }
}
@media (min-width: 1024px) {
  body#reservations.gift-cards .grey-box .wrapper_btn {
    top: 20px;
  }
}
body#reservations.gift-cards main section.bottom div.inner nav.submenu.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
body#reservations.gift-cards .order {
  margin: 0 !important;
}
body#reservations.gift-cards .order .inner {
  width: 1600px;
  max-width: calc(100vw - 40px);
}
@media (min-width: 768px) {
  body#reservations.gift-cards .order .form_group {
    padding-right: 15%;
  }
}
@media (min-width: 992px) {
  body#reservations.gift-cards .order .form_group {
    padding-right: 30%;
  }
}
@media (min-width: 1024px) {
  body#reservations.gift-cards .order .form_group {
    padding-right: 20%;
  }
}
body#reservations.gift-cards .order .products-group {
  margin-top: 25px;
  margin-bottom: 25px;
}
body#reservations.gift-cards .order .products-group .product-name {
  flex-grow: 1;
}
@media (max-width: 768px) {
  body#reservations.gift-cards .order .products-group .form_group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  body#reservations.gift-cards .order .products-group .form_group label {
    width: 100%;
    flex-grow: 0;
  }
}
@media (min-width: 768px) {
  body#reservations.gift-cards .order .products-group {
    margin-top: 35px;
    margin-bottom: 25px;
  }
}
@media (min-width: 1024px) {
  body#reservations.gift-cards .order .products-group {
    margin-top: 55px;
    margin-bottom: 45px;
  }
}
body#reservations.gift-cards .order .products-group .wrapper_btn {
  margin-bottom: 0;
}
body#reservations.gift-cards .credits_policy {
  text-align: center;
}
body#reservations.gift-cards .credits_policy p {
  margin: 0 0 15px;
  color: var(--colorGray);
  font-size: 12px;
  letter-spacing: 0.1em;
}
body#reservations.gift-cards .credits_policy .credits_cards {
  display: flex;
  justify-content: center;
  align-items: center;
}
body#reservations.gift-cards .credits_policy .credits_cards img {
  max-width: 45px;
  margin: 0 18px;
}
body#reservations.gift-cards .credits_policy a {
  color: var(--colorGray);
  font-style: italic !important;
}
body#reservations.gift-cards .shipping_selection .fieldset_head,
body#reservations.gift-cards .shipping_selection .form_group {
  display: flex;
  justify-content: space-between !important;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
body#reservations.gift-cards .shipping_selection .form_group {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}
body#reservations.gift-cards .shipping_selection .fieldset_head {
  margin-bottom: 35px;
  text-transform: uppercase;
  font-size: 14px;
}
@media (max-width: 768px) {
  body#reservations.gift-cards .shipping_selection .radio_wrapper,
  body#reservations.gift-cards .shipping_selection .checkbox_wrapper {
    display: flex;
    flex: 1;
  }
}
@media (max-width: 768px) {
  body#reservations.gift-cards .shipping_selection .form_group {
    margin-bottom: 25px !important;
  }
}
body#reservations.gift-cards .shipping_selection .form_group .shipping_price {
  font-size: 25px;
  letter-spacing: 0.2em;
  min-width: 100px;
}
body#reservations.gift-cards .shipping_selection .form_group label {
  font-size: 16px !important;
}
body#reservations.gift-cards .shipping_selection .form_group button {
  padding: 5px 0;
  display: inline;
  text-transform: uppercase;
  font-family: PT Sans, sans-serif;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .shipping_selection .form_group button {
    padding: 0 10px;
  }
}
body#reservations.gift-cards .shipping_selection .form_group button span {
  padding: 0;
  text-decoration: underline;
}
body#reservations.gift-cards .shipping_selection .fieldset_head {
  color: var(--colorGray);
  letter-spacing: 0.2em;
}
body#reservations.gift-cards .shipping_selection .value-0 {
  color: var(--colorGrayLightest);
}
body#reservations.gift-cards .shipping_selection .shipping_note {
  margin-top: 50px;
  color: var(--colorGray);
  font-style: italic;
  letter-spacing: 0.05em;
}
body#reservations.gift-cards .shipping_selection .shipping_note p {
  margin-bottom: 25px;
  font-size: 13px;
}
body#reservations.gift-cards .shipping_selection .shipping_note p:last-child {
  margin-bottom: 0;
}
body#reservations.gift-cards .shipping_selection .shipping_note button {
  padding: 5px 0;
  display: inline;
  font-family: PT Sans, sans-serif;
  font-style: italic;
  font-size: 13px;
  color: var(--colorGray);
  text-decoration: underline;
}
body#reservations.gift-cards .shipping_selection .shipping_note button:focus, body#reservations.gift-cards .shipping_selection .shipping_note button:hover, body#reservations.gift-cards .shipping_selection .shipping_note button:active {
  color: var(--colorDark);
}
@media (min-width: 768px) {
  body#reservations.gift-cards .shipping_name_group:last-child {
    margin-bottom: 20px;
  }
}
body#reservations.gift-cards .shipping_name_group .form_group {
  display: flex;
}
@media (max-width: 768px) {
  body#reservations.gift-cards .shipping_name_group .form_group {
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  body#reservations.gift-cards .shipping_name_group .form_group {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  body#reservations.gift-cards .shipping_name_group .form_group + .form_group {
    margin-top: 50px;
  }
}
@media (min-width: 768px) {
  body#reservations.gift-cards .shipping_name_group label,
  body#reservations.gift-cards .shipping_name_group input,
  body#reservations.gift-cards .shipping_name_group textarea,
  body#reservations.gift-cards .shipping_name_group span {
    width: 25%;
    flex: 0 0 25%;
  }
}
body#reservations.gift-cards .shipping_name_group label {
  text-transform: none;
  font-style: italic !important;
}
@media (max-width: 768px) {
  body#reservations.gift-cards .shipping_name_group label {
    width: 60%;
  }
}
@media (min-width: 768px) {
  body#reservations.gift-cards .shipping_name_group label {
    padding-right: 15px;
    text-align: right;
  }
}
body#reservations.gift-cards .shipping_name_group span {
  letter-spacing: 0.15em;
  font-size: 14px;
  color: var(--colorGray);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  body#reservations.gift-cards .shipping_name_group span {
    order: 2;
    width: 40%;
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  body#reservations.gift-cards .shipping_name_group span {
    padding-left: 45px;
    text-align: left;
  }
}
body#reservations.gift-cards .shipping_name_group legend {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 0 !important;
  padding: 15px;
  text-align: center;
  font-weight: 400 !important;
  font-size: 14px !important;
  background: var(--colorGrayLight);
}
@media (max-width: 768px) {
  body#reservations.gift-cards .shipping_name_group input,
  body#reservations.gift-cards .shipping_name_group textarea {
    order: 3;
    width: 100%;
  }
}
body#reservations.gift-cards .shipping_name_group textarea {
  width: 100%;
  resize: vertical;
  padding: 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  border: 1px solid #7c7c7c;
}
body#reservations.gift-cards .shipping_name_group .label-top {
  align-items: flex-start;
}
body#reservations.gift-cards .shipping_name_group .label-top label {
  align-self: flex-start;
}
body#reservations.gift-cards #payment_form label {
  font-style: italic !important;
}
body#reservations.gift-cards .conditions_group label {
  font-size: 13px !important;
  font-style: italic !important;
}
body#reservations.gift-cards input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #efefef inset !important;
}
body#reservations.gift-cards select:-internal-autofill-selected {
  background-color: #efefef !important;
}
body#reservations.gift-cards .cart_resume__additionnal_infos p {
  max-width: 70% !important;
  margin: 0 0 25px !important;
  text-align: left;
  color: var(--colorGray) !important;
}
body#reservations.gift-cards .cart_confirmation {
  margin-bottom: 25px;
  background: url("/images/logo-gift-card-confirmation.svg") no-repeat center center;
  background-size: auto 80%;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .cart_confirmation {
    margin-bottom: 35px;
  }
}
body#reservations.gift-cards .cart_confirmation__content {
  margin-bottom: 25px;
}
body#reservations.gift-cards .cart_confirmation__content p {
  font-size: 15px !important;
  font-weight: 400 !important;
  letter-spacing: 0.15em;
  color: var(--colorGray);
}
@media (min-width: 768px) {
  body#reservations.gift-cards .cart_confirmation__content p {
    display: flex;
  }
}
body#reservations.gift-cards .cart_confirmation__content .label {
  font-style: italic;
}
@media (min-width: 768px) {
  body#reservations.gift-cards .cart_confirmation__content .label {
    width: 45%;
    flex: 0 0 45%;
    text-align: right;
  }
}
@media (min-width: 768px) {
  body#reservations.gift-cards .cart_confirmation__content .value {
    width: 55%;
    flex: 0 0 55%;
    padding-left: 15px;
    text-align: left;
  }
}
body#reservations.gift-cards .cart_resume__content .counter .minus {
  background: #fff !important;
}
@media (min-width: 1024px) {
  body#reservations.gift-cards main header nav {
    max-width: 80%;
  }
  body#reservations.gift-cards main header nav div.wrap {
    background: transparent;
  }
  body#reservations.gift-cards main header nav div.wrap div.title {
    flex-grow: 0;
    width: 250px;
  }
}

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