:root {
  --primary: #f49813;
}

body {
  font: 400 14px/24px "Open Sans", sans-serif;
  background-color: #f3f3f7;
  color: #5c6c7f;
  overflow-x: hidden;
}

.backdrop {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
}

.backdrop.show {
  z-index: 104;
  opacity: 1;
}

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

.container {
  padding: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #001737;
  font-weight: 400;
}

h1 {
  font-size: 42px;
  line-height: 48px;
}

h2 {
  font-size: 22px;
  line-height: 36px;
}

h3 {
  font-size: 20px;
  line-height: 32px;
}

h4 {
  font-size: 16px;
  line-height: 28px;
}

h5 {
  font-size: 14px;
  line-height: 24px;
}

h6 {
  font-size: 12px;
  line-height: 22px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #001737;
}

p {
  margin: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover,
a:focus {
  outline: 0;
  color: var(--primary);
}

img {
  max-width: 100%;
}

ul,
ol {
  padding: 0;
  list-style-position: inside;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 20px;
}

dl {
  margin-bottom: 20px;
}

.font-weight-600 {
  font-weight: 600;
}

.text-danger {
  color: #e55353 !important;
}

.text-info {
  color: #39f !important;
}

.text-warning {
  color: #f9b115 !important;
}

.text-success {
  color: #2eb85c !important;
}

.text-center {
  text-align: center !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-muted {
  color: #5c6c7f;
  font-size: 13px;
}

.w-100 {
  width: 100% !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1rem !important;
}

.m-6 {
  margin: 1.5rem !important;
}

.pr-4 {
  padding-right: 1rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.m-6 {
  margin: 1.5rem !important;
}

.pr-6 {
  padding-right: 1.5rem !important;
}

#header {
  position: fixed;
  z-index: 103;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  max-width: 500px;
  height: 60px;
  padding: 18px 15px 12px;
  margin: 0 auto;
  background-color: var(--primary);
  color: #ffffff;
  text-transform: uppercase;
}

#header a {
  position: relative;
  color: inherit;
}

#header p {
  color: var(--text-colour);
  max-width: 65%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#header .switch-layout {
  margin-right: 15px;
}

#header .switch-grid {
  display: none;
}

.list-layout #header .switch-grid {
  display: inline;
}

.list-layout #header .switch-list {
  display: none;
}

#header a span {
  position: absolute;
  bottom: 2px;
  right: -7px;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #5c6c7f;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
}

#header .switch-layout + a span {
  bottom: -3px;
  right: -3px;
}

#header i {
  color: var(--text-colour);
  font-size: 22px;
}

#header .circle {
  position: absolute;
  top: 50%;
  right: 0;
  display: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 0.75;
  transition: height 0.25s ease, width 0.25s ease;
  transform: translateY(-55%);
}

#header a + a .circle {
  right: 5px;
}

#header .circle.show {
  display: block;
}

#header .circle:before,
#header .circle:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  border-radius: 50%;
  border: 10px solid #ffffff;
  opacity: 0.5;
  content: "";
}

#header .circle:before {
  -webkit-animation: ripple 1s linear 1;
  animation: ripple 1s linear 1;
}

#header .circle:after {
  -webkit-animation: ripple 1s linear 1s 1;
  animation: ripple 1s linear 1s 1;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
  }

  75% {
    -webkit-transform: scale(1.75);
    opacity: 0.75;
  }

  100% {
    -webkit-transform: scale(2);
    opacity: 0;
  }
}

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

  75% {
    transform: scale(1.75);
    opacity: 0.75;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.menu {
  position: fixed;
  z-index: 105;
  top: 0;
  bottom: 0;
  left: -300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 275px;
  padding: 40px 25px;
  background-color: #ffffff;
  box-shadow: 5px 0 5px 0 rgba(0, 0, 0, 0.06);
  transition: all 0.25s;
}

.menu.show {
  left: 0;
}

.menu > a {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  line-height: 24px;
  color: #5c6c7f;
}

.menu ul {
  margin: 0;
  list-style: none;
}

.menu ul li {
  margin-bottom: 25px;
}

.menu ul li:last-child {
  margin-bottom: 0;
}

.menu ul li a {
  display: flex;
  align-items: center;
  color: #001737;
  font-size: 18px;
}

.menu ul li a i {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-right: 20px;
  color: var(--primary);
  font-size: 32px;
  line-height: 64px;
  text-align: center;
  box-shadow: 0 1px 2px 1px rgba(154, 154, 154, 0.3);
}

.menu ul li a.active i {
  background-color: var(--primary);
  color: var(--text-colour);
}

.menu .languages li {
  margin-bottom: 0;
}

.menu .languages li .selected img {
  border-color: transparent;
  box-shadow: 0 1px 2px 1px rgba(154, 154, 154, 0.3);
}

#page-content {
  max-width: 500px;
  padding-top: 60px;
  margin: 0 auto;
}

.home-screen {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  color: #ffffff;
  height: calc(100 * var(--vh));
  text-align: center;
}

.home-screen.default-screen {
  min-height: calc(100 * var(--vh));
  height: auto;
}

.home-screen:after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
  content: "";
}

.home-screen div {
  width: 100%;
  padding: 0 15px;
}

.home-screen .btn {
  color: var(--text-colour);
  max-width: 300px;
  margin-bottom: 20px;
}

.home-screen h1 {
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
}

.languages {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  list-style: none;
}

.languages li {
  margin: 0 7px;
}

.languages li img {
  width: 28px;
  height: 28px;
  border: 2px solid transparent;
  border-radius: 50%;
}

.languages li .selected img {
  border-color: #ffffff;
}

.home-screen > p {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  text-align: center;
}

.home-screen > p img {
  vertical-align: middle;
}

.btn {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 40px;
  margin: 0 auto;
  background-color: var(--primary);
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}

.btn:hover,
.btn:active,
.btn:focus {
  color: #ffffff;
}

.waves {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: block;
  -webkit-user-select: none;
  transform: translateZ(0);
  transition: all 0.1s ease-out;
}

.waves .waves-ripple {
  position: absolute;
  z-index: -1;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-top: -10px;
  margin-left: -10px;
  background-color: rgba(255, 255, 255, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: scale(0);
  transition: all 0.7s ease-out;
}

.menu-items-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 15px 15px 2px;
}

.menu-items-container.has-images {
  margin: 0 0 15px 0;
}

.menu-items-container .product-images.has-images {
  width: 100%;
  margin-bottom: -15px;
}

.menu-items-container .product-images.has-images .item {
  width: 100%;
}

.menu-items-products-container {
  margin: 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.list-layout .menu-items-products-container .menu-item {
  margin-right: 30px;
}

.menu-item {
  position: relative;
  width: calc(50% - 7px);
  border-radius: 15px;
  background-color: #ffffff;
  margin-bottom: 15px;
  box-shadow: 0 1px 2px 1px rgba(154, 154, 154, 0.3);
}

.menu-item > a {
  display: block;
  padding: 15px;
  text-align: center;
}

.menu-item .menu-item-thumb {
  width: 64px;
  height: 64px;
  margin: 0 auto 15px;
}

.menu-item .menu-item-thumb i {
  color: var(--primary);
  font-size: 42px;
  line-height: 64px;
}

.menu-item .menu-item-thumb img {
  border-radius: 50%;
}

.menu-item h5 {
  line-height: 18px;
}

.menu-item h5 small a {
  color: var(--primary);
  font-size: 12px;
}

.menu-item h4 {
  line-height: 18px;
  text-transform: uppercase;
}

.menu-item h4 small,
.menu-item h5 small {
  display: block;
  font-size: 13px;
  line-height: 16px;
  color: #8392a5;
  text-transform: none;
}

.menu-item .menu-item-details {
  position: absolute;
  right: 0;
  bottom: -15px;
  left: 0;
}

.menu-item .menu-item-details a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-item .menu-item-details .price {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 30px;
  padding: 0 25px 0 15px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  background-color: var(--primary);
  color: var(--text-colour);
  font-size: 12px;
  line-height: 12px;
  text-align: center;
}

.menu-item .menu-item-details .price small {
  display: block;
  line-height: 10px;
  text-decoration: line-through;
}

.menu-item .menu-item-details span::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 1px solid var(--primary);
  border-radius: 15px;
  margin-right: -15px;
  background-color: #ffffff;
  color: var(--primary);
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  content: "+";
  text-shadow: none;
}

.products-items .menu-item {
  margin-bottom: 30px;
}

.products-items .menu-item > a {
  padding-bottom: 40px;
}

.cart-content {
  margin-bottom: 100px;
}

.cart-content form {
  width: 100%;
  margin-bottom: 15px;
}

.cart-content .menu-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px 0 15px 15px;
  border-radius: 0;
  margin-bottom: 0;
}

.cart-content .menu-item .menu-item-details {
  position: relative;
  bottom: 0;
  margin-left: -5px;
}

.cart-content .menu-item .menu-item-details span {
  width: 70px;
  padding: 0 5px 0 15px;
  border-radius: 0;
}

.cart-content .menu-item .menu-item-details span:before {
  content: "";
  position: absolute;
  top: 0;
  left: -15px;
  z-index: 1;
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 1px solid #fff;
  border-radius: 15px;
  margin-right: -15px;
  background-color: #fff;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.cart-content .menu-item .menu-item-details span::after {
  display: none;
}

.cart-content .menu-item .remove-from-cart {
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  margin-right: 10px;
  color: #001737;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
}

.cart-content .menu-item h5,
.list-layout .cart-content .menu-item h5 {
  width: calc(100% - 160px);
}

.cart-content .menu-item:first-of-type {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.cart-content .menu-item.total {
  position: relative;
  justify-content: space-between;
  padding-right: 15px;
  border-radius: 15px;
}

.cart-content .menu-item + .menu-item.total {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.cart-content .menu-item + .menu-item.total:before,
.cart-content .menu-item + .menu-item.total:after {
  position: absolute;
  z-index: 1;
  top: -10px;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f3f3f7;
  content: "";
}

.cart-content .menu-item + .menu-item.total:before {
  left: -10px;
  box-shadow: 2px 0 1px 0 rgba(154, 154, 154, 0.3);
}

.cart-content .menu-item + .menu-item.total:after {
  right: -10px;
  box-shadow: -2px 0 1px 0 rgba(154, 154, 154, 0.3);
}

.cart-content .menu-item.total h2 {
  color: var(--primary);
}

.cart-content .menu-item.total a {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 12px;
  background-color: #f3f3f7;
  color: #5c6c7f;
  font-size: 13px;
}

.cart-content .quantity {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.cart-content .quantity .quantity-btn {
  width: 20px;
  height: 20px;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  line-height: 18px;
  text-align: center;
}

.cart-content .quantity .quantity-up {
  margin-left: 3px;
}

.cart-content .quantity .quantity-down {
  margin-right: 3px;
}

.cart-content .quantity input[type=number] {
  width: 28px;
  height: 28px;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  text-align: center;
  -moz-appearance: textfield;
}

.cart-content .quantity input[type=number]::-webkit-inner-spin-button,
.cart-content .quantity input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.list-layout .menu-items-container {
  display: block;
}

.list-layout .menu-item {
  width: 100%;
}

.list-layout .menu-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.list-layout .menu-item .menu-item-thumb {
  order: 2;
  width: 42px;
  height: 42px;
  margin: 0;
}

.list-layout .menu-item .menu-item-thumb i {
  line-height: 42px;
}

.list-layout .products-items .menu-item > a {
  padding-bottom: 15px;
}

.list-layout .menu-item h4,
.list-layout .menu-item h5 {
  width: calc(100% - 50px);
  margin: 10px 0;
}

.product-description {
  position: relative;
  z-index: 100;
  padding: 15px;
  border-radius: 15px;
  margin: -15px 15px 15px 15px;
  background-color: #ffffff;
  box-shadow: 0 1px 2px 1px rgba(154, 154, 154, 0.3);
}

.product-description strong {
  font-weight: 600;
}

.product-description + h4 {
  margin: 30px 15px 15px;
}

.product-title {
  position: relative;
  padding-bottom: 10px;
  padding-right: 70px;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 15px;
}

.product-title span {
  position: absolute;
  top: 0;
  right: -15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 35px;
  padding: 0 10px 0 10px;
  background-color: var(--primary);
  color: var(--text-colour);
  line-height: 16px;
  text-align: center;
}

.product-title span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -16px;
  width: 22px;
  border-radius: 12px;
  background-color: #ffffff;
  content: "";
}

.product-title span small {
  display: block;
  line-height: 10px;
  text-decoration: line-through;
}

.product-title h3 {
  line-height: 22px;
}

.product-title h3 small {
  display: block;
  color: #8392a5;
  font-size: 11px;
}

.call-to-action {
  position: fixed;
  z-index: 102;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 15px 10px;
  box-shadow: 0 1px 2px 1px rgba(154, 154, 154, 0.3);
  background-color: #ffffff;
}

.call-to-action.checkout {
  padding: 15px;
  background-color: #ffffff;
}

.call-to-action.checkout:before,
.call-to-action.checkout:after {
  display: none;
}

.call-to-action a:not(.btn) {
  margin: -20px auto 0;
  display: block;
  width: 78px;
  height: 78px;
  padding: 0;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 32px;
  line-height: 56px;
  text-align: center;
  border: solid 15px #fff;
}

.call-to-action a.btn {
  color: var(--text-colour);
  margin: 20px auto;
  border-radius: 4px;
  line-height: 16px;
  text-transform: none;
}

.call-to-action a.add-to-cart {
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--text-colour);
  font-size: 32px;
  line-height: 48px;
}

.call-to-action i {
  font-size: 30px;
}

.call-to-action.product-details i {
  font-size: 22px;
}

.call-to-action.checkout i {
  font-size: 26px;
}

.call-to-action.checkout a {
  flex: 1;
  text-align: center;
}

.call-to-action a i {
  color: var(--text-colour);
  position: relative;
  top: -4px;
}

.call-to-action.product-details a i {
  position: relative;
  top: -7px;
}

.call-to-action .small {
  font-size: 11px;
  padding: 0;
  margin: -9px 0 0 0;
  text-align: center;
}

.call-to-action .min-cart-value {
  font-size: 13px;
  margin: 20px 0;
  text-align: center;
  width: 100%;
}

.order-overview {
  margin-top: 0;
}

.order-overview .menu-item:first-of-type {
  border-radius: 0;
}

.order-overview .menu-item:first-of-type::after {
  position: absolute;
  z-index: 1;
  top: -10px;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f3f3f7;
  content: "";
  left: -10px;
  box-shadow: 2px 0 1px 0 rgba(154, 154, 154, 0.3);
}

.order-overview .menu-item:first-of-type::before {
  position: absolute;
  z-index: 1;
  top: -10px;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f3f3f7;
  content: "";
  right: -10px;
  box-shadow: -2px 0 1px 0 rgba(154, 154, 154, 0.3);
}

.order-overview .menu-item .remove-from-cart {
  width: 25px;
}

.product-images.empty {
  height: 85px;
}

.product-images.empty + .product-description {
  margin-top: -70px;
}

.product-images {
  height: 275px;
  background-color: var(--primary);
}

.product-images .item {
  height: 275px;
  background: no-repeat center/cover;
}

.owl-carousel .owl-dots {
  position: absolute;
  bottom: 85px;
  left: 0;
  right: 0;
  text-align: center;
}

.owl-carousel button.owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
  border: 2px solid #ffffff;
  outline: 0;
}

.owl-carousel button.owl-dot.active {
  border-color: var(--primary);
  background-color: var(--primary);
}

.owl-carousel button.owl-dot:last-child {
  margin-right: 0;
}

.lookforward {
  background-color: #f3f3f7;
}

.lookforward-close-btn {
  display: none;
}

.lookforward-loader {
  border: 4px solid var(--primary);
}

#observations {
  width: calc(100% - 30px);
  min-height: 125px;
  padding: 10px;
  border: none;
  border-radius: 15px;
  margin: 0 15px 100px;
  box-shadow: 0 1px 2px 1px rgba(154, 154, 154, 0.3);
  resize: none;
}

.review-form {
  position: relative;
  margin: 0 15px 15px;
}

.review-form textarea {
  position: relative;
  width: 100%;
  height: 60px;
  padding: 10px 50px 10px 10px;
  border: none;
  border-radius: 15px;
  line-height: 22px;
  box-shadow: 0 1px 2px 1px rgba(154, 154, 154, 0.3);
}

.review-form button[type=submit] {
  position: absolute;
  top: 50%;
  right: 10px;
  border: none;
  background-color: transparent;
  color: #8392a5;
  font-size: 20px;
  transform: translateY(-50%);
}

.review-form textarea::-moz-placeholder {
  color: #8392a5;
}

.review-form textarea::-webkit-input-placeholder {
  color: #8392a5;
}

.review-form textarea:-ms-input-placeholder {
  color: #8392a5;
}

.product-variants {
  overflow: hidden;
  display: flex;
  padding: 2px;
  border-radius: 15px;
  margin: 20px 0;
  background-color: #f3f3f7;
}

.product-variants > label {
  position: relative;
  flex: 1;
  word-break: break-all;
}

.product-variants input[type=radio] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
}

.product-variants > label > span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 5px;
  border-radius: 15px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
}

.product-variants input[type=radio]:checked + span {
  background-color: #ffffff;
  box-shadow: 0 6px 20px rgba(6, 5, 50, 0.19);
}

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

.w-100 {
  width: 100% !important;
}

.ad-zone {
  text-align: center;
  padding-bottom: 5px;
}

.products-items .ad-zone {
  padding-bottom: 10px;
}

.product-info .ad-zone {
  padding-bottom: 0;
}

.restaurants-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  list-style: none;
}

.restaurants-grid li {
  margin: 15px 0;
  padding: 0 15px;
  width: 25%;
}

.restaurants-grid li p {
  margin-bottom: 30px;
}

.restaurants-grid .btn {
  display: inline-block;
  width: 50%;
}

@media (max-width: 1200px) {
  .restaurants-grid li {
    width: 33.333333333%;
  }

  .restaurants-grid .btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .restaurants-grid li {
    width: 50%;
  }
}

.allergens {
  padding: 15px;
  border-radius: 15px;
  margin: 0 15px 50px;
  background-color: #ffffff;
  font-size: 10px;
  line-height: 18px;
  box-shadow: 0 1px 2px 1px rgba(154, 154, 154, 0.3);
}

.product-info > *:last-child {
  margin-bottom: 100px;
}

.modal {
  position: fixed;
  z-index: 1000;
  top: 50%;
  right: 15px;
  left: 15px;
  display: none;
  padding: 15px;
  border-radius: 4px;
  background-color: #ffffff;
  max-width: 500px;
  margin: 0 auto;
  transform: translateY(-50%);
}

.modal .close {
  position: absolute;
  z-index: 1;
  top: 5px;
  right: 3px;
  border: none;
  background-color: transparent;
  font-size: 20px;
  line-height: 20px;
  transition: all 0.25s;
}

.modal .modal-content > i {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: -42px auto 15px;
  background-color: var(--primary);
  color: var(--text-colour);
  font-size: 32px;
  line-height: 64px;
  text-align: center;
}

.modal .modal-body {
  text-align: center;
}

.modal .modal-body form {
  margin-top: 20px;
}

.modal .modal-body input,
.modal .modal-body textarea {
  width: 100%;
  height: 42px;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  padding: 8px;
}

.modal .modal-body input[type=tel] {
  padding-right: 6px;
  padding-left: 52px;
}

.modal .modal-body textarea {
  height: 84px;
}

.modal .modal-body input + input,
.modal .modal-body input + textarea,
.modal .modal-body input + select,
.modal .modal-body textarea + select,
.modal .modal-body select + textarea {
  margin-top: 10px;
}

.modal .modal-body input:focus,
.modal .modal-body textarea:focus,
.modal .modal-body select:focus {
  outline: none;
  border-color: var(--primary);
}

.modal .modal-body button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 4px;
  margin-top: 10px;
  background-color: var(--primary);
  color: var(--text-colour);
}

html:not([dir=rtl]) .custom-switch .custom-control-label:before {
  right: -0.8rem;
  border-color: #c8c8c8;
}

html:not([dir=rtl]) .custom-switch .custom-control-label:after {
  right: calc(-0.8rem + 2px);
  top: 3px;
  background-color: #c8c8c8;
}

.custom-control-label::before {
  top: 0rem;
}

.custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--primary) !important;
  background-color: var(--primary) !important;
}

.iti {
  margin: 10px 0;
  width: 100%;
}

.iti__flag {
  background-image: url("/images/vendor/intl-tel-input/build/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("/images/vendor/intl-tel-input/build/flags@2x.png");
  }
}

.cart-content.whatsapp {
  margin-bottom: 40px;
}

.order-status {
  font-size: 1.2rem;
  text-transform: lowercase;
}

.call-to-action.whatsapp {
  display: block;
  position: fixed;
  z-index: 102;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 500px;
  margin: 0 auto;
  padding: 25px 25px 0 25px;
  box-shadow: 0 1px 2px 1px rgba(154, 154, 154, 0.3);
  background-color: #ffffff;
  text-align: center;
}

.fa-whatsapp.icon {
  font-size: 5.5rem;
  margin-top: 1rem;
  color: #51c85d;
}

.btn.whatsapp {
  background-color: #51c85d;
  margin: 20px auto;
  border-radius: 4px;
  line-height: 16px;
  text-transform: none;
}

.disclaimer {
  color: #c4c4c4;
  font-size: 11px;
  padding: 20px;
  text-align: center;
  line-height: 14px;
}

.disclaimer a {
  color: #c4c4c4;
}

