:root {
  --primary-HIGHLIGHT: hsl(19, 84%, 51%);
  --primary-h: 19;
  --primary-s: 84%;
  --primary-l: 51%;
  --lighten-percentage: 16%;
  --darken-percentage: 8%;
  --primary: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
  --primary-dark: hsl(
    var(--primary-h),
    var(--primary-s),
    calc(var(--primary-l) - var(--darken-percentage))
  );
  --primary-light: hsl(
    var(--primary-h),
    var(--primary-s),
    calc(var(--primary-l) + var(--lighten-percentage))
  );
  --secondary-HIGHLIGHT: hsl(0, 0%, 83%);
  --secondary-h: 0;
  --secondary-s: 0%;
  --secondary-l: 83%;
  --secondary: hsl(var(--secondary-h), var(--secondary-s), var(--secondary-l));
  --secondary-dark: hsl(
    var(--secondary-h),
    var(--secondary-s),
    calc(var(--secondary-l) - var(--darken-percentage))
  );
  --secondary-light: hsl(
    var(--secondary-h),
    var(--secondary-s),
    calc(var(--secondary-l) + var(--lighten-percentage))
  );
  --linear-gradient: linear-gradient(
    180deg,
    var(--primary) 5%,
    var(--primary-light) 20%,
    var(--primary-light) 60%,
    var(--primary) 90%
  );
  --dark: #131313;
  --light: #f1f3f6;
  --text-on-dark: #939393;
  --text-on-light: #444;
  --transparent-on-dark: rgba(255, 255, 255, 0.8);
  --white: #ffffff;
  --black: #000000;
  --transition-fast: 0.2s all;
  --transition-medium: 0.3s all;
  --transition-slow: 0.4s all;
  --font-primary: "Inter", sans-serif;
  --font-heading: "League Spartan", sans-serif;
  --weight-light: 300;
  --weight-regular: 400;
  --weight-bold: 800;
  --border-radius: 8px;
}

@media (max-width: 576px) {
  ::-webkit-scrollbar {
    height: 9px;
    background-color: #f5f5f5;
  }
  /* Track */
  ::-webkit-scrollbar-track {
    background-color: #f5f5f5;
  }
  /* Handle */
  ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: rgb(207, 207, 207);
  }
}
::-moz-selection {
  color: #fff;
  background: var(--primary);
}
::selection {
  color: #fff;
  background: var(--primary);
}

*:focus {
  outline: 1px var(--primary);
}

*:focus-visible {
  outline: 1px var(--primary) !important;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-primary);
  background: var(--white);
  color: var(--dark);
}

img {
  display: block;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

.hxxl,
.hxl,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  line-height: 1.2;
  margin-bottom: 0.35em;
}

.hxxl {
  font-size: clamp(3.568rem, 12px + 6.125vw, 8rem);
}

.hxl {
  font-size: clamp(3.568rem, 12px + 4.85vw, 6.943rem);
}

h1,
.h1 {
  font-size: clamp(3.188rem, 12px + 4.125vw, 4.313rem);
  font-weight: var(--weight-bold);
}

h2,
.h2 {
  font-size: clamp(2.625rem, 12px + 3vw, 3.375rem);
  font-weight: var(--weight-bold);
}

h3,
.h3 {
  font-size: clamp(1.808rem, 12px + 2.25vw, 2.813rem);
  font-weight: var(--weight-bold);
}

h4,
.h4 {
  font-size: clamp(1.875rem, 12px + 1.5vw, 2.25rem);
}

strong {
  font-weight: var(--weight-bold);
}

a {
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

ul {
  padding: 0;
  list-style-type: none;
}

section,
header {
  position: relative;
  z-index: 0;
}

section {
  padding: 3.75rem 0;
}
@media (min-width: 768px) {
  section {
    padding: 7rem 0;
  }
}

.custom-container {
  position: relative;
  width: clamp(90%, 100% - 12vw, 100% - 12vw);
  max-width: 1200px;
  margin-inline: auto;
}

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

.secondary {
  color: var(--secondary);
}

.btn {
  display: inline-block;
  position: relative;
  padding: 0.8rem 2.5rem;
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: var(--border-radius);
}
@media (max-width: 575.98px) {
  .btn {
    padding: 0.7rem 1.4rem;
  }
}
.btn:focus {
  outline: 1px var(--primary);
}

.primary-btn, .contact-01 .map a.way-btn {
  background: var(--primary);
  color: var(--white);
  -webkit-box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  -webkit-animation-name: order-btn-move;
          animation-name: order-btn-move;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.primary-btn:hover, .contact-01 .map a.way-btn:hover, .primary-btn:focus, .contact-01 .map a.way-btn:focus {
  color: var(--white);
  background: var(--primary-dark);
}

.secondary-btn {
  color: var(--black);
  background: var(--light);
  font-weight: bold;
  font-size: 1.1rem;
}
.secondary-btn:hover, .secondary-btn:focus {
  color: var(--black);
}

.header-absolute-content {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}
@media (max-width: 575.98px) {
  .header-absolute-content {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

.online-status {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgb(240, 240, 240);
  -webkit-box-shadow: 0 20px 20px -15px;
          box-shadow: 0 20px 20px -15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 575.98px) {
  .online-status {
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.online-status.dark {
  background: #242424;
}
.online-status.transparent {
  background: transparent;
  text-shadow: 0 0px 10px rgb(0, 0, 0);
  padding: 0;
}
.online-status.transparent.open {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.online-status.closed {
  color: #f76666;
}
.online-status.closed .online-status-bullet {
  display: none;
}
.online-status.open {
  color: #1aa415;
}
.online-status.open .online-status-bullet {
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
}
.online-status.open .online-status-bullet .online-status-bullet-fill {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background-color: #1aa415;
  -webkit-box-shadow: 0 0 0 4px rgba(16, 128, 65, 0.25);
          box-shadow: 0 0 0 4px rgba(16, 128, 65, 0.25);
  -webkit-animation: flash 2s infinite;
          animation: flash 2s infinite;
}
.online-status .online-status-content {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.online-status .online-status-content i {
  margin-right: 0.5rem;
}

.skeleton-box {
  display: inline-block;
  height: 1em;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  margin: 0;
}
.skeleton-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(190, 190, 190, 0)), color-stop(20%, rgba(190, 190, 190, 0.2)), color-stop(60%, rgba(190, 190, 190, 0.5)), to(rgba(190, 190, 190, 0)));
  background-image: linear-gradient(90deg, rgba(190, 190, 190, 0) 0, rgba(190, 190, 190, 0.2) 20%, rgba(190, 190, 190, 0.5) 60%, rgba(190, 190, 190, 0));
  -webkit-animation: shimmer 2s infinite;
          animation: shimmer 2s infinite;
  content: "";
}

.header-btns {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .header-btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    grid-template-columns: auto auto;
    grid-template-rows: 1fr;
    margin: 0;
  }
}

@-webkit-keyframes circle-in-center {
  from {
    -webkit-clip-path: circle(0%);
            clip-path: circle(0%);
  }
  to {
    -webkit-clip-path: circle(125%);
            clip-path: circle(125%);
  }
}

@keyframes circle-in-center {
  from {
    -webkit-clip-path: circle(0%);
            clip-path: circle(0%);
  }
  to {
    -webkit-clip-path: circle(125%);
            clip-path: circle(125%);
  }
}
[transition-style="in:circle:center"] {
  -webkit-animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1) circle-in-center both;
          animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1) circle-in-center both;
}

@-webkit-keyframes shimmer {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes shimmer {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.05;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.05;
  }
  100% {
    opacity: 1;
  }
}
#preloader {
  background: var(--dark);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 99999;
  overflow: hidden;
  color: #fff;
}
#preloader img.logo {
  width: 80%;
  max-width: 110px;
  margin-bottom: 20px;
}
#preloader p {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
#preloader .jumper {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
}
#preloader .jumper > div {
  background: #fff;
  border-radius: 100%;
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: jumper 3s 0s linear infinite;
          animation: jumper 3s 0s linear infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
#preloader .jumper > div:nth-child(2) {
  -webkit-animation-delay: 0.33333s;
          animation-delay: 0.33333s;
}
#preloader .jumper > div:nth-child(3) {
  -webkit-animation-delay: 0.66666s;
          animation-delay: 0.66666s;
}

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

@keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.header-03 {
  position: fixed;
  width: 100%;
  padding: 0.5rem 0;
  z-index: 10;
}
@media (min-width: 992px) {
  .header-03 {
    height: 80px;
  }
}
.header-03::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--dark);
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
          box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
}
@media (min-width: 992px) {
  .header-03::before {
    background: var(--dark);
    opacity: 0;
  }
}
.header-03 .navbar-nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 992px) {
  .header-03 .navbar-nav {
    margin-left: 4rem;
  }
}
.header-03 .navbar-nav .nav-link {
  padding: 0;
  margin-bottom: 1.1rem;
  min-width: 50%;
  text-align: center;
}
@media (min-width: 992px) {
  .header-03 .navbar-nav .nav-link {
    margin: 0 0.2rem;
    min-width: unset;
  }
}
.header-03 .navbar-nav .nav-link.order {
  min-width: unset;
}
.header-03 .navbar-nav .nav-link a {
  position: relative;
  display: block;
  margin: 0.2rem 1rem;
  color: #fff;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.06rem;
}
@media (min-width: 992px) {
  .header-03 .navbar-nav .nav-link a {
    color: #fff;
    font-size: 1.2rem;
  }
  .header-03 .navbar-nav .nav-link a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 50%;
    background: var(--primary);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: var(--transition-medium);
    transition: var(--transition-medium);
  }
  .header-03 .navbar-nav .nav-link a:hover::after, .header-03 .navbar-nav .nav-link a:focus::after {
    width: 105%;
  }
}
.header-03 .navbar-nav .nav-link.social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0.3rem 0 0.8rem;
}
@media (min-width: 992px) {
  .header-03 .navbar-nav .nav-link.social {
    margin: 0;
    margin-left: 1rem;
  }
}
.header-03 .navbar-nav .nav-link.social a {
  display: inline;
  font-size: 2.1rem;
  font-weight: 400;
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
}
@media (min-width: 992px) {
  .header-03 .navbar-nav .nav-link.social a {
    margin: 0;
    font-size: 2rem;
  }
  .header-03 .navbar-nav .nav-link.social a:nth-of-type(2) {
    margin-left: 10px;
  }
}
.header-03 .navbar-nav .nav-link.social a::after {
  display: none;
}
.header-03 .navbar-nav .nav-link.social a:hover, .header-03 .navbar-nav .nav-link.social a:focus {
  opacity: 0.8;
}
.header-03 .brand-logo {
  position: relative;
  width: 65px;
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
}
@media (min-width: 992px) {
  .header-03 .brand-logo {
    top: 0;
    width: 120px;
    opacity: 0;
    pointer-events: none;
  }
}
.header-03 .brand-logo img {
  width: 100%;
  -webkit-filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.6));
          filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.6));
}
.header-03 .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.header-03 .order-section {
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
}
@media (max-width: 991.98px) {
  .header-03 .order-section {
    text-align: center;
    opacity: 1;
    visibility: visible;
    margin-bottom: 1rem;
  }
}
.header-03 .order-section .primary-btn, .header-03 .order-section .contact-01 .map a.way-btn, .contact-01 .map .header-03 .order-section a.way-btn {
  font-size: 1rem;
  padding: 0.8rem 1.8rem;
}
@media (min-width: 992px) {
  .header-03.sticky::before {
    opacity: 1;
  }
}
.header-03.sticky .navbar-nav .nav-link a {
  color: #fff;
}
.header-03.sticky .navbar-nav .nav-link.order a {
  background-color: var(--primary);
  margin: 0;
  padding: 0.2rem 1rem;
  color: #fff;
  border-radius: 5px;
}
.header-03.sticky .navbar-nav .nav-link.order a::after {
  display: none;
}
.header-03.sticky .navbar-nav .nav-link.order a:hover, .header-03.sticky .navbar-nav .nav-link.order a:focus {
  background-color: var(--primary-dark);
}
.header-03.sticky .navbar-nav .nav-link.social a:hover, .header-03.sticky .navbar-nav .nav-link.social a:focus {
  opacity: 0.65;
}
.header-03.sticky .brand-logo {
  pointer-events: all;
  opacity: 1;
}
.header-03.sticky .order-section {
  opacity: 1;
  visibility: visible;
}
.header-03 .navbar-toggler {
  border: none;
  padding-right: 1.5rem;
  z-index: 1;
}
.header-03 .navbar-toggler:hover, .header-03 .navbar-toggler:focus, .header-03 .navbar-toggler:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.hero-01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 96vh;
  height: 100%;
  background: url("../components/heroes/01/images/hero-background.jpg") center/cover;
  text-align: center;
  padding: 5rem 0;
  overflow: hidden;
}
@media (min-width: 992px) {
  .hero-01 {
    padding: 0;
    min-height: 100vh;
  }
}
.hero-01::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}
.hero-01 h1 {
  color: var(--light);
}
.hero-01 .logo {
  max-height: 280px;
  width: auto;
  max-width: 80%;
  margin-bottom: 1.5rem;
  -webkit-filter: drop-shadow(0 0 5px rgb(0, 0, 0));
          filter: drop-shadow(0 0 5px rgb(0, 0, 0));
}
@media (min-width: 576px) {
  .hero-01 .logo {
    max-height: 350px;
    max-width: 450px;
    margin-bottom: 2rem;
  }
}
.hero-01 .description {
  width: 90%;
  max-width: 55ch;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: #fff;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
@media (min-width: 576px) {
  .hero-01 .description {
    margin-bottom: 2.2rem;
  }
}
@media (min-width: 1200px) {
  .hero-01 .description {
    font-size: 1.3rem;
  }
}

.apps-05 {
  background: transparent;
  background-image: url("../components/apps/05/images/background.jpg");
  background-size: cover;
  color: #fff;
}
@media (max-width: 767.98px) {
  .apps-05 {
    overflow: hidden;
  }
}
.apps-05 .card {
  position: relative;
  padding: 3rem;
  text-align: center;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  background-color: rgba(15, 15, 15, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3rem;
  -webkit-box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.5);
}
@media (max-width: 575.98px) {
  .apps-05 .card {
    width: 100%;
    padding: 1.7rem 1rem;
    border-radius: 1rem;
  }
}
.apps-05 .card::before {
  position: absolute;
  content: "";
  width: 110px;
  height: 118px;
  border-radius: 50%;
  left: -1rem;
  top: -3rem;
  background: rgba(127, 127, 127, 0);
  background-image: none;
  background-size: auto;
  background-image: radial-gradient(#4d4d4d 33%, transparent 33%);
  background-size: 7px 7px;
  -webkit-filter: drop-shadow(50px 20px 0 rgba(77, 77, 77, 0.5));
          filter: drop-shadow(50px 20px 0 rgba(77, 77, 77, 0.5));
}
.apps-05 .card::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 100px;
  border-radius: 50%;
  right: -1.2rem;
  bottom: -2rem;
  background: rgba(127, 127, 127, 0);
  background-image: none;
  background-size: auto;
  background-image: radial-gradient(var(--primary-dark) 33%, transparent 33%);
  background-size: 7px 7px;
  -webkit-filter: drop-shadow(50px -20px 0 rgba(77, 77, 77, 0.5));
          filter: drop-shadow(50px -20px 0 rgba(77, 77, 77, 0.5));
}
@media (max-width: 767.98px) {
  .apps-05 .card::after, .apps-05 .card::before {
    width: 60px;
    height: 70px;
  }
}
@media (max-width: 575.98px) {
  .apps-05 .card::after, .apps-05 .card::before {
    display: none;
  }
}
.apps-05 .card .caption {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
}
.apps-05 .card h2 {
  margin-bottom: 1rem;
}
.apps-05 .card p {
  color: #fff;
  opacity: 0.7;
}
.apps-05 .button-group {
  width: 500px;
  margin: 2rem auto 0;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.apps-05 .button-group a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.apps-05 .button-group a:nth-child(1) {
  margin-right: 1.5rem;
}
.apps-05 .button-group a:nth-child(2) img {
  border: 2px solid black;
  border-radius: 5px;
}
.apps-05 .button-group a img {
  width: 150px;
}

.about-02 {
  position: relative;
  background: var(--light);
  color: var(--dark);
  overflow: hidden;
}
@media (min-width: 768px) {
  .about-02 {
    text-align: left;
  }
}
.about-02 .about-content {
  max-width: 55ch;
}
.about-02 .about-content h2 span {
  color: var(--primary);
}
.about-02 .about-content p {
  font-size: 1.05rem;
}
@media (min-width: 576px) {
  .about-02 .about-content p {
    font-size: 1.1rem;
  }
}
.about-02 .about-content p.desc {
  font-size: 1.5rem;
  font-weight: 600;
}
@media (min-width: 576px) {
  .about-02 .about-content p.desc {
    font-size: 1.3rem;
  }
}
.about-02 .about-content a {
  color: var(--dark);
  border-bottom: 2px dashed var(--primary);
}
.about-02 .about-content a:hover {
  color: var(--primary-dark);
}
.about-02 img.clipped {
  display: block;
  max-width: 100%;
  margin: 3rem auto 0;
}
@media (min-width: 576px) {
  .about-02 img.clipped {
    max-width: 90%;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .about-02 img.clipped {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    -webkit-clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    max-width: 800px;
    width: 40%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.foodList-02 {
  background: url("../components/foodLists/02/images/background.jpg");
  background-position: center;
  padding: 0;
  color: var(--light);
}
.foodList-02 .foodlist__wrapper {
  margin: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  position: relative;
  padding-bottom: 2.5rem;
}
.foodList-02 #foodlist__heading {
  background: none;
  padding: 2rem 0;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__heading {
    padding: 3rem 0;
  }
}
.foodList-02 #foodlist__heading h2 {
  margin: 0;
  text-align: center;
}
.foodList-02 #foodlist__heading .foodlist__order {
  position: relative;
  padding: 0 0.6rem;
  margin: 0;
  font-size: 1.1rem;
  text-align: center;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__heading .foodlist__order {
    font-size: 1.2rem;
  }
}
.foodList-02 #foodlist__heading .foodlist__order a {
  color: var(--primary-dark);
  font-weight: bold;
}
.foodList-02 #foodlist__heading .foodlist__order a i {
  margin-left: 0.2rem;
  font-size: 1.1rem;
  -webkit-transition: var(--transition-slow);
  transition: var(--transition-slow);
}
.foodList-02 #foodlist__heading .foodlist__order a:hover i {
  -webkit-transform: translateX(0.5rem);
          transform: translateX(0.5rem);
}
.foodList-02 #foodlist__categories {
  position: sticky;
  top: var(--scroll-padding);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  overflow-x: scroll;
  padding: 0.6rem 0;
  margin: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2), 0 5px 9px -5px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2), 0 5px 9px -5px rgba(0, 0, 0, 0.3);
}
.foodList-02 #foodlist__categories:hover {
  cursor: -webkit-grab;
  cursor: grab;
}
.foodList-02 #foodlist__categories:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__categories {
    position: relative;
    top: unset;
    background: rgba(0, 0, 0, 0.3);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow-x: unset;
    padding: 1rem 0;
    -webkit-box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2);
            box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2);
    margin: 0;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .foodList-02 #foodlist__categories:hover {
    cursor: default;
  }
  .foodList-02 #foodlist__categories:active {
    cursor: default;
  }
}
.foodList-02 #foodlist__categories .foodlist__categories__item {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0.3rem 1rem;
  margin: 0.45rem;
  border-radius: 5px;
  background: #fff;
  font-size: 1rem;
  cursor: pointer;
  -webkit-box-shadow: 0 3px 10px rgba(66, 0, 0, 0.15);
          box-shadow: 0 3px 10px rgba(66, 0, 0, 0.15);
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__categories .foodlist__categories__item {
    padding: 0.45rem 1.9rem;
  }
}
.foodList-02 #foodlist__categories .foodlist__categories__item:hover, .foodList-02 #foodlist__categories .foodlist__categories__item:focus {
  -webkit-box-shadow: 0 3px 20px rgba(66, 0, 0, 0.25);
          box-shadow: 0 3px 20px rgba(66, 0, 0, 0.25);
}
.foodList-02 #foodlist__categories .foodlist__categories__item.selected {
  background: var(--primary);
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  color: #fff;
}
.foodList-02 #foodlist__content {
  position: relative;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr;
  padding: 1.8rem 1.3rem;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .foodList-02 #foodlist__content {
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem;
    padding: 3rem 2rem 2rem;
  }
}
.foodList-02 #foodlist__content h3 {
  position: relative;
  grid-column: span 1;
  justify-self: center;
  margin-bottom: 0.7rem;
  font-size: 1.9rem;
  font-weight: var(--weight-regular);
  font-family: var(--font-primary);
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content h3 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .foodList-02 #foodlist__content h3 {
    grid-column: span 2;
    margin-bottom: 2rem;
    font-size: 2.1rem;
  }
}
.foodList-02 #foodlist__content h3::before, .foodList-02 #foodlist__content h3::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 2px;
  background: var(--primary);
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content h3::before, .foodList-02 #foodlist__content h3::after {
    width: 3.5rem;
  }
}
.foodList-02 #foodlist__content h3::before {
  left: -3rem;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content h3::before {
    left: -5rem;
  }
}
.foodList-02 #foodlist__content h3::after {
  right: -3rem;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content h3::after {
    right: -5rem;
  }
}
.foodList-02 #foodlist__content .item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  margin-bottom: 0.3rem;
  -webkit-animation: itemFade 1s forwards;
          animation: itemFade 1s forwards;
  border-bottom: 1.15px solid rgba(0, 0, 0, 0.1);
}
.foodList-02 #foodlist__content .item-list__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 75%;
          flex: 1 0 75%;
  margin-bottom: 0.2rem;
  padding-right: 0.5rem;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content .item-list__content {
    padding-right: 1rem;
  }
}
.foodList-02 #foodlist__content .item-list__content__name {
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
  font-weight: 600;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content .item-list__content__name {
    font-size: 1.2rem;
  }
}
.foodList-02 #foodlist__content .item-list__content__ingredients {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content .item-list__content__ingredients {
    font-size: 1rem;
  }
}
.foodList-02 #foodlist__content .item-list__content__allergens {
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
  opacity: 0.6;
  line-height: 1.2;
}
.foodList-02 #foodlist__content .item-list__content__price {
  margin-top: auto;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: var(--weight-bold);
  font-family: var(--font-heading);
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content .item-list__content__price {
    font-size: 1.5rem;
  }
}
.foodList-02 #foodlist__content .item-list__image {
  margin-bottom: 8px;
}
.foodList-02 #foodlist__content .item-list__image a {
  height: 80px;
  width: 80px;
  display: block;
}
.foodList-02 #foodlist__content .item-list__image a img {
  max-width: 100%;
  border-radius: 0.3rem;
  -webkit-filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.2));
}
.foodList-02 #loading {
  position: relative;
  text-align: center;
  padding: 40px 0 20px;
  grid-column: span 2;
  font-size: 1.1rem;
}
.foodList-02 #loading:before {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 10px;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #333;
  -webkit-animation: spinner 0.6s linear infinite;
          animation: spinner 0.6s linear infinite;
  font-style: italic;
}

.foodList-02 {
  background-size: cover;
  background-attachment: fixed;
}
.foodList-02 ::-webkit-scrollbar {
  height: 9px;
  background-color: rgba(0, 0, 0, 0.1);
}
.foodList-02 ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.4);
          box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.4);
  background-color: rgba(0, 0, 0, 0.1);
}
.foodList-02 ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.3);
}
.foodList-02 #foodlist__heading .foodlist__order a {
  color: var(--primary);
}
.foodList-02 #foodlist__categories {
  background: rgba(0, 0, 0, 0.95);
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__categories {
    background: rgba(0, 0, 0, 0.3);
  }
}
.foodList-02 #foodlist__categories .foodlist__categories__item {
  background: rgba(73, 73, 73, 0.8);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.foodList-02 #foodlist__categories .foodlist__categories__item:hover, .foodList-02 #foodlist__categories .foodlist__categories__item:focus {
  background: rgba(82, 82, 82, 0.9);
}
.foodList-02 #foodlist__categories .foodlist__categories__item.selected {
  color: var(--light);
  background: var(--primary);
}
.foodList-02 #foodlist__content .item-list {
  border-bottom: 1.15px solid rgba(230, 230, 230, 0.2);
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes itemFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes itemFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.gallery-04 {
  text-align: center;
  position: relative;
  z-index: 0;
  background: var(--light);
}
.gallery-04 h2 {
  color: var(--dark);
  margin-bottom: 3rem;
}
.gallery-04 h2 span {
  color: var(--primary);
}
.gallery-04 .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
}
@media (max-width: 991.98px) {
  .gallery-04 .gallery-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767.98px) {
  .gallery-04 .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.gallery-04 .gallery-grid a {
  aspect-ratio: 1/1;
}
.gallery-04 .gallery-grid a:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.gallery-04 .gallery-grid a img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
}

.contact-01 {
  background: url("../components/contacts/01/images/background.jpg") center/cover;
  overflow: hidden;
}
.contact-01 .card {
  background: #fff;
  padding: 25px;
  position: relative;
  text-align: left;
  border-radius: 5px;
  height: 100%;
  -webkit-box-shadow: 0px 15px 20px -5px rgba(0, 0, 0, 0.15), 0 0 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 15px 20px -5px rgba(0, 0, 0, 0.15), 0 0 3px rgba(0, 0, 0, 0.15);
}
.contact-01 .card h2 {
  margin-bottom: 1.5rem;
  color: var(--dark);
  font-weight: var(--weight-bold);
  text-align: center;
  text-transform: uppercase;
}
.contact-01 .card.info {
  position: relative;
  padding: 25px;
  color: var(--dark);
}
.contact-01 .card.info p,
.contact-01 .card.info a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row, nowrap;
          flex-flow: row, nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
  color: var(--dark);
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  .contact-01 .card.info p,
  .contact-01 .card.info a {
    font-size: 1.2rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.contact-01 .card.info p i,
.contact-01 .card.info a i {
  margin-right: 10px;
}
.contact-01 .card.info p i::before,
.contact-01 .card.info a i::before {
  display: inline-block;
  width: 2rem;
  font-size: 1.4rem;
  color: var(--primary);
  text-align: center;
}
.contact-01 .card.info p i.fa-facebook-square::before,
.contact-01 .card.info a i.fa-facebook-square::before {
  font-size: 1.65rem;
}
.contact-01 .card.info a.phone {
  font-weight: var(--weight-bold);
}
.contact-01 .card.info a:hover {
  color: var(--primary);
}
.contact-01 .card.info a span {
  line-height: 1.3;
  border-bottom: 2px dashed var(--primary);
}
.contact-01 .card.business-hours li {
  padding: 0 0.3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--dark);
  font-size: 1.1rem;
  line-height: 2rem;
}
.contact-01 .card.business-hours li span {
  float: right;
}
.contact-01 .card.business-hours li:last-child {
  border-bottom: none;
}
.contact-01 .card.business-hours li.today {
  background: rgba(0, 0, 0, 0.1);
  font-weight: var(--weight-bold);
}
.contact-01 .card.business-hours p.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0 0.5rem;
  margin: 0;
  font-size: 0.9rem;
}
@media (min-width: 576px) {
  .contact-01 .card.business-hours p.info {
    font-size: 1rem;
  }
}
.contact-01 .card.business-hours p.info i {
  margin: 0.1rem 0.5rem 0 0;
  opacity: 0.8;
  font-size: 1rem;
}
@media (min-width: 576px) {
  .contact-01 .card.business-hours p.info i {
    margin-top: 0.2rem;
    font-size: 1.1rem;
  }
}
.contact-01 .map {
  position: relative;
  height: 100%;
  min-height: 300px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0px 15px 20px -5px rgba(0, 0, 0, 0.15), 0 0 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 15px 20px -5px rgba(0, 0, 0, 0.15), 0 0 3px rgba(0, 0, 0, 0.15);
}
.contact-01 .map a.way-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.footer-01 {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
.footer-01 .info {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #292929;
}
.footer-01 .info p strong {
  font-size: 1.1rem;
}
.footer-01 p {
  margin-bottom: 0;
}
.footer-01 a {
  color: var(--light);
  border-bottom: 2px dashed var(--primary);
  font-weight: 600;
}

.arrow-to-top.arrow-01 {
  cursor: pointer;
  pointer-events: none;
  position: fixed;
  text-align: center;
  z-index: 100;
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
  right: 40px;
  bottom: 10px;
  opacity: 0;
}
@media (max-width: 575.98px) {
  .arrow-to-top.arrow-01 {
    right: 0;
  }
}
.arrow-to-top.arrow-01.show {
  opacity: 1;
  pointer-events: all;
  bottom: 40px;
}
@media (max-width: 575.98px) {
  .arrow-to-top.arrow-01.show {
    bottom: 20px;
  }
}
.arrow-to-top.arrow-01 a {
  text-decoration: none;
  padding: 5px 12px;
  color: var(--white);
  background: var(--primary);
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
  border-radius: 8px;
  font-size: 1.2rem;
  display: inline-block;
}
.arrow-to-top.arrow-01 a i {
  -webkit-transition: var(--transition-fast);
  transition: var(--transition-fast);
}
.arrow-to-top.arrow-01 a:hover {
  background: var(--primary-dark);
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
}
.arrow-to-top.arrow-01 a:hover i {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
@media (max-width: 575.98px) {
  .arrow-to-top.arrow-01 a:hover {
    background: var(--primary);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .arrow-to-top.arrow-01 a:hover i {
    -webkit-transform: none;
            transform: none;
  }
}

.popup {
  z-index: 1000;
  height: 100%;
  width: 100%;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  padding: 30px;
  display: none;
}
.popup.only-image .popup__body {
  padding: 0;
  background-color: transparent;
  overflow: unset;
}
.popup.only-image .close-btn {
  background-color: var(--light);
  color: var(--dark);
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  top: -15px;
  right: -15px;
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.popup__body {
  height: auto;
  width: auto;
  max-height: 90%;
  background: #fff;
  color: #000;
  border-radius: 5px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 2rem;
  overflow: auto;
}
@media (max-width: 575.98px) {
  .popup__body {
    width: 90%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
.popup__body img {
  display: block;
  max-height: 60vh;
  max-width: 100%;
  margin: auto auto;
}
.popup__body p {
  color: var(--dark);
  max-width: 500px;
  text-align: center;
  margin-inline: auto;
}
.popup__body a {
  text-decoration: none;
}
.popup__body .close-btn {
  color: var(--dark);
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 2rem;
  cursor: pointer;
}

#popover {
  position: fixed;
  bottom: 0.5rem;
  left: 0.5rem;
  z-index: 150;
  max-width: 35vw;
  padding: 0.75rem 1rem;
  background-color: rgba(241, 243, 246, 0.8);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  opacity: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767.98px) {
  #popover {
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  #popover {
    right: 0.5rem;
  }
}
#popover.slide-in {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#popover .popover-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#popover .popover-header .popover-heading {
  font-size: 1.2rem;
  margin-bottom: 0;
  margin-right: 2rem;
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
}
@media (max-width: 575.98px) {
  #popover .popover-header .popover-heading {
    font-size: 1rem;
  }
}
#popover .popover-close-button {
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 2.75rem;
  font-size: 1.1rem;
  cursor: pointer;
}
#popover .popover-content {
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  #popover .popover-content {
    font-size: 0.875rem;
  }
}/*# sourceMappingURL=style.css.map */