@charset "UTF-8";

/*
 Theme Name:   Anytime Cafe Wordpress Child Theme
 Theme URI:    https://anytime-cafe.com
 Description:  Child theme of BlankSlate
 Author:       Chris
 Author URI:   https://anytime-cafe.com
 Template:     anytime_theme
 Version:      0.1

*/
:root {
  /*COLORS*/
  --body-bg: rgb(241 243 245);
  --clr-primary: rgba(0, 0, 0, 1);
  --clr-secondary: rgb(184, 150, 106);
  --clr-secondary-light: rgb(244, 239, 233);
  --clr-accent: rgb(130, 68, 176);
  --clr-accent-light: rgb(234, 207, 255);
  --clr-grey-100: rgba(243, 246, 247, 1);
  --clr-grey-200: rgba(228, 232, 235, 1);
  --clr-grey-300: rgba(218, 221, 223, 1);
  --clr-grey-400: rgba(161, 163, 165, 1);
  --clr-grey-500: rgba(134, 135, 137, 1);
  --clr-grey-600: rgba(115, 117, 118, 1);
  --clr-grey-700: rgba(98, 99, 100, 1);
  --clr-grey-800: rgba(78, 80, 81, 1);
  --clr-grey-900: rgba(57, 58, 59, 1);
  /*fonts*/
  --font-family: "Noto Sans", "Noto Sans Thai", sans-serif;
  --fs-200: .75rem;
  --fs-300: .875rem;
  --fs-400: 1rem;
  --fs-500: 1.2rem;
  --fs-600: 1.4rem;
  --fs-700: 1.6rem;
  --fs-800: 1.8rem;
  --fs-900: 2rem;
  /*SHADOWS*/
  --shadow-color: 220 3% 15%;
  --shadow-strength: 1%;
  --shadow-1: 0 1px 2px -1px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 9%));
  --shadow-2: 0 3px 5px -2px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 3%)), 0 7px 14px -5px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 5%));
  --shadow-3: 0 -1px 3px 0 hsl(var(--shadow-color)/calc(var(--shadow-strength) + 2%)), 0 1px 2px -5px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 2%)), 0 2px 5px -5px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 4%)), 0 4px 12px -5px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 5%)), 0 12px 15px -5px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 7%));
  --shadow-4: 0 -2px 5px 0 hsl(var(--shadow-color)/calc(var(--shadow-strength) + 2%)), 0 1px 1px -2px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 3%)), 0 2px 2px -2px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 3%)), 0 5px 5px -2px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 4%)), 0 9px 9px -2px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 5%)), 0 16px 16px -2px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 6%));
  --shadow-5: 0 -1px 2px 0 hsl(var(--shadow-color)/calc(var(--shadow-strength) + 2%)), 0 2px 1px -2px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 3%)), 0 5px 5px -2px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 3%)), 0 10px 10px -2px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 4%)), 0 20px 20px -2px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 5%)), 0 40px 40px -2px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 7%));
  --shadow-6: 0 -1px 2px 0 hsl(var(--shadow-color)/calc(var(--shadow-strength) + 2%)), 0 3px 2px -2px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 3%)), 0 7px 5px -2px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 3%)), 0 12px 10px -2px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 4%)), 0 22px 18px -2px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 5%)), 0 41px 33px -2px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 6%)), 0 100px 80px -2px hsl(var(--shadow-color)/calc(var(--shadow-strength) + 7%));
  /*Transitions*/
  --transition-01: all 0.3s ease-in-out;
}

body {
  background-color: var(--clr-grey-100);
}

img {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  border: none;
  object-fit: cover;
}

a {
  transition: var(--transition-01);
}

strong {
  font-weight: 600;
}

i {
  font-style: italic;
}

/*LAYOUT*/
.container {
  max-width: 1170px;
  margin-inline: auto;
}

/*DISPLAY PROPERTIES*/
.grid {
  display: grid;
  display: -ms-grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.inline-flex {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.relative {
  position: relative;
}

.flex-1 {
  flex: 1;
}

/*COLUMNS*/
.span_1 {
  grid-column: span 1;
}

.span_2 {
  grid-column: span 2;
}

.span_3 {
  grid-column: span 3;
}

.span_4 {
  grid-column: span 4;
}

.span_5 {
  grid-column: span 5;
}

.span_6 {
  grid-column: span 6;
}

.span_7 {
  grid-column: span 7;
}

.span_8 {
  grid-column: span 8;
}

.span_9 {
  grid-column: span 9;
}

.span_10 {
  grid-column: span 10;
}

.span_11 {
  grid-column: span 11;
}

.span_12 {
  grid-column: span 12;
}

.span_1,
.span_2,
.span_3,
.span_4,
.span_5,
.span_6,
.span_7,
.span_8,
.span_9,
.span_10,
.span_11,
.span_12 {
  max-width: 100%;
  width: auto;
}

/*FLEX/GRID ALIGNMENT*/
.justify-left {
  justify-content: flex-start;
}

.justify-right {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.align-top {
  align-items: flex-start;
}

.align-bottom {
  align-items: flex-end;
}

.align-left {
  align-items: flex-start;
}

.align-right {
  align-items: flex-end;
}

.align-center {
  align-items: center;
}

.align-strech {
  align-items: stretch;
}

.align-self-right {
  align-self: flex-end;
}

.align-self-left {
  align-self: flex-start;
}

.absolute-left {
  left: 0;
}

.absolute-right {
  right: 0;
}

.absolute-top {
  top: 0;
}

.absolute-bottom {
  bottom: 0;
}

/*MAIN LAYOUT*/
.content-wall {
  width: 68%;
}

.side-wall {
  width: calc(32% - 30px);
}

/*INLINE BLOCKS*/
.content-block {
  padding: 2rem;
  border-radius: 15px;
  background-color: #fff;
}

/*CONTENT*/
.pagination-item {
  width: 41px;
  height: 41px;
}

.pagination-item:hover {
  background-color: var(--clr-neutral-200);
}

.pagination-item.active,
.pagination-item.active:hover {
  background-color: var(--clr-primary-400);
  color: #fff;
}

/*BACKGROUNDS*/
.bg-transparent {
  background-color: transparent;
}

.bg-light {
  background-color: #fff;
}

.bg-light-100 {
  background-color: var(--clr-grey-100);
}

.bg-light-200 {
  background-color: var(--clr-grey-200);
}

.bg-light-300 {
  background-color: var(--clr-grey-300);
}

.bg-light-400 {
  background-color: var(--clr-grey-400);
}

.bg-light-500 {
  background-color: var(--clr-grey-500);
}

.bg-light-600 {
  background-color: var(--clr-grey-600);
}

.bg-light-700 {
  background-color: var(--clr-grey-700);
}

.bg-light-800 {
  background-color: var(--clr-grey-800);
}

.bg-dark {
  background-color: var(--clr-grey-900);
}

.bg-primary {
  background-color: var(--clr-primary);
}

.bg-secondary {
  background-color: var(--clr-secondary);
}

.bg-secondary-light {
  background-color: var(--clr-secondary-light);
}

.bg-accent {
  background-color: var(--clr-accent);
}

.bg-accent-light {
  background-color: var(--clr-accent-light);
}

/*POSITIONS*/
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

/*Width size in percentage*/
.w-100 {
  width: 100%;
}

.w-75 {
  width: 75%;
}

.w-50 {
  width: 50%;
}

.w-25 {
  width: 25%;
}

.h-100 {
  height: 100%;
}

/*SHADOWS*/
.shadow-1 {
  box-shadow: var(--shadow-1);
}

.shadow-2 {
  box-shadow: var(--shadow-2);
}

.shadow-3 {
  box-shadow: var(--shadow-3);
}

.shadow-4 {
  box-shadow: var(--shadow-4);
}

.shadow-5 {
  box-shadow: var(--shadow-5);
}

.shadow-6 {
  box-shadow: var(--shadow-6);
}

/*border radisu*/
.border-radius5 {
  border-radius: 5px;
}

.border-radius10 {
  border-radius: 10px;
}

.border-radius15 {
  border-radius: 15px;
}

/*GAP for flex and grid - right left*/
.gx-0 {
  gap: inherit 0;
}

.gx-1 {
  gap: 0 1rem;
}

.gx-2 {
  gap: 0 2rem;
}

.gx-3 {
  gap: 0 3rem;
}

.gx-4 {
  gap: 0 4rem;
}

/*GAP for flex and grid - top bottom*/
.gy-0 {
  gap: 0 inherit;
}

.gy-1 {
  gap: 1rem 0;
}

.gy-2 {
  gap: 2rem 0;
}

.gy-3 {
  gap: 3rem 0;
}

.gy-4 {
  gap: 4rem 0;
}

/*MARGINS*/
.margin-1 {
  margin: 1rem;
}

.margin-2 {
  margin: 1.5rem;
}

.margin-3 {
  margin: 2rem;
}

.margin-4 {
  margin: 2.5rem;
}

.margin-5 {
  margin: 3rem;
}

.margin-y-1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.margin-y-2 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.margin-y-3 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.margin-y-4 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.margin-y-5 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.margin-top-1 {
  margin-top: 1rem;
}

.margin-top-2 {
  margin-top: 1.5rem;
}

.margin-top-3 {
  margin-top: 2rem;
}

.margin-top-4 {
  margin-top: 2.5rem;
}

.margin-top-5 {
  margin-top: 3rem;
}

.margin-top-6 {
  margin-top: 3.5rem;
}

.margin-top-7 {
  margin-top: 4rem;
}

.margin-top-8 {
  margin-top: 4.5rem;
}

.margin-top-9 {
  margin-top: 5rem;
}

.margin-bottom-1 {
  margin-bottom: 1rem;
}

.margin-bottom-2 {
  margin-bottom: 1.5rem;
}

.margin-bottom-3 {
  margin-bottom: 2rem;
}

.margin-bottom-4 {
  margin-bottom: 2.5rem;
}

.margin-bottom-5 {
  margin-bottom: 3rem;
}

.margin-bottom-6 {
  margin-bottom: 3.5rem;
}

.margin-bottom-7 {
  margin-bottom: 4rem;
}

.margin-bottom-8 {
  margin-bottom: 4.5rem;
}

.margin-bottom-9 {
  margin-bottom: 5rem;
}

.margin-right-1 {
  margin-right: 1rem;
}

.margin-right-2 {
  margin-right: 1.5rem;
}

.margin-right-3 {
  margin-right: 2rem;
}

.margin-right-4 {
  margin-right: 2.5rem;
}

.margin-right-5 {
  margin-right: 3rem;
}

.margin-right-6 {
  margin-right: 3.5rem;
}

.margin-right-7 {
  margin-right: 4rem;
}

.margin-right-8 {
  margin-right: 4.5rem;
}

.margin-right-9 {
  margin-right: 5rem;
}

.margin-left-1 {
  margin-left: 1rem;
}

.margin-left-2 {
  margin-left: 1.5rem;
}

.margin-left-3 {
  margin-left: 2rem;
}

.margin-left-4 {
  margin-left: 2.5rem;
}

.margin-left-5 {
  margin-left: 3rem;
}

.margin-left-6 {
  margin-left: 3.5rem;
}

.margin-left-7 {
  margin-left: 4rem;
}

.margin-left-8 {
  margin-left: 4.5rem;
}

.margin-left-9 {
  margin-left: 5rem;
}

/*PADDINGS*/
.padding-1 {
  padding: 1rem;
}

.padding-2 {
  padding: 1.5rem;
}

.padding-3 {
  padding: 2rem;
}

.padding-4 {
  padding: 2.5rem;
}

.padding-5 {
  padding: 3rem;
}

.padding-x-1 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.padding-x-2 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.padding-x-3 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.padding-x-4 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.padding-x-5 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.padding-y-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.padding-y-2 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.padding-y-3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.padding-y-4 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.padding-y-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.padding-top-1 {
  padding-top: 1rem;
}

.padding-top-2 {
  padding-top: 1.5rem;
}

.padding-top-3 {
  padding-top: 2rem;
}

.padding-top-4 {
  padding-top: 2.5rem;
}

.padding-top-5 {
  padding-top: 3rem;
}

.padding-top-6 {
  padding-top: 3.5rem;
}

.padding-top-7 {
  padding-top: 4rem;
}

.padding-top-8 {
  padding-top: 4.5rem;
}

.padding-top-9 {
  padding-top: 5rem;
}

.padding-bottom-1 {
  padding-bottom: 1rem;
}

.padding-bottom-2 {
  padding-bottom: 1.5rem;
}

.padding-bottom-3 {
  padding-bottom: 2rem;
}

.padding-bottom-4 {
  padding-bottom: 2.5rem;
}

.padding-bottom-5 {
  padding-bottom: 3rem;
}

.padding-bottom-6 {
  padding-bottom: 3.5rem;
}

.padding-bottom-7 {
  padding-bottom: 4rem;
}

.padding-bottom-8 {
  padding-bottom: 4.5rem;
}

.padding-bottom-9 {
  padding-bottom: 5rem;
}

.padding-right-1 {
  padding-right: 1rem;
}

.padding-right-2 {
  padding-right: 1.5rem;
}

.padding-right-3 {
  padding-right: 2rem;
}

.padding-right-4 {
  padding-right: 2.5rem;
}

.padding-right-5 {
  padding-right: 3rem;
}

.padding-right-6 {
  padding-right: 3.5rem;
}

.padding-right-7 {
  padding-right: 4rem;
}

.padding-right-8 {
  padding-right: 4.5rem;
}

.padding-right-9 {
  padding-right: 5rem;
}

.padding-left-1 {
  padding-left: 1rem;
}

.padding-left-2 {
  padding-left: 1.5rem;
}

.padding-left-3 {
  padding-left: 2rem;
}

.padding-left-4 {
  padding-left: 2.5rem;
}

.padding-left-5 {
  padding-left: 3rem;
}

.padding-left-6 {
  padding-left: 3.5rem;
}

.padding-left-7 {
  padding-left: 4rem;
}

.padding-left-8 {
  padding-left: 4.5rem;
}

.padding-left-9 {
  padding-left: 5rem;
}

/*nomargin nopadding overflowhidden*/
.nomargin {
  margin: 0;
}

.nopadding {
  padding: 0;
}

.overflowhidden {
  overflow: hidden;
}

.noborder {
  border: none;
}

/*text shadow*/
.textshadow {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.75);
}

.text-light {
  color: #fff;
}

.text-dark {
  color: #000;
}

/*Text alignment*/
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/*gradients*/
.gradient-trans-black {
  background: black;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%);
}

.gradient-black-trans {
  background: black;
  background: linear-gradient(180deg, black 100%, rgba(0, 0, 0, 0) 0%);
}

/*font size*/
.fs-200 {
  font-size: var(--fs-200);
}

.fs-300 {
  font-size: var(--fs-300);
}

.fs-400 {
  font-size: var(--fs-400);
}

.fs-500 {
  font-size: var(--fs-500);
}

.fs-600 {
  font-size: var(--fs-600);
}

.fs-700 {
  font-size: var(--fs-700);
}

.fs-800 {
  font-size: var(--fs-800);
}

.fs-900 {
  font-size: var(--fs-900);
}

/*font style*/
.italic {
  font-style: italic;
}

.text-center {
  justify-content: center;
  text-align: center;
}

*,
body {
  font-family: var(--font-family);
}

body {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.6rem;
}

h5 {
  font-size: 1.4rem;
}

h6 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 1.7em;
}

.location--header {
  padding-bottom: 10px;
  border-bottom: dashed 1px var(--clr-grey-400);
}

@font-face {
  font-family: 'fontello';
  src: url("font/fontello.eot?70666992");
  src: url("font/fontello.eot?70666992#iefix") format("embedded-opentype"), url("font/fontello.woff2?70666992") format("woff2"), url("font/fontello.woff?70666992") format("woff"), url("font/fontello.ttf?70666992") format("truetype"), url("font/fontello.svg?70666992#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?70666992#fontello') format('svg');
  }
}
*/
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-icon-x:before {
  content: '\e800';
}

/* 'εáÇ' */
.icon-icon-vegetarian:before {
  content: '\e801';
}

/* 'εáü' */
.icon-icon-beef:before {
  content: '\e802';
}

/* 'εáé' */
.icon-icon-chicken:before {
  content: '\e803';
}

/* 'εáâ' */
.icon-icon-fish:before {
  content: '\e804';
}

/* 'εáä' */
.icon-icon-pork:before {
  content: '\e805';
}

/* 'εáà' */
.icon-icon-seafood:before {
  content: '\e806';
}

/* 'εáå' */
.icon-icon-shrimp:before {
  content: '\e807';
}

/* 'εáç' */
.icon-icon-spicy:before {
  content: '\e808';
}

/* 'εáê' */
.icon-ok:before {
  content: '\e809';
}

/* 'εáë' */
.icon-heart:before {
  content: '\e80a';
}

/* 'εáè' */
.icon-star:before {
  content: '\e80b';
}

/* 'εáï' */
.icon-star-half:before {
  content: '\e80c';
}

/* 'εáî' */
.icon-glass:before {
  content: '\e80d';
}

/* 'εáì' */
.icon-phone:before {
  content: '\e80e';
}

/* 'εáÄ' */
.icon-up-open:before {
  content: '\e80f';
}

/* 'εáÅ' */
.icon-right-open:before {
  content: '\e810';
}

/* 'εáÉ' */
.icon-left-open:before {
  content: '\e811';
}

/* 'εáæ' */
.icon-down-open:before {
  content: '\e812';
}

/* 'εáÆ' */
.icon-check:before {
  content: '\e813';
}

/* 'εáô' */
.icon-leaf:before {
  content: '\e814';
}

/* 'εáö' */
.icon-cancel:before {
  content: '\e815';
}

/* 'εáò' */
.icon-ok-circled2:before {
  content: '\e816';
}

/* 'εáû' */
.icon-check-1:before {
  content: '\e817';
}

/* 'εáù' */
.icon-cancel-1:before {
  content: '\e818';
}

/* 'εáÿ' */
.icon-icon-squid:before {
  content: '\e819';
}

/* 'εáÖ' */
.icon-emo-happy:before {
  content: '\e81a';
}

/* 'εáÜ' */
.icon-emo-wink:before {
  content: '\e81b';
}

/* 'εá¢' */
.icon-emo-wink2:before {
  content: '\e81c';
}

/* 'εá£' */
.icon-emo-unhappy:before {
  content: '\e81d';
}

/* 'εá¥' */
.icon-emo-sleep:before {
  content: '\e81e';
}

/* 'εá₧' */
.icon-emo-thumbsup:before {
  content: '\e81f';
}

/* 'εáƒ' */
.icon-mail:before {
  content: '\e820';
}

/* 'εáá' */
.icon-icon-crab:before {
  content: '\e821';
}

/* 'εáí' */
.icon-location:before {
  content: '\e822';
}

/* 'εáó' */
.icon-clock:before {
  content: '\e823';
}

/* 'εáú' */
.icon-spin4:before {
  content: '\e834';
}

/* 'εá┤' */
.icon-spin6:before {
  content: '\e839';
}

/* 'εá╣' */
.icon-check-empty:before {
  content: '\f096';
}

/* '∩éû' */
.icon-twitter:before {
  content: '\f099';
}

/* '∩éÖ' */
.icon-facebook:before {
  content: '\f09a';
}

/* '∩éÜ' */
.icon-mail-alt:before {
  content: '\f0e0';
}

/* '∩âá' */
.icon-coffee:before {
  content: '\f0f4';
}

/* '∩â┤' */
.icon-food:before {
  content: '\f0f5';
}

/* '∩â╡' */
.icon-beer:before {
  content: '\f0fc';
}

/* '∩â╝' */
.icon-angle-left:before {
  content: '\f104';
}

/* '∩ää' */
.icon-angle-right:before {
  content: '\f105';
}

/* '∩äà' */
.icon-angle-up:before {
  content: '\f106';
}

/* '∩äå' */
.icon-angle-down:before {
  content: '\f107';
}

/* '∩äç' */
.icon-youtube:before {
  content: '\f167';
}

/* '∩àº' */
.icon-youtube-play:before {
  content: '\f16a';
}

/* '∩à¬' */
.icon-tumblr:before {
  content: '\f173';
}

/* '∩à│' */
.icon-cab:before {
  content: '\f1b9';
}

/* '∩å╣' */
.icon-cc-visa:before {
  content: '\f1f0';
}

/* '∩ç░' */
.icon-cc-mastercard:before {
  content: '\f1f1';
}

/* '∩ç▒' */
.icon-cc-discover:before {
  content: '\f1f2';
}

/* '∩ç▓' */
.icon-cc-amex:before {
  content: '\f1f3';
}

/* '∩ç│' */
.icon-cc-paypal:before {
  content: '\f1f4';
}

/* '∩ç┤' */
.icon-cc-stripe:before {
  content: '\f1f5';
}

/* '∩ç╡' */
.icon-birthday:before {
  content: '\f1fd';
}

/* '∩ç╜' */
.icon-motorcycle:before {
  content: '\f21c';
}

/* '∩ê£' */
.icon-whatsapp:before {
  content: '\f232';
}

/* '∩ê▓' */
/*SM icons*/
.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  font-size: 14px;
  overflow: hidden;
}

.btn span {
  display: inline-flex;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.btn::before {
  position: absolute;
  display: inline-flex;
  width: 0;
  height: 100%;
  left: 0;
  content: '';
  z-index: 0;
  transition: all 0.5s ease-in-out;
}

.btn:hover::before {
  width: 100%;
}

.btn-default {
  background-color: var(--clr-primary);
  color: #fff;
}

.btn-secondary {
  background-color: var(--clr-secondary);
  color: #fff;
}

.btn-secondary::before {
  background-color: rgba(0, 0, 0, 0.1);
}

.btn-accent {
  background-color: var(--clr-accent);
  color: #fff;
}

.btn-accent::before {
  background-color: rgba(0, 0, 0, 0.1);
}

.sm-icons-top {
  width: 60px;
  padding: 0;
  justify-content: center;
  z-index: 1;
}

.sm-icons-top .facebook-mob {
  display: none;
}

.sm-icons-top a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #b8966a;
}

.sm-icons-top a:hover {
  transform: scale(1.3);
}

.sm-icons-top a img {
  max-width: 24px;
  max-height: 24px;
  filter: invert();
}

.sm-icons-top .sm-icons-item {
  margin: 5px 0;
}


.chatnow--container {
  display: flex;
  position: fixed;
  flex-direction: column;
  align-items: flex-end;
  right: 20px;
  bottom: 20px;
  z-index: 100;
}

.chatnow {
  display: flex;
  flex-direction: column;
  transform: scale(0);
  opacity: 0;
  transform-origin: right bottom;
  transition: width .2s, height .2s, max-height .2s, transform .3s cubic-bezier(0, 1.2, 1, 1), opacity 83ms ease-out;
  transform-origin: right bottom;
  margin-bottom: 10px;
}

.chatnow--visible {
  transform: scale(1);
  opacity: 1;
}

.chatnow--button {
  display: inline-flex;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #b8966a;
  transition: transform .3s cubic-bezier(0, 1.2, 1, 1);
  cursor: pointer;
  border: none;
}

.chatnow--button:hover {
  transform: scale(1.1);
}

.chatnow--button img {
  filter: invert(1);
}

.chatnow--links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 10px 20px;
  margin: 5px 0;
  border-radius: 50px;
  color: #fff !important;
  transition: transform .3s cubic-bezier(0, 1.2, 1, 1);
}

.chatnow--links:hover {
  color: #fff !important;
  transform: scale(1.1);
}

.chatnow--links.line--link {
  background-color: #00b901;
}

.chatnow--links.fb--link {
  background-color: #0084ff;
}

/*CTA Buttons*/
.cta {
  border: solid 1px;
  margin-bottom: 20px;
}

.cta h3 {
  font-weight: 300;
  font-size: 1.5rem;
}

.cta .btn {
  padding: 15px 30px;
  font-weight: 700;
  border: solid 1px;
  overflow: hidden;
  font-size: 16px;
}

.cta-default {
  color: #fff;
  border: none;
  background-color: var(--clr-primary);
}

.cta-default .btn {
  background-color: var(--clr-primary);
  color: #fff;
  border-color: #fff;
}

.cta-default .btn:hover {
  border-color: #fff;
  color: var(--clr-primary);
}

.cta-default .btn::before {
  background-color: white;
}

.cta-secondary {
  color: var(--clr-secondary);
  border-color: var(--clr-secondary);
}

.cta-secondary .btn {
  background-color: var(--clr-secondary-light);
  color: var(--clr-secondary);
  border-color: var(--clr-secondary);
}

.cta-secondary .btn:hover {
  color: #fff;
}

.cta-secondary .btn::before {
  background-color: var(--clr-secondary);
}

.cta-accent {
  color: #fff;
  border: none;
  background-color: var(--clr-accent);
}

.cta-accent .btn {
  background-color: var(--clr-accent);
  color: #fff;
  border-color: #fff;
}

.cta-accent .btn:hover {
  border-color: #fff;
  color: var(--clr-accent);
}

.cta-accent .btn::before {
  background-color: white;
}

.header-top {
  position: relative;
  height: 80px;
  background-color: #000;
  margin: 20px 0;
}

.menu li {
  flex: content;
}

.menu a {
  display: inline-flex;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 80px;
  z-index: 9;
}

.menu .sub-menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: auto;
  min-width: 150px;
  height: 0;
  top: 60px;
  left: -10px;
  padding: 10px 0 0;
  z-index: 1000;
  background: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-in-out;
  -o-transition: opacity .5s ease-in-out;
  -ms-transition: opacity .5s ease-in-out;
  -moz-transition: opacity .5s ease-in-out;
  -webkit-transition: opacity .5s ease-in-out;
}

.menu .sub-menu::before {
  position: absolute;
  content: '';
  display: inline-flex;
  width: 0;
  height: 0;
  top: 0;
  left: 25px;
  z-index: 12;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 10px solid #fff;
}

.menu .sub-menu li {
  overflow: hidden;
}

.menu .sub-menu li:nth-child(1) {
  border-radius: 10px 10px 0 0;
}

.menu .sub-menu li:nth-last-child(1) {
  border-radius: 0 0 10px 10px;
}

.menu .sub-menu a {
  display: inline-flex;
  width: 100%;
  line-height: 40px;
  color: #000;
  padding: 5px 10px;
  background-color: #fff;
  transition: none;
  text-transform: capitalize;
  font-size: 14px;
  white-space: nowrap;
}

.menu .menu-item-has-children {
  position: relative;
}

.menu .menu-item-has-children:hover .sub-menu {
  height: auto;
  visibility: visible;
  opacity: 1;
}

.switch-lang {
  padding: 0 0 0 25px;
  border-left: solid 1px rgba(255, 255, 255, 0.3);
}

.switch-lang li,
.switch-lang a {
  display: inline-flex;
}

.switch-lang a:hover {
  transition: all 0.3s ease-in-out;
}

.switch-lang a:hover img {
  transform: scale(1.2);
  transition: all 0.3s ease-in-out;
}

.mobile-trigger {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.mobile-trigger span {
  display: inline-flex;
  height: 2px;
  width: 27px;
  background-color: #fff;
}

.mobile-trigger span:nth-child(2) {
  margin: 7px 0;
}

.opened-trigger {
  transition: all 0.3s ease-in-out;
}

.opened-trigger span {
  position: absolute;
  transition: all 0.3s ease-in-out;
}

.opened-trigger span:nth-child(1) {
  transform: rotate(45deg);
}

.opened-trigger span:nth-child(2) {
  display: none;
}

.opened-trigger span:nth-child(3) {
  transform: rotate(-45deg);
}

/*Menu Pages List*/
.page-id-18 .menupages-container {
  display: none;
}

.menupages-container {
  position: sticky;
  top: 10px;
  z-index: 20;
  margin-bottom: 20px;
}

.menupages-list {
  gap: 0 5px;
}

.menupages-list li {
  flex: auto;
}

.menupages-list li a,
.menupages-list li a:visited {
  display: inline-flex;
  width: 100%;
  font-size: 0.875rem;
  line-height: 35px;
  justify-content: center;
  text-decoration: none;
  background-color: var(--clr-accent);
  color: #fff;
  border-radius: 5px;
}

.menupages-list li a:hover,
.menupages-list li a:visited:hover {
  background-color: var(--clr-primary);
}

.menupages-list li.current-menu-item a {
  background-color: var(--clr-primary);
}

.top--image {
  overflow: auto;
  border-radius: 15px;
  max-height: 500px;
  margin-bottom: 20px;
  overflow: hidden;
}

.top--image .entry-title {
  width: 100%;
  text-align: center;
  padding: 2rem;
  color: #fff;
  background: black;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%);
}

/*HOMEPAGE*/
.anyhero {
  position: relative;
  min-height: 600px;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero-sliders {
  width: 100%;
  height: 600px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.slide-01 {
  background-image: url('https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/slide-01.webp');
}
.slide-02 {
  background-image: url('https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/slide-02.webp');
}
.slide-03 {
  background-image: url('https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/slide-03.webp');
}
.slide-04 {
  background-image: url('https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/slide-04.webp');
}
.slide-05 {
  background-image: url('https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/slide-05.webp');
}

.anyintro {
  margin: 50px 0;
}

.anyintro__text {
  width: 45%;
  padding-right: 50px;
}

.anyintro__text h1 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.anyintro__text p {
  margin: 0;
}

.anyintro__vision {
  width: 55%;
}

.anyintro--boxes {
  position: relative;
  overflow: hidden;
}

.anyintro--boxes__image {
  width: 100%;
  height: 100%;
  min-height: 450px;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
}

.anyintro--boxes__image img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.anyintro--boxes__meta {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 10px;
  color: #fff;
  text-align: center;
}

.anyintro--boxes__meta .anyintro--boxes__title {
  font-size: 16px;
  font-weight: 600;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.75);
}

.anyintro--boxes__meta .btn {
  font-size: 14px;
  padding: 4px 15px 5px;
  margin-top: 10px;
}

.anytro01 .anyintro--boxes__image {
  background-image: url("https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/indoor-anytime-cafe.webp");
}

.anytro02 .anyintro--boxes__image {
  background-image: url("https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/wide-selection-menu.webp");
}

.anytro03 .anyintro--boxes__image {
  background-image: url("https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/great-menu-items.webp");
}

.anypromo {
  height: 400px;
  background-image: url("https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/indoor-design-anytime.webp");
  background-position: center;
  background-size: cover;
  overflow: hidden;
  margin-bottom: 50px;
}

.anypromo h2 {
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
}

.what--offer {
  margin-bottom: 20px;
  overflow: hidden;
}

.what--offer h2 {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 45px;
  color: var(--clr-secondary);
  text-transform: uppercase;
  margin-bottom: 15px;
  padding: 0 15px 0 0;
  background-color: var(--clr-secondary-light);
}

.what--offer h2 span {
  color: #fff;
  background-color: var(--clr-secondary);
  padding: 0 15px;
  margin-right: 10px;
}

.what--offer__text {
  width: 50%;
  padding-right: 5rem;
}

.what--offer__text h3 {
  color: var(--clr-secondary);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.what--offer__image {
  width: 50%;
  height: 100%;
  right: 0;
  background-image: url("https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/whatoffer-bg-web.webp");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.what--offer__image::before {
  position: absolute;
  content: '';
  display: block;
  width: 90%;
  height: 100%;
  background: white;
  background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0) 100%);
  left: 0;
}

.dm--section {
  min-height: 320px;
}

.dm--section__text {
  display: flex;
  flex-direction: column;
  width: 50%;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-left: 25px;
}

.dm--section__text h3 {
  color: var(--clr-secondary);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.dm--section__text p {
  text-align: center;
}

.dm--section__image {
  width: 50%;
  height: 280px;
  background-image: url("https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/dm-section.webp");
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

.coffee--section {
  background-color: var(--clr-secondary);
  color: #fff;
}

.coffee--section__text,
.coffee--section__images {
  width: 50%;
}

.coffee--section__text {
  padding-right: 75px;
}

.coffee--section__text h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.coffee-images {
  height: 250px;
  overflow: hidden;
}

.coffee-images img {
  width: auto;
  max-width: none;
  height: 100%;
}

/*HOMEPAGE*/
/*MENU pages*/
.menu--view {
  margin-bottom: 20px;
}

.menu--view__items {
  min-height: 220px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.menu--view__items .menubanner--meta {
  width: 100%;
  align-items: center;
  background: black;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%);
  padding: 3rem 1rem 1rem;
}

.menu--view__items .menubanner--meta__title {
  width: 75%;
  padding-right: 20px;
}

.menu--view__items .menubanner--meta__title h2,
.menu--view__items .menubanner--meta__title h3 {
  color: #fff;
}

.menu--view__items .menubanner--meta__title h2 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.menu--view__items .menubanner--meta__title h3 {
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
}

.menu--view__items .menubanner--meta__button {
  width: 25%;
  height: 41px;
  padding: 0 10px;
  border-radius: 10px;
  border: solid 1px #fff;
  color: #fff;
}

.menu--view__items .menubanner--meta__button:hover {
  color: #000;
}

.menu--view__items .menubanner--meta__button:hover::before {
  background-color: #fff;
}

.menu--view__drink-menu {
  background-image: url("https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/drink-menu-bg.webp");
}

.menu--view__breakfast-menu {
  background-image: url("https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/breakfast-menu-bg.webp");
}

.menu--view__pizza-menu {
  background-image: url("https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/pizza-menu-bg.webp");
}

.menu--view__main-menu {
  background-image: url("https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/main-course-bg.webp");
}

.menu--view__thai-menu {
  background-image: url("https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/thai-cuisine-bg.webp");
}

.menu--block {
  overflow: hidden;
  padding: 5px;
  background-color: var(--clr-grey-100);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  box-shadow: var(--shadow-1);
}

.menu--block__image {
  width: 100px;
  overflow: hidden;
  border-radius: 10px;
}

.menu--block__image:hover {
  border-image-source: linear-gradient(to bottom left, #b8966a, #f4efe9);
}

.menu--block__image a {
  position: relative;
  width: 100px;
}

.menu--block__image a::before {
  position: absolute;
  display: inline-flex;
  content: '';
  width: 0;
  height: 0;
  color: #fff;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}

.menu--block__image a:hover::before {
  content: '\002B';
  width: 100%;
  height: 100%;
}

.menu--block__meta {
  position: relative;
  flex: 1;
  padding: 5px 10px;
}

.menu--block__meta h3 {
  width: 100%;
  font-size: 1rem;
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: dashed 1px var(--clr-grey-400);
}

.menu--block__meta p {
  font-size: 0.875rem;
  margin: 0 0 5px;
}

.menu--block__meta .menu-item-price {
  width: 20%;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
}

.menu--block__meta .w-100 {
  width: 100%;
}

.menu--block__meta .menu-item-description {
  width: 80%;
  font-weight: 700;
  font-size: 12px;
  gap: 5px;
}

.menu--block__meta .menu-item-description .menu-icons {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
}

.menu--block__meta .menu-item-description .menu-icons.icon-icon-beef {
  background-color: #702112;
}

.menu--block__meta .menu-item-description .menu-icons.icon-icon-chicken {
  background-color: #702112;
}

.menu--block__meta .menu-item-description .menu-icons.icon-icon-pork {
  background-color: #e35c5c;
}

.menu--block__meta .menu-item-description .menu-icons.icon-icon-seafood {
  background-color: #3a87d7;
}

.menu--block__meta .menu-item-description .menu-icons.icon-icon-shrimp {
  background-color: #3a87d7;
}

.menu--block__meta .menu-item-description .menu-icons.icon-icon-fish {
  background-color: #3a87d7;
}

.menu--block__meta .menu-item-description .menu-icons.icon-icon-vegetarian {
  background-color: #566822;
}

.menu--block__meta .menu-item-description .menu-icons.icon-icon-spicy {
  background-color: transparent;
  color: #ed0c0c;
}

.menu--block__meta .menu-item-description .menu-icons.icon-icon-squid {
  background-color: #3a87d7;
}

.menu--block__meta .menu-item-description .menu-icons.icon-icon-crab {
  background-color: #3a87d7;
}

.subsection--title {
  font-size: 1.2rem;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--clr-grey-300);
  margin-top: 50px;
}

.subsection--title:nth-child(1) {
  margin-top: 0;
}

.menu-section-image {
  height: 200px;
  overflow: hidden;
  margin-top: 50px;
  background-size: 50% auto;
  background-repeat: no-repeat;
  background-position: right;
}

.menu-section-image img {
  position: relative;
}

.menu-section-image img::before {
  content: '';
  position: absolute;
  display: block;
  height: 100%;
  width: 25%;
}

.menu-item-id {
  position: absolute;
  bottom: 10px;
  font-size: 12px;
  z-index: 2;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 0 10px;
}

.featured--item {
  overflow: initial;
  position: relative;
  border: solid 1px var(--clr-accent);
}

.featured--item::before {
  position: absolute;
  content: 'Must Try';
  display: inline-flex;
  right: 10px;
  top: -11px;
  padding: 3px 10px;
  color: #fff;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background-color: var(--clr-accent);
  font-size: 10px;
  font-weight: 700;
}

.mtry--title {
  font-size: 1.2rem;
}

/*location contact page*/
.contact--icons {
  gap: 25px 0;
}

.contact--icons__item {
  position: relative;
  padding-left: 60px;
}

.contact--icons__item i {
  position: absolute;
  left: 0;
  font-size: 24px;
  margin-right: 15px;
}

.topBtn {
  display: flex;
  position: fixed;
  height: 60px;
  width: 60px;
  right: 20px;
  bottom: 90px;
  align-items: center;
  justify-content: center;
  z-index: 100;
  color: #fff;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  background-color: var(--clr-secondary);
  font-size: 1.8rem;
}

.topbtnshow {
  opacity: 1;
  visibility: visible;
}
.topBtn i {
  margin-top: -5px;
}



.promo-slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.swiper-backface-hidden .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  overflow: hidden;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  width: 41px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 13px;
  font-weight: 700;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 1;
}

/*menu slider*/
.menuslider {
  overflow: hidden;
  position: relative;
}

.menuslider--item {
  position: relative;
}

.menuslider--item__caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 8px 15px;
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
}

.menuslide--title {
  margin-bottom: 20px;
  text-align: center;
  padding: 0 50px;
}

/*Fancybox*/
.fancybox-slide div.fancybox-content {
  display: flex;
  margin: 10px;
}

.fancybox-slide div.fancybox-content .fancybox-custom-caption {
  height: fit-content;
  bottom: initial;
  top: 2%;
  background: none !important;
}

.fancybox-slide div.fancybox-content p.caption-title {
  width: fit-content;
  color: #fff;
  background-color: var(--clr-primary);
  font-weight: 700;
  padding: 10px 15px;
}

.fancybox-slide div.fancybox-content .fancybox-button {
  background-color: #fff;
  right: 0;
  top: -54px;
}

.fancybox-slide div.fancybox-content .fancybox-button svg path {
  fill: var(--clr-primary);
}

.fancybox-slide div.fancybox-content .fancybox-button div {
  background-color: rgba(0, 0, 0, 0.5);
}

.fancybox-slide div.fancybox-content .fancybox-button div svg path {
  fill: #fff;
}

.fancybox-slide div.fancybox-content .fancybox-button:disabled div {
  opacity: 0.2;
}

/*booking form*/
.reserve--table {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  border-radius: 15px;
  margin-top: 20px;
  box-shadow: var(--shadow-3);
  background-color: var(--clr-secondary-light);
  background-image: url("https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/reserve-table-bg.webp");
  background-position: -400px center;
  background-size: cover;
  background-repeat: no-repeat;
}

.reserve--table::before {
  position: absolute;
  content: 'Book Your Table';
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  left: 5%;
  z-index: 1;
  color: #fff;
}

.reserve--table::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 70%;
  right: 0;
  background: #f4efe9;
  background: linear-gradient(90deg, rgba(244, 239, 233, 0) 0%, #f4efe9 32%);
  z-index: 0;
}

.reserve--table .fluentform_wrapper_3 {
  width: 50%;
  z-index: 2;
  padding: 1.5rem;
}

.reserve--table .fluentform_wrapper_3 .booking_submit {
  margin-bottom: 0;
}

.fluent_form_3 h2 {
  color: var(--clr-secondary);
  text-transform: uppercase;
}

.fluent_form_3 .ff-el-form-control {
  min-height: 41px;
  padding: 0 15px;
  border-radius: 10px;
  border: solid 1px var(--clr-secondary);
}

.fluent_form_3 #ff_3_description {
  padding: 1rem;
  font-size: 16px;
}

.fluent_form_3 .btn-secondary {
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.fluent_form_3 .btn-secondary:hover {
  background-color: var(--clr-primary);
  transition: all 0.4s ease-in-out;
}

.fluent_form_3 .btn-secondary::before {
  display: none;
}

/*tooltip*/
.tooltip {
  position: relative;
  color: #fff;
}

.tooltip:before,
.tooltip:after {
  position: absolute;
  content: "";
  opacity: 0;
  transition: all 0.4s ease;
}

.tooltip:before {
  border-width: 10px 8px 0 8px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.tooltip:after {
  content: attr(data-tooltip);
  background: #000;
  width: auto;
  height: auto;
  font-size: 13px;
  font-weight: 300;
  top: -50px;
  left: 50%;
  padding: 10px;
  border-radius: 5px;
  letter-spacing: 1px;
  transform: translateX(-50%);
}

.tooltip:hover::before,
.tooltip:hover::after {
  opacity: 1;
  transform: translate(-50%, -2px);
}

@keyframes shake {
  0% {
    transform: rotate(2deg);
  }

  50% {
    transform: rotate(-3deg);
  }

  70% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.anim:hover {
  animation: shake 500ms ease-in-out forwards;
}

.pulse {
  background: rgb(255, 227, 0);
  border-radius: 50%;
  height: 30px;
  width: 30px;
  box-shadow: 0 0 0 0 rgba(255, 227, 0, 1);
  transform: scale(1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(255, 227, 0, 0.7);
  }

  70% {
      transform: scale(1);
      box-shadow: 0 0 0 15px rgba(255, 227, 0, 0);
  }

  100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(255, 227, 0, 0);
  }
}      

/*ANIMATIONS*/
.tag {
  opacity: 0;
  transform: translate(0, 10vh);
  transition: all 1s;
}

.tag.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.footer {
  background-color: var(--clr-primary);
  border-radius: 15px;
  margin: 50px 0 10px;
  padding: 2rem 2rem 1rem;
  color: #fff;
}

.footer-social {
  padding: 1rem;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-social .sm-icons-top {
  width: 100%;
  padding: 0;
}

.footer-social .sm-icons-top .sm-icons-item {
  width: 35px;
  height: 35px;
  margin: 0 10px;
  background: none;
  border: solid 2px #fff;
}

.footer-social .sm-icons-top .sm-icons-item img {
  width: 18px;
  height: 18px;
}

.footer-social h3 {
  font-size: 1rem;
  margin-bottom: 15px;
  text-align: center;
}

#copyright {
  width: 100%;
  font-size: 12px;
  margin-top: 1rem;
  text-align: center;
}

/*DISPLAY CLASSES*/
.hide-lg {
  display: none;
}



.anytime-gallery .gallery-item {
  width: 20%;
  margin: 0;
  padding: 0;
}

/*password form*/
.post-password-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.post-password-form label {
  display: inline-flex;
  align-items: center;
}

.post-password-form input[type="password"] {
  padding: 0 10px;
  height: 41px;
  border: solid 1px #ccc;
  background: #eee;
  border-radius: 5px;
  margin: 0 10px;
}

.post-password-form input[type="submit"] {
  cursor: pointer;
  height: 42px;
  padding: 0 25px;
  font-size: 16px;
  line-height: 37px;
  border: none;
  border-radius: 5px;
  background: #000000;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.post-password-form input[type="submit"]:hover,
.post-password-form input[type="submit"]:focus {
  background-color: var(--clr-accent);
}

/*WPML*/
.top-links > .wpml-ls ul {
  display: flex;
  gap: 0;
  align-items: center;
  margin: 0;
  padding: 0 0 0 20px;
  border-left: solid 1px rgba(255, 255, 255, 0.3);
}

.top-links > .wpml-ls ul a {
  display: inline-flex;
  width: 41px;
  height: 41px;
  align-items: center;
  justify-content: center;
}

.top-links > .wpml-ls-link {
  opacity: 0.75;
}

.top-links > .wpml-ls-link:hover,
.top-links > .wpml-ls-current-language .wpml-ls-link {
  opacity: 1;
}


/*Contact Page*/
.contact-page-icons {
  padding: 20px 0 0;
  justify-content: flex-start;
  border-top: solid 1px #ccc;
}

.contact-page-icons .sm-icons-top {
  padding: 0;
  background: none;
  justify-content: flex-start;
}

.contact-page-icons .sm-icons-top a {
  border-color: #000;
}

.contact-page-icons .sm-icons-top a img {
  filter: none;
}

.delivery-animation {
  width: 40%;
}

.delivery-animation>dotlottie-player {
  max-width: 100%;
  max-height: 100%;
}

.delivery-info {
  width: 60%;
  padding: 15px;
}

.food-delivery {
  margin-top: 15px;
  padding: 0 10px
}

.food-delivery a {
  display: inline-flex;
  border-radius: 5px;
  overflow: hidden;
}


/*LANGUAGES*/
/*chinese*/
html[lang="zh-hans"] .menu a,
html[lang="zh-hans"] .anyintro--boxes__meta .anyintro--boxes__title,
html[lang="zh-hans"] .anyintro--boxes__meta .btn,
html[lang="zh-hans"] .btn-secondary {
  font-weight: 400
}

html[lang="zh-hans"] .what--offer h2,
html[lang="th"] .what--offer h2 {
  width: 100%;
  background-color: transparent;
  border-bottom: solid 1px;
  color: var(--clr-secondary);
}


html[lang="zh-hans"] .menu--view__items .menubanner--meta__title {
  width: 80%;
}

html[lang="zh-hans"] .menu--view__items .menubanner--meta__button {
  width: 20%;
  font-weight: 400;
  letter-spacing: 0.1rem;
}

html[lang="zh-hans"] .reserve--table .fluentform_wrapper_5 {
  width: 50%;
  z-index: 2;
  padding: 1.5rem;
}

html[lang="zh-hans"] .reserve--table::before {
  content: '预订您的位置';
  font-weight: 400;
}

/*Thai*/
html[lang="th"] .reserve--table::before {
  content: 'จองโต๊ะ';
}

html[lang="th"] .menu a {
  font-size: 1.1rem;
  font-weight: 400;
}


/*reservation form*/
.reserve--table .fluentform_wrapper_6 {
  width: 50%;
  z-index: 2;
  padding: 1.5rem;
}

.reserve--table .fluentform_wrapper_6 .booking_submit {
  margin-bottom: 0;
}

.fluent_form_5 .ff-el-form-control,
.fluent_form_6 .ff-el-form-control {
  min-height: 41px;
  padding: 0 15px;
  border-radius: 10px;
  border: solid 1px var(--clr-secondary);
}

.fluent_form_5 #ff_5_description,
.fluent_form_6 #ff_6_description {
  padding: 1rem;
  font-size: 16px;
}

.fluent_form_5 .btn-secondary,
.fluent_form_6 .btn-secondary {
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.fluent_form_5 .btn-secondary:hover,
.fluent_form_6 .btn-secondary:hover {
  background-color: var(--clr-primary);
  transition: all 0.4s ease-in-out;
}

.fluent_form_5 .btn-secondary::before,
.fluent_form_6 .btn-secondary::before {
  display: none;
}

/*petfriendly*/
.pet-friendly {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  background: rgba(255, 227, 0, 1);
  border-radius: 50%;
  font-size: 0.6rem;
  padding: 15px;
  
}

.container-pet {
  width: 600px;
  height: auto;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;

}

.cat-img {
  position: relative;
}

.cat-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 125px;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.pet-friendly-body {
  padding: 30px 40px 20px;
}

.pet-friendly-body h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.pet-friendly-body p {
  font-weight: 400;
  color: #666;
  line-height: 1.7;
}

.home .pum-theme-1839 .pum-content+.pum-close,
.home .pum-theme-enterprise-blue .pum-content+.pum-close {
  width: 41px;
  height: 41px;
  font-weight: 700;
  font-size: 1.3rem;
  background-color: #000;
}


@media only screen and (max-width: 1180px) {
  .page-wrapper {
    padding: 0 10px;
  }

  .anytime-gallery {
    gap: 1px;
  }

  .anytime-gallery .gallery-item {
    width: calc(20% - 1px);
  }
}

@media only screen and (max-width: 1024px) {
  .page-wrapper {
    padding: 0 10px;
  }

  .anytime-gallery {
    gap: 1px;
  }

  .anytime-gallery .gallery-item {
    width: calc(20% - 1px);
  }
}


@media screen and (max-width: 820px) {

  /*layout*/
  .md-span_1 {
    grid-column: span 1;
  }

  .md-span_2 {
    grid-column: span 2;
  }

  .md-span_3 {
    grid-column: span 3;
  }

  .md-span_4 {
    grid-column: span 4;
  }

  .md-span_5 {
    grid-column: span 5;
  }

  .md-span_6 {
    grid-column: span 6;
  }

  .md-span_7 {
    grid-column: span 7;
  }

  .md-span_8 {
    grid-column: span 8;
  }

  .md-span_9 {
    grid-column: span 9;
  }

  .md-span_10 {
    grid-column: span 10;
  }

  .md-span_11 {
    grid-column: span 11;
  }

  .md-span_12 {
    grid-column: span 12;
  }

  .md-span_1,
  .md-span_2,
  .md-span_3,
  .md-span_4,
  .md-span_5,
  .md-span_6,
  .md-span_7,
  .md-span_8,
  .md-span_9,
  .md-span_10,
  .md-span_11,
  .md-span_12 {
    max-width: 100%;
    width: auto;
  }

  /*layout*/
  .menu {
    max-width: 400px;
    overflow-x: auto;
  }

  .menu li a {
    white-space: nowrap;
    padding: 0 5px;
  }

  /*homepage*/
  .hero-slider img {
    min-height: 100%;
    object-fit: cover;
  }

  /*homepage*/
}



@media only screen and (max-width: 768px) {
  .anytime-gallery {
    gap: 1px;
  }

  .anytime-gallery .gallery-item {
    width: calc(25% - 1px);
  }
}

@media screen and (max-width: 576px) {
  body {
    background-color: #fff;
  }

  /*LAYOUT*/
  .span_1,
  .span_2,
  .span_3,
  .span_4,
  .span_5,
  .span_6,
  .span_7,
  .span_8,
  .span_9,
  .span_10,
  .span_11,
  .span_12 {
    grid-column: span 12;
  }

  .sm-span_1 {
    grid-column: span 1;
  }

  .sm-span_2 {
    grid-column: span 2;
  }

  .sm-span_3 {
    grid-column: span 3;
  }

  .sm-span_4 {
    grid-column: span 4;
  }

  .sm-span_5 {
    grid-column: span 5;
  }

  .sm-span_6 {
    grid-column: span 6;
  }

  .sm-span_7 {
    grid-column: span 7;
  }

  .sm-span_8 {
    grid-column: span 8;
  }

  .sm-span_9 {
    grid-column: span 9;
  }

  .sm-span_10 {
    grid-column: span 10;
  }

  .sm-span_11 {
    grid-column: span 11;
  }

  .sm-span_12 {
    grid-column: span 12;
  }

  .sm-span_1,
  .sm-span_2,
  .sm-span_3,
  .sm-span_4,
  .sm-span_5,
  .sm-span_6,
  .sm-span_7,
  .sm-span_8,
  .sm-span_9,
  .sm-span_10,
  .sm-span_11,
  .sm-span_12 {
    max-width: 100%;
    width: auto;
  }

  /*display classes*/
  .hide-sm {
    display: none;
  }

  .show-sm-flex {
    display: flex;
  }

  .show-sm-inline-flex {
    display: inline-flex;
  }

  .show-sm-block {
    display: block;
  }

  .show-sm-inline-block {
    display: inline-block;
  }

  .show-sm-inline {
    display: inline;
  }

  .page-wrapper {
    padding: 0;
  }

  .content-block {
    padding: 0;
    background-color: initial;
  }

  /*LAYOUT*/
  /*TYPOGRAPHY*/
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  h4 {
    font-size: 1.2rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: 0.875rem;
  }

  .page-header {
    padding: 0 0.5rem 1rem;
    border-bottom: solid 1px var(--clr-grey-400);
    border-radius: 0;
  }

  .page-header .entry-title {
    font-size: 1.8rem;
  }



  /*TYPOGRAPHY*/
  /*BUTTONS*/
  .cta {
    flex-direction: column;
    gap: 20px 0;
  }

  .cta h3 {
    text-align: center;
  }

  .chatnow--container {
    flex-direction: row;
  }
  .chatnow {
    transform-origin: right center;
  }
  .chatnow {
    flex-direction: row;
    margin: 0;
  }
  .chatnow .sm-icons-top {
    width: auto;
    flex-direction: row;
  }
  .sm-icons-top .sm-icons-item {
    margin: 0 5px;
    width: 41px;
    height: 41px;
  }


  .chatnow--button {
    width: 41px;
    height: 41px;
  }

  .chatnow--button img {
    width: 18px;
  }

  .topBtn {
    width: 41px;
    height: 41px;
    bottom: 71px;
  }
  /*BUTTONS*/
  /*HEADER*/
  .header-top {
    height: 65px;
    padding: 0 10px;
    margin: 0;
  }

  .header-top .branding img {
    max-width: 120px;
  }

  /*HEADER*/
  /*MENU*/
  .mobile-trigger {
    display: flex;
    width: 41px;
    height: 41px;
  }

  .main-menu {
    display: none;
    position: absolute;
    width: 240px;
    background: white;
    top: 60px;
    right: 10px;
    z-index: 99999;
    padding: 20px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  }

  .menu {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: initial;
  }

  .menu::before {
    position: absolute;
    content: '';
    display: inline-flex;
    width: 0;
    height: 0;
    top: -30px;
    right: -8px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 10px solid #fff;
  }

  .menu .sub-menu {
    display: none;
  }

  .menu li a {
    display: inline-flex;
    height: 41px;
    width: 100%;
    line-height: 41px;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    padding: 0;
  }

  .menu li a:hover .sub-menu {
    display: none;
  }

  /*menu pages list*/
  .menupages-container {
    overflow-y: auto;
  }

  .menupages-container .menupages-list {
    min-width: 1170px;
  }

  .menupages-container .menupages-list li a {
    line-height: 50px;
  }

  .menupages-container .menupages-list li.current-menu-item {
    order: -1;
  }

  /*MENU*/
  /*PAGES*/
  #content {
		padding: 0;
	}

  /*homepage*/
  .anyhero {
    position: relative;
    min-height: 320px;
    margin: 0;
  }

  .pet-friendly {
    width: 60px;
    height: 60px;
    padding: 10px;
    right: 20px;
    bottom: 20px;
  }

  .hero_image {
    object-fit: contain;
    max-width: none;
    max-height: 100%;
  }

  .hero-sliders {
    height: 320px;
  }
  .slide-01 {
    background-image: url('https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/slide-01.webp');
  }
  .slide-02 {
    background-image: url('https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/slide-02.webp');
  }
  .slide-03 {
    background-image: url('https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/slide-03.webp');
  }
  .slide-04 {
    background-image: url('https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/slide-04.webp');
  }
  .slide-05 {
    background-image: url('https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/slide-05.webp');
  }

  .swiper-backface-hidden .swiper-slide {
		border-radius: 0
	}

  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    position: absolute;
    top: initial;
    bottom: 20px;
    left: 20px;
    margin: 0;
    color: #000;
    border-radius: 4px;
    background: #fff;
    opacity: 1;
  }

  .hero-slider .swiper-button-next {
    left: 62px;
  }


  /*intro*/
  .anyintro {
    flex-direction: column;
    margin: 0 0 10px;
  }

  .anyintro__text,
  .anyintro__vision {
    width: 100%;
  }

  .anyintro__text {
    padding: 25px 15px;
    margin-bottom: 20px;
    text-align: center;
  }

  .anyintro__text h1 {
    font-size: 6vw;
    margin-bottom: 10px;
    padding: 0 5px;
  }

  .anyintro__vision {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
  }

  .anyintro--boxes {
    display: flex;
    padding: 10px;
    background-color: var(--clr-secondary-light);
    border-radius: 15px;
    align-items: center;
    max-height: initial;
  }

  .anyintro--boxes__image {
    width: 150px;
    height: 150px;
    min-height: initial;
    border-radius: 15px;
    overflow: hidden;
  }

  .anyintro--boxes__image img {
    min-width: 100%;
  }

  .anyintro--boxes__meta {
    width: calc(100% - 150px);
    position: initial;
    background: none;
  }

  .anyintro--boxes__meta .anyintro--boxes__title {
    text-shadow: none;
    color: #000;
    font-size: 1.125rem;
  }

  .anytro01 .anyintro--boxes__image {
    background-image: url("https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/indoor-anytime-cafe-mobile.webp");
  }

  .anytro02 .anyintro--boxes__image {
    background-image: url("https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/wide-selection-menu-mob.webp");
  }

  .anytro03 .anyintro--boxes__image {
    background-image: url("https://anytime-cafe.com/wp-content/themes/anytime_theme_child/images/great-menu-items-mob.webp");
  }

  /*Promotion*/
  .anypromo {
    height: 250px;
    margin-bottom: 0;
  }

  .anypromo h2 {
    font-size: 1.4rem;
    padding: 1rem;
  }

  /*what we offer*/
  .what--offer {
    position: relative;
    padding: 1rem;
    flex-direction: column;
    background-color: var(--clr-secondary-light);
  }

  .what--offer__text,
  .what--offer__image {
    width: 100%;
    padding: 0;
  }

  .what--offer__text h2 {
    width: 100%;
    background-color: var(--clr-primary);
    color: #fff;
    line-height: 50px;
  }

  .what--offer__text h3 {
    font-size: 1.2rem;
  }

  .what--offer__image {
    position: relative;
    height: 300px;
    border-radius: 0;
  }

  .what--offer__image::before {
    display: none;
  }

  .what--offer .btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--clr-accent);
  }

  /*what we offer*/
  /*Drink Menu Section*/
  .dm--section {
    position: relative;
    padding: 2rem 1rem;
    flex-direction: column;
    background-color: var(--clr-secondary-light);
  }

  .dm--section__text,
  .dm--section__image {
    width: 100%;
    padding: 0;
  }

  .dm--section__text {
    order: 1;
  }

  .dm--section__text h3 {
    font-size: 1.2rem;
  }

  .dm--section__image {
    order: 2;
    position: relative;
    height: 180px;
    margin-top: 50px;
  }

  /*Drink Menu Section*/
  /*Coffee Section*/
  .coffee--section {
    flex-direction: column;
    padding: 2rem 1rem;
    background-color: var(--clr-secondary);
  }

  .coffee--section__text,
  .coffee--section__images {
    width: 100%;
    padding: 0;
  }

  .coffee--section__images .coffee-images {
    height: auto;
    margin-top: 20px;
  }

  .coffee--section__images img {
    width: 100%;
    height: auto;
  }

  /*Coffee Section*/
  /*homepage*/
  /*inside pages*/
  .top--image {
    height: 300px;
  }

  .top--image img {
    height: 100%;
  }

  .top--image .entry-title {
    padding: 2rem 1rem;
    font-size: 1.6rem;
  }

  .reserve--table {
    background-image: none;
    padding: 4rem 1rem 1rem;
  }

  .reserve--table::before {
    top: 20px;
    font-size: 1.2rem;
    color: #000;
  }

  .reserve--table::after {
    display: none;
  }

  .reserve--table .fluentform_wrapper_3 {
    width: 100%;
    padding: 0;
  }

  /*inside pages*/
  /*menu page*/
  .mtry--title {
    background-color: var(--clr-accent);
    color: #fff;
    padding: 1rem;
    text-align: center;
  }

  .menu--view__items .menubanner--meta__title {
    width: 68%;
  }

  .menu--view__items .menubanner--meta__button {
    width: 32%;
  }

  /*PAGES*/
  /*CUSTOM*/
  /*slider*/
  .promo-slider {
    height: 550px;
  }

  .promo-slider .swiper-slide img {
    height: 100%;
    max-height: 100%;
  }

  /*CUSTOM*/
  /*FOOTER*/
  .footer {
		margin:0;
		border-radius: 0;
	}
  .footer-social .sm-icons-top {
    width: 100%;
    position: initial;
    flex-direction: row;
    gap: 10px;
  }

  /*FOOTER*/

  /*Custom elements*/
  .anytime-gallery .gallery-item {
		width: calc(50% - 1px);
		}
	.top-links {
		gap: 0;
	}
  .contact-page-icons .sm-icons-top {
		position:initial;
		width: 100%;
		flex-direction: initial;
		gap: 0 15px;
		justify-content: center;
		
	}
	
	.border-radius15 {
		border-radius: 0;
	}
	
	.deliver-container{
		flex-direction: column;
	}
	.delivery-animation,
	.delivery-info {
		width: 100%;
		padding: 0; 
	}
	.delivery-info a img {
		max-width: 130px
	}
	
	.reserve--table .fluentform_wrapper_6 {
		width: 100%;
		padding: 0;
	}
	
	.container-pet {
		width: auto;
		max-width: 350px;
	}
	.pet-friendly-body {
  	padding: 10px 20px;
	}
	.pet-friendly-body h2 {
		font-size: 1.3rem;
	}
}

/*# sourceMappingURL=style.css.map */