/* Theme Start */
.test-test {
  display: none;
  position: fixed;
  top: 0;
}

@font-face {
  font-family: 'Public Sans';
  src: url('../fonts/PublicSans-VariableFont_wght.woff2') format('woff2-variations');
  font-weight: 100 900; /* Defines the supported weight range */
  font-style: normal;
}

.modal-inactivity {
  background-color: rgba(0, 0, 0, 0.5);
}
.modal.show.modal-inactivity {
  z-index: 1060;
}

.modal-dialog {
  max-width: 70%;
}

  .modal-dialog.allergen-nutrition {
    max-width: 90%;
  }

:root {
  --primary-color: #c8102e;
  --secondary-color: #000000;
  --tertiary-color: #FFFFFF;
  --surface-color: #FFFFFF;
  --background-1-color: #F5F5F5;
  --background-2-color: #F5F5F5;
  --error-color: #BB1D1D;
  --success-color: #648144;
  --warning-color: #f2e828;
  --disabled-color: #d4d4d4;
  --on-primary-color: #FFFFFF;
  --on-secondary-color: #FFFFFF;
  --on-secondary-variant-color: #000000;
  --on-tertiary-color: #000000;
  --on-tertiary-variant-color: #D21033;
  --on-surface-color: #000000;
  --on-surface-variant-color: #D21033;
  --on-background-color: #292C2E;
  --on-background-variant-color: #085687;
  --on-error-color: #FFFFFF;
  --on-success-color: #FFFFFF;
  --text-1-color: #000000;
  --text-2-color: #505050;
  --text-3-color: #FFFFFF;
  --main-font: 'Public Sans', Helvetica, Arial, sans-serif;
  --secondary-font: 'Public Sans', Helvetica, Arial, sans-serif;
  --shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.2) !important;
  --shadow-inverted: -5px -5px 10px 0 rgba(0, 0, 0, 0.2) !important;
  --ripple: rgba(210, 16, 51, 0.3);
  --product-image-width: 0;
  --border-radius: 12px;
  --border-radius-large: 25px;
  --btn-border-radius: 6px;
  --arrow-size: 6px;
  --placeholder-color: #505050;
  --dashed: 1px dashed rgba(0, 0, 0, 0.4);
  --solid: 1px solid #DEDEDE;
  --max-width: 100%;
  --tertiary-color-rgb: 255, 255, 255;
  --min-width: 810px;
  --footer-height: 248px;
  --corporate-grey: #757678;
  --border-color: #C8CACB;
  --corner-width: 27;
  --corner-width-sm: 20;
  --cubic-bounce: cubic-bezier(.34,1.35,.57,.94);
  --a11y-bg-color: #002F6C;
  --a11y-icon-color: #FFFFFF;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(10%);
  }

  50% {
    transform: translateY(0%);
  }

  75% {
    transform: translateY(25%);
  }

  100% {
    transform: translateY(0%);
  }
}

@keyframes popLeftToRight {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes popRightToLeft {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes popTopToBottom {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes popBottomToTop {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}  

@keyframes fadeInDelayed {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInSlideUpDelayed {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  25% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInSlideUpDelayedLarge {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  50% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  0% {
    transform: perspective(1000px) rotateY(0deg);
  }
  100% {
    transform: perspective(1000px) rotateY(360deg);
  }
}

@keyframes activateBounce {
  0% {
    transform: scale(0.9);
  }

  25% {
    transform: scale(1.04);
  }

  50% {
    transform: scale(0.98);
  }

  75% {
    transform: scale(1.01);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes popCheckbox {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

/* Stacked headings */
.js-heading-stack {
  opacity: 0;
}
.js-heading-stack.js-heading-stack-ready {
  opacity: 1;
}
/* enf of Stacked headings */

/* Page corners */
.corners {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  top: 0;
  left: 0;
}

.corner {
  position: absolute;
  width: calc(var(--corner-width) * 1px);
  height: calc(var(--corner-width) * 1px);
  background: black;
  z-index: 0;
  pointer-events: none;
}
.corner:after {
  content: "";
  position: absolute;
  width: calc(var(--corner-width) * 1px);
  height: calc(var(--corner-width) * 1px);
  background: black;
  z-index: 0;
  pointer-events: none;
  left: 100%;
  top: 100%;
}
.corner-3 {
  transform: rotate(180deg);
}

.corner-3:before {
  content: "";
  position: absolute;
  width: calc(var(--corner-width) * 1px);
  height: calc(var(--corner-width) * 1px);
  background: black;
  z-index: 0;
  pointer-events: none;
  left: 100%;
  bottom: 100%;
}

.corner-top-left {
  top: 0;
  left: 0;
}
.corner-top-right {
  top: 0;
  right: calc(var(--corner-width) * 1px);
}
.corner-bottom-left {
  bottom: calc(var(--corner-width) * 1px);
  left: calc(var(--corner-width) * 1px);
}
.corner-bottom-right {
  bottom: calc(var(--corner-width) * 1px);
  right: 0;
}
/* end of Page corners */

/* global button overrides */
button:focus {
  outline: 0;
}

.btn {
  font-weight: 900 !important;
  width: auto;
}

.btn-primary, .btn.btn-primary, 
.btn.btn-outline-secondary, .btn-outline-secondary, 
.btn.btn-outline-primary, .btn-outline-primary, 
.btn-secondary, .btn.btn-secondary, 
.btn.btn-outline-primary, .btn-outline-primary, 
.btn-outline-dark, .btn.outline-dark {
  border-width: 2px !important;
  border-radius: var(--btn-border-radius) !important;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-primary:hover {
  border-color: var(--primary-color) !important;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
  color: var(--text-3-color) !important;
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(1px);
}

.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle {
  color: var(--tertiary-color) !important;
  border-color: var(--surface-color);
  background: var(--surface-color) !important;
  transform: translateY(1px);
}


.btn.btn-outline-secondary, .btn-outline-secondary {
  color: var(--tertiary-color) !important;
  border-color: var(--tertiary-color);
}

.btn-outline-secondary:not(:disabled):not(.disabled).active, .btn-outline-secondary:not(:disabled):not(.disabled):active, .show>.btn-outline-secondary.dropdown-toggle {
  color: var(--tertiary-color) !important;
  background: none;
  border-color: var(--tertiary-color);
  transform: translateY(1px);
}

.btn.btn-outline-primary, .btn-outline-primary {
  color: var(--primary-color) !important;
  border-color: var(--primary-color);
}

.btn-outline-primary:not(:disabled):not(.disabled).active, 
.btn-outline-primary:not(:disabled):not(.disabled):active, 
.show>.btn-outline-primary.dropdown-toggle {
  color: var(--primary-color) !important;
  background: none;
  border-color: var(--primary-color);
  transform: translateY(1px);
  box-shadow: none;
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-primary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn.btn-outline-dark, .btn-outline-dark {
  color: var(--text-1-color) !important;
  border-color: var(--text-1-color);
  background: none !important;
}

.btn-outline-dark:not(:disabled):not(.disabled).active, 
.btn-outline-dark:not(:disabled):not(.disabled):active, 
.show>.btn-outline-dark.dropdown-toggle {
  color: var(--text-1-color) !important;
  background: none !important;
  border-color: var(--text-1-color);
  transform: translateY(1px);
  box-shadow: none;
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus, .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-dark.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-outline-secondary:hover, 
.btn-outline-secondary:focus, 
.btn-outline-dark:hover, 
.btn-outline-dark:focus,
.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: none;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-block {
  width: 100%;
}

.input-group-btn {
  display: flex;
  align-items: center;
}

.input-barcode {
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
}

/* end of global button overrides */


/* Overrides */
.admin-header-links {
  position: fixed;
  top: 0;
  left:50%;
  transform: translateX(-50%);
  z-index: 9999;
}

html {
  overscroll-behavior-x: none;
}

body {
  font-family: var(--secondary-font);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900 !important;
  text-transform: uppercase;
  font-family: var(--main-font) !important;
  color: var(--text-1-color) !important;
}

b, strong {
  font-weight: 700 !important;
}

.lead {
  line-height: 1.4;
  font-weight: 400;
}

.container {
  max-width: 1040px !important;
}

.h-auto {
  height: auto !important;
}

.text-lead {
  font-size: 24px;
}

.html-home-page .master-wrapper-content {
  min-width: var(--min-width);
}

.inner-banner {
  display: none;
}

.header-logo svg {
  width: 100%;
  max-width: 130px;
}

.head_wraps {
  width: 20px;
  height: 20px;
  position: relative;
}

  .head_wraps span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--primary-color);
    left: 0;
    transform: rotate(0deg);
    transition: .15s ease-in-out;
  }

    .head_wraps span:first-child {
      top: 0;
    }

    .head_wraps span:nth-child(2) {
      top: 8px;
    }

    .head_wraps span:nth-child(3) {
      top: 16px;
    }

.closebtn .head_wraps span:first-child {
  top: 8px;
  width: 0;
  left: 50%;
}

.closebtn .head_wraps span:nth-child(2) {
  top: 8px;
  transform: rotate(45deg);
}

.closebtn .head_wraps span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}


.checkmark {
  border-color: var(--text-1-color);
}

span.checkmark {
  border-radius: 3px;
  background: transparent;
}

.form-check input:checked ~ .checkmark:after, .checkmark-checked:after {
  border: solid var(--on-primary-color);
  border-width: 0px 2px 2px 0;
  left: 5px;
  top: -1px;
  width: 6px;
  height: 14px;
}

input:checked ~ .checkmark, .checkmark-checked {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.attribute-description, .attribute-description p {
  margin-bottom: 0;
}

.checkout-page-form .form-check-label .checkmark {
  border-color: var(--text-1-color);
}

.checkout-page-form .form-check-label input:checked ~ .checkmark {
  border-color: var(--primary-color);
  background-color: var(--on-tertiary-variant-color);
}

.form-check .form-check-label {
  font-family: var(--secondary-font);
}

.modal-content {
  border: none !important;
  background: transparent !important;
}

.modal .modal-content {
  background: var(--surface-color) !important;
  border-radius: var(--border-radius-large);
}

.address-list-page .modal .modal-content {
  background: transparent !important;
}

#ClearAll .modal-content {
  background: transparent !important;
}

.store-selection-page .master-wrapper-content, .home-page .master-wrapper-content {
  max-width: 100% !important;
}

.home-page .master-wrapper-content {
  background: var(--primary-color);
}

.home-page .lets_started {
  margin: 0 auto;
  background: none;
  width: 100%;
  max-width: var(--max-width);
  font: var(--secondary-font);
  padding: 60px 30px 60px 0;
}

.lets_started {
  min-height: calc(100vh - 146px);
}

.home-page .search_wrap {
  min-width: 400px;
}

#bag-image {
  padding-right: 32px;
  margin-left: -90px;
  height: auto;
}

.home-page .lets_started .search_wrap .search_title {
  text-transform: uppercase;
  font-size: 40px;
  line-height: 48px;
  color: var(--text-3-color) !important;
  margin-bottom: 30px;
  text-align: left;
}


.home-page .find_btn {
  background: var(--background-2-color);
  color: var(--primary-color);
  border-radius: 8px;
}

.home-page #btnfind {
  background: var(--background-2-color);
  color: var(--text-2-color);
  border-radius: 8px;
}


.home-page #dvselectpostcode:not(.error) input:not(:placeholder-shown) + #btnfind {
  background: var(--tertiary-color);
  color: var(--primary-color);
}

.home-page input#txtfindpostcode {
  width: 100%;
  text-align: center;
  margin-bottom: 14px;
  border-radius: 4px;
  font-size: 16px;
  padding: 12px;
  outline: none;
}

  .home-page input#txtfindpostcode:focus {
    outline: 2px solid var(--text-1-color);
  }

.home-page #btnusemylocation {
  margin-top: 20px;
}

#btnusemylocation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
}

#targetMyLocation {
  margin-left: 10px;
  height: 20px;
}

.home-page .btn-outline, .home-page .btn-outline:hover {
  color: var(--on-primary-color);
  background: var(--primary-color);
  border: var(--on-primary-color) solid 2px;
}

.error_note {
  color: var(--text-3-color);
  font-family: var(--secondary-font);
  font-size: 10px;
  margin-top: 5px;
}

.btn-back {
  position: relative;
}

.link {
  position: relative;
}

.back-to-locations a, .back_manu, .back-to-menu a, .back_manu a:hover, .back_manu:hover, .back-to-menu a:hover, .back_manu .btn {
  color: var(--secondary-color);
  font-family: var(--main-font);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

  .back-to-locations::before, .back-to-menu::before, .back_manu::before {
    border-right: var(--arrow-size) solid var(--secondary-color);
    margin-right: 10px;
  }

.checkout-page .back-to-menu {
  margin: 15px;
}

.btn, .btn-outline {
  border-radius: 0;
  font-family: var(--main-font);
  background: transparent;
  color: var(--text-1-color);
}

  .btn.select {
    color: var(--text-3-color);
  }


.btn-outline {
  color: var(--text-1-color);
}

.btn.disabled, .btn-outline.disabled {
  background: var(--disabled-color) !important;
  color: var(--text-2-color);
  opacity: 1;
  border-color: var(--disabled-color);
}

.btn-primary.disabled:active, .btn-primary.disabled:focus, .btn-primary.disabled:hover, .btn-primary.disabled, .btn-primary:disabled {
  background: var(--disabled-color) !important;
  color: var(--text-2-color);
  border-color: var(--disabled-color) !important;
}

.btn-lg {
  font-size: 24px;
}

.btn-sm {
  font-size: 13px;
  padding: 8px 10px;
}

.btn-checkout, .btn-product {
  min-width: 330px;
}

button.btn.btn-minus.btn-number,
button.btn.btn-plus.btn-number,
button.btn-qty-ui,
button.btn-qty-ui:focus,
button.btn-qty-ui:hover,
button.btn.btn-minus.btn-number:focus,
button.btn.btn-plus.btn-number:focus,
button.btn.btn-qty-ui,
button.btn.btn-qty-ui:focus {
  color: var(--text-1-color);
  height: 48px;
  width: 48px;
  background: transparent;
}

button.btn.btn-minus:disabled,
button.btn.btn-plus:disabled {
  opacity: 0.2;
}

.totalcount input[type="text"] {
  color: var(--text-1-color);
  font-family: var(--main-font);
  font-weight: 900;
  height: 32px;
}

.form-group select {
  background: unset;
  color: var(--text-1-color);
}

.map_locations .left_locations .location_title {
  text-transform: uppercase;
  font-size: 32px;
  line-height: 40px;
  text-align: left;
}

.map_locations .left_locations .btn.js-nxg-ac-btn {
  background: var(--on-tertiary-color);
  font-size: 14px;
  font-family: var(--secondary-font);
  margin-top: 0;
  border: 0;
  padding: 12px 32px;
  border-radius: 0 4px 4px 0;
}

.map_locations .left_locations .location_subtitle {
  text-transform: none;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  font-family: var(--secondary-font);
  font-weight: 900;
  margin-bottom: 8px;
}

.left_locations .find-form-group {
  display: flex;
  margin: 15px 0;
}

.left_locations #btnfind {
  margin-top: 0;
}

.search_box {
  border-radius: var(--border-radius-large);
  max-width: 580px;
}

.search_box-extended {
  max-width: unset;
}

.search_box.not_found .main_title {
  text-transform: uppercase;
}

.kiosk-categories {
  margin: 0 auto;
  max-width: 1070px;
  width: 100%;
}

.navbar {
  padding: 0;
}

.navbar-nav {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: no-wrap;
}

.navbar-nav .nav-item {
  padding: 0 5px;
  border-right: 1px solid var(--border-color);
  width: 100%;
}
.navbar-nav .nav-item:last-child {
  border-right: none;
  padding-right: 0;
}
.navbar-nav .nav-item:first-child {
  padding-left: 0;
}

.navbar-nav .nav-item .picture {
  display: block;
  width: 100%;
  height: 130px;
  position: relative;
  padding-bottom: 1px;
  border-bottom: 1px solid var(--border-color);
}
.background-picture {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}
.btn-category {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.btn-category:hover, .btn-category:focus {
  background: none;
}
.btn-category .category-title {
  background: none;
  color: var(--corporate-grey);
  font-size: 14px;
  border-radius: 6px;
  padding: 12px 5px;
  margin-top: 2px;
}

.btn-category.select .category-title {
  color: var(--surface-color);
  background: var(--primary-color);
  animation: activateBounce 0.3s;
}


.header-links {
  display: none;
  align-items: center;
  margin-bottom: 0;
}

  .header-links a {
    color: var(--secondary-color) !important;
    font-family: var(--secondary-font);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: .05em;
    padding: 12px 12px;
  }

    .header-links a:hover {
      color: var(--primary-color);
    }

    .header-links a.order-btn {
      background-color: var(--primary-color);
      border-radius: calc(var(--border-radius)/3*2);
      color: var(--text-3-color) !important;
    }

  .header-links li {
    margin: 0;
    text-align: left;
  }

@media (min-width: 992px) {
  .header-links {
    display: flex;
  }
}

@media (min-width: 1200px) {
  .header-links a {
    padding: 12px 14px;
  }
}

.overlay {
  display: flex !important;
  align-items: center;
  transition: left .3s;
  background: var(--background-1-color);
  top: 0 !important;
  left: -100%;
}

.master-wrapper-page {
  padding-top: 0px;
}

  .master-wrapper-page.open .overlay {
    transition: left .3s;
    left: 0;
  }

  .master-wrapper-page.active .overlay {
    top: 40px;
  }

.overlay a.closebtn {
  top: 25px;
  width: 20px;
  right: 16px !important;
}

.overlay-content {
  top: 0;
}

#myNav .overlay-content ul li a {
  color: var(--text-1-color);
  text-transform: uppercase;
  line-height: 60px;
  height: 60px;
  padding: 0 20px;
  font-size: 20px;
}

#myNav .overlay-content ul li .order-btn {
  background-color: var(--primary-color);
  border-radius: calc(var(--border-radius)/3*2);
  color: var(--text-3-color) !important;
  margin-top: 20px;
}

.accordion {
  interpolate-size: allow-keywords;
  overflow: hidden;
  transition: height 0.2s;
  height: auto;
}

.accordion.accordion-closed {
  height: 0;
}


/* Inbound */
.form-group.select::before {
  border-top: var(--arrow-size) solid var(--text-1-color);
}

.order-type-notes {
  padding-left: 4.9em;
  text-indent: -4.9em;
}

.map_locations .left_locations {
  max-width: 400px;
  scroll-behavior: smooth;
}

  .map_locations .left_locations h3 {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 20px;
  }

  .map_locations .left_locations .location_text a {
    font-family: var(--secondary-font);
    font-size: 12px;
    line-height: 20px;
    font-weight: 900;
  }

  .map_locations .left_locations .btn {
    font-family: var(--main-font);
    font-size: 14px;
    color: var(--text-3-color);
  }

  .map_locations .left_locations .btn-outline {
    color: var(--text-1-color);
  }

.map_locations .btn-outline {
  border: var(--text-1-color) solid 2px;
  color: var(--text-3-color);
}

.map_locations .left_locations .location_count {
  background: url(/Themes/FiveGuysKiosk/Content/images/location-icon.svg) no-repeat;
  width: 24px;
  height: 32px;
  font-size: 16px;
}

.lets_started .search_wrap .search_title {
  font-size: 32px;
  line-height: 40px;
}

.note {
  font-size: 10px;
  line-height: 12px;
}

.map_locations .left_locations .btn-outline {
  position: relative;
}

.marketplace-btn img {
  max-height: 30px;
  height: initial;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}


/* Checkout */

.checkout-row-1 {
  font-family: var(--main-font);
  font-weight: 900;
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  overflow: hidden;
  white-space: normal;
  background-color: var(--surface-color);
  background: var(--secondary-color);
  box-shadow: none;
  padding: 0;
  color: var(--text-3-color);
  min-height: 85px;
}

/* End of checkout*/
/* Menu */
.right-section-bg {
  top: 80px;
}

.right-section-bg {
  border-radius: 0;
}

.cat-listing-slider .owl-carousel .owl-stage-outer {
  height: 48px;
}

.cat-listing-slider .item {
  padding: 10px 3px;
}

.cat-listing-slider button.owl-prev span, .cat-listing-slider button.owl-next span {
  margin-top: 16px;
  border-right: 3px solid var(--secondary-color);
  border-bottom: 3px solid var(--secondary-color);
}

.cat-listing-slider .item a {
  font-family: var(--secondary-font) !important;
  padding: 6px 10px;
  font-weight: 900;
  color: var(--primary-color);
  text-transform: none;
  font-size: 16px;
}

  .cat-listing-slider .item a.select {
    background-color: var(--primary-color);
    border-radius: calc(var(--border-radius)/3);
    color: var(--text-3-color);
  }

.cat-listing-slider a.select:after {
  display: none;
}

.listing-description, .started_content p {
  color: var(--text-2-color);
  font-family: var(--secondary-font);
  font-weight: 400;
}

  .listing-description .warning {
    margin-top: 5px;
    margin-bottom: 0;
  }

.change {
  align-self: center;
}

.right-box-body {
  max-height: 50vh;
}

  .right-box-body .pro-title-price {
    font-weight: 700;
    font-size: 16px;
  }

button.btn.btn-minus.btn-number-nxg,
button.btn.btn-plus.btn-number-nxg,
button.btn.btn-minus.btn-number-nxg:focus,
button.btn.btn-plus.btn-number-nxg:focus,
.qty-plus-minus .form-control.input-number {
  color: var(--text-1-color) !important;
}

.warning {
  display: flex;
  background: var(--warning-color);
  font-size: 14px;
  line-height: 1.2;
  padding: 14px;
  text-align: left !important;
  align-items: center;
}

  .warning:before {
    content: "";
    background: url(/Themes/FiveGuysKiosk/Content/images/warning.svg) no-repeat;
    width: 30px;
    flex-shrink: 0;
    background-size: 20px;
    height: 20px;
  }

  .warning div {
    float: none;
    line-height: 1.5em;
    font-size: 1.2em;
  }

  .warning a {
    display: inline-block;
  }

    .warning a:hover {
      color: var(--text-1-color);
    }

.content .warning {
  float: none;
}

.order-allergies-notes, .group-order-before-info {
  display: flex;
  font-size: 14px;
  line-height: 20px;
  padding: 10px 0;
  border-top: var(--dashed);
  color: var(--text-2-color);
  font-family: var(--secondary-font);
}

  .order-allergies-notes:before, .group-order-before-info:before {
    content: "";
    background: url(/Themes/FiveGuysKiosk/Content/images/info.svg) no-repeat;
    width: 32px;
    flex-shrink: 0;
  }


.modal-title {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 15px;
}

/* .modal-nutrition-and-allergens .modal-title {
  font-size: 24px;
  line-height: 1.4;
  padding-top: 0;
  font-weight: 900;
} */

.content div span {
  color: var(--text-2-color);
  opacity: 0.6;
  font-size: 16px;
  line-height: 24px;
}

.tab button.active span {
  border-bottom: 4px solid var(--primary-color);
  color: var(--text-1-color);
  opacity: 1;
  font-weight: 900;
}

.nutrition-subtitle th {
  font-family: var(--secondary-font);
  font-weight: 700;
}

.allergens-and-nutrition-subtitle {
  border: none;
}

.allergen {
  color: var(--text-2-color);
  font-size: 16px;
  font-family: var(--secondary-font);
}

.main-title img {
  display: none;
}

.remove-items-popup .search_wrap .search_box.not_found .main_title {
  text-transform: uppercase;
  color: var(--text-1-color);
  font-size: 24px;
  line-height: 28px;
  padding: 0 !important;
}

.modal .modal-content.remove-items-popup {
  border: none;
  background: transparent !important;
  text-align: center;
}

.remove-items-popup .subtitle {
  font-size: 16px;
  font-family: var(--secondary-font);
  line-height: 24px;
  margin-bottom: 15px;
}

#CancelGroupOrdering .location_icon + .close, #RemoveGuestFromOrdering .location_icon + .close {
  margin-top: -50px;
}

.listing-page .order-summary {
  display: none;
}

.listing-page .collection-header {
  border: none;
  padding: 0 0 10px 0;
}

.sub-container {
  max-width: calc(var(--max-width) / 12 * 7);
  margin: 0 auto;
  background: #fff;
  padding: 1px 30px;
  box-shadow: var(--shadow);
}

  .sub-container .content {
    margin-top: 25px;
  }

.html-product-details-page .main_container {
  min-height: calc(100vh - 499px);
}

.account-page {
  min-height: calc(100vh - 494px);
}

.html-product-details-page .backmanu {
  margin: -15px 0 15px 0;
}

.pro-content {
  padding: 0;
}

  .pro-content.full-width-pro-content {
    width: 100%;
  }

.mgs-button {
  margin-top: 0;
  float: right;
  position: relative;
  padding-left: 25px;
  padding-right: 25px;
  transition: opacity 0.1s;

  .checkmark {
    content: "";
    position: absolute;
    left: 15px;
    top: 10px;
    width: 6px;
    height: 12px;
    border: solid var(--primary-color);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.1s;
  }
}

.mgs-button.is-active {
  padding-left: 30px;
  padding-right: 20px;
  .checkmark {
    opacity: 1;
  }
}


.product-list-container {
  margin: 0 auto;
  max-width: 1040px;
  padding-bottom: 200px;
}

.product-list {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.product-list-content {
  margin-top: 40px;
}
  
.product-list-content .main-title {
  font-size: 52px;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.product-list-content .product-list {
  margin: 20px 0 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-list-content .product-list .items-box {
  width: 100%;
  height: auto;
  margin: 0;
}

.items-box a, .items-box a:hover, .product-list-content .product-list .items-box a:hover, .product-list-content .product-list .items-box a:focus {
  background-color: var(--surface-color);
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: none !important;
}

.items-box a:focus, .items-box a:active {
  border-radius: var(--border-radius-large);
  border: 1px solid var(--border-color);
  box-shadow: 2px 0px 5px 0 rgba(0,0,0,0.2) !important;
  transform: scale(0.99) translateY(2px);
}

.items-box.select a {
  box-shadow: var(--shadow) !important;
  border-color: var(--text-1-color);
}
.items-box.select a, .items-box.select a:hover, .product-list-content .product-list .items-box.select a:hover, .product-list-content .product-list .items-box.select a:focus {
  background-color: var(--surface-color);
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow), 0 0 0 2px var(--primary-color) !important;
  border-color: var(--primary-color);
  transition: none !important;
}

.product-list-content .product-list .items-box .picture {
  height: 216px;
  width: 100%;
  margin: 0;
  border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
  float: none;
  animation: fadeIn 0.2s;
}

.items-box .details {
  width: 100%;
}

.items-box .details, .product-list-content .items-box .details {
  border-top: 1px solid var(--border-color);
  padding: 10px 0 15px 0;
  width: calc(100% - 40px);
  margin: 0 20px;
  animation: fadeInDelayed 0.3s;
}

.items-box .description, .product-list .items-box .description {
  font-weight: 400;
  padding-right: 0;
  max-height: 58px;
  height: auto;
}

.recommended-intake, .product-info {
  font-weight: 400;
}

.items-box .details .product-info, .product-list-content .items-box .product-info, .product-list-content .items-box:hover .product-info {
  position: relative;
  bottom: 5px;
  left: auto;
  margin-top: 5px;
}

.items-box .qty-item {
  position: absolute;
  right: 0;
  top: 0;
}

.qty-item .count {
  right: 10px;
  top: 200px;
  background: var(--text-1-color) !important;
}

.product-list-content .product-title, 
.product-list-content .product-title {
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  word-break: break-word;
  max-width: 300px;
  overflow: hidden;
  white-space: normal;
  padding: 0;
}

.product-list-content .product-title.js-heading-stack span, 
.heading-decorated {
  color: var(--surface-color);
  background: var(--primary-color);
  display: inline-block;
  padding: 1px 4px;
  border-radius: 4px;
  margin-bottom: 3px;
}

.product-list .items-box .prices {
  position: static;
}

.product-list .items-box .price.actual-price {
  position: absolute;
  top: 12px;
  right: -10px;
  height: 28px;
  min-width: 49px;
  font-size: 14px !important;
  font-family: var(--main-font);
  line-height: 12px;
  padding: 8px 10px 5px 15px;
  font-weight: 700;
  background-image: url(/Themes/FiveGuysKiosk/Content/images/price-label.svg);
  background-size: cover;
  background-position-y: center;
  color: var(--on-primary-color);
}

.add-buttons {
  margin-top: 20px;
}

.input-group-append button, .input-group-append button:hover, .input-group-append button:focus, #NXGcanlink .input-group-append .btn {
  background: var(--secondary-color);
}

.content h2, .pro-content h4 {
  color: var(--text-1-color);
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
}

.pro-content h4 {
  font-weight: 900;
  font-family: var(--main-font);
  margin-bottom: 10px;
}

.pro-content h4.heading-decorated {
  color: var(--surface-color) !important;
  padding: 5px 10px;
}

.review-btn .btn {
  background-color: var(--primary-color);
}

.delete-edit-item {
  margin: 3px 0 3px 20px;
}

.delete-edit-item-id, .delete-edit-item-id:hover, .delete-edit-item-id:focus {
  color: var(--primary-color);
  background: transparent;
}

.delete-edit-item ~ .delete-edit-item .delete-edit-item-id {
  color: var(--on-surface-color);
}

.fulfilment:not(.fulfilment-group-ordering) svg {
  display: none;
}

.form-check input[type="radio"] + *::before {
  border-color: var(--text-1-color);
}

.form-check input[type="radio"]:checked + *::before {
  background: radial-gradient(var(--text-1-color) 0%, var(--text-1-color) 40%, transparent 50%, transparent);
  border-color: var(--text-1-color);
}

.checkout-page-form .form-check .form-check-label {
  font-family: var(--secondary-font);
}

.collection-header h6 {
  margin: 0;
}

.order-type-details {
  font-weight: 900;
}

.review-btn a.btn {
  text-align: center;
}

.review-btn .btn span {
  float: none;
}

.right-box-footer p:first-child {
  text-align: center;
}

/* Group Ordering */
.btn.buttonGroupOrdering, .btn.buttonGroupOrdering:hover, .btn.buttonGroupOrdering:focus {
  border-color: var(--background-2-color);
  background: var(--primary-color);
  color: var(--on-primary-color);
}


/* Account */

.customer-info-page .form-fields {
  border-radius: calc(var(--border-radius)/3);
}

.account-item .info, .account-item .name span {
  font-family: var(--secondary-font);
}

.register-warning-info {
  font-family: var(--secondary-font);
}

.my-account a, .my-account a:hover {
  color: var(--primary-color);
  font-weight: 900;
  text-decoration: underline;
}

form.my-account {
  font-family: var(--secondary-font);
  box-shadow: var(--shadow);
}

.account-order-preview .btn-outline, .account-order-preview .btn-outline:hover,
.account-order-preview .btn-outline:focus, .btn-outline.edit-button,
.btn-outline.edit-button:hover, .btn-outline.edit-button:focus,
.order-list-page .btn-outline, .order-list-page .btn-outline:hover, .order-list-page .btn-outline:focus {
  border-color: var(--text-1-color);
  color: var(--text-1-color);
}

/* Outbound */
.cart-total .order-total {
  color: var(--text-1-color);
}

.order-subtotal {
  display: none;
}

.checkout-page {
  padding: 0;
}

.checkout-page .right-section-bg {
  margin-top: -50px;
}

.checkout-page .order-summary {
  font-size: 20px;
  line-height: 28px;
  padding-bottom: 10px;
}

.checkout-page-form .form-control {
  border: 1px solid #DEDEDE;
}

.cross-sells .title {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-align: left;
  border-top: var(--dashed);
  padding-top: 18px;
}

.cross-sells .item-box {
  position: relative;
  margin: 0 1% 2%;
  width: 100%;
  float: left;
  background: var(--surface-color);
  height: 150px;
  transition: 0.3s;
}

.cross-sells .details {
  text-align: left;
  padding: 15px 0 15px 15px;
  width: calc(100% - var(--product-image-width));
  display: inline-block;
}

.cross-sells .picture {
  display: none;
}

.cross-sells .item-box .description {
  display: inline-block;
  font-family: var(--secondary-font);
  font-size: 14px;
  line-height: 19px;
  height: 58px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-2-color);
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  padding-right: 10px;
}

.cross-sells .item-box .prices {
  position: static;
  justify-content: space-between;
}

.cross-sells .item-box .add-info {
  margin-top: 7px;
  margin-right: 10px;
}

.cross-sells .item-box a, .cross-sells .item-box a:hover, .cross-sells .item-box a:focus {
  box-shadow: var(--shadow);
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
  outline-offset: -2px;
  transition: 0.3s;
}

.cross-sells .product-title, .cross-sells .product-title a {
  text-align: left;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  word-break: break-word;
  overflow: hidden;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 10px;
}

.cross-sells .item-box .description {
  color: var(--text-2-color);
}

  .cross-sells .item-box .description .warning {
    display: none;
  }

.cross-sells .item-box .prices {
  position: static;
}

.cross-sells .item-box .price.actual-price {
  position: absolute;
  top: 12px;
  right: -4px;
  height: 22px;
  min-width: 49px;
  font-size: 14px !important;
  line-height: 12px;
  padding: 5px 5px 5px 10px;
  font-weight: 700;
  background-image: url(/Themes/FiveGuysKiosk/Content/images/price-label.svg);
  background-size: cover;
  background-position-y: center;
  color: var(--on-primary-color);
}

.processing_title {
  margin-bottom: 60px;
  font-family: var(--main-font);
  font-weight: 900;
  font-size: 32px;
  line-height: 40px;
  text-transform: uppercase;
}

.processing-order-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--surface-color );
  z-index: 2;
}

.processing-content img {
  height: 150px;
  width: 150px;
}

.device-disabled {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--surface-color);
  margin: auto 0 auto;
  padding: 100px;
}

.order-confirmation {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--surface-color);
}

.order-confirmation-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.order-confirmation .card {
  box-shadow: var(--shadow);
  padding: 26px;
  text-align: left;
  margin-top: 30px;
  font-size: 14px;
  line-height: 20px;
}

.order-number {
  padding: 10px 0 15px 0;
}


.order-date svg, .address-col svg {
  margin-right: 5px;
  margin-bottom: -2px;
  width: 15px;
}

.address-col {
  border-bottom: var(--dashed);
  margin-bottom: 0;
}

.order-confirmation p {
  text-align: left;
  line-height: 1.5;
  font-size: 24px;
  margin-bottom: 16px;
  max-width: 100%;
  color: var(--text-1-color);
}

.order-confirmation .down-arrow {
  margin-top: 15px;
  animation: bounce 1.5s infinite;
  width: 110px;
  height: 170px;
}

.order-instructions-title {
  font-weight: 900;
}

.order-instructions-step {
  color: var(--primary-color);
  font-weight: 900;
}

.order-details-title {
  margin-top: 0;
  border-bottom: none;
  font-size: 14px;
  text-align: left;
  line-height: 20px;
  padding: 14px 0;
}

.order-details-account-page .order-details-title {
  border-top: none;
}

.order-confirmation-details {
  font-family: var(--secondary-color);
  font-size: 14px;
  line-height: 20px;
}

.product-quantity-text {
  width: 24px;
  text-align: left;
}

.product-list-details-item {
  padding-left: 0;
}

.order-confirmation-details .product-list-details {
  margin-top: 6px;
  margin-bottom: 14px;
  color: var(--text-2-color);
}

.cart-total .order-total {
  text-transform: uppercase;
  font-family: var(--main-font);
  font-weight: 900;
  font-size: 14px;
}

  .cart-total .order-total span {
    padding: 15px 0;
    display: inline-block;
  }

.opps-page h2 {
  margin-bottom: 35px;
}

.opps-page p {
  text-align: center;
}

.opps-page .save-btn {
  margin: 40px 0;
}

/* Footer */
footer {
  display: none;
}

footer {
  border-top: none;
  background-color: var(--secondary-color);
  color: var(--text-3-color);
  font-weight: normal;
}

  footer:before {
    display: block;
    background-repeat: repeat;
    content: "";
    width: 100%;
    height: 48px;
    min-height: 48px;
    background-image: url(/Themes/FiveGuysKiosk/Content/images/checkerboard-mobile.png);
  }

  footer .divider {
    border-bottom: 1px solid hsla(0,0%,100%,.12);
  }

.footer_nav_bar {
  max-width: var(--max-width);
  width: fit-content;
  padding: 16px;
}

.footer_section {
  padding: 16px;
}

  .footer_section a {
    padding: 0 6px;
  }

.footer_nav_bar_item {
  display: inline-block !important;
}

  .footer_nav_bar_item a, .footer_nav_bar_item a:hover, .footer_section a:hover, .footer_section a {
    color: var(--text-3-color);
    text-decoration: none;
  }

  .footer_nav_bar_item.active a {
    font-weight: 900;
    border-bottom: thin solid var(--text-3-color);
    padding-bottom: 4px;
  }

.nav-countries .footer_nav_bar_item {
  padding: 11px;
}

.footer_section a svg .icon-bg {
  stroke: var(--tertiary-color);
}

.footer_section a svg .icon-symbol {
  fill: var(--tertiary-color);
}


/* location not found modal */
.modal-with-icon .location_icon {
  width: 94px;
  height: 94px;
  background: var(--surface-color);
  color: var(--on-surface-variant-color);
  box-shadow: var(--shadow);
  margin: -65px auto 20px auto;
}

  .modal-with-icon .location_icon i {
    font-size: 48px;
    color: #BB1D1D !important;
  }

.store-selection-page .search_box {
  padding: 0;
}

.underline-text {
  text-decoration: underline;
}

/* Modals */
.modal-nutrition-and-allergens {
  justify-content: center;
}

.modal#allergen-nutrients-ingredients-modal {
  z-index: 1049;
}
.modal-nutrition-and-allergens .modal-content {
  max-width: 600px;

  .modal-body {
    padding: 32px;
  }

  .tab button {
    font-family: var(--main-font);
    font-weight: 900;
    font-size: 21px;
  }

  div#Allergens, div#Nutrition, .tabcontent tr {
    font-weight: normal;
  }

  .tabcontent {
    padding: 0;
    font-family: var(--secondary-font);
    font-size: 16px;
    color: var(--text-1-color);
    width: 100%;
  }

  .allergens-and-nutrition-subtitle {
    font-weight: 700;
  }

  .tab button span {
    padding: 10px 0;
    display: block;
  }

  .tab {
    justify-content: start;
    overflow: visible;
  }

  .tablinks {
    width: auto;
    margin-right: 50px;
    position: relative;
  }
  
  .tablinks:last-child {
    margin-right: 0;
  }
}

.modal-allergies-warning, .modal-paytronix-login {
  .modal-content {
    overflow: hidden;
  }

  .modal-body {
    padding: 3rem;
  }

  header {
    background: var(--primary-color);
    padding: 20px;

    * {
      color: var(--surface-color) !important;
    }
  }
}

.modal-paytronix-login {
  z-index: 1049;
}

.modal-paytronix-login-addon {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 30px;
  background: var(--surface-color);;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 500px;
  border-radius: var(--border-radius-large);

  .down-arrow {
    animation: bounce 1.5s infinite;
  }
}

.paytronix-login-widget {
  position: absolute;
  top: 0;
  left: 50px;
  height: 85px;
  display: flex;
  align-items: center;
  z-index: 1;
}

[dir="rtl"] .paytronix-login-widget {
  left: auto;
  right: 50px;
}

.paytronix-login-widget-btn {
  border-radius: var(--btn-border-radius) 6px;
  border: 2px solid var(--on-primary-color);
  background-color: var(--secondary-color);
  padding: 10px 15px;
  display: flex;
  align-items: center;
}

.paytronix-login-widget-guest {
  h6 {
    color: var(--on-primary-color) !important;
  }
}

.paytronix-login-widget-user {
  border: 2px solid var(--surface-color);
  background-color: var(--background-1-color);
}

.paytronix-login-widget-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  box-shadow: var(--shadow);
  color: var(--on-primary-color) !important;
  font-weight: 800;
}

.paytronix-drawer {
  position: absolute;
  bottom: 100%;
  left: 0;
  background: var(--surface-color);
  height: auto;
  max-height: calc(100vh - 450px);
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-inverted);
}

.paytronix-drawer-cover {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: -1;
  animation: fadeIn 0.3s;
}

.paytronix-drawer-header {
  padding: 15px 50px;
  border-top: 7px solid var(--primary-color);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.paytronix-drawer-title {
  color: var(--primary-color) !important;
}

.paytronix-drawer-subtitle {
  color: var(--text-1-color);
  font-weight: 700;
  font-size: 18px;
}

.paytronix-drawer-toggle-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--background-1-color);
  transition: transform 0.3s;

  &:hover, &:focus {
    background: var(--background-2-color);
  }
}

.paytronix-drawer-content {
  max-height: calc(100vh - 560px);
  border-top: 1px solid var(--border-color);
  padding: 0 50px 0 50px;
  overflow: auto;
  transition: max-height 0.2s ease;
  scrollbar-width: none;
  -ms-overflow-style: none;

  &::-webkit-scrollbar {
    display: none;
  }

  .paytronix-drawer-title {
    font-size: 48px;
  }

  .paytronix-login-widget-avatar {
    font-size: 28px;
    width: 70px;
    height: 70px;
  }
}

.paytronix-drawer.paytronix-drawer-closed {
  .paytronix-drawer-content {
    max-height: 0;
  }
  .paytronix-drawer-toggle-btn {
    transform: rotate(180deg);
  }
}
.paytronix-drawer-cover.paytronix-drawer-closed {
  display: none;
}

.paytronix-rewards-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.paytronix-item {
  background-color: var(--surface-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  overflow: hidden;
  text-align: center;

  h5 {
    word-break: break-word;
  }
}

.paytronix-item-header {
  background-color: var(--primary-color);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;

  h6 {
    color: var(--on-primary-color) !important;
    margin: 0 10px;
  }
}

.paytronix-item-bottom-info {
  color: var(--primary-color);
}

.modal-reward {
  z-index: 1049;

  .modal-content {
    overflow: hidden;
  }
  header {
    background: var(--primary-color);
    padding: 15px;

    * {
      color: var(--on-primary-color) !important;
    }
  }
}

.paytronix-checkout-cta, .paytronix-summary-reward {
  padding: 30px;
  background: var(--surface-color);
  box-shadow: var(--shadow);
  margin-top: 30px;
  border-radius: var(--border-radius);
}

.paytronix-list-item {
  border-bottom: var(--dashed);
  padding-bottom: 15px;

  &:first-child {
    border-top: var(--dashed);
    padding-top: 15px;
  }

  .form-check {
    background-color: var(--surface-color);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  label.form-check-label {
    padding: 0 !important;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-left: 0;
    padding: 0;
  }

  input[type="checkbox"]:disabled ~ label.form-check-label {
    opacity: 0.5;
  }

  .modifier-info-container {
    display: flex;
    justify-content: space-between;
    width: 100%;

    h4 {
      color: var(--primary-color) !important;
    }
  }

  .checkmark-container {
    width: 30px;
    margin: 0 0 0 5px;
    flex-shrink: 0;
  }

  .form-check .checkmark {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 30px;
    height: 30px;
    overflow: hidden;
    display: block;
  }

  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 1px;
    top: 1px;
    width: 24px;
    height: 24px;
    border: none;
    transform: none;
    background: url(/Themes/BaseFiveGuysKioskV2/Content/images/v2/tick-white-24x24.svg) center center/24px 24px no-repeat transparent;
  }

  .form-check input:checked ~ .form-check-label .checkmark:after {
    display: block;
    animation: popCheckbox 0.1s;
  }

  .form-check input:checked ~ .form-check-label .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
}

.paytronix-summary-reward-container {
  padding: 30px 0 30px;
  margin-bottom: 15px;
  border-top: var(--dashed);
  border-bottom: var(--dashed);

  p {
    font-size: 18px;
  }
}

.paytronix-summary-reward {
  border-radius: var(--border-radius);
  border-top: 7px solid var(--primary-color);
  overflow: hidden;

  h3 {
    color: var(--primary-color) !important;
  }
}

.price-original {
  color: var(--primary-color);
  text-decoration: line-through;
  font-size: 16px;
  font-family: var(--main-font);
  font-weight: 900;
}

.paytronix-total {
  border-top: 8px solid var(--primary-color);
  padding: 15px;
  border-radius: var(--border-radius);
  color: var(--primary-color);
  font-weight: 800;
  font-size: 24px;
  box-shadow: var(--shadow);
}

.discount-item {
  svg {
    width: 21px;
    height: 21px;
    margin-right: 5px;
  }
  * {
    color: var(--primary-color) !important;
  }
}

/* Ripple / bouncing burger animation */
.search-modal .search_box {
  padding: 0;
}

.close-icon.close {
  top: -20px;
  right: -20px;
  opacity: 1;
}

.circle-ripple {
  background: none;
  width: auto;
  height: auto;
  animation: none;
  border-radius: 0;
  position: relative;
  padding-top: 150px;
  margin: 0;
}

  .circle-ripple::before {
    content: '';
    background: url(/Themes/FiveGuysKiosk/Content/images/burger-loop-150x150-bg-white.gif) center center/150px 150px no-repeat transparent;
    width: 100%;
    height: 150px;
    animation: none;
    border-radius: 0;
    display: block;
    margin: 0;
    position: absolute;
    top: 0;
  }

.burger-loader {
  height: 220px;
  width: 220px;
  display: block;
  position: absolute;
  top: calc(50% - 110px);
  left: calc(50% - 110px);
  animation: spin 2s infinite var(--cubic-bounce);
  perspective: 1000px;
  transform-style: preserve-3d;
}

.burger-loader:after, .burger-loader:before {
  content: '';
  height: 220px;
  width: 220px;
  background: url(/Themes/BaseFiveGuysKioskV2/Content/images/v2/fiveguys-logo-square-on-red-300x300.svg) center center/220px 220px no-repeat transparent;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.burger-loader:after {
  transform: rotateY(180deg);
  backface-visibility: hidden;
}

.burger-loader-container {
  position: relative;
  width: 230px;
  height: 230px;
  margin: 0 auto;
}

.circle-ripple .loader_text {
  position: static;
}

#AjaxLoadingWindowModal .modal-content.search_box {
  min-height: 300px;
  background: transparent !important;
  box-shadow: none !important;
}

/* Express checkout */
.checkout-form-express .circle-ripple::before, #payment-loader .circle-ripple::before {
  background-image: url(/Themes/FiveGuysKiosk/Content/images/burger-loop-150x150-bg-grey.gif);
}


.checkout-main-title {
  font-size: 65px;
  line-height: 1.2;
  margin-bottom: 15px;
  text-align: center;
  margin-top: 6rem;
  margin-bottom: 8rem;
}

.btn.btn-outline-kiosk {
  color: var(--text-2-color);
  border: var(--text-2-color) solid 2px;
  padding: 2rem;
  border-radius: 12px;
  font-size: 20px;
}

.btn.btn-outline-kiosk-small {
  color: var(--text-2-color);
  border: var(--text-2-color) solid 2px;
}

.kiosk-ticket {
  padding: 1rem 15rem;
  margin: 0 auto 5rem auto;
  text-align: center;
}

  .kiosk-ticket hr {
    margin: 0;
    width: 100%;
  }

.value-summary {
  color: var(--primary-color);
  font-size: 4.5rem;
  font-weight: 900 !important;

  strong {
    font-weight: 900 !important;
  }
}


.kiosk-ticket .express-payment-info table {
  width: 350px;
  height: 500px;
  margin: 0 auto;
  background-image: url(/Themes/BaseFiveGuysKioskV2/Content/images/v2/kiosk-pdq-200x366.svg);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}

.kiosk-ticket .express-payment-info table svg {
  display: none;
}

body, html {
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.master-wrapper-page,
.main-content-area,
.master-column-wrapper {
  min-height: 100vh;
  width: 100vw;
  flex-direction: column;
}

.master-column-wrapper {
  display: flex;
}

#checkout-pricingDetail-load {
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--on-primary-color);
}

.order-summary-btns {
  display: flex;
  justify-content: center;
  padding: 20px 20px 40px 20px;
  gap: 20px;
}

.btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-3-color) !important;
  border-color: var(--primary-color);
}

  .btn-primary:active,
  .btn-primary:focus {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
  }

.btn-secondary:active,
.btn-outline:active {
  background: var(--primary-color) !important;
  color: var(--text-3-color) !important;
}


.navbar-expand-lg .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

#onetrust-consent-sdk {
  display: none !important;
}
/* Theme End */

.modifier-item > label > span {
  text-transform: lowercase;
}

.image-optimize-contrast {
  image-rendering: -webkit-optimize-contrast;
}

/* Animated headings */
.animated-fade-in-slide-up {
  animation: fadeInSlideUp 0.5s;
}
.animated-fade-in-slide-up-delayed {
  animation: fadeInSlideUpDelayed 0.8s;
}
.animated-fade-in-slide-up-delayed-large {
  animation: fadeInSlideUpDelayedLarge 1s;
}
.animated-fade-in-delayed {
  animation: fadeInDelayed 0.3s;
}
.animated-pulse {
  animation: pulse 1s infinite;
}

/* end of Animated headings */


/* === Landing page */

.landing-page body {
  background-color: var(--primary-color) !important;
}

.kiosk-disabled-box {
  max-width: 800px;
  width: 100%;
  padding: 20px;
  margin: 0 auto 200px auto;
  background: var(--surface-color);
  border-radius: 12px;
}

/* Landing page backgrounds */
.landing-bgs, .landing-bg-custom {
  position: fixed;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.landing-bg {
  position: absolute;
  width: 1080px;
  max-width: none;
  height: 1920px;
  pointer-events: none;
  display: block;
}
.landing-bg-top-left {
  left: -75px;
  top: -10px;
  animation: popLeftToRight 0.9s var(--cubic-bounce);
}
.landing-bg-top-right {
  right: -15px;
  top: -75px;
  animation: popTopToBottom 0.9s var(--cubic-bounce);
}
.landing-bg-bottom-left {
  left: -70px;
  bottom: -134px;
  animation: popBottomToTop 0.9s var(--cubic-bounce);
}
.landing-bg-bottom-right {
  right: -100px;
  bottom: -145px;
  animation: popRightToLeft 1s var(--cubic-bounce);
}

.landing-bg-custom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  animation: fadeIn 0.5s ease-in-out;
}

/* end of  Landing page background */

.landing-page .corner, .landing-page .corner:after, .landing-page .corner-3:before {
  background: var(--surface-color);
}

.landing-title {
  margin: 0 auto 125px auto;
}

.landing-title h1 {
  text-align: center;
  font-size: 96px;
  font-family: var(--main-font);
  color: var(--text-3-color) !important;
  line-height: 0.9;
}
.landing-title h1.lg {
  font-size: 120px;
}

.lang-nl .landing-title h1.lg {
  font-size: 110px;
}


.landing-main-buttons {
  margin: 0 auto 100px auto;
}

.landing-main-buttons .main-button {
  background: none;
  border: none;
  margin: 0 25px;
  text-align: center;
  width: 350px;
  display: flex;
  align-items: center;
  flex-direction: column;

  &:disabled {
    opacity: 0.5;
  }
}

.landing-main-buttons .main-button:active .main-button-inner {
  box-shadow: 0px 0px 5px 0 rgba(0,0,0,0.2);
  transform: scale(0.98) translateY(5px);
}

.landing-main-buttons .main-button h2 {
  text-transform: uppercase;
  color: var(--surface-color) !important;
  font-size: 35px;
}

.landing-main-buttons .main-button .main-button-inner {
  background-color: var(--surface-color);
  border-radius: var(--border-radius-large);
  box-shadow: 5px 15px 15px 0 rgba(0, 0, 0, 0.2);
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
  margin: 0 0 35px 0;

  img {
    pointer-events: none;
  }
}

/* Enlarged interactive area of the order button (only when single button is present) */
.landing-main-buttons-single .main-button {
  position: relative;

  &:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 800px;
  }
}

.warning-box {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 15px;
  margin: 0 auto 30px auto;
  max-width: 800px;
  display: inline-flex;
  align-items: center;
}

.warning-box img, .warning-box svg {
  width: 38px;
  height: auto;
}

.warning-box h5 {
  margin: 0 0 0 15px;
  font-size: 17px;
}

.warning-box.warning-box-red {
  background: var(--primary-color);
  color: var(--surface-color);

  p, h5 {
    color: var(--surface-color) !important;
  }
}

.info-btns {
  padding: 10px;
  margin: 0 auto;
}

.language-selector {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  align-items: center;
  margin: 40px auto 10px auto;
  padding: 25px 0 25px 0;
  border-top: 1px solid var(--surface-color);

  .btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:hover, .btn-secondary:focus {
    color: var(--text-1-color) !important;
    border-color: var(--surface-color) !important;
    box-shadow: none;
  }

  .btn-secondary.active {
    box-shadow: 0 0 0 3px inset black !important;
  }
}

.language-selector:not(.idle-screen .language-selector) {
  .btn-secondary {
    background-color: var(--surface-color);
    border-color: var(--surface-color);
  }
}

.idle-screen .language-selector .btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active {
  border-color: #6c757d !important;
}

.flag-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--surface-color);
  margin: 0 5px;
  transform: scale(0.85);
}

.flag-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flag-icon.btn {
  box-shadow: 5px 15px 15px 0 rgba(0, 0, 0, 0.2);
}

.flag-icon.btn img {
  filter: grayscale(100%);
}

.flag-icon.btn.active {
  transform: none;
}

.flag-icon.btn.active img {
  filter: none;
}

.flag-icon.btn:active {
  box-shadow: 0px 0px 5px 0 rgba(0,0,0,0.2);
  transform: scale(0.85) translateY(2px);
}

.card-payment-list {
  color: var(--text-3-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px auto 70px auto;
}
.card-payment-list > * {
  margin-right: 8px;
}

.card-payment-list-intro {
  font-size: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.payment-option-icon {
  width: 48px;
  height: 29px;
  border-radius: 8px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
  .payment-option-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.menu-cog {
  display: none;
  top: 20px;
  right: 20px;
}

  .menu-cog button svg {
    padding: 0;
  }


  .menu-cog .btn {
    width: auto;
    margin: 10px;
    display: flex;
    justify-content: center;
  }

  .menu-cog > .btn,
  .menu-cog > .btn:first-child {
    background-color: transparent;
  }

.landing-page .ready-to-order {
  min-height: 100vh;
}

.landing-page-custom-background.landing-page .ready-to-order {
  justify-content: end !important;
}

.landing-logo {
  max-width: 190px;
  margin: 20px auto 190px auto;
}

/* End of Landing page */

/* === Menu page */
.menu-page body {
  background-color: var(--surface-color) !important;
}

.menu-page .corner, .menu-page .corner:after, .menu-page .corner-3:before {
  background: var(--primary-color);
}

.quick-add {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  padding: 0 15px;
  
  .btn-edit {
    display: none;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
  }
  .btn-edit svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-color);
  }
  .btn-add {
    width: 100%
  }
}

.items-box.select .quick-add .btn-edit {
  display: flex;
}

.product-list-content .items-box.items-box-quick-add .details {
  margin-bottom: 40px;
}


/* === End of Menu page */

/* === Product page */
.html-product-details-page .started_content {
  padding-bottom: 130px;
}

.html-product-details-page .corner, .html-product-details-page .corner:after, .html-product-details-page .corner-3:before {
  background: var(--primary-color);
}

.html-product-details-page body, .html-product-details-page .started_content {
  background-color: var(--surface-color) !important;
}

.html-product-details-page .main-title {
  font-size: 52px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 15px;
}


.html-product-details-page .form-check {
  display: flex !important;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.html-product-details-page label.form-check-label, .check_redio .form-check.radio-attr .form-check-label {
  padding: 0px 10px 5px 10px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-left: 0;
}

.check_redio-expandable label.form-check-label, .check_redio-expandable .form-check.radio-attr .form-check-label {
  height: auto !important;
  margin-bottom: auto !important;
}


.html-product-details-page img+.form-check label.form-check-label {
  width: calc(100% - 38px);
}

.html-product-details-page .modifier-item {
  box-shadow: var(--shadow);
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  height: 100%;
}

.html-product-details-page .content {
  border-bottom: 1px solid var(--border-color);
}


.col-modifier {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding: 0 15px 20px 15px;
  flex: 0 0 20%;
  max-width: 20%;
}

.modifier-picture-container {
  width: 100%;
  height: 100px;
  border-bottom: 1px solid var(--border-color);
  padding: 5px;
}

.modifier-info-container {
  display: flex;
  padding: 3px 0;
  height: 100%;
}

.modifier-info-details {
  display: flex;
  flex-direction: column;
  width: calc(100% - 35px);
  min-height: 30px;
  padding-top: 8px;
}

.modifier-info-details .product-info, .html-product-details-page .check_redio .form-check .product-info {
  margin-top: auto;
  text-decoration: underline;
  font-size: 14px;
}

.check_redio-notclickable {
  .modifier-info-details {
    width: 100%;
  }
  .checkmark-container {
    display: none !important;
  }
}

.checkmark-container {
  width: 30px;
  margin: 5px 0 0 5px;
  flex-shrink: 0;
}

.modifier-qty {
  width: 100%;
  flex-basis: 100%;
  padding: 0 10px 10px 10px;

  .input-group {
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;

    .input-number {
      width: 100%;
      opacity: 1;
      text-align: center;
      border: none;
      font-size: 18px;
      font-family: var(--main-font) !important;
      font-weight: 900 !important;
      background: transparent;
      color: var(--text-1-color) !important;
      user-select: none;
    }
  }
  button.btn.btn-minus.btn-number, button.btn.btn-plus.btn-number, button.btn-qty-ui {
    height: 32px !important;
    width: 32px !important;
    padding: 0;
  }
}

.modal.modifier-quantity-modal .modifier-qty {
  max-width: 240px;
  margin: 0 auto 20px auto;
  padding: 5px;

  .input-group {
    flex-wrap: nowrap;
  }

  .input-number {
    font-size: 2.2em;
  }
  button.btn.btn-minus.btn-number, button.btn.btn-plus.btn-number, button.btn-qty-ui {
    height: 58px !important;
    width: 58px !important;
    padding: 5px;

    svg {
      width: 48px;
      height: 48px;
    }
  }
}

.html-product-details-page .modifier-item .checkmark {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  width: 30px;
  height: 30px;
  overflow: hidden;
  display: block;
}

.html-product-details-page .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 1px;
  top: 1px;
  width: 24px;
  height: 24px;
  border: none;
  transform: none;
  background: url(/Themes/BaseFiveGuysKioskV2/Content/images/v2/tick-white-24x24.svg) center center/24px 24px no-repeat transparent;
}

.html-product-details-page .radio-attr .checkmark:after {
  left: 8px;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--surface-color);
  border-radius: 50%;
  border: none;
}

.html-product-details-page .form-check input:checked ~ .form-check-label .checkmark:after, .checkmark-checked:after {
  display: block;
  animation: popCheckbox 0.1s;
}

.html-product-details-page .form-check input:checked ~ .form-check-label .checkmark, .checkmark-checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

img.modifier-picture {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.html-product-details-page .form-check.modifier-item-radio input[type="radio"]+*::before {
  display: none;
}

.form-check.modifier-item-radio .checkmark {
  border-radius: 50%;
}

.add-to-cart-panel {
  margin: 0 10px;
}

.product-order-summary-container {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: var(--surface-color); 
  width: 100%;
}

.required {
  display: inline-block;
}
.heading-decorated .required {
  color: var(--surface-color);
  margin: 0;
}

.product-qty-control-header, .product-qty-control-btns {
  display: none !important;
}
/* === end of Product page */

/* === Kiosk Order Page === */
.kiosk-order-page .corner, .kiosk-order-page .corner:after, .kiosk-order-page .corner-3:before {
  background: var(--primary-color);
}

.order-list-detail-wrapper {
  margin-top: 30px;
  margin-bottom: 350px;
}

.list-item-content {
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow);
  background-color: var(--surface-color);
  border-radius: var(--border-radius);
  overflow: hidden;

  .wrapper {
    padding: 20px;
  }

  .text-header {
    background-color: var(--primary-color);
    padding: 30px 50px 30px 50px;
  }

  h1.order-summary {
    color: var(--surface-color) !important;;
  }
}

.order-list-detail {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.kiosk-order-page {
  body {
    background-color: var(--surface-color) !important;
  }

  .container.order-list-detail {
    max-width: 994px;
  }

  .pro-card .quantity .btn-plus, .pro-card .quantity .btn-minus {
    width: 38px;
    height: 38px;
  }

  .pro-card {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
  }
  .pro-card:last-of-type {
    border-bottom: 0;
  }
  
  .pro-card .input-group-btn,
  .pro-card .btn {
    display: flex;
    align-items: center;
  }
  
  .pro-card .quantity .btn {
    display: flex;
    width: 50px;
    height: 50px;
  }
  
  .pro-card .btn svg {
    width: 100%;
    height: 100%;
  }
  .pro-title-price {
    border: 0;
    align-items: flex-start;
  }
  
  .form-control.input-number {
    background: transparent;
    border: 0;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--main-font) !important;
    font-weight: 900 !important;
    color: var(--text-1-color) !important;     
  }
  
  .form-control.input-number,
  .pro-price {
    font-size: 2em;
    line-height: 2em;
  }
  
  .pro-price {
    max-width: 100%;
    text-align: right;
    line-height: 1.1;
    white-space: nowrap;
    padding-left: 0.5rem;
  }
  .delete-edit-item button{
    font-size: 1.25em;
  }
  
  .delete-edit-item:last-of-type {
    margin-left: 0;
  }
  .corners {
    z-index: 1;
  }
}

.modal-crosssell {
  .modal-content {
    padding-left: 30px;
    padding-right: 30px;
  }
  .product-list {
    border: none;
    padding: 0;
    margin-top: 0;
  }
  .product-list-content {
    margin-top: 0;
  }

  .product-list {
    display: flex;
    gap: 0;
  }
  
  .modal-title {
    padding: 20px 0 20px 0;
    border-bottom: 1px solid var(--border-color);
  }
  .item-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .product-list-content .product-list .items-box {
    width: 44%;
    margin: 0 2.9% 30px !important;
  }
}

/* === end of Kiosk Order Page === */

/* === Checkout / Payment page */
.checkout-page body {
  background-color: var(--surface-color) !important;
}

.checkout-page .corner, .checkout-page .corner:after, .checkout-page .corner-3:before {
  background: var(--primary-color);
}
/* === end of Checkout / Payment page */

/* === Processing page */
.html-checkout-page body, .checkout-page, .html-checkout-page .lets_started {
  background-color: var(--surface-color) !important;
}

.html-checkout-page .corner, .html-checkout-page .corner:after, .html-checkout-page .corner-3:before {
  background: var(--primary-color);
}
/* === end of Checkout / Payment page */

/* === Oops page */
.html-oops-page, .order-confirmation, .opps-page, .opps-page body, .html-oops-page body {
  background-color: var(--surface-color) !important;
}

.html-oops-page .corner, .html-oops-page .corner:after, .html-oops-page .corner-3:before {
  background: var(--primary-color);
}

.html-oops-page .order-confirmation.opps-page {
  margin: auto 0 auto;
}

.checkout-page .burger-loader-container {
  position: relative;
  height: 220px;
}
/* === end of Checkout / Payment page */

/* === Device disabled page */
.html-disabled-page, .html-disabled-page body {
  background-color: var(--surface-color) !important;
}
.html-disabled-page .corner, .html-disabled-page .corner:after, .html-disabled-page .corner-3:before {
  background: var(--primary-color);
}
.icon-container {
  border-radius: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 94px;
  background: var(--surface-color);
  color: var(--text-1-color);
  box-shadow: var(--shadow);

  i {
    font-size: 48px;
  }  
}

/* === Order Details page */
.html-order-details-page .corner, .html-order-details-page .corner:after, .html-order-details-page .corner-3:before {
  background: var(--primary-color);
}

.html-order-details-page {
  body {
    background-color: var(--surface-color) !important;
  }

  .checkout-main-title {
    margin-bottom: 0;
  }

  .instructions {
    text-align: left;
    max-width: 670px;
    margin: 0 auto; 
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 45px;
  }

  .instructions p {
    font-size: 21px;
  }

  .instructions .step {
    margin-bottom: 30px;
  }

  .instructions .step .text-lead {
    font-size: 24px;
  }

  .instructions .heading-decorated {
    color: var(--surface-color) !important;
    padding: 1px 6px;
  }

  .order-bag {
    position: relative;
    width: 330px;
    margin: 0 auto 60px;
  }

  .order-number-box {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 180px;
    padding: 0 30px;
  }
  
  .order-number-box .label {
    font-size: 32px;
  }

  .order-number-box .order-number {
    font-size: 95px;
  }

  .order-number-box .label, .order-number-box .order-number {
    color: var(--primary-color) !important;
    padding: 0;
    margin: 0;
  }

  .order-confirmation h4 {
    max-width: 800px;
  }

  .order-confirmation h2 {
    text-align: left;
    transition: all 0.15s;
  }

  .order-confirmation h2.js-heading-stack span {
    color: var(--surface-color);
    background: var(--primary-color);
    display: inline-block;
    padding: 1px 4px;
    border-radius: 4px;
    margin-bottom: 3px;
  }
}

.order-details-page-survey {
  .checkout-main-title {
    margin-top: 0;
  }

 .order-confirmation .down-arrow {
    height: 42px;
 }
}

/* === end of Order Details page */

/* Survey and order details condensed mode */
.steps-survey {
  display: grid;
  grid-template-columns: auto auto;
  gap: 15px;
  align-content: center;
}

.steps-survey .order-bag {
  width: 305px;
}

.steps-survey .instructions {
  align-content: center;
  border-bottom: none;
  margin-top: 50px;
}

.survey {
  position: relative;
  background: #f2f2f2;
  border: 1px solid #fff;
  padding: 5px 15px 15px 15px;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  min-height: 160px;
}

.survey section {
  transition: all 0.15s;
  margin-bottom: 30px;
}

.survey section:last-child {
  margin-bottom: 0;
}

.survey-rating-group {
  display: flex;
  justify-content: center;
  margin: 0 15px;
}
.survey-rating-option label {
  width: 75px;
  height: 75px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.15s ease;
  margin: 0 15px;
}

.survey-rating-option img {
  margin: 0;
  width: 65px;
}

.survey-rating-option input[type="radio"] {
  display: none;
}

.survey-rating-group.dirty .survey-rating-option label {
  opacity: 0.3;
  box-shadow: none;
}

.survey-rating-group input[type="radio"]:checked + label  {
  opacity: 1 !important;
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

.survey-finish {
  margin: 0 auto;
}

.survey-finish {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 2;
}

.survey-finish img {
  width: 150px;
  height: 150px;
  animation: activateBounce 1s;
}

.survey.survey--completed .survey-finish {
  display: flex;
}

.survey.survey--completed > section {
  opacity: 0;
}

.order-details-page-survey {
  .checkout-main-title {
    margin-top: 0;
  }

 .order-confirmation .down-arrow {
    height: 42px;
 }
}
/* end of Survey */



/* === Table service page */
.html-table-service .corner, .html-table-service .corner:after, .html-table-service .corner-3:before {
  background: var(--primary-color);
}
.html-table-service {
  body {
    background-color: var(--surface-color) !important;
  }

  .master-column-wrapper {
    justify-content: center;
  }

  .intro {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 30px auto;
    padding-top: 100px;
  }

  .intro h1 {
    font-size: 42px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 15px;
  }

  .intro img {
    margin-bottom: 60px;
    width: 219px;
    height: 224px;
  }

  .cta-bottom-container {
    margin-top: 380px;
  }
}

.keypad-container {
  max-width: 420px;
  margin: 90px auto 0 auto;
}

.keypad-value {
  border: 2px solid var(--text-1-color);
  padding: 15px;
  text-align: center;
  margin-bottom: 50px;
  height: 84px;
  position: relative;

  span {
    font-family: var(--main-font);
    font-weight: 900;
    color: var(--text-1-color);
    font-size: 50px;
    line-height: 1;
    letter-spacing: 5px;
  }

  .keypad-value-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: var(--text-1-color);
    letter-spacing: 0;
    text-transform: uppercase;
    opacity: 0.3;
  }
}

.keypad-value.keypad-value-active {
  border: 2px solid var(--primary-color);

  .keypad-value-placeholder {
    display: none;
  }
}

.keypad-value.is-invalid {
  margin-bottom: 0;
}

.keypad-value.is-invalid-hard {
  border: 2px solid var(--primary-color);

  span {
    color: var(--primary-color);
  }
}

.keypad-errors {
  font-size: 20px;
  font-family: var(--secondary-font);
  font-weight: 700;
  padding: 12px 0 18px 0;
  min-height: 50px;
}

.keypad-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 35px;
}

.keypad-button {
  width: 100%;
  height: 105px;
  font-size: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.2) !important;
  overflow: hidden;

  span {
    font-size: 16px;
  }
}

.keypad-button:active {
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.2) !important;
}

/* === end of Table service page */

/* === Tipping page */
.html-tipping-page .corner, .html-tipping-page .corner:after, .html-tipping-page .corner-3:before {
  background: var(--primary-color);
}
.html-tipping-page {
  body {
    background-color: var(--surface-color) !important;
  }

  .master-column-wrapper {
    justify-content: center;
  }

  .keypad-container {
    margin-top: 0;
  }

  .keypad-value, .tip-presets {
    max-width: 610px;
    margin: 0 auto 30px auto;
  }

  .keypad-buttons {
    padding: 5px;
  }
}

.tipping-box {
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow);
  background-color: var(--surface-color);
  border-radius: var(--border-radius);
  overflow: hidden;

  .wrapper {
    padding: 20px 40px;
  }

  .text-header {
    background-color: var(--text-1-color);
    padding: 30px 50px 30px 50px;
    text-align: center;
  }

  h2.order-summary {
    color: var(--surface-color) !important;;
  }
}

.tip-presets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 35px;
  padding: 5px;
}

.tip-preset-btn {
  background: var(--surface-color);
  padding: 2rem 1rem;
  border: 2px solid var(--border-color);
  color: var(--text-1-color);
  transition: all 0.2s;

  .tip-preset-percent {
    display: block;
    font-size: 48px;
    transition: all 0.2s;
  }

  .tip-preset-amount {
    display: block;
    font-size: 30px;
    margin-top: 30px;
  }
}
.tip-preset-btn--active {
  border-color: var(--primary-color) !important;

  .tip-preset-percent {
    color: var(--primary-color) !important;
  }
}


/* === end of Table service page */

/* Upsells modal */
.modal-upsells {
  z-index: 1039;

  .modal-body {
    padding: 0;
    background: none;
    pointer-events: auto;
  }

  .modal-content {
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--surface-color);
  }

  .modal-dialog {
    width: 1030px;
    max-width: 100%;
  }

  .close-icon {
    z-index: 1;
  }

  .modal-backdrop {
    z-index: -1;
  }

  .order-summary-btns {
    border-top: 1px solid var(--border-color);
    margin-top: 30px;
    padding-top: 30px;
  }
}

.upsell-category-heading {
  width: 100%;
  background: var(--primary-color);
  padding: 20px 25px;

  * {
    color: var(--surface-color) !important;
    margin-bottom: 0;
  }
}

.upsell-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 15px;
}

.upsell-item-container {
  padding: 0;
  background-color: var(--surface-color);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.2s;
}

.upsell-item-container.select {
  box-shadow: var(--shadow), 0 0 0 2px var(--primary-color) !important;
  border-color: var(--primary-color);
}

.upsell-item-container:last-child .upsell-item {
  border-bottom: none;
}

.upsell-item-container.accordion-opened {
  transform: translateY(10px);
}

.upsell-item-header {
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
}

.upsell-item .upsell-label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.upsell-item-kcal {
  margin-bottom: 10px;
  font-size: 16px;
}

.upsell-item-img {
  width: 100px;
  height: 100px;
  overflow: hidden;
  flex-shrink: 0;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
  }
}

.upsell-item-content {
  width: 100%;
  padding-left: 10px;

  .product-info {
    display: inline-block;
    text-decoration: underline;
    margin-top: 5px;
    font-size: 16px;
  }
}

.upsell-item-action {
  position: relative;
  flex-shrink: 0;
  margin-left: 10px;
  top: -3px;

  .checkmark {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 30px;
    height: 30px;
    overflow: hidden;
    display: block;
  }
}

.upsell-item .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 1px;
  top: 1px;
  width: 24px;
  height: 24px;
  border: none;
  transform: none;
  background: url(/Themes/BaseFiveGuysKioskV2/Content/images/v2/tick-white-24x24.svg) center center/24px 24px no-repeat transparent;
}

.upsell-item input:checked ~ label .checkmark:after, .checkmark-checked:after {
  display: block !important;
  animation: popCheckbox 0.1s;
}

.upsell-item input:checked ~ label .checkmark, .checkmark-checked {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.upsell-item-price {
  font-size: 16px;
}

.upsell-item-price-plus {
  position: relative;
  left: 3px;
  top: -2px;
}

.upsell-item-attributes {
  padding: 15px 15px 0 15px;
  grid-column: 1 / -1;
  background: var(--surface-color);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);

  .crepe_options_part.my-3 {
    margin-top: 0 !important;
  }
  .crepe_options_part h4 {
    font-size: 20px;
    line-height: 30px;
    color: var(--surface-color) !important;
    padding: 1px 8px;
    margin-bottom: 0;
  }

  .options-wrapper .row .col-12 {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .modifier-info-container {
    width: 100%;
    padding: 5px 0;
  }

  .modifier-info-details {
    font-size: 14px;
    line-height: 18px;
    padding-top: 0;
    display: flex;
    justify-content: center;
  }

  .modifier-picture-container {
    display: none !important;
  }

  .col-modifier {
    padding: 0 10px 5px 10px;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .attribute-description {
    display: none;
  }

  .options-wrapper {
    margin-bottom: 10px;
  }

  .form-check-label {
    padding-bottom: 0 !important;
  }

  .checkmark-container {
    margin-top: 2px;
  }
}
/* === end of Upsells modal */

/* Idle screen with video */
.idle-screen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 1000;
}

.idle-screen-tap-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 96px);
}

.idle-screen-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.idle-screen .language-selector {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1001;
  background-color: white;
  padding-left: 25px;
  padding-right: 25px;
}

.idle-screen-cta {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 1000;
}

.idle-screen-cta .btn {
  position: relative;
  top: 70%;
  width: auto;
  font-size: 65px;
  box-shadow: var(--shadow);
  display: inline-block;
  height: auto;
  padding-left: 32px;
  padding-right: 32px;
  max-width: 750px;
  white-space: normal;
  line-height: 1.2;
  border-radius: .25rem;
  border-radius: 12px;
  overflow: hidden;
}

.fade-in-from-bottom {
  animation: fadeInFromBottom 0.5s ease-in-out;
}

.fade-in-from-bottom-fast {
  animation: fadeInFromBottom 0.2s ease-in-out;
}
/* End of Idle screen with video */

/* Settings */
.settings-page {
  max-width: 800px;
}

.nav-tabs-kiosk-settings {
  border-bottom: none;
  position: relative;
  top: 1px;
  z-index: 1;
}

.nav-tabs-kiosk-settings button:focus {
  outline: none;
}

.settings-page label {
  font-family: var(--main-font);
  font-weight: 900;
  color: var(--text-1-color);
}

.settings-page .form-control {
  border-color: #ccc;
  min-height: 36px;
  border-radius: 0.25rem;
  padding: 8px;
}

.settings-page .form-select {
  appearance: auto !important;
}

.settings-page  .nav-tabs .nav-link:not(.active):hover {
  border-color: transparent;
}

.settings-page .fs-16 {
  font-size: 16px;
}

.settings-page .btn-sm {
  font-size: 14px;
  width: auto;
}

.settings-page .form-control.field-barcode {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-1-color) !important;
  letter-spacing: 2px;
}
.settings-page input[type="text"].field-barcode:focus {
  border: 1px solid var(--text-1-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
}
.settings-page .input-group-append button, .settings-page .input-group-append button:hover, .settings-page .input-group-append button:focus {
  background: var(--primary-color);
}

.settings-page .btn-primary:active, .settings-page .btn-primary:focus {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}
/* End of Settings */

/* Accessibility mode */
.kiosk-a11y .a11y-hide {
  display: none;
}

.a11y-only {
  display: none;
}

.kiosk-a11y .a11y-only {
  display: inherit;
}

.kiosk-a11y.landing-page .main-button:focus {
  background: var(--primary-color);
  color: var(--text-3-color);
  outline: 5px solid yellow;
  box-shadow: 0 0 0 5px inset black !important;
}

.kiosk-a11y.landing-page .flag-icon:focus, 
.kiosk-a11y .btn-secondary:focus, 
.kiosk-a11y .btn-primary:focus, 
.kiosk-a11y .btn-checkout:focus, 
.kiosk-a11y .btn-outline:focus,
.kiosk-a11y .btn-number:focus, 
.kiosk-a11y .btn-qty-ui:focus,
.kiosk-a11y .btn-number-nxg:focus,
.kiosk-a11y .main-button:focus,
.kiosk-a11y .delete-edit-item-id:focus, 
.kiosk-a11y .checkout-page .btn:focus,
.kiosk-a11y .btn-outline-secondary:focus,
.kiosk-a11y .btn-outline-primary:focus, 
.kiosk-a11y .btn-outline-dark:focus, 
.kiosk-a11y .btn.flag-icon:focus,
.kiosk-a11y .btn.keypad-button:focus,
.kiosk-a11y .survey-rating-option label:focus,
.kiosk-a11y .close-icon:focus,
.kiosk-a11y .tip-preset-btn:focus,
.kiosk-a11y .upsell-item-header:focus {
  box-shadow: 0 0 0 5px inset black, 0 0 0 5px yellow !important;
}

.kiosk-a11y .btn-category:focus::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  outline: 5px solid yellow;
  box-shadow: 0 0 0 5px inset black !important;
}

.kiosk-a11y .items-box a:focus {
  outline: none;

  &:after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    box-shadow: 0 0 0 5px black, 0 0 0 10px yellow !important;
  }
}

.kiosk-a11y .btn-back:focus::after, .kiosk-a11y .link:focus::after, .kiosk-a11y .tablinks:focus::after {
  content: "";
  position: absolute;
  top: -10px; left: -10px;
  width: calc(100% + 20px); height: calc(100% + 20px);
  z-index: 1;
  box-shadow: 0 0 0 5px black, 0 0 0 10px yellow !important;
}


.kiosk-a11y .upsell-item-header:focus, .kiosk-a11y .upsell-item-header:focus-visible {
  outline: none;
}

.kiosk-a11y .text-content:focus, .kiosk-a11y .modifier-item:focus {
  outline: none;
  box-shadow: 0 0 0 5px black, 0 0 0 10px yellow !important;
}

.kiosk-a11y [data-a11y-kiosk-focus-section]:focus {
  box-shadow: 0 0 0 5px inset black !important;
  outline: 5px solid yellow;
}

.kiosk-a11y [data-a11y-kiosk-focus-audio-only]:focus {
  box-shadow: none !important;
  outline: none !important;
}

.kiosk-a11y .product-list-content section:focus,  
.kiosk-a11y .row.modifiers:focus{
  box-shadow: 0 0 0 5px black, 0 0 0 10px yellow !important;
  outline: none !important;
}

.kiosk-a11y .modal:focus .search_box, .kiosk-a11y .modal .modal-content:focus {
  box-shadow: 0 0 0 5px black, 0 0 0 10px yellow !important;
}

.kiosk-a11y .quick-add {
  display: none !important;
}

.kiosk-a11y .product-list-content .items-box.items-box-quick-add .details {
  margin-bottom: 0; 
}

.kiosk-a11y .paytronix-login-widget {
  display: none !important;
}


.kiosk-a11y .accordion {
  interpolate-size: none;
  overflow: unset;
}

.kiosk-a11y .accordion.accordion-closed {
  height: auto;
  display: none;
}
/* End of Accessibility mode */ 

/* === Accessibility Buttons / Easy Reach mode and magnifier === */
.a11y-btns {
  display: inline-flex;
  gap: 15px;
  position: fixed;
  z-index: 900;
  bottom: 10px;
  left: 10px;
}

button.btn-a11y {
  border-radius: 6px;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

button.btn-a11y svg {
  width: 40px;
  height: 40px;
  display: inline-block;
  fill: #fff;
}

button.btn-a11y, button.btn-a11y:active, button.btn-a11y:focus {
  background: var(--a11y-bg-color) !important;
  border-color: var(--a11y-bg-color) !important;
  color: var(--a11y-icon-color) !important;
}

button.btn-a11y:hover svg, button.btn-a11y:active svg, button.btn-a11y:focus svg {
  fill: var(--a11y-icon-color);
}

.landing-page .admin-header-links {
  position: fixed;
  top: 0;
}

.a11y-reach-mode.landing-page.landing-page-custom-background {
  .landing-bg-custom img {
    display: none;
  }
}

.a11y-reach-mode .reach-mode-btn, .a11y-magnifier-mode .magnifier-mode-btn {
  outline: 5px solid yellow;
  box-shadow: 0 0 0 3px inset black !important;
}

/* Easy Reach mode NESTING! */
.a11y-reach-mode {
  &:before {
    content: "";
    position: fixed;
    bottom: calc(100vh - var(--reach-mode-padding-top));
    left: 0;
    width: 100%;
    height: var(--reach-mode-padding-top);
    background-color: var(--surface-color);
    box-shadow: var(--shadow);
    z-index: 9990;
  }

  .landing-main-buttons {
    padding-top: 60px;
  }

  body {
    /* height: calc(100vh - var(--reach-mode-padding-top)); */
    position: relative;
    top: var(--reach-mode-padding-top);
    overflow-y: scroll;
    min-height: unset !important;
  }

  .modal-dialog {
    padding-top: var(--reach-mode-padding-top);
  }
  
  #checkout-pricingDetail-load {
    position: relative !important;
  }
  
  .substract-payment-footer, 
  .product-list-content>section:not([style*="display: none"]) {
    margin-bottom: 20px;
  }
  
  .page {
    min-height: 0;
  }

  .master-wrapper-page, .main-content-area, .master-column-wrapper {
    min-height: 0;
  }
  
  .corner {
    width: calc(var(--corner-width-sm) * 1px);
    height: calc(var(--corner-width-sm) * 1px);
  }
  .corner, .corner:after, .corner-3:before {
    width: calc(var(--corner-width-sm) * 1px);
    height: calc(var(--corner-width-sm) * 1px);
  }
  .corner-top-right {
    right: calc(var(--corner-width-sm) * 1px);
  }
  .corner-bottom-left {
    bottom: calc(var(--corner-width-sm) * 1px);
    left: calc(var(--corner-width-sm) * 1px);
  }
  .corner-bottom-right {
    bottom: calc(var(--corner-width-sm) * 1px);
  }

  .ready-to-order {
    min-height: calc(100vh - var(--reach-mode-padding-top));
  }

  .landing-logo {
    margin-bottom: 50px;
  }

  .landing-title {
    margin: 0 auto 50px auto;
  }
  
  .landing-bg-top-left {
    left: -120px;
  }
  
  .landing-bg-top-right {
    right: -200px;
  }

  .product-list-container {
    padding-bottom: 0;
  }

  .checkout-main-title {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  
  .checkout-page {
    min-height: calc(100vh - var(--reach-mode-padding-top));
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-order-summary-container {
    position: relative;
  }

  &.html-product-details-page .started_content {
    padding-bottom: 0;
  }

  &.html-product-details-page .order-summary-btns {
    padding-bottom: 0;
  }

  &.kiosk-order-page  {
    min-height: calc(100vh - var(--reach-mode-padding-top));
  }

  &.kiosk-order-page .order-list-detail {
    min-height: 0;
    margin-top: auto;
  }

  &.kiosk-order-page .list-item-content {
    margin-bottom: 20px;
  }

  &.kiosk-order-page #checkout-pricingDetail-load {
    margin-top: auto;
  }

  &.kiosk-order-page .master-column-wrapper {
    min-height: calc(100vh - var(--reach-mode-padding-top));
    justify-content: center;
  }

  .kiosk-ticket .express-payment-info table {
    width: 160px;
    height: 260px;
  }

  .kiosk-ticket {
    margin-bottom: 0;
  }

  &.html-table-service .cta-bottom-container {
    margin-top: 50px;
  }

  .modal-paytronix-login-addon, .paytronix-drawer-cover {
    display: none !important;
  }

  .paytronix-drawer {
    max-height: calc(100vh - var(--reach-mode-padding-top) - 250px);
  }

  .paytronix-drawer-content {
    max-height: calc(100vh - var(--reach-mode-padding-top) - 460px);
  }
}

/* end of Accessibility Easy Reach mode */


/* Theme correction for RTL */

[dir="rtl"] {
  body, .main-title {
    text-align: right;
  }

  .crepe_options_part .col-3 {
    text-align: left;
  }
  
  .pr-5 {
    padding-left: 3rem !important;
    padding-right: auto;
  }

  .mr-4 {
    padding-right: 1rem !important;
    padding-left: auto;
  }

  .page {
    text-align: right;
  }

  .keypad-buttons, .language-selector {
    direction: ltr;
  }

}

/* end of Theme correction for RTL */


