.react-calendar {
  width: 350px;
  max-width: 100%;
  background: white;
  border: 1px solid #a0a096;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.125em; }

.react-calendar,
.react-calendar *,
.react-calendar *:before,
.react-calendar *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.react-calendar button {
  margin: 0;
  border: 0;
  outline: none; }

.react-calendar button:enabled:hover {
  cursor: pointer; }

.react-calendar__navigation {
  height: 44px;
  margin-bottom: 1em; }

.react-calendar__navigation button {
  min-width: 44px;
  background: none; }

.react-calendar__navigation button:enabled:hover,
.react-calendar__navigation button:enabled:focus {
  background-color: #e6e6e6; }

.react-calendar__navigation button[disabled] {
  background-color: #f0f0f0; }

.react-calendar__month-view__weekdays {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.75em; }

.react-calendar__month-view__weekdays__weekday {
  padding: 0.5em; }

.react-calendar__month-view__weekNumbers {
  font-weight: bold; }

.react-calendar__month-view__weekNumbers .react-calendar__tile {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75em;
  padding: calc(0.75em / 0.75) calc(0.5em / 0.75); }

.react-calendar__month-view__days__day--weekend {
  color: #d10000; }

.react-calendar__month-view__days__day--neighboringMonth {
  color: #757575; }

.react-calendar__year-view .react-calendar__tile,
.react-calendar__decade-view .react-calendar__tile,
.react-calendar__century-view .react-calendar__tile {
  padding: 2em 0.5em; }

.react-calendar__tile {
  max-width: 100%;
  text-align: center;
  padding: 0.75em 0.5em;
  background: none; }

.react-calendar__tile:disabled {
  background-color: #f0f0f0; }

.react-calendar__tile:enabled:hover,
.react-calendar__tile:enabled:focus {
  background-color: #e6e6e6; }

.react-calendar__tile--hasActive {
  background: #76baff; }

.react-calendar__tile--hasActive:enabled:hover,
.react-calendar__tile--hasActive:enabled:focus {
  background: #a9d4ff; }

.react-calendar__tile--active {
  background: #006edc;
  color: white; }

.react-calendar__tile--active:enabled:hover,
.react-calendar__tile--active:enabled:focus {
  background: #1087ff; }

.react-calendar--selectRange .react-calendar__tile--hover {
  background-color: #e6e6e6; }

.react-date-picker {
  display: inline-flex;
  position: relative; }

.react-date-picker,
.react-date-picker *,
.react-date-picker *:before,
.react-date-picker *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.react-date-picker--disabled {
  background-color: #f0f0f0;
  color: #6d6d6d; }

.react-date-picker__wrapper {
  display: flex;
  border: thin solid gray; }

.react-date-picker__inputGroup {
  min-width: calc((4px * 3) +  0.54em * 8  +  0.217em * 2);
  flex-grow: 1;
  display: flex;
  padding: 0 2px;
  align-items: baseline;
  box-sizing: content-box; }

.react-date-picker__inputGroup__divider {
  padding: 1px 0;
  white-space: pre; }

.react-date-picker__inputGroup__input {
  min-width: 0.54em;
  height: 100%;
  position: relative;
  padding: 0 1px;
  border: 0;
  background: none;
  font: inherit;
  box-sizing: content-box;
  -moz-appearance: textfield; }

.react-date-picker__inputGroup__input::-webkit-outer-spin-button,
.react-date-picker__inputGroup__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

.react-date-picker__inputGroup__input:invalid {
  background: rgba(255, 0, 0, 0.1); }

.react-date-picker__inputGroup__input--hasLeadingZero {
  margin-left: -0.54em;
  padding-left: calc(1px +  0.54em); }

.react-date-picker__button {
  border: 0;
  background: transparent;
  padding: 4px 6px; }

.react-date-picker__button:enabled {
  cursor: pointer; }

.react-date-picker__button:enabled:hover .react-date-picker__button__icon,
.react-date-picker__button:enabled:focus .react-date-picker__button__icon {
  stroke: #0078d7; }

.react-date-picker__button:disabled .react-date-picker__button__icon {
  stroke: #6d6d6d; }

.react-date-picker__button svg {
  display: inherit; }

.react-date-picker__calendar {
  width: 350px;
  max-width: 100vw;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1; }

.react-date-picker__calendar--closed {
  display: none; }

.react-date-picker__calendar .react-calendar {
  border-width: thin; }

/**
 *
 * All animations must live in their own file
 * in the animations directory and be included
 * here.
 *
 */
/**
 * Styles shared by multiple animations
 */
/**
 * Dots
 */
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  45% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7; }
  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  45% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7; }
  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }

.ball-pulse > div:nth-child(0) {
  -webkit-animation: scale 0.75s -0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s -0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.ball-pulse > div:nth-child(1) {
  -webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.ball-pulse > div:nth-child(2) {
  -webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.ball-pulse > div:nth-child(3) {
  -webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.ball-pulse > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block; }

@-webkit-keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px); }
  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px); }
  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

.ball-pulse-sync > div:nth-child(0) {
  -webkit-animation: ball-pulse-sync 0.6s -0.21s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s -0.21s infinite ease-in-out; }

.ball-pulse-sync > div:nth-child(1) {
  -webkit-animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out; }

.ball-pulse-sync > div:nth-child(2) {
  -webkit-animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out; }

.ball-pulse-sync > div:nth-child(3) {
  -webkit-animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s 0s infinite ease-in-out; }

.ball-pulse-sync > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block; }

@-webkit-keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0; } }

@keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0; } }

.ball-scale > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  height: 60px;
  width: 60px;
  -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
  animation: ball-scale 1s 0s ease-in-out infinite; }

@keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0; } }

.ball-scale > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  height: 60px;
  width: 60px;
  -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
  animation: ball-scale 1s 0s ease-in-out infinite; }

.ball-scale-random {
  width: 37px;
  height: 40px; }

.ball-scale-random > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  display: inline-block;
  height: 30px;
  width: 30px;
  -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
  animation: ball-scale 1s 0s ease-in-out infinite; }

.ball-scale-random > div:nth-child(1) {
  margin-left: -7px;
  -webkit-animation: ball-scale 1s 0.2s ease-in-out infinite;
  animation: ball-scale 1s 0.2s ease-in-out infinite; }

.ball-scale-random > div:nth-child(3) {
  margin-left: -2px;
  margin-top: 9px;
  -webkit-animation: ball-scale 1s 0.5s ease-in-out infinite;
  animation: ball-scale 1s 0.5s ease-in-out infinite; }

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.ball-rotate {
  position: relative; }

.ball-rotate > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: relative; }

.ball-rotate > div:first-child {
  -webkit-animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
  animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite; }

.ball-rotate > div:before, .ball-rotate > div:after {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  content: "";
  position: absolute;
  opacity: 0.8; }

.ball-rotate > div:before {
  top: 0px;
  left: -28px; }

.ball-rotate > div:after {
  top: 0px;
  left: 25px; }

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1); }
  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
    transform: rotate(180deg) scale(0.6); }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1); } }

.ball-clip-rotate > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 2px solid #fff;
  border-bottom-color: transparent;
  height: 25px;
  width: 25px;
  background: transparent !important;
  display: inline-block;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite; }

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1); }
  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
    transform: rotate(180deg) scale(0.6); }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1); } }

@keyframes scale {
  30% {
    -webkit-transform: scale(0.3);
    transform: scale(0.3); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

.ball-clip-rotate-pulse {
  position: relative;
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px); }

.ball-clip-rotate-pulse > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 100%; }

.ball-clip-rotate-pulse > div:first-child {
  background: #fff;
  height: 16px;
  width: 16px;
  top: 7px;
  left: -7px;
  -webkit-animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; }

.ball-clip-rotate-pulse > div:last-child {
  position: absolute;
  border: 2px solid #fff;
  width: 30px;
  height: 30px;
  left: -16px;
  top: -2px;
  background: transparent;
  border: 2px solid;
  border-color: #fff transparent #fff transparent;
  -webkit-animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  -webkit-animation-duration: 1s;
  animation-duration: 1s; }

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1); }
  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
    transform: rotate(180deg) scale(0.6); }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1); } }

.ball-clip-rotate-multiple {
  position: relative; }

.ball-clip-rotate-multiple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  left: -20px;
  top: -20px;
  border: 2px solid #fff;
  border-bottom-color: transparent;
  border-top-color: transparent;
  border-radius: 100%;
  height: 35px;
  width: 35px;
  -webkit-animation: rotate 1s 0s ease-in-out infinite;
  animation: rotate 1s 0s ease-in-out infinite; }

.ball-clip-rotate-multiple > div:last-child {
  display: inline-block;
  top: -10px;
  left: -10px;
  width: 15px;
  height: 15px;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  border-color: #fff transparent #fff transparent;
  -webkit-animation-direction: reverse;
  animation-direction: reverse; }

@-webkit-keyframes ball-scale-ripple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1; }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7; }
  100% {
    opacity: 0.0; } }

@keyframes ball-scale-ripple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1; }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7; }
  100% {
    opacity: 0.0; } }

.ball-scale-ripple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  border: 2px solid #fff;
  -webkit-animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8); }

@-webkit-keyframes ball-scale-ripple-multiple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1; }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7; }
  100% {
    opacity: 0.0; } }

@keyframes ball-scale-ripple-multiple {
  0% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 1; }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7; }
  100% {
    opacity: 0.0; } }

.ball-scale-ripple-multiple {
  position: relative;
  -webkit-transform: translateY(-25px);
  -ms-transform: translateY(-25px);
  transform: translateY(-25px); }

.ball-scale-ripple-multiple > div:nth-child(0) {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s; }

.ball-scale-ripple-multiple > div:nth-child(1) {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s; }

.ball-scale-ripple-multiple > div:nth-child(2) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s; }

.ball-scale-ripple-multiple > div:nth-child(3) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s; }

.ball-scale-ripple-multiple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  top: -2px;
  left: -26px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 2px solid #fff;
  -webkit-animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8); }

@-webkit-keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

.ball-beat > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: ball-beat 0.7s 0s infinite linear;
  animation: ball-beat 0.7s 0s infinite linear; }

.ball-beat > div:nth-child(2n-1) {
  -webkit-animation-delay: -0.35s !important;
  animation-delay: -0.35s !important; }

@-webkit-keyframes ball-scale-multiple {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0; }
  5% {
    opacity: 1; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0; } }

@keyframes ball-scale-multiple {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0; }
  5% {
    opacity: 1; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0; } }

.ball-scale-multiple {
  position: relative;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px); }

.ball-scale-multiple > div:nth-child(2) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s; }

.ball-scale-multiple > div:nth-child(3) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s; }

.ball-scale-multiple > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  left: -30px;
  top: 0px;
  opacity: 0;
  margin: 0;
  width: 60px;
  height: 60px;
  -webkit-animation: ball-scale-multiple 1s 0s linear infinite;
  animation: ball-scale-multiple 1s 0s linear infinite; }

@-webkit-keyframes ball-triangle-path-1 {
  33% {
    -webkit-transform: translate(25px, -50px);
    transform: translate(25px, -50px); }
  66% {
    -webkit-transform: translate(50px, 0px);
    transform: translate(50px, 0px); }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px); } }

@keyframes ball-triangle-path-1 {
  33% {
    -webkit-transform: translate(25px, -50px);
    transform: translate(25px, -50px); }
  66% {
    -webkit-transform: translate(50px, 0px);
    transform: translate(50px, 0px); }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px); } }

@-webkit-keyframes ball-triangle-path-2 {
  33% {
    -webkit-transform: translate(25px, 50px);
    transform: translate(25px, 50px); }
  66% {
    -webkit-transform: translate(-25px, 50px);
    transform: translate(-25px, 50px); }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px); } }

@keyframes ball-triangle-path-2 {
  33% {
    -webkit-transform: translate(25px, 50px);
    transform: translate(25px, 50px); }
  66% {
    -webkit-transform: translate(-25px, 50px);
    transform: translate(-25px, 50px); }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px); } }

@-webkit-keyframes ball-triangle-path-3 {
  33% {
    -webkit-transform: translate(-50px, 0px);
    transform: translate(-50px, 0px); }
  66% {
    -webkit-transform: translate(-25px, -50px);
    transform: translate(-25px, -50px); }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px); } }

@keyframes ball-triangle-path-3 {
  33% {
    -webkit-transform: translate(-50px, 0px);
    transform: translate(-50px, 0px); }
  66% {
    -webkit-transform: translate(-25px, -50px);
    transform: translate(-25px, -50px); }
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px); } }

.ball-triangle-path {
  position: relative;
  -webkit-transform: translate(-29.994px, -37.50938px);
  -ms-transform: translate(-29.994px, -37.50938px);
  transform: translate(-29.994px, -37.50938px); }

.ball-triangle-path > div:nth-child(1) {
  -webkit-animation-name: ball-triangle-path-1;
  animation-name: ball-triangle-path-1;
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.ball-triangle-path > div:nth-child(2) {
  -webkit-animation-name: ball-triangle-path-2;
  animation-name: ball-triangle-path-2;
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.ball-triangle-path > div:nth-child(3) {
  -webkit-animation-name: ball-triangle-path-3;
  animation-name: ball-triangle-path-3;
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.ball-triangle-path > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 1px solid #fff; }

.ball-triangle-path > div:nth-of-type(1) {
  top: 50px; }

.ball-triangle-path > div:nth-of-type(2) {
  left: 25px; }

.ball-triangle-path > div:nth-of-type(3) {
  top: 50px;
  left: 50px; }

@-webkit-keyframes ball-pulse-rise-even {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  25% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4); }
  75% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes ball-pulse-rise-even {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  25% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4); }
  75% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(1);
    transform: scale(1); } }

@-webkit-keyframes ball-pulse-rise-odd {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4); }
  25% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px); }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  75% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(0.75);
    transform: scale(0.75); } }

@keyframes ball-pulse-rise-odd {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4); }
  25% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px); }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  75% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(0.75);
    transform: scale(0.75); } }

.ball-pulse-rise > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
  animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0; }

.ball-pulse-rise > div:nth-child(2n) {
  -webkit-animation-name: ball-pulse-rise-even;
  animation-name: ball-pulse-rise-even; }

.ball-pulse-rise > div:nth-child(2n-1) {
  -webkit-animation-name: ball-pulse-rise-odd;
  animation-name: ball-pulse-rise-odd; }

@-webkit-keyframes ball-grid-beat {
  50% {
    opacity: 0.7; }
  100% {
    opacity: 1; } }

@keyframes ball-grid-beat {
  50% {
    opacity: 0.7; }
  100% {
    opacity: 1; } }

.ball-grid-beat {
  width: 57px; }

.ball-grid-beat > div:nth-child(1) {
  -webkit-animation-delay: 0.44s;
  animation-delay: 0.44s;
  -webkit-animation-duration: 1.27s;
  animation-duration: 1.27s; }

.ball-grid-beat > div:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-duration: 1.52s;
  animation-duration: 1.52s; }

.ball-grid-beat > div:nth-child(3) {
  -webkit-animation-delay: 0.14s;
  animation-delay: 0.14s;
  -webkit-animation-duration: 0.61s;
  animation-duration: 0.61s; }

.ball-grid-beat > div:nth-child(4) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
  -webkit-animation-duration: 0.82s;
  animation-duration: 0.82s; }

.ball-grid-beat > div:nth-child(5) {
  -webkit-animation-delay: -0.01s;
  animation-delay: -0.01s;
  -webkit-animation-duration: 1.24s;
  animation-duration: 1.24s; }

.ball-grid-beat > div:nth-child(6) {
  -webkit-animation-delay: -0.07s;
  animation-delay: -0.07s;
  -webkit-animation-duration: 1.35s;
  animation-duration: 1.35s; }

.ball-grid-beat > div:nth-child(7) {
  -webkit-animation-delay: 0.29s;
  animation-delay: 0.29s;
  -webkit-animation-duration: 1.44s;
  animation-duration: 1.44s; }

.ball-grid-beat > div:nth-child(8) {
  -webkit-animation-delay: 0.63s;
  animation-delay: 0.63s;
  -webkit-animation-duration: 1.19s;
  animation-duration: 1.19s; }

.ball-grid-beat > div:nth-child(9) {
  -webkit-animation-delay: -0.18s;
  animation-delay: -0.18s;
  -webkit-animation-duration: 1.48s;
  animation-duration: 1.48s; }

.ball-grid-beat > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  float: left;
  -webkit-animation-name: ball-grid-beat;
  animation-name: ball-grid-beat;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0; }

@-webkit-keyframes ball-grid-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.7; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }

@keyframes ball-grid-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.7; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }

.ball-grid-pulse {
  width: 57px; }

.ball-grid-pulse > div:nth-child(1) {
  -webkit-animation-delay: 0.58s;
  animation-delay: 0.58s;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s; }

.ball-grid-pulse > div:nth-child(2) {
  -webkit-animation-delay: 0.01s;
  animation-delay: 0.01s;
  -webkit-animation-duration: 0.94s;
  animation-duration: 0.94s; }

.ball-grid-pulse > div:nth-child(3) {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
  -webkit-animation-duration: 1.43s;
  animation-duration: 1.43s; }

.ball-grid-pulse > div:nth-child(4) {
  -webkit-animation-delay: -0.03s;
  animation-delay: -0.03s;
  -webkit-animation-duration: 0.74s;
  animation-duration: 0.74s; }

.ball-grid-pulse > div:nth-child(5) {
  -webkit-animation-delay: 0.21s;
  animation-delay: 0.21s;
  -webkit-animation-duration: 0.68s;
  animation-duration: 0.68s; }

.ball-grid-pulse > div:nth-child(6) {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
  -webkit-animation-duration: 1.17s;
  animation-duration: 1.17s; }

.ball-grid-pulse > div:nth-child(7) {
  -webkit-animation-delay: 0.46s;
  animation-delay: 0.46s;
  -webkit-animation-duration: 1.41s;
  animation-duration: 1.41s; }

.ball-grid-pulse > div:nth-child(8) {
  -webkit-animation-delay: 0.02s;
  animation-delay: 0.02s;
  -webkit-animation-duration: 1.56s;
  animation-duration: 1.56s; }

.ball-grid-pulse > div:nth-child(9) {
  -webkit-animation-delay: 0.13s;
  animation-delay: 0.13s;
  -webkit-animation-duration: 0.78s;
  animation-duration: 0.78s; }

.ball-grid-pulse > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  float: left;
  -webkit-animation-name: ball-grid-pulse;
  animation-name: ball-grid-pulse;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0; }

@-webkit-keyframes ball-spin-fade-loader {
  50% {
    opacity: 0.3;
    -webkit-transform: scale(0.4);
    transform: scale(0.4); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes ball-spin-fade-loader {
  50% {
    opacity: 0.3;
    -webkit-transform: scale(0.4);
    transform: scale(0.4); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

.ball-spin-fade-loader {
  position: relative;
  top: -10px;
  left: -10px; }

.ball-spin-fade-loader > div:nth-child(1) {
  top: 25px;
  left: 0;
  -webkit-animation: ball-spin-fade-loader 1s -0.96s infinite linear;
  animation: ball-spin-fade-loader 1s -0.96s infinite linear; }

.ball-spin-fade-loader > div:nth-child(2) {
  top: 17.04545px;
  left: 17.04545px;
  -webkit-animation: ball-spin-fade-loader 1s -0.84s infinite linear;
  animation: ball-spin-fade-loader 1s -0.84s infinite linear; }

.ball-spin-fade-loader > div:nth-child(3) {
  top: 0;
  left: 25px;
  -webkit-animation: ball-spin-fade-loader 1s -0.72s infinite linear;
  animation: ball-spin-fade-loader 1s -0.72s infinite linear; }

.ball-spin-fade-loader > div:nth-child(4) {
  top: -17.04545px;
  left: 17.04545px;
  -webkit-animation: ball-spin-fade-loader 1s -0.6s infinite linear;
  animation: ball-spin-fade-loader 1s -0.6s infinite linear; }

.ball-spin-fade-loader > div:nth-child(5) {
  top: -25px;
  left: 0;
  -webkit-animation: ball-spin-fade-loader 1s -0.48s infinite linear;
  animation: ball-spin-fade-loader 1s -0.48s infinite linear; }

.ball-spin-fade-loader > div:nth-child(6) {
  top: -17.04545px;
  left: -17.04545px;
  -webkit-animation: ball-spin-fade-loader 1s -0.36s infinite linear;
  animation: ball-spin-fade-loader 1s -0.36s infinite linear; }

.ball-spin-fade-loader > div:nth-child(7) {
  top: 0;
  left: -25px;
  -webkit-animation: ball-spin-fade-loader 1s -0.24s infinite linear;
  animation: ball-spin-fade-loader 1s -0.24s infinite linear; }

.ball-spin-fade-loader > div:nth-child(8) {
  top: 17.04545px;
  left: -17.04545px;
  -webkit-animation: ball-spin-fade-loader 1s -0.12s infinite linear;
  animation: ball-spin-fade-loader 1s -0.12s infinite linear; }

.ball-spin-fade-loader > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute; }

@-webkit-keyframes ball-spin-loader {
  75% {
    opacity: 0.2; }
  100% {
    opacity: 1; } }

@keyframes ball-spin-loader {
  75% {
    opacity: 0.2; }
  100% {
    opacity: 1; } }

.ball-spin-loader {
  position: relative; }

.ball-spin-loader > span:nth-child(1) {
  top: 45px;
  left: 0;
  -webkit-animation: ball-spin-loader 2s 0.9s infinite linear;
  animation: ball-spin-loader 2s 0.9s infinite linear; }

.ball-spin-loader > span:nth-child(2) {
  top: 30.68182px;
  left: 30.68182px;
  -webkit-animation: ball-spin-loader 2s 1.8s infinite linear;
  animation: ball-spin-loader 2s 1.8s infinite linear; }

.ball-spin-loader > span:nth-child(3) {
  top: 0;
  left: 45px;
  -webkit-animation: ball-spin-loader 2s 2.7s infinite linear;
  animation: ball-spin-loader 2s 2.7s infinite linear; }

.ball-spin-loader > span:nth-child(4) {
  top: -30.68182px;
  left: 30.68182px;
  -webkit-animation: ball-spin-loader 2s 3.6s infinite linear;
  animation: ball-spin-loader 2s 3.6s infinite linear; }

.ball-spin-loader > span:nth-child(5) {
  top: -45px;
  left: 0;
  -webkit-animation: ball-spin-loader 2s 4.5s infinite linear;
  animation: ball-spin-loader 2s 4.5s infinite linear; }

.ball-spin-loader > span:nth-child(6) {
  top: -30.68182px;
  left: -30.68182px;
  -webkit-animation: ball-spin-loader 2s 5.4s infinite linear;
  animation: ball-spin-loader 2s 5.4s infinite linear; }

.ball-spin-loader > span:nth-child(7) {
  top: 0;
  left: -45px;
  -webkit-animation: ball-spin-loader 2s 6.3s infinite linear;
  animation: ball-spin-loader 2s 6.3s infinite linear; }

.ball-spin-loader > span:nth-child(8) {
  top: 30.68182px;
  left: -30.68182px;
  -webkit-animation: ball-spin-loader 2s 7.2s infinite linear;
  animation: ball-spin-loader 2s 7.2s infinite linear; }

.ball-spin-loader > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: green; }

@-webkit-keyframes ball-zig {
  33% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px); }
  66% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px); }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

@keyframes ball-zig {
  33% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px); }
  66% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px); }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

@-webkit-keyframes ball-zag {
  33% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px); }
  66% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px); }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

@keyframes ball-zag {
  33% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px); }
  66% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px); }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

.ball-zig-zag {
  position: relative;
  -webkit-transform: translate(-15px, -15px);
  -ms-transform: translate(-15px, -15px);
  transform: translate(-15px, -15px); }

.ball-zig-zag > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  margin-left: 15px;
  top: 4px;
  left: -7px; }

.ball-zig-zag > div:first-child {
  -webkit-animation: ball-zig 0.7s 0s infinite linear;
  animation: ball-zig 0.7s 0s infinite linear; }

.ball-zig-zag > div:last-child {
  -webkit-animation: ball-zag 0.7s 0s infinite linear;
  animation: ball-zag 0.7s 0s infinite linear; }

@-webkit-keyframes ball-zig-deflect {
  17% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px); }
  34% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px); }
  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  67% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px); }
  84% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px); }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

@keyframes ball-zig-deflect {
  17% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px); }
  34% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px); }
  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  67% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px); }
  84% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px); }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

@-webkit-keyframes ball-zag-deflect {
  17% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px); }
  34% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px); }
  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  67% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px); }
  84% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px); }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

@keyframes ball-zag-deflect {
  17% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px); }
  34% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px); }
  50% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  67% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px); }
  84% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px); }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

.ball-zig-zag-deflect {
  position: relative;
  -webkit-transform: translate(-15px, -15px);
  -ms-transform: translate(-15px, -15px);
  transform: translate(-15px, -15px); }

.ball-zig-zag-deflect > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  margin-left: 15px;
  top: 4px;
  left: -7px; }

.ball-zig-zag-deflect > div:first-child {
  -webkit-animation: ball-zig-deflect 1.5s 0s infinite linear;
  animation: ball-zig-deflect 1.5s 0s infinite linear; }

.ball-zig-zag-deflect > div:last-child {
  -webkit-animation: ball-zag-deflect 1.5s 0s infinite linear;
  animation: ball-zag-deflect 1.5s 0s infinite linear; }

/**
 * Lines
 */
@-webkit-keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1); }
  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4); }
  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1); } }

@keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1); }
  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4); }
  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1); } }

.line-scale > div:nth-child(1) {
  -webkit-animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(2) {
  -webkit-animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(3) {
  -webkit-animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(4) {
  -webkit-animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(5) {
  -webkit-animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block; }

@-webkit-keyframes line-scale-party {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes line-scale-party {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

.line-scale-party > div:nth-child(1) {
  -webkit-animation-delay: -0.09s;
  animation-delay: -0.09s;
  -webkit-animation-duration: 0.83s;
  animation-duration: 0.83s; }

.line-scale-party > div:nth-child(2) {
  -webkit-animation-delay: 0.33s;
  animation-delay: 0.33s;
  -webkit-animation-duration: 0.64s;
  animation-duration: 0.64s; }

.line-scale-party > div:nth-child(3) {
  -webkit-animation-delay: 0.32s;
  animation-delay: 0.32s;
  -webkit-animation-duration: 0.39s;
  animation-duration: 0.39s; }

.line-scale-party > div:nth-child(4) {
  -webkit-animation-delay: 0.47s;
  animation-delay: 0.47s;
  -webkit-animation-duration: 0.52s;
  animation-duration: 0.52s; }

.line-scale-party > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation-name: line-scale-party;
  animation-name: line-scale-party;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
  animation-delay: 0; }

@-webkit-keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1); }
  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4); }
  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1); } }

@keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1); }
  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4); }
  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1); } }

.line-scale-pulse-out > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
  animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85); }

.line-scale-pulse-out > div:nth-child(2), .line-scale-pulse-out > div:nth-child(4) {
  -webkit-animation-delay: -0.4s !important;
  animation-delay: -0.4s !important; }

.line-scale-pulse-out > div:nth-child(1), .line-scale-pulse-out > div:nth-child(5) {
  -webkit-animation-delay: -0.2s !important;
  animation-delay: -0.2s !important; }

@-webkit-keyframes line-scale-pulse-out-rapid {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1); }
  80% {
    -webkit-transform: scaley(0.3);
    transform: scaley(0.3); }
  90% {
    -webkit-transform: scaley(1);
    transform: scaley(1); } }

@keyframes line-scale-pulse-out-rapid {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1); }
  80% {
    -webkit-transform: scaley(0.3);
    transform: scaley(0.3); }
  90% {
    -webkit-transform: scaley(1);
    transform: scaley(1); } }

.line-scale-pulse-out-rapid > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
  animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78); }

.line-scale-pulse-out-rapid > div:nth-child(2), .line-scale-pulse-out-rapid > div:nth-child(4) {
  -webkit-animation-delay: -0.25s !important;
  animation-delay: -0.25s !important; }

.line-scale-pulse-out-rapid > div:nth-child(1), .line-scale-pulse-out-rapid > div:nth-child(5) {
  -webkit-animation-delay: 0s !important;
  animation-delay: 0s !important; }

@-webkit-keyframes line-spin-fade-loader {
  50% {
    opacity: 0.3; }
  100% {
    opacity: 1; } }

@keyframes line-spin-fade-loader {
  50% {
    opacity: 0.3; }
  100% {
    opacity: 1; } }

.line-spin-fade-loader {
  position: relative;
  top: -10px;
  left: -4px; }

.line-spin-fade-loader > div:nth-child(1) {
  top: 20px;
  left: 0;
  -webkit-animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out; }

.line-spin-fade-loader > div:nth-child(2) {
  top: 13.63636px;
  left: 13.63636px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out; }

.line-spin-fade-loader > div:nth-child(3) {
  top: 0;
  left: 20px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out; }

.line-spin-fade-loader > div:nth-child(4) {
  top: -13.63636px;
  left: 13.63636px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out; }

.line-spin-fade-loader > div:nth-child(5) {
  top: -20px;
  left: 0;
  -webkit-animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out; }

.line-spin-fade-loader > div:nth-child(6) {
  top: -13.63636px;
  left: -13.63636px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out; }

.line-spin-fade-loader > div:nth-child(7) {
  top: 0;
  left: -20px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out; }

.line-spin-fade-loader > div:nth-child(8) {
  top: 13.63636px;
  left: -13.63636px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out;
  animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out; }

.line-spin-fade-loader > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  width: 5px;
  height: 15px; }

/**
 * Misc
 */
@-webkit-keyframes triangle-skew-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0); }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg); }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg); }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0); } }

@keyframes triangle-skew-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0); }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg); }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg); }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0); } }

.triangle-skew-spin > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #fff;
  -webkit-animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; }

@-webkit-keyframes square-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0); }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg); }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg); }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0); } }

@keyframes square-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0); }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg); }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg); }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0); } }

.square-spin > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  width: 50px;
  height: 50px;
  background: #fff;
  border: 1px solid red;
  -webkit-animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; }

@-webkit-keyframes rotate_pacman_half_up {
  0% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg); }
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); }
  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg); } }

@keyframes rotate_pacman_half_up {
  0% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg); }
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); }
  100% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg); } }

@-webkit-keyframes rotate_pacman_half_down {
  0% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); } }

@keyframes rotate_pacman_half_down {
  0% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); } }

@-webkit-keyframes pacman-balls {
  75% {
    opacity: 0.7; }
  100% {
    -webkit-transform: translate(-100px, -6.25px);
    transform: translate(-100px, -6.25px); } }

@keyframes pacman-balls {
  75% {
    opacity: 0.7; }
  100% {
    -webkit-transform: translate(-100px, -6.25px);
    transform: translate(-100px, -6.25px); } }

.pacman {
  position: relative; }

.pacman > div:nth-child(2) {
  -webkit-animation: pacman-balls 1s -0.99s infinite linear;
  animation: pacman-balls 1s -0.99s infinite linear; }

.pacman > div:nth-child(3) {
  -webkit-animation: pacman-balls 1s -0.66s infinite linear;
  animation: pacman-balls 1s -0.66s infinite linear; }

.pacman > div:nth-child(4) {
  -webkit-animation: pacman-balls 1s -0.33s infinite linear;
  animation: pacman-balls 1s -0.33s infinite linear; }

.pacman > div:nth-child(5) {
  -webkit-animation: pacman-balls 1s 0s infinite linear;
  animation: pacman-balls 1s 0s infinite linear; }

.pacman > div:first-of-type {
  width: 0px;
  height: 0px;
  border-right: 25px solid transparent;
  border-top: 25px solid #fff;
  border-left: 25px solid #fff;
  border-bottom: 25px solid #fff;
  border-radius: 25px;
  -webkit-animation: rotate_pacman_half_up 0.5s 0s infinite;
  animation: rotate_pacman_half_up 0.5s 0s infinite;
  position: relative;
  left: -30px; }

.pacman > div:nth-child(2) {
  width: 0px;
  height: 0px;
  border-right: 25px solid transparent;
  border-top: 25px solid #fff;
  border-left: 25px solid #fff;
  border-bottom: 25px solid #fff;
  border-radius: 25px;
  -webkit-animation: rotate_pacman_half_down 0.5s 0s infinite;
  animation: rotate_pacman_half_down 0.5s 0s infinite;
  margin-top: -50px;
  position: relative;
  left: -30px; }

.pacman > div:nth-child(3),
.pacman > div:nth-child(4),
.pacman > div:nth-child(5),
.pacman > div:nth-child(6) {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  width: 10px;
  height: 10px;
  position: absolute;
  -webkit-transform: translate(0, -6.25px);
  -ms-transform: translate(0, -6.25px);
  transform: translate(0, -6.25px);
  top: 25px;
  left: 70px; }

@-webkit-keyframes cube-transition {
  25% {
    -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
    transform: translateX(50px) scale(0.5) rotate(-90deg); }
  50% {
    -webkit-transform: translate(50px, 50px) rotate(-180deg);
    transform: translate(50px, 50px) rotate(-180deg); }
  75% {
    -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
    transform: translateY(50px) scale(0.5) rotate(-270deg); }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg); } }

@keyframes cube-transition {
  25% {
    -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
    transform: translateX(50px) scale(0.5) rotate(-90deg); }
  50% {
    -webkit-transform: translate(50px, 50px) rotate(-180deg);
    transform: translate(50px, 50px) rotate(-180deg); }
  75% {
    -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
    transform: translateY(50px) scale(0.5) rotate(-270deg); }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg); } }

.cube-transition {
  position: relative;
  -webkit-transform: translate(-25px, -25px);
  -ms-transform: translate(-25px, -25px);
  transform: translate(-25px, -25px); }

.cube-transition > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  width: 10px;
  height: 10px;
  position: absolute;
  top: -5px;
  left: -5px;
  background-color: #fff;
  -webkit-animation: cube-transition 1.6s 0s infinite ease-in-out;
  animation: cube-transition 1.6s 0s infinite ease-in-out; }

.cube-transition > div:last-child {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s; }

@-webkit-keyframes spin-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.semi-circle-spin {
  position: relative;
  width: 35px;
  height: 35px;
  overflow: hidden; }

.semi-circle-spin > div {
  position: absolute;
  border-width: 0px;
  border-radius: 100%;
  -webkit-animation: spin-rotate 0.6s 0s infinite linear;
  animation: spin-rotate 0.6s 0s infinite linear;
  background-image: -webkit-linear-gradient(transparent 0%, transparent 70%, #fff 30%, #fff 100%);
  background-image: linear-gradient(transparent 0%, transparent 70%, #fff 30%, #fff 100%);
  width: 100%;
  height: 100%; }

@-webkit-keyframes bar-progress {
  0% {
    -webkit-transform: scaleY(20%);
    transform: scaleY(20%);
    opacity: 1; }
  25% {
    -webkit-transform: translateX(6%) scaleY(10%);
    transform: translateX(6%) scaleY(10%);
    opacity: 0.7; }
  50% {
    -webkit-transform: translateX(20%) scaleY(20%);
    transform: translateX(20%) scaleY(20%);
    opacity: 1; }
  75% {
    -webkit-transform: translateX(6%) scaleY(10%);
    transform: translateX(6%) scaleY(10%);
    opacity: 0.7; }
  100% {
    -webkit-transform: scaleY(20%);
    transform: scaleY(20%);
    opacity: 1; } }

@keyframes bar-progress {
  0% {
    -webkit-transform: scaleY(20%);
    transform: scaleY(20%);
    opacity: 1; }
  25% {
    -webkit-transform: translateX(6%) scaleY(10%);
    transform: translateX(6%) scaleY(10%);
    opacity: 0.7; }
  50% {
    -webkit-transform: translateX(20%) scaleY(20%);
    transform: translateX(20%) scaleY(20%);
    opacity: 1; }
  75% {
    -webkit-transform: translateX(6%) scaleY(10%);
    transform: translateX(6%) scaleY(10%);
    opacity: 0.7; }
  100% {
    -webkit-transform: scaleY(20%);
    transform: scaleY(20%);
    opacity: 1; } }

.bar-progress {
  width: 30%;
  height: 12px; }

.bar-progress > div {
  position: relative;
  width: 20%;
  height: 12px;
  border-radius: 10px;
  background-color: #fff;
  -webkit-animation: bar-progress 3s cubic-bezier(0.57, 0.1, 0.44, 0.93) infinite;
  animation: bar-progress 3s cubic-bezier(0.57, 0.1, 0.44, 0.93) infinite;
  opacity: 1; }

@-webkit-keyframes bar-swing {
  0% {
    left: 0; }
  50% {
    left: 70%; }
  100% {
    left: 0; } }

@keyframes bar-swing {
  0% {
    left: 0; }
  50% {
    left: 70%; }
  100% {
    left: 0; } }

.bar-swing {
  width: 30%;
  height: 8px; }

.bar-swing > div {
  position: relative;
  width: 30%;
  height: 8px;
  border-radius: 10px;
  background-color: #fff;
  -webkit-animation: bar-swing 1.5s infinite;
  animation: bar-swing 1.5s infinite; }

@-webkit-keyframes bar-swing-container {
  0% {
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  50% {
    left: 70%;
    -webkit-transform: translateX(-4px);
    transform: translateX(-4px); }
  100% {
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes bar-swing-container {
  0% {
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  50% {
    left: 70%;
    -webkit-transform: translateX(-4px);
    transform: translateX(-4px); }
  100% {
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

.bar-swing-container {
  width: 20%;
  height: 8px;
  position: relative; }

.bar-swing-container div:nth-child(1) {
  position: absolute;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  height: 12px;
  border-radius: 10px; }

.bar-swing-container div:nth-child(2) {
  position: absolute;
  width: 30%;
  height: 8px;
  border-radius: 10px;
  background-color: #fff;
  -webkit-animation: bar-swing-container 2s cubic-bezier(0.91, 0.35, 0.12, 0.6) infinite;
  animation: bar-swing-container 2s cubic-bezier(0.91, 0.35, 0.12, 0.6) infinite;
  margin: 2px 2px 0; }

.sk-spinner {
  color: #333; }

.sk-spinner > div {
  background-color: currentColor; }

.ball-triangle-path > div,
.ball-scale-ripple-multiple > div,
.ball-scale-ripple > div {
  background-color: initial;
  border-color: currentColor; }

.ball-clip-rotate > div {
  background-color: initial;
  border-top-color: currentColor;
  border-right-color: currentColor;
  border-left-color: currentColor; }

.ball-clip-rotate-pulse > div:first-child {
  background-color: currentColor; }

.ball-clip-rotate-pulse > div:last-child {
  background-color: initial;
  border-top-color: currentColor;
  border-bottom-color: currentColor; }

.ball-clip-rotate-multiple > div:first-child {
  background-color: initial;
  border-right-color: currentColor;
  border-left-color: currentColor; }

.ball-clip-rotate-multiple > div:last-child {
  background-color: initial;
  border-top-color: currentColor;
  border-bottom-color: currentColor; }

.triangle-skew-spin > div {
  background-color: initial;
  border-bottom-color: currentColor; }

.pacman > div:nth-child(1),
.pacman > div:nth-child(2) {
  background-color: initial;
  border-top-color: currentColor;
  border-left-color: currentColor;
  border-bottom-color: currentColor; }

.pacman > div:nth-child(3),
.pacman > div:nth-child(4),
.pacman > div:nth-child(5) {
  background-color: currentColor; }

@-webkit-keyframes sk-fade-in {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-moz-keyframes sk-fade-in {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-ms-keyframes sk-fade-in {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes sk-fade-in {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.sk-fade-in {
  -webkit-animation: sk-fade-in 2s;
  -moz-animation: sk-fade-in 2s;
  -o-animation: sk-fade-in 2s;
  -ms-animation: sk-fade-in 2s;
  animation: sk-fade-in 2s; }

.sk-fade-in-half-second {
  -webkit-animation: sk-fade-in 1s;
  -moz-animation: sk-fade-in 1s;
  -o-animation: sk-fade-in 1s;
  -ms-animation: sk-fade-in 1s;
  animation: sk-fade-in 1s; }

.sk-fade-in-quarter-second {
  -webkit-animation: sk-fade-in 0.5s;
  -moz-animation: sk-fade-in 0.5s;
  -o-animation: sk-fade-in 0.5s;
  -ms-animation: sk-fade-in 0.5s;
  animation: sk-fade-in 0.5s; }

.sk-chasing-dots {
  width: 27px;
  height: 27px;
  position: relative;
  -webkit-animation: sk-rotate 2.0s infinite linear;
  animation: sk-rotate 2.0s infinite linear; }

.sk-chasing-dots > div {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: currentColor;
  border-radius: 100%;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out; }

.sk-chasing-dots > div:last-child {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s; }

@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg); } }

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0); }
  50% {
    -webkit-transform: scale(1); } }

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

.sk-circle {
  width: 22px;
  height: 22px;
  position: relative; }

.sk-circle > div {
  background-color: initial;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0; }

.sk-circle > div::before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 20%;
  height: 20%;
  background-color: currentColor;
  border-radius: 100%;
  -webkit-animation: sk-bouncedelay 1.2s infinite ease-in-out;
  animation: sk-bouncedelay 1.2s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.sk-circle > div:nth-child(2) {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg); }

.sk-circle > div:nth-child(3) {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg); }

.sk-circle > div:nth-child(4) {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg); }

.sk-circle > div:nth-child(5) {
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg); }

.sk-circle > div:nth-child(6) {
  -webkit-transform: rotate(150deg);
  transform: rotate(150deg); }

.sk-circle > div:nth-child(7) {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg); }

.sk-circle > div:nth-child(8) {
  -webkit-transform: rotate(210deg);
  transform: rotate(210deg); }

.sk-circle > div:nth-child(9) {
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg); }

.sk-circle > div:nth-child(10) {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg); }

.sk-circle > div:nth-child(11) {
  -webkit-transform: rotate(300deg);
  transform: rotate(300deg); }

.sk-circle > div:nth-child(12) {
  -webkit-transform: rotate(330deg);
  transform: rotate(330deg); }

.sk-circle > div:nth-child(2)::before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s; }

.sk-circle > div:nth-child(3)::before {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s; }

.sk-circle > div:nth-child(4)::before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s; }

.sk-circle > div:nth-child(5)::before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s; }

.sk-circle > div:nth-child(6)::before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s; }

.sk-circle > div:nth-child(7)::before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s; }

.sk-circle > div:nth-child(8)::before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s; }

.sk-circle > div:nth-child(9)::before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s; }

.sk-circle > div:nth-child(10)::before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s; }

.sk-circle > div:nth-child(11)::before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s; }

.sk-circle > div:nth-child(12)::before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s; }

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0); }
  40% {
    -webkit-transform: scale(1); } }

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

.sk-cube-grid {
  width: 27px;
  height: 27px; }

.sk-cube-grid > div {
  width: 33%;
  height: 33%;
  background-color: currentColor;
  float: left;
  -webkit-animation: sk-scaleDelay 1.3s infinite ease-in-out;
  animation: sk-scaleDelay 1.3s infinite ease-in-out; }

/*
 * Spinner positions
 * 1 2 3
 * 4 5 6
 * 7 8 9
 */
.sk-cube-grid > div:nth-child(1) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; }

.sk-cube-grid > div:nth-child(2) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }

.sk-cube-grid > div:nth-child(3) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s; }

.sk-cube-grid > div:nth-child(4) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s; }

.sk-cube-grid > div:nth-child(5) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; }

.sk-cube-grid > div:nth-child(6) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }

.sk-cube-grid > div:nth-child(7) {
  -webkit-animation-delay: 0.0s;
  animation-delay: 0.0s; }

.sk-cube-grid > div:nth-child(8) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s; }

.sk-cube-grid > div:nth-child(9) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; }

@-webkit-keyframes sk-scaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1); }
  35% {
    -webkit-transform: scale3D(0, 0, 1); } }

@keyframes sk-scaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1); }
  35% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(0, 0, 1); } }

.sk-double-bounce {
  width: 27px;
  height: 27px;
  position: relative; }

.sk-double-bounce > div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: currentColor;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out; }

.sk-double-bounce > div:last-child {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s; }

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0); }
  50% {
    -webkit-transform: scale(1); } }

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

.sk-folding-cube {
  width: 27px;
  height: 27px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg); }

.sk-folding-cube > div {
  background-color: initial;
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1); }

.sk-folding-cube > div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: currentColor;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%; }

.sk-folding-cube > div:nth-child(2) {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg); }

.sk-folding-cube > div:nth-child(4) {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg); }

.sk-folding-cube > div:nth-child(3) {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg); }

.sk-folding-cube > div:nth-child(2)::before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }

.sk-folding-cube > div:nth-child(4)::before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s; }

.sk-folding-cube > div:nth-child(3)::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s; }

@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0; }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1; }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0; } }

@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0; }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1; }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0; } }

.sk-pulse > div {
  width: 27px;
  height: 27px;
  background-color: currentColor;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out; }

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
    opacity: 0; } }

@keyframes sk-scaleout {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 0; } }

.sk-rotating-plane > div {
  width: 27px;
  height: 27px;
  background-color: currentColor;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out; }

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px); }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg); }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg); } }

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg); }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); } }

.sk-three-bounce {
  height: 18px; }

.sk-three-bounce > div {
  width: 18px;
  height: 18px;
  background-color: currentColor;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out;
  animation: sk-bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.sk-three-bounce > div:first-child {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s; }

.sk-three-bounce > div:nth-child(2) {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s; }

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0); }
  40% {
    -webkit-transform: scale(1); } }

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  40% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

.sk-wandering-cubes {
  width: 52px;
  height: 52px;
  position: relative; }

.sk-wandering-cubes > div {
  background-color: currentColor;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
  animation: sk-cubemove 1.8s infinite ease-in-out; }

.sk-wandering-cubes > div:last-child {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s; }

@-webkit-keyframes sk-cubemove {
  25% {
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5); }
  50% {
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg); }
  75% {
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5); }
  100% {
    -webkit-transform: rotate(-360deg); } }

@keyframes sk-cubemove {
  25% {
    transform: translateX(42px) rotate(-90deg) scale(0.5);
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5); }
  50% {
    /* Hack to make FF rotate in the right direction */
    transform: translateX(42px) translateY(42px) rotate(-179deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg); }
  50.1% {
    transform: translateX(42px) translateY(42px) rotate(-180deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg); }
  75% {
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5); }
  100% {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg); } }

.sk-wave {
  width: 30px;
  height: 27px; }

.sk-wave > div {
  background-color: currentColor;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out; }

.sk-wave > div:nth-child(2) {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s; }

.sk-wave > div:nth-child(3) {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s; }

.sk-wave > div:nth-child(4) {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s; }

.sk-wave > div:nth-child(5) {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s; }

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4); }
  20% {
    -webkit-transform: scaleY(1); } }

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4); }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1); } }

.sk-wordpress > div {
  width: 27px;
  height: 27px;
  background-color: currentColor;
  display: inline-block;
  border-radius: 27px;
  position: relative;
  -webkit-animation: sk-inner-circle 1s linear infinite;
  animation: sk-inner-circle 1s linear infinite; }

.sk-wordpress > div::after {
  content: '';
  display: block;
  background-color: #fff;
  width: 8px;
  height: 8px;
  position: absolute;
  border-radius: 8px;
  top: 5px;
  left: 5px; }

@-webkit-keyframes sk-inner-circle {
  0% {
    -webkit-transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes sk-inner-circle {
  0% {
    transform: rotate(0);
    -webkit-transform: rotate(0); }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg); } }

/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

html {
  box-sizing: border-box; }

*, *::after, *::before {
  box-sizing: inherit; }

@font-face {
  font-family: 'Montserrat';
  src: url(/9c46095118380d38f12e67c916b427f9.ttf);
  font-weight: normal; }

@font-face {
  font-family: 'Montserrat';
  src: url(/c88cecbffad6d8e731fd95de49561ebd.ttf);
  font-weight: 600; }

@font-face {
  font-family: 'Montserrat';
  src: url(/88932dadc42e1bba93b21a76de60ef7a.ttf);
  font-weight: bold; }

@font-face {
  font-family: 'Merriweather-Bold';
  src: url(/adac1da5dad02caa43140a8ebdce945e.ttf); }

@font-face {
  font-family: 'Merriweather-Italic';
  src: url(/a41ba7b1760546d2396349c85a7d96a7.ttf); }

html {
  font-size: 16px; }

html, body, #root {
  display: flex;
  width: 100%; }

body {
  font-family: "Montserrat", sans-serif;
  color: #070400;
  background-color: white;
  margin: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Merriweather-Bold", serif;
  color: #070400; }

a {
  text-decoration: none; }

.page-loading {
  display: table;
  width: 100%;
  height: 80px; }
  .page-loading > div {
    display: table-cell;
    text-align: center;
    vertical-align: middle; }
  .page-loading.page-loading-sm {
    height: auto; }

.sk-spinner {
  color: #B59658;
  margin-left: -0.875rem; }

.empty-notice {
  font-size: 0.875rem;
  font-style: italic;
  color: #838383;
  text-align: center;
  padding: 2rem 0; }

a {
  color: #B59658; }

img.img-gray {
  filter: grayscale(1); }

@font-face {
  font-family: 'icomoon';
  src: url(/390786502c790313bbc74ac4fb824c51.eot);
  src: url(/390786502c790313bbc74ac4fb824c51.eot#iefix) format("embedded-opentype"), url(/a092affac7b285d2e0aa43297bfa59d7.ttf) format("truetype"), url(data:application/font-woff;base64,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) format("woff"), url(/0ec490e6db7472419b52f8df898041ec.svg#icomoon) format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="icon-"], [class*=" icon-"], .icomoon, .product-detail-item .product-detail-item__video > div:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-events:before {
  content: "\E915"; }

.icon-bell:before {
  content: "\E90A"; }

.icon-check-square:before {
  content: "\E90B"; }

.icon-shopping-bag:before {
  content: "\E90C"; }

.icon-cross:before {
  content: "\E911"; }

.icon-search:before {
  content: "\E910"; }

.icon-buy-wines:before {
  content: "\E907"; }

.icon-qr-code:before {
  content: "\E906"; }

.icon-chevron-right:before {
  content: "\E900"; }

.icon-camera:before {
  content: "\E901"; }

.icon-edit:before {
  content: "\E902"; }

.icon-shop:before {
  content: "\E903"; }

.icon-cart:before {
  content: "\E908"; }

.icon-my-account:before {
  content: "\E904"; }

.icon-wallet:before {
  content: "\E905"; }

.icon-video:before, .product-detail-item .product-detail-item__video > div:before {
  content: "\E914"; }

.icon-globe:before {
  content: "\E913"; }

.icon-map-pin:before {
  content: "\E912"; }

.icon-delivery:before {
  content: "\E90D"; }

.icon-pickup:before {
  content: "\E90E"; }

.icon-dinein:before {
  content: "\E90F"; }

.icon-location:before {
  content: "\E909"; }

.page {
  display: flex;
  flex: 1;
  flex-direction: column; }
  .page.page--sticky-tabs {
    padding-top: 5.75rem;
    padding-bottom: 3rem; }
  .page.page--sticky-simple-tabs {
    padding-top: 3.25rem;
    padding-bottom: 3rem; }
  .page.page--sticky-footer {
    padding-bottom: 3.25rem; }

.page-landing {
  height: 100vh; }
  .page-landing.page.page--sticky-tabs {
    padding-top: 3rem; }
  .page-landing .page-landing__inner {
    display: flex;
    flex: 1;
    flex-direction: column;
    width: 100%; }
  .page-landing .page-landing__logo {
    text-align: center; }
    .page-landing .page-landing__logo img {
      max-width: 45%;
      height: auto;
      margin: 0 auto; }
  .page-landing .page-landing__store-title {
    font-weight: bold;
    font-size: 1.125rem;
    color: #070400;
    padding: 1rem 1rem; }
  .page-landing .page-landing__title {
    font-size: 2rem;
    font-family: "Merriweather-Italic", serif;
    text-align: center;
    color: #ffffff;
    margin-bottom: 2rem; }
  .page-landing .page-landing__actions {
    margin: 3rem 0; }
    .page-landing .page-landing__actions .btn {
      display: block;
      margin-bottom: 1rem; }
      .page-landing .page-landing__actions .btn:last-child {
        margin-bottom: 0; }
  .page-landing .page-landing__footer {
    text-align: center; }
  .page-landing .page-landing__banners__wrap {
    flex: 1; }
  .page-landing .page-landing__banners {
    overflow: hidden;
    height: 100%; }
    .page-landing .page-landing__banners .carousel, .page-landing .page-landing__banners .flickity-viewport, .page-landing .page-landing__banners .flickity-slider {
      height: 100% !important; }
    .page-landing .page-landing__banners .page-landing__banners__item {
      width: 100%;
      height: 100%; }
      .page-landing .page-landing__banners .page-landing__banners__item > a {
        height: 100%; }
      .page-landing .page-landing__banners .page-landing__banners__item > div, .page-landing .page-landing__banners .page-landing__banners__item > a > div {
        height: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center 75%;
        background-color: #121212; }
  .page-landing .page-landing__action-buttons {
    display: flex;
    padding: 0.75rem 0.25rem 0.75rem; }
    .page-landing .page-landing__action-buttons.no-padding-top {
      padding-top: 0; }
    .page-landing .page-landing__action-buttons .btn-wrap {
      flex: 1;
      text-align: center; }
      .page-landing .page-landing__action-buttons .btn-wrap .btn {
        font-size: 2rem;
        padding: 0;
        width: 3.75rem;
        height: 3.75rem;
        border-radius: 50%;
        background-color: #B59658;
        color: #fff; }
      .page-landing .page-landing__action-buttons .btn-wrap .btn-caption {
        font-size: 0.625rem;
        letter-spacing: 0.075rem;
        text-transform: uppercase;
        font-weight: bold;
        margin-top: 0.375rem; }
      .page-landing .page-landing__action-buttons .btn-wrap.primary {
        flex: 2;
        padding: 0 0.25rem; }
        .page-landing .page-landing__action-buttons .btn-wrap.primary .btn {
          font-size: 1rem;
          font-family: "Merriweather-Bold", serif;
          width: 100%;
          border-radius: 5rem;
          background-color: #fff;
          text-transform: none;
          color: #8a7240; }

.page-signin {
  background-image: url("/images/landing_bg.jpg");
  background-size: cover;
  align-items: center;
  height: 100vh; }
  .page-signin .page-signin__inner {
    width: 90%; }
  .page-signin .page-signin__title {
    font-size: 1.75rem;
    font-family: "Merriweather-Italic", serif;
    text-align: center;
    color: #ffffff;
    margin: 3rem 0 2.5rem 0; }
  .page-signin .page-signin__greeting {
    font-size: 1.2rem;
    font-family: "Merriweather-Italic", serif;
    text-align: center;
    color: #ffffff;
    margin-bottom: 1.5rem; }
  .page-signin .page-signin__actions {
    margin: 0rem 2rem; }
    .page-signin .page-signin__actions .btn {
      text-transform: none;
      display: block;
      margin: 0 0 1rem 0;
      border-radius: 0.5rem; }
      .page-signin .page-signin__actions .btn:last-child {
        margin-bottom: 0; }
    .page-signin .page-signin__actions .or-separator {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 6px 0;
      font-size: 0.75rem;
      color: #838383; }
    .page-signin .page-signin__actions .wx-panel {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center; }
      .page-signin .page-signin__actions .wx-panel .wx-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        border: none;
        background-color: #fff;
        color: #070400; }
        .page-signin .page-signin__actions .wx-panel .wx-btn .wx-img {
          object-fit: scale-down;
          width: 56px;
          height: 56px;
          margin-bottom: 5px; }
  .page-signin .page-signin__action {
    text-align: center; }
  .page-signin .page-signin__error {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ed8380;
    color: #fff;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    font-style: italic;
    text-align: center; }
    .page-signin .page-signin__error span {
      text-decoration: underline; }
  .page-signin .page-signin__success {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #75ac2a;
    color: #fff;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    font-style: italic;
    text-align: center; }
  .page-signin .page-signin__form_block {
    background-color: #fff;
    margin: 0 0.5rem 0 0.5rem;
    padding: 1.5rem 0 1rem 0;
    border-radius: 1rem; }
  .page-signin .page-signin__form {
    margin: 0 2rem 0 2rem; }
    .page-signin .page-signin__form .page-signin__form__row::after {
      clear: both;
      content: "";
      display: block; }
    .page-signin .page-signin__form .page-signin__form__row .input, .page-signin .page-signin__form .page-signin__form__row .password-input {
      margin-bottom: 1rem; }
    .page-signin .page-signin__form .page-signin__form__row .input.span-2 {
      float: left;
      width: 49%; }
      .page-signin .page-signin__form .page-signin__form__row .input.span-2:last-child {
        float: right; }
  .page-signin .page-signin__footnote {
    padding: 1.75rem;
    text-align: center; }
    .page-signin .page-signin__footnote a {
      font-size: 0.875rem;
      color: #fff;
      font-style: italic; }
  .page-signin .page-signin__footnote_text {
    padding: 1.75rem;
    text-align: center;
    font-size: 0.875rem;
    color: #fff;
    font-style: italic; }
  .page-signin .page-signin__footer {
    text-align: center; }

.signin-form {
  padding-top: 1rem;
  width: 90%;
  margin: 0 auto; }
  .signin-form .page-my-account__title {
    font-family: "Merriweather-Italic", serif;
    padding: 1.125rem 1.125rem 0.25rem;
    color: #232323;
    text-align: center;
    margin-bottom: 0.5rem; }
  .signin-form .page-signin__form {
    margin-top: 1.5rem; }
  .signin-form .page-signin__form__row .input {
    margin-bottom: 1.5rem; }
  .signin-form .page-signin__error {
    background-color: #ed8380;
    color: #fff;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    font-style: italic;
    text-align: center; }
    .signin-form .page-signin__error span {
      text-decoration: underline; }
  .signin-form .page-signin__success {
    background-color: #75ac2a;
    color: #fff;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    font-style: italic;
    text-align: center; }
  .signin-form .page-signin__action {
    text-align: center; }
  .signin-form .page-signin__footnote {
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 2rem;
    text-align: center; }
    .signin-form .page-signin__footnote a {
      color: #838383; }

.version {
  position: absolute;
  left: 0.5rem;
  bottom: 0.2rem;
  color: #838383;
  font-size: 0.8rem; }

.page-signup {
  background-image: url("/images/login_bg.png"); }

.page-my-account .page-my-account__title {
  font-family: "Merriweather-Italic", serif;
  padding: 1.125rem 1.125rem 0.25rem;
  color: #070400;
  text-align: center; }

.page-my-account .page-my-account__name {
  font-size: 1.25rem;
  color: #070400;
  text-align: center;
  padding: 1rem 1.125rem 1rem 1.125rem; }
  .page-my-account .page-my-account__name .logout {
    font-size: 0.875rem;
    font-style: italic;
    color: #B59658;
    padding-top: 0.875rem;
    display: block; }
  .page-my-account .page-my-account__name .login {
    font-size: 1rem;
    font-style: italic;
    color: #B59658;
    padding-top: 1.25rem;
    display: block; }

.page-my-account .page-my-account__language-toggle {
  display: block;
  padding: 1.125rem 1.125rem 1.125rem;
  margin-bottom: 1.5rem;
  text-align: center; }
  .page-my-account .page-my-account__language-toggle .page-my-account__language-toggle__item {
    display: inline-block;
    margin: 0 1rem;
    font-size: 0.875rem;
    color: #B59658;
    text-transform: uppercase;
    letter-spacing: 0.125rem; }
    .page-my-account .page-my-account__language-toggle .page-my-account__language-toggle__item.active {
      color: #333; }

.page-my-account .page-my-account__actions {
  width: 90%;
  margin: 0 auto; }
  .page-my-account .page-my-account__actions .btn {
    font-size: 0.875rem;
    margin-bottom: 1rem; }
    .page-my-account .page-my-account__actions .btn:last-child {
      margin-bottom: 0; }

.page-buy-wines .page-buy-wines__list {
  padding: 0.5rem 0.5rem 5rem 0.5rem; }
  .page-buy-wines .page-buy-wines__list::after {
    clear: both;
    content: "";
    display: block; }
  .page-buy-wines .page-buy-wines__list .empty-notice {
    display: block;
    text-align: center;
    height: 500px;
    margin-top: 2rem; }
  .page-buy-wines .page-buy-wines__list.one-col .product-item {
    float: left;
    display: block;
    margin-right: 3.57866%;
    width: 100%; }
    .page-buy-wines .page-buy-wines__list.one-col .product-item:last-child {
      margin-right: 0; }
    .page-buy-wines .page-buy-wines__list.one-col .product-item .product-item__image > div {
      padding-top: 66.6666%;
      margin: 0; }

.no-products-available {
  padding: 1rem 0 0 1rem;
  color: #333333;
  font-size: 0.875rem; }

.page-mask {
  width: 100vw;
  height: 100vh;
  z-index: 9998;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0.5; }

.page-popup {
  width: 100vw;
  height: 100%;
  z-index: 9999;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around; }
  .page-popup .feature-img {
    width: 300px;
    height: 435px; }
    .page-popup .feature-img .banner {
      width: 100%;
      height: 100%; }
      .page-popup .feature-img .banner > a {
        height: 100%; }
      .page-popup .feature-img .banner > div, .page-popup .feature-img .banner > a > div {
        height: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center 75%;
        background-color: #121212; }
  .page-popup .form_block {
    background-color: #fff;
    margin: 0 1rem 0;
    padding: 2.5rem 0 2rem 0;
    border-radius: 1rem; }
    .page-popup .form_block .msg {
      margin: 0 2rem 1.5rem 2rem; }
    .page-popup .form_block .bottom-msg {
      margin: 0 2rem;
      color: #de443a;
      text-align: center; }
    .page-popup .form_block .actions {
      margin: 0.6rem 3rem 0 3rem; }
      .page-popup .form_block .actions .btn {
        text-transform: none;
        display: block;
        margin: 0 0 0.5rem 0;
        border-radius: 0.5rem; }

.delivery-address {
  width: 100vw;
  padding: 0.4rem 0.5rem;
  border-bottom: 1px solid #f1f1f1;
  color: #333333;
  font-size: 0.875rem; }
  .delivery-address::after {
    clear: both;
    content: "";
    display: block; }
  .delivery-address .headline {
    font-family: "Merriweather-Italic", serif;
    margin-bottom: 0.2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline; }
    .delivery-address .headline .label {
      margin-right: 0.5rem; }
    .delivery-address .headline .delivery-type {
      font-family: "Montserrat", sans-serif;
      margin-right: 0.5rem;
      font-size: 0.7rem;
      font-weight: bold; }
  .delivery-address .address-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
    align-items: center; }
    .delivery-address .address-row .address-text {
      display: flex;
      text-align: left;
      color: #070400;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      width: auto; }
    .delivery-address .address-row .error-text {
      display: flex;
      text-align: left;
      color: #de443a;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      width: auto; }

.scroll-view {
  overflow-y: scroll;
  height: 100vh;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch; }
  .scroll-view .contain {
    padding: 0.25rem 0 70vh 0; }
    .scroll-view .contain .scrollable-category__products {
      display: flex;
      flex-direction: column;
      overflow: auto;
      padding: 0;
      margin: 0; }
      .scroll-view .contain .scrollable-category__products .category-title {
        font-size: 0.875rem;
        font-weight: bold;
        color: #B59658;
        padding: 0.75rem 0.5rem 0.25rem 1rem; }
      .scroll-view .contain .scrollable-category__products .page-buy-wines__list--horizontal {
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0; }

.tip {
  color: #838383;
  font-size: 0.7rem;
  color: #838383;
  margin: 0.4rem 0 0.4rem 1rem; }

.page-product-detail .page__inner {
  display: flex;
  flex: 1; }

.page-product-detail .page__sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0; }
  .page-product-detail .page__sticky-footer .detail-food {
    background-color: #ccc;
    font-size: 12px;
    padding: 5px 10px;
    color: #B59658; }
  .page-product-detail .page__sticky-footer .page__sticky-footer-silde {
    box-shadow: 5px -5px 10px #888888; }
  .page-product-detail .page__sticky-footer .page__sticky-footer__message {
    font-size: 0.875rem;
    font-style: italic;
    position: relative;
    z-index: 10;
    margin-bottom: -1px;
    background-color: #B59658;
    color: #fff;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #977b43; }
    .page-product-detail .page__sticky-footer .page__sticky-footer__message a {
      color: #fff; }
  .page-product-detail .page__sticky-footer .food {
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 10px 1em;
    border-bottom: 1px solid #ebebeb;
    width: 100%;
    background-color: white; }
    .page-product-detail .page__sticky-footer .food .close {
      background-color: #000;
      width: 20px;
      height: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      font-size: 12px;
      color: #fff;
      margin-right: 1em; }
    .page-product-detail .page__sticky-footer .food .name {
      flex: 1; }
    .page-product-detail .page__sticky-footer .food .price {
      padding: 0 1em;
      color: #f25755; }

.product-detail-item__cart-counter {
  color: white;
  background-color: #B59658;
  border-top: 1px solid #ebebeb;
  display: flex;
  align-items: center;
  justify-content: center; }
  .product-detail-item__cart-counter::after {
    clear: both;
    content: "";
    display: block; }
  .product-detail-item__cart-counter .btn {
    font-size: 0.75rem;
    padding: 1rem 1rem;
    line-height: 1.3;
    border-radius: 0;
    color: #070400; }
  .product-detail-item__cart-counter .product-detail-item__cart-counter__counter {
    width: 30%;
    float: left;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 0.5rem; }
    .product-detail-item__cart-counter .product-detail-item__cart-counter__counter .product-detail-item__cart-counter__counter__minus button,
    .product-detail-item__cart-counter .product-detail-item__cart-counter__counter .product-detail-item__cart-counter__counter__plus button {
      font-size: 1rem;
      font-weight: 700;
      line-height: 0.75rem; }
    .product-detail-item__cart-counter .product-detail-item__cart-counter__counter .product-detail-item__cart-counter__counter__count {
      font-size: 0.875rem;
      line-height: 1rem;
      padding: 0.4rem 0 0.25rem;
      border: 1px solid #070400;
      border-radius: 4px;
      color: #070400;
      min-width: 1.775rem;
      text-align: center; }
  .product-detail-item__cart-counter .product-detail-item__cart-counter__action {
    flex: 1;
    float: left;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    align-self: stretch;
    justify-content: center;
    align-items: center;
    font-weight: 600; }
    .product-detail-item__cart-counter .product-detail-item__cart-counter__action.action--buy-now {
      background-color: #dbad54; }

.product-detail-item__out-of-stock {
  color: white;
  background-color: #B59658;
  border-top: 1px solid #ebebeb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0.675rem; }
  .product-detail-item__out-of-stock::after {
    clear: both;
    content: "";
    display: block; }
  .product-detail-item__out-of-stock .product-detail-item__out-of-stock__message {
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.125rem; }
  .product-detail-item__out-of-stock .product-detail-item__out-of-stock__link {
    font-size: 0.875rem;
    font-style: italic; }

.product-detail-item {
  padding: 1rem;
  width: 100%; }
  .product-detail-item .product-detail-item__image-slider, .product-detail-item .product-detail-item__image-wrap {
    border-radius: 0.25rem;
    border: 1px solid #ebebeb; }
  .product-detail-item .product-detail-item__image-slider .flickity-page-dots {
    bottom: 8px; }
  .product-detail-item .product-detail-item__video {
    width: 100%; }
    .product-detail-item .product-detail-item__video > div {
      padding-top: 100%;
      margin: 0;
      border-radius: .25rem;
      overflow: hidden;
      position: relative;
      background-color: #eee; }
      .product-detail-item .product-detail-item__video > div:before {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 3rem;
        color: #c6c6c6; }
    .product-detail-item .product-detail-item__video video {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; }
  .product-detail-item .product-detail-item__image {
    width: 100%; }
    .product-detail-item .product-detail-item__image img {
      max-width: 100%; }
    .product-detail-item .product-detail-item__image > div {
      padding-top: 100%;
      background: no-repeat center;
      background-size: contain;
      margin: 0.5rem; }
  .product-detail-item .product-detail-item__meta {
    color: #070400; }
  .product-detail-item .product-detail-item__name {
    font-size: 1.25rem;
    font-family: "Merriweather-Italic", serif;
    color: #070400;
    text-align: center;
    padding: 1rem 0 0.5rem;
    margin-bottom: 0.5rem; }
  .product-detail-item .product-detail-item__price {
    font-size: 1.125rem;
    color: #B59658;
    text-align: center;
    margin-bottom: 0.5rem; }
  .product-detail-item .product-detail-item__region {
    font-size: 0.875rem;
    font-weight: 300;
    color: #838383;
    text-align: center; }
  .product-detail-item .product-detail-item__description {
    font-size: 0.875rem;
    line-height: 1.3;
    margin-top: 1.5rem;
    margin-bottom: 2rem; }
    .product-detail-item .product-detail-item__description ul {
      padding-left: 0;
      list-style: none;
      text-align: left;
      margin-bottom: 1.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid #ebebeb; }
      .product-detail-item .product-detail-item__description ul li {
        margin-bottom: 1rem; }
  .product-detail-item .product-detail-item__more-info {
    margin-bottom: 2rem; }
    .product-detail-item .product-detail-item__more-info .product-detail-item__more-info__title {
      font-family: "Merriweather-Bold", serif;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid #ebebeb;
      margin-bottom: 0.5rem; }
    .product-detail-item .product-detail-item__more-info .product-detail-item__more-info__list {
      padding-top: 0.5rem; }
      .product-detail-item .product-detail-item__more-info .product-detail-item__more-info__list .product-detail-item__more-info__list__item {
        margin-bottom: 1rem; }
        .product-detail-item .product-detail-item__more-info .product-detail-item__more-info__list .product-detail-item__more-info__list__item::after {
          clear: both;
          content: "";
          display: block; }
        .product-detail-item .product-detail-item__more-info .product-detail-item__more-info__list .product-detail-item__more-info__list__item .product-detail-item__more-info__list__label {
          font-size: 0.875rem;
          float: left;
          display: block;
          margin-right: 2.35765%;
          width: 48.82117%; }
          .product-detail-item .product-detail-item__more-info .product-detail-item__more-info__list .product-detail-item__more-info__list__item .product-detail-item__more-info__list__label:last-child {
            margin-right: 0; }
        .product-detail-item .product-detail-item__more-info .product-detail-item__more-info__list .product-detail-item__more-info__list__item .product-detail-item__more-info__list__value {
          font-size: 0.875rem;
          float: left;
          display: block;
          margin-right: 2.35765%;
          width: 48.82117%;
          line-height: 1.3; }
          .product-detail-item .product-detail-item__more-info .product-detail-item__more-info__list .product-detail-item__more-info__list__item .product-detail-item__more-info__list__value:last-child {
            margin-right: 0; }
  .product-detail-item .product-detail-item__points {
    position: relative;
    margin-bottom: 2rem; }
    .product-detail-item .product-detail-item__points .tip {
      margin: 1em 0;
      font-size: 0.85rem;
      color: #8a7240; }
    .product-detail-item .product-detail-item__points .product-detail-item__points__title {
      font-family: "Merriweather-Bold", serif;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid #ebebeb;
      margin-bottom: 0.5rem; }
    .product-detail-item .product-detail-item__points .product-detail-item__points__list {
      padding-top: 0.5rem; }
      .product-detail-item .product-detail-item__points .product-detail-item__points__list::after {
        clear: both;
        content: "";
        display: block; }
      .product-detail-item .product-detail-item__points .product-detail-item__points__list .product-detail-item__points__list__item {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 23.23176%;
        text-align: center;
        margin-bottom: 0.5rem; }
        .product-detail-item .product-detail-item__points .product-detail-item__points__list .product-detail-item__points__list__item:last-child {
          margin-right: 0; }
        .product-detail-item .product-detail-item__points .product-detail-item__points__list .product-detail-item__points__list__item:nth-child(4n) {
          margin-right: 0; }
        .product-detail-item .product-detail-item__points .product-detail-item__points__list .product-detail-item__points__list__item:nth-child(4n+1) {
          clear: left; }
        .product-detail-item .product-detail-item__points .product-detail-item__points__list .product-detail-item__points__list__item .product-detail-item__points__list__item__icon-image {
          width: 4rem;
          height: 4rem;
          background-color: #333;
          border-radius: 50%;
          padding: 0.875rem; }
        .product-detail-item .product-detail-item__points .product-detail-item__points__list .product-detail-item__points__list__item .product-detail-item__points__list__item__image {
          width: 4rem;
          height: 4rem; }
        .product-detail-item .product-detail-item__points .product-detail-item__points__list .product-detail-item__points__list__item .product-detail-item__points__list__item__label {
          font-size: 0.675rem;
          line-height: 1.3;
          padding-top: 0.5rem;
          word-break: break-all; }
    .product-detail-item .product-detail-item__points .product-detail-item__points__products {
      width: 90vw;
      display: flex;
      font-family: "Merriweather-Italic", serif;
      font-size: 12px;
      text-align: center;
      flex-wrap: wrap; }
      .product-detail-item .product-detail-item__points .product-detail-item__points__products .food-item {
        flex: none;
        width: 33%;
        text-align: center;
        margin-bottom: 10px; }
        .product-detail-item .product-detail-item__points .product-detail-item__points__products .food-item > img {
          width: 25vw;
          height: 25vw;
          border-radius: 50%;
          object-fit: cover;
          border: 1px solid #ebebeb;
          background-color: #F1F1F1; }
          .product-detail-item .product-detail-item__points .product-detail-item__points__products .food-item > img.gray {
            -webkit-filter: grayscale(100%);
            -moz-filter: grayscale(100%);
            -o-filter: grayscale(100%);
            filter: grayscale(100%); }
    .product-detail-item .product-detail-item__points .product-detail-item__points__btn {
      margin-top: 1em;
      display: flex;
      justify-content: center; }
      .product-detail-item .product-detail-item__points .product-detail-item__points__btn button {
        font-family: "Merriweather-Bold", serif;
        font-size: 12px;
        padding: 5px 10px;
        min-width: 40vw;
        max-width: 80vw;
        height: 40px; }

.recommended-food-item__wrap {
  display: table;
  width: 100%; }
  .recommended-food-item__wrap .product-detail-item__points .product-detail-item__points__products .product-item {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%; }
    .recommended-food-item__wrap .product-detail-item__points .product-detail-item__points__products .product-item:last-child {
      margin-right: 0; }
    .recommended-food-item__wrap .product-detail-item__points .product-detail-item__points__products .product-item:nth-child(4n) {
      margin-right: 0; }
    .recommended-food-item__wrap .product-detail-item__points .product-detail-item__points__products .product-item:nth-child(4n+1) {
      clear: left; }

.recommended-food-item .product-item .product-item__image {
  border-radius: 50%; }
  .recommended-food-item .product-item .product-item__image > div {
    border-radius: 50%;
    margin: 0; }

.wrapper {
  height: 100vh; }

.bottom-food {
  font-size: 14px;
  height: 100%;
  display: flex;
  flex-direction: column; }
  .bottom-food .vendor {
    border-bottom: 1px solid #ebebeb; }
    .bottom-food .vendor .vendor_main {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2em 2em 1em;
      border-bottom: 1px solid #ebebeb; }
      .bottom-food .vendor .vendor_main .info {
        text-align: center; }
    .bottom-food .vendor .logo {
      object-fit: cover;
      width: 60px;
      height: 60px;
      border-radius: 5px;
      margin-right: 1em; }
    .bottom-food .vendor .title {
      font-size: 16px;
      font-weight: bold;
      font-family: "Merriweather-Italic", serif; }
    .bottom-food .vendor .product_main {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      padding: 1em 2em; }
      .bottom-food .vendor .product_main .info {
        flex: 1;
        text-align: left; }
        .bottom-food .vendor .product_main .info .price {
          padding-top: 1em; }
          .bottom-food .vendor .product_main .info .price span {
            margin-right: 1em;
            font-weight: bold;
            color: #B59658; }
            .bottom-food .vendor .product_main .info .price span:last-child {
              font-size: 12px;
              text-decoration: line-through;
              color: #838383;
              font-style: italic; }
      .bottom-food .vendor .product_main .number {
        font-size: 12px;
        color: #838383; }
  .bottom-food .menu {
    display: flex;
    flex-direction: row;
    overflow: hidden; }
    .bottom-food .menu ul {
      padding: 0;
      margin: 0;
      list-style-type: none; }
    .bottom-food .menu .menu-wrapper {
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      color: #333;
      margin-bottom: 0.3rem;
      width: 30vw;
      float: left;
      text-align: left;
      background-color: #F1F1F1; }
      .bottom-food .menu .menu-wrapper .menu-item {
        border-bottom: 2px solid transparent;
        padding: 0.85rem 0.3rem 0.125rem 0.3rem; }
        .bottom-food .menu .menu-wrapper .menu-item p {
          padding: 0;
          margin: 0; }
        .bottom-food .menu .menu-wrapper .menu-item.selected {
          color: #B59658;
          border-color: #B59658; }
    .bottom-food .menu .foods-wrapper {
      width: 100%;
      padding: 0 10px; }
      .bottom-food .menu .foods-wrapper .food-list > .title {
        padding: 0.5em 0;
        font-size: 12px;
        color: #838383;
        background-color: #fff; }
  .bottom-food .select-food {
    padding: 2em 2em 0; }
  .bottom-food .row {
    display: flex;
    flex-direction: row;
    padding: 1em 0;
    border-bottom: 1px solid #ebebeb; }
    .bottom-food .row img {
      width: 80px;
      height: 80px;
      object-fit: contain;
      border-radius: 5px; }
    .bottom-food .row .info {
      width: 100%;
      margin-left: 1em;
      display: flex;
      flex-direction: column; }
      .bottom-food .row .info > div {
        font-size: 12px;
        margin-bottom: 0.5em; }
        .bottom-food .row .info > div.desc {
          flex: 1;
          color: #838383;
          overflow: hidden;
          text-overflow: ellipsis;
          max-width: 45vw;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical; }
        .bottom-food .row .info > div.price {
          display: flex;
          flex-direction: row;
          justify-content: space-between;
          align-items: flex-end; }
          .bottom-food .row .info > div.price button {
            background-color: #B59658;
            color: white;
            font-size: 1.1rem;
            line-height: 1.1rem;
            width: 20px;
            height: 20px;
            text-align: center;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            border: none;
            border-radius: 50%; }
            .bottom-food .row .info > div.price button:focus {
              outline: none; }
      .bottom-food .row .info .title {
        font-size: 16px;
        font-weight: bold;
        font-family: "Merriweather-Italic", serif;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 45vw; }
      .bottom-food .row .info .price {
        font-size: 12px; }
        .bottom-food .row .info .price span {
          margin-right: 1em;
          font-style: italic;
          text-decoration: line-through; }
        .bottom-food .row .info .price .discount-price {
          font-size: 16px;
          font-weight: bold;
          color: #f25755;
          text-decoration: none; }
    .bottom-food .row .counter__counter {
      display: flex;
      flex-direction: row;
      align-items: center; }
      .bottom-food .row .counter__counter .counter__count {
        font-size: 0.875rem;
        line-height: 1rem;
        padding: 0.4rem 0 0.25rem;
        border: 1px solid #070400;
        border-radius: 4px;
        color: #070400;
        min-width: 1.775rem;
        text-align: center; }
    .bottom-food .row.btns {
      padding: 0;
      background-color: #B59658; }
      .bottom-food .row.btns .total {
        display: flex;
        flex-direction: row;
        width: 65vw;
        padding: 0 1em;
        align-items: center; }
        .bottom-food .row.btns .total .info .price {
          color: white;
          font-weight: bold;
          font-size: 16px;
          margin-bottom: 0; }
        .bottom-food .row.btns .total .info .tip {
          margin: 0;
          color: #838383;
          font-size: 0.7rem; }
      .bottom-food .row.btns .number {
        flex: 1;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center; }
      .bottom-food .row.btns button {
        width: 35vw;
        font-size: 14px; }
        .bottom-food .row.btns button.btn {
          flex: 1; }
        .bottom-food .row.btns button.golden {
          background-color: #dbad54; }
    .bottom-food .row:last-child {
      border-bottom: none; }

.wrapper-bottom {
  position: relative; }
  .wrapper-bottom .food-list {
    position: absolute;
    bottom: 56px;
    background-color: white;
    width: 100%;
    box-shadow: 5px -5px 10px #888888;
    overflow: hidden; }
    .wrapper-bottom .food-list .header {
      background-color: #F1F1F1;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: #c86c00;
      padding: 10px 1em; }
    .wrapper-bottom .food-list .food {
      display: flex;
      align-items: center;
      flex-direction: row;
      padding: 10px 1em;
      border-bottom: 1px solid #ebebeb; }
      .wrapper-bottom .food-list .food .name {
        flex: 1; }
      .wrapper-bottom .food-list .food .price {
        padding: 0 1em;
        color: #f25755; }

.btns-board {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 70px; }
  .btns-board .btn {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #B59658;
    border: none;
    color: #fff;
    padding: 0; }
    .btns-board .btn:focus {
      outline: none; }

.transition {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  overflow: hidden;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start; }

.transition-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column; }
  .transition-wrapper .transition-close {
    position: absolute;
    left: 1em;
    top: 1em;
    background-color: #000;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 12px;
    color: #fff; }
    .transition-wrapper .transition-close.right {
      left: auto;
      right: 1em; }

.food-block {
  height: 100px; }

.fade {
  transition: opacity 0.15s linear; }

.fade:not(.show) {
  opacity: 0; }

.slide {
  transition: height 0.15s linear; }

.slide:not(.show) {
  height: 0; }

.wrapper-low {
  height: 25vh; }

.wrapper-auto {
  height: auto; }

.food-detail {
  position: absolute;
  width: 100%;
  left: 0;
  top: 35px;
  background-color: white;
  border-radius: 0.25rem;
  border: 1px solid #ebebeb; }
  .food-detail .detail {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0.5rem 0; }
    .food-detail .detail img {
      object-fit: cover;
      width: 5.8rem;
      margin: 0 0.2rem; }
    .food-detail .detail .close {
      position: absolute;
      top: -5px;
      right: -5px;
      background-color: #000;
      width: 20px;
      height: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      font-size: 12px;
      color: #fff; }
    .food-detail .detail .info {
      padding: 0 1rem;
      flex: 1;
      display: flex;
      flex-direction: column; }
      .food-detail .detail .info .name {
        font-size: 0.875rem;
        font-family: "Merriweather-Italic", serif;
        color: #070400;
        padding: 0.3rem 0 0.125rem;
        margin-bottom: 0.125rem; }
      .food-detail .detail .info .vendor {
        font-size: 0.675rem;
        padding: 0.3rem 0;
        display: flex;
        flex-direction: row; }
        .food-detail .detail .info .vendor .restaurant {
          font-weight: bold;
          width: 5rem; }
      .food-detail .detail .info .more_desc {
        flex: 1; }
      .food-detail .detail .info .desc {
        font-size: 0.675rem;
        line-height: 1.4;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical; }
  .food-detail .food-detail-btns {
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 0.6rem; }
    .food-detail .food-detail-btns .price {
      border: 2px solid #B59658;
      text-align: left;
      padding: 0.25rem 0.5rem;
      border-radius: 0.25rem;
      color: #070400;
      font-weight: bold; }
    .food-detail .food-detail-btns .add-tocart {
      background-color: #B59658;
      color: white;
      font-size: 1.1rem;
      line-height: 1.1rem;
      width: 1.1rem;
      height: 1.1rem;
      text-align: center;
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      border: none;
      border-radius: 50%; }

.page-cart.page.page--sticky-tabs {
  padding-bottom: 6.375rem; }

.page-cart .page__inner {
  padding: 1rem; }

.page-cart .page__sticky-footer {
  position: fixed;
  bottom: 3rem;
  left: 0;
  right: 0;
  background-color: #F1F1F1; }

.page-cart .page-checkout__error {
  background-color: #ed8380;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  font-style: italic;
  text-align: center; }
  .page-cart .page-checkout__error span {
    text-decoration: underline; }

.page-cart .cart-product-item {
  border: 1px solid #ebebeb;
  border-radius: 0.25rem;
  margin-bottom: 1rem; }
  .page-cart .cart-product-item .cart-product-item__name__wrap {
    display: flex;
    border-bottom: 1px solid #ebebeb; }
  .page-cart .cart-product-item .cart-product-item__name {
    flex: 1;
    font-size: 0.875rem;
    padding: 0.75rem; }
  .page-cart .cart-product-item .cart-product-item__remove {
    font-size: 0.75rem;
    color: #B59658;
    float: right;
    padding: 0.8rem 0.75rem 0.7rem; }
  .page-cart .cart-product-item .cart-product-item__meta {
    padding: 0.5rem 0.75rem; }
    .page-cart .cart-product-item .cart-product-item__meta::after {
      clear: both;
      content: "";
      display: block; }
    .page-cart .cart-product-item .cart-product-item__meta .cart-product-item__price {
      font-size: 0.875rem;
      color: #070400;
      float: left;
      padding: 0.25rem 0; }
      .page-cart .cart-product-item .cart-product-item__meta .cart-product-item__price span {
        font-size: 10px;
        margin-left: 1em;
        color: #838383; }
  .page-cart .cart-product-item .cart-product-item__food {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem; }
    .page-cart .cart-product-item .cart-product-item__food .cart-product-item__food_name {
      flex: 1;
      text-align: left;
      overflow: hidden;
      text-overflow: ellipsis; }
    .page-cart .cart-product-item .cart-product-item__food .cart-product-item__food_price {
      font-size: 12px;
      width: 15vw;
      text-align: right;
      padding-right: 1em; }
    .page-cart .cart-product-item .cart-product-item__food span {
      width: 40px;
      line-height: 24px;
      border-radius: 3px;
      font-size: 10px;
      background-color: #75ac2a;
      color: white;
      text-align: center;
      margin-right: 1em; }
  .page-cart .cart-product-item .cart-product-item__counter {
    display: flex;
    float: right; }
    .page-cart .cart-product-item .cart-product-item__counter .cart-product-item__counter__minus button, .page-cart .cart-product-item .cart-product-item__counter .cart-product-item__counter__plus button {
      line-height: 1;
      width: 1.375rem;
      height: 1.375rem;
      border-radius: 50%;
      padding: 0.15rem 0.25rem 0.25rem;
      color: #B59658;
      text-align: center;
      background-color: #F1F1F1; }
    .page-cart .cart-product-item .cart-product-item__counter .cart-product-item__counter__count {
      font-size: 0.675rem;
      padding: 0.325rem 0.25rem 0.275rem;
      border: 1px solid #ebebeb;
      border-radius: 0.25rem;
      margin: 0 0.5rem;
      width: 1.375rem;
      text-align: center; }

.page-cart .cart-subtotal {
  display: flex; }
  .page-cart .cart-subtotal::after {
    clear: both;
    content: "";
    display: block; }
  .page-cart .cart-subtotal .cart-subtotal__amount {
    font-size: 1.125rem;
    padding: 1rem;
    float: left;
    flex: 1; }
  .page-cart .cart-subtotal .cart-subtotal__checkout {
    display: flex;
    float: right; }
    .page-cart .cart-subtotal .cart-subtotal__checkout button {
      border: 0;
      border-radius: 0;
      font-size: 1.1rem; }
  .page-cart .cart-subtotal .cart-subtotal__progress {
    padding: 0 1.5rem; }
    .page-cart .cart-subtotal .cart-subtotal__progress .sk-spinner {
      margin-top: 1.125rem; }

.page-edit-profile .page__inner {
  padding: 1rem 1rem; }

.page-edit-profile .edit-profile__form .edit-profile__form__phone {
  width: 100%;
  font-size: 0.9rem;
  margin: 1rem 1rem 1.2rem 0.5rem;
  float: left; }

.page-edit-profile .edit-profile__form .edit-profile__form__row .input {
  margin-bottom: 1rem; }

.page-edit-profile .edit-profile__form .edit-profile__form__row .input.span-2 {
  float: left;
  width: 49%; }
  .page-edit-profile .edit-profile__form .edit-profile__form__row .input.span-2:last-child {
    float: right; }

.page-edit-profile .edit-profile__form .edit-profile__form__submit {
  margin-top: 1.5rem; }
  .page-edit-profile .edit-profile__form .edit-profile__form__submit button {
    display: block;
    width: 100%; }

.page-manage-addresses .page__inner {
  padding: 1rem; }
  .page-manage-addresses .page__inner .page-loading {
    height: 80px; }
    .page-manage-addresses .page__inner .page-loading .sk-spinner {
      margin-top: 0; }

.page-manage-addresses .manage-addresses__item {
  border: 1px solid #ebebeb;
  border-radius: 0.25rem;
  margin-bottom: 1rem; }
  .page-manage-addresses .manage-addresses__item .manage-addresses__item__name__wrap {
    display: flex;
    border-bottom: 1px solid #ebebeb; }
  .page-manage-addresses .manage-addresses__item .manage-addresses__item__name {
    flex: 1;
    font-size: 0.875rem;
    padding: 0.75rem;
    color: #B59658; }
  .page-manage-addresses .manage-addresses__item .manage-addresses__item__remove {
    font-size: 0.75rem;
    color: #B59658;
    float: right;
    padding: 0.8rem 0.75rem 0.7rem; }
  .page-manage-addresses .manage-addresses__item .manage-addresses__item__address {
    font-size: 0.875rem;
    padding: 0.75rem;
    color: #070400;
    line-height: 1.3rem; }
  .page-manage-addresses .manage-addresses__item .invalid-address {
    font-size: 0.6rem;
    margin-top: -0.5rem;
    padding: 0 0.5rem 0.5rem 0.5rem;
    color: #de443a;
    line-height: 1rem; }

.page-manage-addresses .page-mask {
  width: 100vw;
  height: 100vh;
  z-index: 9998;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0.5; }

.page-manage-addresses .page-popup {
  width: 100vw;
  height: 100%;
  z-index: 9999;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around; }
  .page-manage-addresses .page-popup .form_block {
    background-color: #fff;
    margin: 0 1rem;
    padding: 2.5rem 0 2rem 0;
    border-radius: 1rem; }
    .page-manage-addresses .page-popup .form_block .msg {
      margin: 0 2rem 1.5rem 2rem; }
    .page-manage-addresses .page-popup .form_block .bottom-msg {
      margin: 0 2rem; }
    .page-manage-addresses .page-popup .form_block .actions {
      margin: 0.6rem 4rem 0 4rem; }
      .page-manage-addresses .page-popup .form_block .actions .btn {
        text-transform: none;
        display: block;
        margin: 0 0 1rem 0;
        border-radius: 0.5rem; }

.page-edit-address .page__inner {
  padding: 1rem 1rem; }

.page-edit-address .edit-address__form .edit-address__guideline {
  font-size: 0.875rem;
  padding-bottom: 1rem; }

.page-edit-address .edit-address__form .edit-address__form__row .input {
  margin-bottom: 1rem; }

.page-edit-address .edit-address__form .edit-address__form__row .input.span-2 {
  float: left;
  width: 49%; }
  .page-edit-address .edit-address__form .edit-address__form__row .input.span-2:last-child {
    float: right; }

.page-edit-address .edit-address__form .edit-address__form__submit {
  margin-top: 1.5rem; }
  .page-edit-address .edit-address__form .edit-address__form__submit button {
    display: block;
    width: 100%; }

.page-checkout .page__inner {
  display: flex;
  flex: 1; }

.page-checkout .page-checkout__error {
  background-color: #ed8380;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  font-style: italic;
  text-align: center; }
  .page-checkout .page-checkout__error span {
    text-decoration: underline; }

.page-checkout .page__sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #F1F1F1; }
  .page-checkout .page__sticky-footer .loader {
    padding: 1rem;
    text-align: center; }
  .page-checkout .page__sticky-footer button {
    font-family: "Merriweather-Bold", serif;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: normal;
    font-weight: normal; }

.page-checkout .checkout-details {
  width: 100vw; }
  .page-checkout .checkout-details .checkout-details__block {
    padding: 1rem;
    border-bottom: 1px solid #f1f1f1; }
    .page-checkout .checkout-details .checkout-details__block::after {
      clear: both;
      content: "";
      display: block; }
    .page-checkout .checkout-details .checkout-details__block .checkout-details__account {
      font-family: "Merriweather-Italic", serif;
      font-size: 1rem; }
      .page-checkout .checkout-details .checkout-details__block .checkout-details__account::after {
        clear: both;
        content: "";
        display: block; }
      .page-checkout .checkout-details .checkout-details__block .checkout-details__account .checkout-details__account__label {
        float: left; }
      .page-checkout .checkout-details .checkout-details__block .checkout-details__account .checkout-details__account__text {
        font-family: "Montserrat", sans-serif;
        float: right; }
    .page-checkout .checkout-details .checkout-details__block .checkout-details__headline {
      font-family: "Merriweather-Italic", serif;
      font-size: 1rem;
      margin-bottom: 1rem; }
      .page-checkout .checkout-details .checkout-details__block .checkout-details__headline::after {
        clear: both;
        content: "";
        display: block; }
      .page-checkout .checkout-details .checkout-details__block .checkout-details__headline .checkout-details__headline__label {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline; }
        .page-checkout .checkout-details .checkout-details__block .checkout-details__headline .checkout-details__headline__label .delivery-type {
          font-family: "Montserrat", sans-serif;
          font-size: 0.7rem;
          font-weight: bold; }
      .page-checkout .checkout-details .checkout-details__block .checkout-details__headline .checkout-details__headline__text {
        font-family: "Montserrat", sans-serif;
        float: right;
        text-align: right;
        width: 75%; }
    .page-checkout .checkout-details .checkout-details__block .checkout-details__product-list__item {
      font-size: 0.875rem;
      margin: 0.4rem 0 0.4rem 1rem; }
      .page-checkout .checkout-details .checkout-details__block .checkout-details__product-list__item::after {
        clear: both;
        content: "";
        display: block; }
      .page-checkout .checkout-details .checkout-details__block .checkout-details__product-list__item:last-child {
        margin-bottom: 0; }
      .page-checkout .checkout-details .checkout-details__block .checkout-details__product-list__item .checkout-details__product-list__item__name {
        width: 60%;
        line-height: 1.3;
        float: left; }
      .page-checkout .checkout-details .checkout-details__block .checkout-details__product-list__item .checkout-details__product-list__item__price {
        float: right; }
      .page-checkout .checkout-details .checkout-details__block .checkout-details__product-list__item .delivery-fee-note {
        font-size: 0.7rem;
        color: #838383; }
    .page-checkout .checkout-details .checkout-details__block .checkout-details__total__divider {
      margin-top: 1rem; }
    .page-checkout .checkout-details .checkout-details__block .checkout-details__total {
      font-size: 0.875rem;
      margin: 0.75rem 0 0 1rem; }
      .page-checkout .checkout-details .checkout-details__block .checkout-details__total::after {
        clear: both;
        content: "";
        display: block; }
      .page-checkout .checkout-details .checkout-details__block .checkout-details__total.type--discount {
        color: #f25755; }
      .page-checkout .checkout-details .checkout-details__block .checkout-details__total .checkout-details__total__label {
        float: left; }
      .page-checkout .checkout-details .checkout-details__block .checkout-details__total .checkout-details__total__value {
        float: right; }
    .page-checkout .checkout-details .checkout-details__block .checkout-details__payment__options {
      margin-left: 1rem; }
      .page-checkout .checkout-details .checkout-details__block .checkout-details__payment__options .checkout-details__payment__option {
        display: inline-block;
        width: 30%;
        text-align: center;
        font-size: 0.875rem;
        border: 1px solid #ebebeb;
        border-radius: 0.125rem;
        margin: 0rem 0.5rem 0rem 0;
        padding: 0.5rem 0.25rem 0.5rem 0.25rem; }
        .page-checkout .checkout-details .checkout-details__block .checkout-details__payment__options .checkout-details__payment__option:last-child {
          margin-bottom: 0; }
        .page-checkout .checkout-details .checkout-details__block .checkout-details__payment__options .checkout-details__payment__option.active {
          color: #B59658;
          background-color: #F1F1F1; }
    .page-checkout .checkout-details .checkout-details__block .checkout-details__order__coupon__fields {
      display: flex;
      margin-left: 1rem; }
      .page-checkout .checkout-details .checkout-details__block .checkout-details__order__coupon__fields .input {
        width: 65vw;
        flex: 1;
        margin: 0;
        border-radius: 0.5rem; }
      .page-checkout .checkout-details .checkout-details__block .checkout-details__order__coupon__fields button {
        width: 20vw;
        padding: 0.625rem 1rem;
        margin-left: 1rem;
        font-size: 0.875rem; }
    .page-checkout .checkout-details .checkout-details__block .checkout-details__order__store__select > div {
      font-size: 0.675rem;
      color: #838383; }
    .page-checkout .checkout-details .checkout-details__block .checkout-details__order__store__select select {
      width: 100%;
      background: transparent;
      border: 1px solid #ebebeb;
      padding: 0.5rem;
      color: #070400; }
    .page-checkout .checkout-details .checkout-details__block .checkout-details__address {
      padding: 0 0 0 1rem;
      text-align: left;
      font-size: 0.875rem;
      color: #070400; }
    .page-checkout .checkout-details .checkout-details__block .checkout-details__table_no {
      width: 50%; }
      .page-checkout .checkout-details .checkout-details__block .checkout-details__table_no::after {
        clear: both;
        content: "";
        display: block; }
      .page-checkout .checkout-details .checkout-details__block .checkout-details__table_no .input {
        margin: 0.5rem 0 0 1rem; }
    .page-checkout .checkout-details .checkout-details__block .checkout-details__order__note .input {
      margin: 0.5rem 0 0 1rem; }
    .page-checkout .checkout-details .checkout-details__block .empty-notice {
      padding: 0.375rem 0;
      font-size: 0.875rem !important; }

.page-news-detail .page__inner {
  display: flex;
  flex: 1;
  padding: 1rem; }

.page-news-detail .news-detail-item {
  margin-bottom: 1rem; }
  .page-news-detail .news-detail-item .news-detail-item__image > div {
    padding-top: 66.66666%;
    background: #F1F1F1 no-repeat center;
    background-size: cover; }
  .page-news-detail .news-detail-item .news-detail-item__title {
    font-family: "Merriweather-Italic", serif;
    font-size: 1.125rem;
    text-align: center;
    padding: 1rem 0.5rem;
    margin-bottom: 1rem; }
  .page-news-detail .news-detail-item .news-detail-item__content {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #444; }
    .page-news-detail .news-detail-item .news-detail-item__content img {
      display: block;
      max-width: 100%;
      width: 100%;
      height: auto; }

.page-news-list .news-list {
  padding: 1rem; }

.page-news-list .news-list__item {
  margin-bottom: 1rem; }
  .page-news-list .news-list__item .news-list__item__image > div {
    padding-top: 66.66666%;
    background: #F1F1F1 no-repeat center;
    background-size: cover; }
  .page-news-list .news-list__item .news-list__item__title {
    font-family: "Merriweather-Italic", serif;
    font-size: 1.125rem;
    text-align: center;
    padding: 1rem 0.5rem;
    color: #070400; }

.page-about .page__inner {
  padding: 1rem; }

.page-order-history .order-history__list {
  padding: 1rem; }

.page-order-history .order-history__item {
  border: 1px solid #ebebeb;
  border-radius: 0.25rem;
  padding: 0.75rem;
  margin-bottom: 1rem; }
  .page-order-history .order-history__item .order-history__item__product-list {
    margin-bottom: 0.75rem; }
    .page-order-history .order-history__item .order-history__item__product-list .order-history__item__product-list__item {
      font-size: 0.875rem;
      margin-bottom: 0.75rem; }
      .page-order-history .order-history__item .order-history__item__product-list .order-history__item__product-list__item::after {
        clear: both;
        content: "";
        display: block; }
      .page-order-history .order-history__item .order-history__item__product-list .order-history__item__product-list__item .order-history__item__product-list__item__name {
        width: 60%;
        line-height: 1.3;
        float: left; }
        .page-order-history .order-history__item .order-history__item__product-list .order-history__item__product-list__item .order-history__item__product-list__item__name.food:before {
          font-size: 10px;
          margin-right: 1em;
          content: "\2726";
          color: #75ac2a; }
      .page-order-history .order-history__item .order-history__item__product-list .order-history__item__product-list__item .order-history__item__product-list__item__price {
        float: right; }
  .page-order-history .order-history__item .order-history__item__total {
    font-size: 0.875rem;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem; }
    .page-order-history .order-history__item .order-history__item__total::after {
      clear: both;
      content: "";
      display: block; }
    .page-order-history .order-history__item .order-history__item__total.type--discount {
      color: #f25755; }
    .page-order-history .order-history__item .order-history__item__total .order-history__item__total__label {
      float: left; }
    .page-order-history .order-history__item .order-history__item__total .order-history__item__total__value {
      float: right; }
  .page-order-history .order-history__item .order-history__item__timestamp {
    margin-bottom: 0.75rem; }
    .page-order-history .order-history__item .order-history__item__timestamp::after {
      clear: both;
      content: "";
      display: block; }
    .page-order-history .order-history__item .order-history__item__timestamp .order-history__item__timestamp__ts {
      font-size: 0.75rem;
      color: #838383;
      float: left;
      padding: 0.375rem 0; }
    .page-order-history .order-history__item .order-history__item__timestamp .order-history__item__timestamp__status {
      font-size: 0.675rem;
      color: #838383;
      background-color: #F1F1F1;
      padding: 0.375rem 0.5rem;
      border-radius: 4rem;
      float: right;
      letter-spacing: 0.025rem; }
  .page-order-history .order-history__item .order-history__item__sub-total::after {
    clear: both;
    content: "";
    display: block; }
  .page-order-history .order-history__item .order-history__item__sub-total .order-history__item__sub-total__label {
    font-size: 0.875rem;
    float: left; }
  .page-order-history .order-history__item .order-history__item__sub-total .order-history__item__sub-total__action {
    font-size: 0.75rem;
    text-transform: uppercase;
    float: right; }

.page-order-detail .page__inner {
  padding: 1rem; }

.page-order-detail .payment-complete {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: #ebebeb solid 1px; }
  .page-order-detail .payment-complete .payment-complete__label {
    font-family: "Merriweather-Bold", serif;
    font-size: 1.3rem;
    padding: 0.5rem;
    margin-bottom: 1rem;
    color: #070400;
    background-color: orange; }
  .page-order-detail .payment-complete .payment-complete__welcome {
    font-family: "Merriweather-Bold", serif;
    font-size: 1.3rem;
    padding: 1rem; }
  .page-order-detail .payment-complete .payment-complete__guide {
    font-size: 0.85rem;
    padding: 1rem; }
  .page-order-detail .payment-complete .payment-complete__waiter-guide {
    font-size: 1rem;
    padding: 2rem 0 0 0;
    text-align: left;
    color: #c86c00; }
  .page-order-detail .payment-complete .payment-complete__restaurant {
    font-family: "Merriweather-Bold", serif;
    font-size: 1.2rem;
    padding: 1rem; }
  .page-order-detail .payment-complete .payment-complete__product-list {
    padding: 0.5rem;
    border: #ebebeb solid 1px;
    display: flex;
    flex-direction: column;
    position: relative; }
    .page-order-detail .payment-complete .payment-complete__product-list .payment-complete__product-list__item {
      font-size: 1rem;
      margin: 0.5rem 0.5rem 0.5rem 0;
      position: relative;
      display: flex;
      flex-direction: row; }
      .page-order-detail .payment-complete .payment-complete__product-list .payment-complete__product-list__item::after {
        clear: both;
        content: "";
        display: block; }
      .page-order-detail .payment-complete .payment-complete__product-list .payment-complete__product-list__item .payment-complete__product-list__img {
        display: flex;
        width: 4rem;
        height: 4rem;
        min-width: 4rem; }
        .page-order-detail .payment-complete .payment-complete__product-list .payment-complete__product-list__item .payment-complete__product-list__img > div {
          width: 100%;
          padding-top: 66.66666%;
          background-color: #fff;
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center; }
      .page-order-detail .payment-complete .payment-complete__product-list .payment-complete__product-list__item .payment-complete__product-list__item__info {
        width: 100%;
        display: flex;
        flex-direction: row;
        line-height: 4rem;
        justify-content: space-between;
        padding: 0 0.5rem 0 0.5rem; }
        .page-order-detail .payment-complete .payment-complete__product-list .payment-complete__product-list__item .payment-complete__product-list__item__info .payment-complete__product-list__item__name {
          text-align: left;
          float: left;
          display: block; }
        .page-order-detail .payment-complete .payment-complete__product-list .payment-complete__product-list__item .payment-complete__product-list__item__info .payment-complete__product-list__item__price {
          text-align: right;
          float: right;
          display: block; }
  .page-order-detail .payment-complete .payment-complete__vendor {
    border-radius: 0.25rem;
    display: flex;
    position: relative; }
    .page-order-detail .payment-complete .payment-complete__vendor .payment-complete__vendor__img {
      display: flex;
      width: 4rem;
      height: 4rem;
      min-width: 4rem;
      padding: 0.5rem; }
      .page-order-detail .payment-complete .payment-complete__vendor .payment-complete__vendor__img > div {
        width: 100%;
        padding-top: 66.66666%;
        background-color: #fff;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain; }
    .page-order-detail .payment-complete .payment-complete__vendor .payment-complete__wrap {
      width: 100%;
      display: flex;
      flex-direction: row; }
    .page-order-detail .payment-complete .payment-complete__vendor .payment-complete__item__name__wrap {
      font-family: "Merriweather-Bold", serif;
      font-size: 1.2rem;
      text-align: left;
      line-height: 4rem; }

.page-order-detail .order-history__item {
  border: 1px solid #ebebeb;
  border-radius: 0.25rem;
  padding: 0.75rem;
  margin-bottom: 1rem; }
  .page-order-detail .order-history__item .order-history__item__product-list .order-history__item__product-list__item {
    font-size: 0.875rem;
    margin: 0.5rem 0; }
    .page-order-detail .order-history__item .order-history__item__product-list .order-history__item__product-list__item::after {
      clear: both;
      content: "";
      display: block; }
    .page-order-detail .order-history__item .order-history__item__product-list .order-history__item__product-list__item .order-history__item__product-list__item__name {
      width: 60%;
      line-height: 1.3;
      float: left; }
    .page-order-detail .order-history__item .order-history__item__product-list .order-history__item__product-list__item .order-history__item__product-list__item__price {
      float: right; }
  .page-order-detail .order-history__item .order-history__item__total {
    font-size: 0.875rem;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem; }
    .page-order-detail .order-history__item .order-history__item__total::after {
      clear: both;
      content: "";
      display: block; }
    .page-order-detail .order-history__item .order-history__item__total.type--discount {
      color: #f25755; }
    .page-order-detail .order-history__item .order-history__item__total .order-history__item__total__label {
      float: left; }
    .page-order-detail .order-history__item .order-history__item__total .order-history__item__total__value {
      float: right; }
  .page-order-detail .order-history__item .order-history__item__timestamp {
    margin-bottom: 0.75rem; }
    .page-order-detail .order-history__item .order-history__item__timestamp::after {
      clear: both;
      content: "";
      display: block; }
    .page-order-detail .order-history__item .order-history__item__timestamp .order-history__item__timestamp__ts {
      font-size: 0.75rem;
      color: #838383;
      float: left;
      padding: 0.375rem 0; }
    .page-order-detail .order-history__item .order-history__item__timestamp .order-history__item__timestamp__status {
      font-size: 0.675rem;
      color: #838383;
      background-color: #F1F1F1;
      padding: 0.375rem 0.5rem;
      border-radius: 4rem;
      float: right;
      letter-spacing: 0.025rem; }
  .page-order-detail .order-history__item .order-history__item__sub-total {
    font-size: 0.875rem;
    margin-top: 0.75rem; }
    .page-order-detail .order-history__item .order-history__item__sub-total::after {
      clear: both;
      content: "";
      display: block; }
    .page-order-detail .order-history__item .order-history__item__sub-total .order-history__item__sub-total__label {
      float: left; }
    .page-order-detail .order-history__item .order-history__item__sub-total .order-history__item__sub-total__action {
      float: right; }

.page-order-detail .order-detail {
  margin-top: 1rem; }
  .page-order-detail .order-detail .order-detail__heading {
    font-family: "Merriweather-Bold", serif;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 0.5rem; }
  .page-order-detail .order-detail .order-detail__item__list {
    padding-top: 0.5rem; }
    .page-order-detail .order-detail .order-detail__item__list .order-detail__item__list__item {
      margin-bottom: 1rem; }
      .page-order-detail .order-detail .order-detail__item__list .order-detail__item__list__item::after {
        clear: both;
        content: "";
        display: block; }
      .page-order-detail .order-detail .order-detail__item__list .order-detail__item__list__item .order-detail__item__list__label {
        font-size: 0.875rem;
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 40.29137%;
        line-height: 1.3; }
        .page-order-detail .order-detail .order-detail__item__list .order-detail__item__list__item .order-detail__item__list__label:last-child {
          margin-right: 0; }
      .page-order-detail .order-detail .order-detail__item__list .order-detail__item__list__item .order-detail__item__list__value {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 57.35098%;
        font-size: 0.875rem;
        line-height: 1.3; }
        .page-order-detail .order-detail .order-detail__item__list .order-detail__item__list__item .order-detail__item__list__value:last-child {
          margin-right: 0; }
        .page-order-detail .order-detail .order-detail__item__list .order-detail__item__list__item .order-detail__item__list__value span {
          word-wrap: break-word; }
  .page-order-detail .order-detail .order-detail__content {
    font-size: 0.875rem;
    line-height: 1.3;
    text-align: center; }
  .page-order-detail .order-detail .order-detail__item {
    margin-bottom: 2rem; }
  .page-order-detail .order-detail .order-detail__qr-confirmation p {
    font-size: 0.875rem;
    font-style: italic; }

.page-choose-vendor .page__inner {
  padding: 1rem;
  overflow: auto; }

.choose-vendor__list {
  max-height: 90vh; }

.choose-vendor__item {
  border: 1px solid #ebebeb;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  display: flex;
  position: relative; }
  .choose-vendor__item .choose-vendor__item__image {
    display: flex;
    width: 120px;
    min-width: 120px;
    padding: 0.5rem; }
    .choose-vendor__item .choose-vendor__item__image > div {
      width: 100%;
      padding-top: 66.66666%;
      background-color: #f5f5f5;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center; }
  .choose-vendor__item .choose-vendor__item__img {
    width: 100%;
    height: 70px;
    object-fit: contain; }
  .choose-vendor__item .choose-vendor__item__details__wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
  .choose-vendor__item .choose-vendor__item__name__wrap, .choose-vendor__item .choose-vendor__item__address__wrap {
    display: flex;
    justify-content: space-between;
    width: 100%; }
  .choose-vendor__item .choose-vendor__item__address__wrap {
    align-items: flex-end; }
  .choose-vendor__item .choose-vendor__item__name {
    flex: 1;
    font-size: 0.875rem;
    padding: 0.5rem; }
  .choose-vendor__item .choose-vendor__item__address {
    font-size: 0.675rem;
    padding: 0.5rem;
    color: #070400;
    line-height: 1.3; }
  .choose-vendor__item .choose-vendor__item__coords {
    font-size: 0.5rem;
    background-color: #e9e9e9;
    border-radius: 5rem;
    padding: 0.25rem 0.5rem;
    margin: 0.5rem;
    float: right;
    height: 1.125rem; }
  .choose-vendor__item .choose-vendor__item__order-method {
    padding-top: 0.275rem;
    padding-right: 0.275rem; }
    .choose-vendor__item .choose-vendor__item__order-method .icon {
      background-color: #B59658;
      margin: 0 0.125rem;
      border-radius: 50%;
      color: #fff;
      text-align: center;
      width: 1.5rem;
      height: 1.5rem;
      display: inline-block;
      font-size: 0.875rem; }
      .choose-vendor__item .choose-vendor__item__order-method .icon:before {
        position: relative;
        top: 5px; }
    .choose-vendor__item .choose-vendor__item__order-method .icon-dinein:before {
      left: -0.0625rem; }
    .choose-vendor__item .choose-vendor__item__order-method .icon-delivery:before, .choose-vendor__item .choose-vendor__item__order-method .icon-pickup:before {
      top: 4px; }

.page-searched-product .page__inner {
  padding: 1rem; }

.searched-product__result {
  position: relative;
  border-radius: 5rem;
  background-color: #e6e6e6;
  width: 100%;
  padding: 0.675rem 1.25rem 0.675rem 0.875rem;
  color: #070400;
  margin-bottom: 1rem; }
  .searched-product__result .searched-product__result__text {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 88%;
    line-height: 1.1; }
  .searched-product__result .searched-product__result__clear {
    height: 2.375rem;
    width: 2.375rem;
    background-color: #f25755;
    color: #ffffff;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 50%;
    padding: 0.625rem;
    text-align: center; }

.searched-product__vendors .searched-product__vendors__title {
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  color: #070400;
  padding: 0.75rem 0;
  text-transform: uppercase; }

.page-alipay-redirect .page__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 1rem; }

.page-alipay-redirect .page-alipay-redirect__logo {
  max-width: 250px;
  margin-top: 3.25rem;
  margin-bottom: 2rem;
  text-align: right; }
  .page-alipay-redirect .page-alipay-redirect__logo img {
    max-width: 100%;
    height: auto; }

.page-alipay-redirect .page-alipay-redirect__arrow {
  position: absolute;
  top: -2.5rem;
  right: 1.5rem;
  width: 310px; }
  .page-alipay-redirect .page-alipay-redirect__arrow span {
    position: absolute;
    bottom: 8px;
    right: 120px;
    font-style: italic;
    font-size: 0.875rem; }
  .page-alipay-redirect .page-alipay-redirect__arrow .curve {
    border: 3px solid #444;
    height: 160px;
    width: 90%;
    border-radius: 0 15px 600px 0;
    border-color: transparent #444 transparent transparent;
    transform: rotate(22deg);
    z-index: 100; }
  .page-alipay-redirect .page-alipay-redirect__arrow .point {
    position: absolute;
    right: 10px;
    top: 60px; }
  .page-alipay-redirect .page-alipay-redirect__arrow .point:before, .page-alipay-redirect .page-alipay-redirect__arrow .point:after {
    border: 1px solid #444;
    height: 25px;
    content: "";
    position: absolute; }
  .page-alipay-redirect .page-alipay-redirect__arrow .point:before {
    top: -0.385rem;
    left: -15px;
    transform: rotate(-120deg); }
  .page-alipay-redirect .page-alipay-redirect__arrow .point:after {
    top: 0;
    left: -2px;
    transform: rotate(-10deg); }

.page-alipay-redirect .page-alipay-redirect__title {
  font-size: 1.375rem;
  font-family: "Merriweather-Italic", serif;
  padding: 1.125rem 1.125rem 0.25rem;
  color: #070400;
  text-align: center;
  margin-bottom: 1rem; }

.page-alipay-redirect .page-alipay-redirect__subtitle {
  text-align: center;
  line-height: 1.3; }

.page-alipay-redirect .page-alipay-redirect__graphic {
  max-width: 80%;
  margin-top: 2rem;
  border-radius: 0.75rem; }

.btn {
  text-align: center;
  padding: 1.125rem 1rem;
  border-radius: 0.125rem;
  letter-spacing: 0.0625rem;
  transition: all 0.3s;
  -webkit-user-select: none;
  border: 0;
  outline: none;
  -webkit-appearance: none; }
  .btn:disabled {
    pointer-events: none;
    opacity: 0.65; }
  .btn:active {
    opacity: 0.75; }

.btn-transparent {
  background-color: transparent;
  color: #070400; }

.btn-highlight {
  background-color: #B59658;
  color: #070400; }

.btn-outline {
  background-color: transparent;
  color: #B59658;
  border: 2px solid #B59658; }

.btn-alt {
  background-color: #fff;
  color: #B59658; }

.btn-grey {
  background-color: #F1F1F1;
  color: #333333; }

.btn-block {
  display: block;
  width: 100%; }

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

button {
  -webkit-appearance: none; }

.input {
  margin-bottom: 2rem;
  outline: none !important;
  box-shadow: none !important; }
  .input label {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    display: block;
    margin-bottom: 0.5rem; }
  .input small {
    font-size: 1rem;
    color: #838383;
    display: block;
    margin-bottom: 1rem; }
  .input .Select-control {
    height: 2.625rem; }
  .input .Select-placeholder, .input .Select--single > .Select-control .Select-value {
    padding-left: 0.875rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    line-height: 1.3; }

.form-input {
  width: 100%;
  padding: 0.675rem 0.875rem;
  color: #070400;
  background: #ffffff;
  border: 2px solid #c4c4c4;
  border-radius: 4px;
  outline: none !important;
  box-shadow: none !important; }
  .form-input:invalid {
    border-color: #B59658; }

.input-error {
  font-size: 0.875rem;
  font-style: italic;
  position: relative;
  top: 0.25rem;
  color: #B59658; }

textarea {
  height: 8rem;
  resize: none; }

.password-input input {
  width: 100% !important;
  float: none !important; }

.password-input label {
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  display: block;
  margin-bottom: 0.5rem; }

.password-input .password-input__strength {
  display: block;
  margin-top: 4px; }
  .password-input .password-input__strength > div {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 23.23176%;
    height: 4px;
    background-color: #ebebeb;
    border-radius: 2rem;
    transition: all 0.3s; }
    .password-input .password-input__strength > div:last-child {
      margin-right: 0; }
  .password-input .password-input__strength.password-input__strength--match > div {
    width: 100%;
    display: none; }
    .password-input .password-input__strength.password-input__strength--match > div:first-child {
      display: block; }
  .password-input .password-input__strength.password-input__strength--match.password-input__strength--valid > div:nth-child(1) {
    background-color: #75ac2a; }
  .password-input .password-input__strength.password-input__strength--validate.password-input__strength--1 > div:nth-child(1) {
    background-color: #B59658; }
  .password-input .password-input__strength.password-input__strength--validate.password-input__strength--2 > div:nth-child(1), .password-input .password-input__strength.password-input__strength--validate.password-input__strength--2 > div:nth-child(2) {
    background-color: orange; }
  .password-input .password-input__strength.password-input__strength--validate.password-input__strength--3 > div:nth-child(1), .password-input .password-input__strength.password-input__strength--validate.password-input__strength--3 > div:nth-child(2), .password-input .password-input__strength.password-input__strength--validate.password-input__strength--3 > div:nth-child(3) {
    background-color: #75ac2a; }
  .password-input .password-input__strength.password-input__strength--validate.password-input__strength--4 > div:nth-child(1), .password-input .password-input__strength.password-input__strength--validate.password-input__strength--4 > div:nth-child(2), .password-input .password-input__strength.password-input__strength--validate.password-input__strength--4 > div:nth-child(3), .password-input .password-input__strength.password-input__strength--validate.password-input__strength--4 > div:nth-child(4) {
    background-color: #75ac2a; }

.mock-select {
  width: 100%;
  background: transparent;
  border: 1px solid #ebebeb;
  padding: 0.5rem;
  color: #232323;
  position: relative; }
  .mock-select .icon {
    float: right;
    font-size: 1.125rem;
    line-height: 1rem;
    position: absolute;
    margin-top: 2px;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%); }

.react-date-picker {
  width: 100%; }
  .react-date-picker .react-date-picker__wrapper {
    width: 100%;
    padding: 0.35rem 0.875rem;
    color: #070400;
    background: #ffffff;
    border: 2px solid #c4c4c4;
    border-radius: 4px;
    outline: none !important;
    box-shadow: none !important; }
  .react-date-picker .react-date-picker__inputGroup__input {
    font-family: "Montserrat", sans-serif;
    font-size: 0.875rem;
    color: #070400;
    padding: 0 3px; }
  .react-date-picker svg > g {
    color: #070400;
    stroke: #455a64; }

.header-tabs {
  width: 100%;
  height: 3rem;
  position: fixed;
  top: 0;
  z-index: 1000; }
  .header-tabs::after {
    clear: both;
    content: "";
    display: block; }
  .header-tabs .header-tabs__tab-item {
    position: relative;
    font-family: "Merriweather-Bold", serif;
    font-weight: bold;
    font-size: 1.375rem;
    padding: 0.6125rem 0.25rem;
    height: 3rem;
    width: 16.6%;
    float: left;
    text-align: center;
    background-color: #B59658;
    color: #8a7240; }
    .header-tabs .header-tabs__tab-item.active {
      color: #ffffff; }
    .header-tabs .header-tabs__tab-item.location {
      position: relative;
      font-size: 0.75rem;
      width: 52%;
      padding: 0.125rem 1.25rem 0.125rem 1.75rem;
      text-align: left;
      display: flex;
      align-items: center;
      background-color: #333;
      color: #fff; }
      .header-tabs .header-tabs__tab-item.location .icon-location {
        font-size: 1rem;
        line-height: 1rem;
        margin-right: 0.25rem;
        position: absolute;
        top: 50%;
        left: 0.25rem;
        transform: translate(0, -50%); }
      .header-tabs .header-tabs__tab-item.location .icon-chevron-right {
        float: right;
        font-size: 1rem;
        line-height: 1rem;
        position: absolute;
        top: 50%;
        right: -0.625rem;
        transform: rotate(90deg) translate(0, -50%);
        transform-origin: 0px -50%; }
      .header-tabs .header-tabs__tab-item.location.active {
        background-color: #333;
        color: #fff; }
    .header-tabs .header-tabs__tab-item.method {
      position: relative;
      font-size: 0.675rem;
      width: 25%;
      padding: 0.125rem 0.75rem 0.125rem 0.75rem;
      text-align: left;
      display: flex;
      align-items: center;
      background-color: #B59658;
      color: #070400;
      cursor: pointer; }
      .header-tabs .header-tabs__tab-item.method .icon-chevron-right {
        float: right;
        font-size: 1rem;
        line-height: 1rem;
        position: absolute;
        top: 50%;
        right: -0.25rem;
        transform: rotate(90deg) translate(0, -50%);
        transform-origin: 0px -50%; }
    .header-tabs .header-tabs__tab-item.language {
      position: relative;
      font-size: 0.75rem;
      width: 23%;
      padding: 0.125rem 0.75rem 0.125rem 0.5rem;
      text-align: left;
      display: flex;
      align-items: center;
      background-color: #B59658;
      color: #ffffff;
      border-left: 1px solid #977b43;
      cursor: pointer; }
      .header-tabs .header-tabs__tab-item.language .icon-globe {
        font-size: 1.25rem;
        color: #070400;
        position: relative;
        top: -1px;
        margin-right: 0.5rem; }
      .header-tabs .header-tabs__tab-item.language .header-tabs__tab-item__label {
        font-size: 0.675rem;
        color: #070400; }
  .header-tabs .header-tabs__tab-dropdown {
    position: absolute;
    background-color: #333;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: -1px;
    padding: 0.5rem 0; }
    .header-tabs .header-tabs__tab-dropdown .header-tabs__tab-dropdown-item {
      padding: 0.75rem 1rem;
      border-top: 1px solid #444;
      color: #fff; }
      .header-tabs .header-tabs__tab-dropdown .header-tabs__tab-dropdown-item:first-child {
        border-top: 0; }
      .header-tabs .header-tabs__tab-dropdown .header-tabs__tab-dropdown-item.active {
        color: #B59658; }
  .header-tabs.hide-tabs .header-tabs__tab-item.location {
    width: 100%; }

.header-sub-tabs {
  width: 100vw;
  height: 2.75rem;
  overflow: auto;
  scroll-behavior: smooth;
  position: fixed;
  top: 3rem;
  z-index: 999; }
  .header-sub-tabs::after {
    clear: both;
    content: "";
    display: block; }
  .header-sub-tabs .header-sub-tabs__inner {
    width: 100%; }
  .header-sub-tabs .header-sub-tabs__tab-item {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    padding: 0.75rem 0.125rem;
    width: 33.33333vw;
    float: left;
    text-align: center;
    background-color: #F1F1F1;
    border-bottom: 2px solid transparent; }
    .header-sub-tabs .header-sub-tabs__tab-item.active {
      color: #B59658;
      border-color: #B59658; }
  .header-sub-tabs.two-col .header-sub-tabs__tab-item {
    width: 50%; }
  .header-sub-tabs.col4 .header-sub-tabs__inner {
    width: calc(33.33333vw * 4); }
  .header-sub-tabs.col4 .header-sub-tabs__tab-item {
    width: 25%; }
  .header-sub-tabs.col5 .header-sub-tabs__inner {
    width: calc(33.33333vw * 5); }
  .header-sub-tabs.col5 .header-sub-tabs__tab-item {
    width: 20%; }
  .header-sub-tabs.col6 .header-sub-tabs__inner {
    width: calc(33.33333vw * 6); }
  .header-sub-tabs.col6 .header-sub-tabs__tab-item {
    width: 16.666666667%; }

.page-inner {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 5.75rem);
  position: fixed;
  top: 3rem;
  z-index: 0; }
  .page-inner .page-with-left-tabs {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 5.75rem); }

.page-inner-with-delivery {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 5.75rem);
  position: fixed;
  top: 3rem;
  z-index: 0; }
  .page-inner-with-delivery .page-with-left-tabs {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 9rem); }

.page-inner-with-left-tabs {
  display: flex;
  flex-direction: column;
  width: 80vw; }

.left-tabs {
  display: flex;
  flex-direction: column;
  width: 20vw;
  height: calc(100vh - 5.75rem);
  overflow: auto;
  background-color: #F1F1F1; }
  .left-tabs .left-tabs__inner {
    width: 100%; }
  .left-tabs .left-tabs__tab-item {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    padding: 0.85rem 0.3rem 0.125rem 0.3rem;
    margin-bottom: 0.3rem;
    width: inherit;
    float: left;
    text-align: left;
    background-color: #F1F1F1;
    border-bottom: 2px solid transparent; }
    .left-tabs .left-tabs__tab-item.active {
      color: #B59658;
      border-color: #B59658; }

.header-title {
  width: 100%;
  color: #070400;
  background-color: #B59658;
  display: flex;
  align-items: center;
  justify-content: center; }
  .header-title::after {
    clear: both;
    content: "";
    display: block; }
  .header-title .header-title__back, .header-title .header-title__submit {
    width: 5.75rem;
    text-align: center; }
    .header-title .header-title__back .btn, .header-title .header-title__submit .btn {
      padding: 1.125rem 0.25rem;
      width: 100%;
      color: #070400; }
    .header-title .header-title__back .icon, .header-title .header-title__submit .icon {
      font-size: 1.125rem; }
  .header-title .header-title__title {
    font-family: "Merriweather-Bold", serif;
    font-size: 0.875rem;
    flex: 1;
    text-align: center;
    min-height: 3.375rem;
    display: flex;
    align-items: center;
    justify-content: center; }

.product-item {
  margin-bottom: 1rem; }
  .product-item .product-item__image {
    border-radius: 0.25rem;
    border: 1px solid #ebebeb; }
    .product-item .product-item__image img {
      max-width: 100%; }
    .product-item .product-item__image > div {
      padding-top: 100%;
      background: no-repeat center;
      background-size: contain;
      margin: 0.5rem; }
  .product-item .product-item__meta {
    color: #070400; }
  .product-item .product-item__name {
    font-size: 1rem;
    font-family: "Merriweather-Italic", serif;
    color: #070400;
    text-align: center;
    padding: 0.5rem 0 0.125rem;
    margin-bottom: 0.5rem; }
  .product-item .product-item__action {
    margin-top: 1rem;
    text-align: center; }
    .product-item .product-item__action .btn {
      font-size: 0.75rem;
      padding: 0.675rem 2rem;
      border: 2px solid #B59658; }
  .product-item .product-item__price {
    color: #B59658;
    text-align: center; }
  .product-item .product-item__region {
    font-size: 0.875rem;
    font-weight: 300;
    color: #838383;
    text-align: center; }

.product-item-horizontal {
  margin: 0.25rem;
  border-radius: 0.25rem;
  border: 1px solid #ebebeb; }
  .product-item-horizontal .product-item-horizontal__inner {
    display: flex;
    flex-direction: row;
    padding: 0.5rem 0; }
  .product-item-horizontal .product-item-horizontal__image {
    position: relative;
    width: 5.8rem;
    height: 7.7rem;
    margin: 0 0.2rem; }
    .product-item-horizontal .product-item-horizontal__image img {
      width: 5.8rem;
      height: 7.7rem;
      object-fit: cover; }
    .product-item-horizontal .product-item-horizontal__image > div {
      padding-top: 100%;
      background: no-repeat center;
      background-size: contain; }
  .product-item-horizontal .product-item-horizontal__meta {
    flex: 1;
    color: #070400;
    margin-left: 0.4rem; }
  .product-item-horizontal .product-item-horizontal__attributes {
    padding-top: 0.125rem;
    padding-bottom: 0.5rem; }
    .product-item-horizontal .product-item-horizontal__attributes .product-item-horizontal__attributes__item {
      display: grid;
      grid-template-columns: 30% 70%;
      grid-template-rows: auto;
      grid-row-gap: 15px; }
      .product-item-horizontal .product-item-horizontal__attributes .product-item-horizontal__attributes__item .product-item-horizontal__attributes__label {
        font-size: 0.675rem;
        font-weight: bold;
        line-height: 1.5; }
      .product-item-horizontal .product-item-horizontal__attributes .product-item-horizontal__attributes__item .product-item-horizontal__attributes__value {
        font-size: 0.675rem;
        line-height: 1.5; }
      .product-item-horizontal .product-item-horizontal__attributes .product-item-horizontal__attributes__item.item--ingredients .product-item-horizontal__attributes__label {
        width: 100%;
        margin-bottom: 0.25rem; }
      .product-item-horizontal .product-item-horizontal__attributes .product-item-horizontal__attributes__item.item--ingredients .product-item-horizontal__attributes__value {
        width: 100%; }
  .product-item-horizontal .product-item-horizontal__name {
    font-size: 0.875rem;
    font-family: "Merriweather-Italic", serif;
    color: #070400;
    padding: 0.3rem 0 0.125rem;
    margin-bottom: 0.125rem; }
  .product-item-horizontal .product-item-horizontal__action {
    padding-right: 0.5rem; }
    .product-item-horizontal .product-item-horizontal__action .btn {
      padding: 0.25rem 0.5rem;
      font-size: 0.6125rem;
      border-radius: 0.25rem;
      border: 2px solid #B59658;
      margin-left: 0.25rem; }
  .product-item-horizontal .product-item-horizontal__price {
    color: #B59658;
    font-weight: bold;
    text-align: left;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 1rem; }
    .product-item-horizontal .product-item-horizontal__price .product-price {
      border: 2px solid #B59658;
      text-align: left;
      padding: 0.25rem 0.5rem;
      border-radius: 0.25rem; }
  .product-item-horizontal .product-item-horizontal__region {
    font-size: 0.875rem;
    font-weight: 300;
    color: #838383;
    text-align: center; }

.product-price {
  text-align: center;
  font-weight: bold; }
  .product-price .product-price__regular {
    color: #070400; }
  .product-price .product-price__sale {
    color: #f25755;
    margin-right: 0.5rem; }
  .product-price.type--sale .product-price__regular {
    color: #ccc;
    text-decoration: line-through; }

.product-price__flash-sale {
  color: #070400;
  margin-top: -1.75rem;
  margin-left: 1rem;
  margin-right: 1rem;
  text-align: center; }
  .two-col .product-price__flash-sale {
    margin-top: -1rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem; }
  .product-price__flash-sale .product-price__flash-sale__label {
    background-color: #B59658;
    color: #F5D76E;
    padding: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05rem; }
    .two-col .product-price__flash-sale .product-price__flash-sale__label {
      font-size: 0.75rem;
      padding: 0.25rem; }
  .product-price__flash-sale .product-price__flash-sale__countdown {
    padding: 0.5rem;
    background-color: #F5F5F5;
    color: #B59658;
    text-transform: uppercase; }
    .product-price__flash-sale .product-price__flash-sale__countdown::after {
      clear: both;
      content: "";
      display: block; }
    .product-price__flash-sale .product-price__flash-sale__countdown span {
      font-weight: 600;
      width: 25%;
      display: block;
      float: left;
      padding: 0.25rem 0; }
    .two-col .product-price__flash-sale .product-price__flash-sale__countdown {
      padding: 0.25rem; }
      .two-col .product-price__flash-sale .product-price__flash-sale__countdown span {
        font-size: 0.675rem;
        padding: 0.125rem 0; }

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

.sms-confirmation__wrap .sms-confirmation__code {
  display: flex; }
  .sms-confirmation__wrap .sms-confirmation__code .input {
    flex: 1;
    margin-right: 1rem; }
  .sms-confirmation__wrap .sms-confirmation__code button {
    width: 7rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    text-transform: none;
    border-radius: 0.5rem; }

.ad-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5.125rem; }
  .ad-banner .ad-banner_image {
    height: 100%;
    width: 100%;
    background-size: 100% auto;
    background-position: bottom;
    background-repeat: no-repeat; }

.avd-section {
  width: 100%;
  height: 5.125rem; }
  .avd-section .avd-section__item, .avd-section .avd-section__item div {
    width: 100%;
    height: 5.125rem; }
  .avd-section .avd-section__item div {
    background-size: 100% auto;
    background-position: top;
    background-repeat: no-repeat; }

.centered-avd__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999; }

.centered-avd {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 300px;
  height: 390px;
  z-index: 10000; }
  .centered-avd .centered-avd__item {
    width: 300px;
    height: 390px; }
    .centered-avd .centered-avd__item div {
      width: 300px;
      height: 390px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      border-radius: 25px;
      overflow: hidden; }
  .centered-avd img {
    max-width: 100%;
    height: auto; }
  .centered-avd .flickity-page-dots {
    bottom: 6px; }

.centered-avd__close {
  text-align: center;
  margin-top: 1.25rem;
  padding: 0.5rem 0; }
  .centered-avd__close .icon {
    font-size: 1.5rem;
    color: #eee;
    padding: 0.75rem;
    border: 2px solid;
    border-radius: 50%; }

.scrollable-category {
  display: flex;
  flex-direction: row;
  height: calc(100vh - 5.75rem);
  width: 74vw; }
  .scrollable-category .scrollable-category__marker-wrap {
    width: 4.75rem; }
  .scrollable-category .scrollable-category__marker {
    font-size: 0.525rem;
    font-weight: bold;
    display: flex;
    height: 4.75rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #B59658;
    background-color: #f1f1f1;
    margin-bottom: 0.25rem; }
    .scrollable-category .scrollable-category__marker.active {
      background-color: #fff; }
  .scrollable-category .scrollable-category__products {
    flex: 1;
    overflow: auto; }
    .scrollable-category .scrollable-category__products .category-title {
      font-size: 1.25rem;
      font-weight: bold;
      color: #B59658;
      padding-top: 0.5rem;
      padding-bottom: 0.5rem; }
    .scrollable-category .scrollable-category__products .scrollable-category__products__category-title {
      font-size: 1.25rem;
      font-weight: bold;
      color: #B59658;
      padding-top: 0.5rem;
      padding-bottom: 0.5rem; }

.react-swipeable-view-container {
  width: 74vw; }

.footer-tabs {
  width: 100%;
  height: 3rem;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0; }
  .footer-tabs::after {
    clear: both;
    content: "";
    display: block; }
  .footer-tabs .footer-tabs__tab-item {
    font-family: "Merriweather-Bold", serif;
    font-weight: bold;
    font-size: 1.375rem;
    padding: 0.75rem 0.25rem;
    height: 3rem;
    width: 33.33333%;
    float: left;
    text-align: center;
    color: #b2b2b2;
    border-top: 1px solid #f1f1f1;
    background-color: #fff; }
    .footer-tabs .footer-tabs__tab-item.active {
      color: #B59658; }

.product-search {
  position: relative;
  padding: 0.75rem 1rem; }
  .product-search .product-search__inner {
    border-radius: 5rem;
    background-color: #e6e6e6; }
  .product-search .input {
    margin: 0; }
    .product-search .input .form-input {
      border: 0;
      background: transparent;
      padding-left: 2.75rem; }
  .product-search .icon {
    position: absolute;
    top: 1.5rem;
    left: 1.75rem;
    color: #707070; }
  .product-search .product-search__loader {
    position: absolute;
    top: 1.25rem;
    right: 1.75rem; }

.product-search__results {
  border: 1px solid #e9e9e9;
  margin-top: 1rem; }
  .product-search__results .product-item-horizontal {
    border: 0;
    margin-bottom: 0; }
    .product-search__results .product-item-horizontal .product-item-horizontal__image {
      width: 5rem;
      height: 5rem;
      margin: 0 0.25rem;
      box-sizing: border-box; }
    .product-search__results .product-item-horizontal .product-item-horizontal__meta {
      padding: 0 1rem; }
    .product-search__results .product-item-horizontal .product-item-horizontal__attributes {
      display: none; }
    .product-search__results .product-item-horizontal .product-item-horizontal__price {
      justify-content: flex-start;
      padding: 0;
      margin-top: 0.75rem; }

:root {
  --rap-dialog-bg: #fff;
  --rap-dialog-one-text:#2f3742;
  --rap-dialog-one-active:#2f5aff;
  --rap-dialog-one-bg-active: #f7f8fa;
  --rap-dialog-border: #cbcbcb; }

.rap-address-picker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  animation: zindexdown .3s forwards;
  border-radius: 3px 3px 0 0;
  -webkit-text-size-adjust: none; }

.rap-address-picker-visible {
  animation: zindexup .3s forwards;
  background: rgba(0, 0, 0, 0.2);
  height: 100%;
  opacity: 1;
  overflow: hidden; }

.rap-address-picker-modal {
  transition: transform 0.3s;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  background: var(--rap-dialog-bg);
  height: 70%;
  transform: translate3d(0, 100%, 0);
  display: flex;
  flex-direction: column; }

.rap-address-picker-visible .rap-address-picker-modal {
  transform: translate3d(0, 0, 0); }

.rap-address-picker-title {
  position: relative;
  font-size: 17px;
  padding: 15px 0 10px 0;
  color: var(--rap-dialog-one-text);
  text-align: center;
  -webkit-user-select: none;
  user-select: none; }

.rap-address-picker-title-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 16px;
  height: 16px;
  cursor: pointer; }

.rap-address-picker-title-close:before, .rap-address-picker-title-close:after {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: 0px;
  background: #999; }

.rap-address-picker-title-close:before {
  transform: rotate(45deg); }

.rap-address-picker-title-close:after {
  transform: rotate(-45deg); }

.rap-address-picker-main-wrap {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  max-width: 768px;
  margin: 0 auto; }

.rap-address-picker-nav {
  -webkit-box-flex: 0;
  flex: none;
  position: relative; }

.rap-address-picker-nav-active {
  position: absolute;
  left: 0;
  bottom: 10px;
  height: 2px;
  background: var(--rap-dialog-one-active);
  -webkit-transition: left .3s ease-in;
  transition: left .3s ease-in;
  width: 50px; }

.rap-address-picker-nav-list {
  display: -webkit-box;
  display: flex;
  margin-bottom: 10px; }

.rap-address-picker-nav-list:before {
  content: "";
  height: 1px;
  left: 20px;
  right: 20px;
  position: absolute;
  bottom: 10px;
  background-color: var(--rap-dialog-border); }

.rap-address-picker-nav-item {
  -webkit-box-flex: 0;
  flex: none;
  padding: 7px 0;
  text-align: center;
  font-size: 14px;
  color: #2f3742;
  color: var(--rap-dialog-one-text);
  margin-left: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 7em;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
  cursor: pointer; }

.rap-address-picker-nav-item:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0); }

.rap-address-picker-nav-item + .rap-address-picker-nav-item {
  margin-left: 36px; }

@media (max-width: 374px) {
  .rap-address-picker-nav-item + .rap-address-picker-nav-item {
    margin-left: 20px; } }

.rap-address-picker-nav-item.active {
  color: var(--rap-dialog-one-active);
  bottom: 10px; }

.rap-address-picker-nav-item.active:before {
  background: var(--rap-dialog-one-active);
  bottom: 10px; }

.rap-address-picker-body {
  -webkit-box-flex: 1;
  flex: auto;
  position: relative;
  overflow: hidden; }

.rap-address-picker-body-wrap {
  display: -webkit-box;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  will-change: transform; }

.rap-address-picker-body-wrap ::-webkit-scrollbar {
  width: 6px;
  height: 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.rap-address-picker-body-wrap ::-webkit-scrollbar-button {
  width: 0;
  height: 0; }

.rap-address-picker-body-wrap ::-webkit-scrollbar-track {
  -webkit-border-radius: 8px; }

.rap-address-picker-body-wrap ::-webkit-scrollbar-thumb {
  background-color: rgba(70, 77, 92, 0.4);
  -webkit-border-radius: 5px; }

.rap-address-picker-body-wrap ::-webkit-scrollbar-thumb:active, .rap-address-picker-body-wrap ::-webkit-scrollbar-thumb:hover {
  background-color: #999; }

.rap-address-picker-body-wrap ::-webkit-scrollbar-corner {
  background-color: #f1f1f1;
  -webkit-border-radius: 1px; }

.rap-address-picker-body-wrap ::-webkit-scrollbar-track:hover {
  background-color: rgba(0, 0, 0, 0); }

.rap-address-picker-body-list {
  font-size: 14px;
  position: relative;
  float: left;
  overflow-y: scroll;
  height: 100%;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 10px 0;
  -webkit-box-flex: 1;
  flex: 1;
  box-sizing: border-box; }

.rap-address-picker-body-item {
  position: relative;
  padding: 13px 20px;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
  color: #2f3742;
  color: var(--rap-dialog-one-text);
  cursor: pointer; }

.rap-address-picker-body-item.active {
  color: #2f5aff;
  color: var(--rap-dialog-one-active);
  background: #f7f8fa;
  background: var(--rap-dialog-one-bg-active); }

.rap-address-picker-body-item.active:after {
  content: '';
  position: absolute;
  border-width: 0 2px 2px 0;
  border-style: solid;
  height: 13px;
  width: 5px;
  right: 25px;
  margin-top: 3px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

@keyframes zindexdown {
  0% {
    z-index: 999; }
  to {
    z-index: -1; } }

@keyframes zindexup {
  0% {
    z-index: -1; }
  to {
    z-index: 999; } }

@keyframes fadeIn {
  0% {
    opacity: 0;
    background: transparent; }
  80% {
    opacity: .2; }
  to {
    opacity: 1;
    background: #2f5aff;
    background: var(--rap-dialog-one-active); } }

.rap-address-picker.theme-dark {
  --rap-dialog-bg: #0E1226;
  --rap-dialog-one-text: #ffffff;
  --rap-dialog-one-bg-active: rgba(255, 255, 255, .06); }


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