@charset "UTF-8";
/*
Theme Name: Lokal Client Theme
Theme URI: https://lokalhq.com
Author: Lokal
Author URI: https://lokalhq.com
Author Email: info@lokalhq.com
Description: A WordPress block theme based on FrostWP
Version: 0.9
Template: lokal-base-theme
Text Domain: lokal-client-theme
Tags: block-patterns, block-styles, full-site-editing, style-variations, template-editing
*/
/* Table of Contents
------------------------------------------------------------------------------------------------
1. Navigation
2. Buttons & Forms
3. Utilities
4. Type 
5. Lists & Bullets
6. Rank Math SEO
*/
/* 
-------------------------------------------------------------------------------------------------
1. Navigation
------------------------------------------------------------------------------------------------
*/
.site-header {
  background-color: var(--wp--preset--color--base);
  box-shadow: 0 0 1.2rem 0 rgba(0, 0, 0, 0.12);
  position: sticky;
  top: 0;
  z-index: 10;
}

@media (min-width: 1200px) {
  .headroom {
    will-change: transform;
    transition: transform 200ms linear;
  }
  .headroom--pinned {
    transform: translateY(0%);
  }
  .headroom--unpinned {
    transform: translateY(-100%);
  }
}
.site-header .wp-block-button__link,
.site-header .wp-element-button {
  font-size: var(--wp--preset--font-size--x-small);
}
@media only screen and (max-width: 600px) {
  .site-header .has-global-padding {
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
  }
}
.site-header .wp-block-navigation__responsive-container.is-menu-open {
  background: var(--wp--preset--color--primary) !important;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: var(--wp--preset--spacing--x-small);
}
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
  padding-top: 56px;
  gap: 0 !important;
}

@media (max-width: 600px) {
  .custom-logo-link {
    width: 160px !important;
    flex: 0 0 160px !important;
  }
}

.wp-block-navigation__responsive-container-close,
.wp-block-navigation__responsive-container-open {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--base);
  width: 72px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.wp-block-navigation__responsive-container-open {
  position: relative;
}
.wp-block-navigation__responsive-container-open svg {
  fill: var(--wp--preset--color--primary);
}
.wp-block-navigation__responsive-container-open::after {
  content: "Menu";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  font-size: 14px;
  color: inherit;
}

@media only screen and (max-width: 600px) {
  .wp-block-navigation-item {
    width: 100% !important;
  }
}
@media only screen and (max-width: 600px) {
  .wp-block-navigation-item a {
    padding: 8px 16px !important;
    width: 100%;
    border-bottom: 1px solid var(--wp--preset--color--neutral);
  }
}

.wp-block-navigation__submenu-container {
  padding: 0 !important;
  width: 100% !important;
}

.wp-block-navigation__submenu-icon svg {
  stroke: var(--wp--preset--color--secondary) !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation-submenu {
  background: var(--wp--preset--color--primary) !important;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation-submenu a {
  color: var(--wp--preset--color--base);
}

@media only screen and (max-width: 600px) {
  .wp-block-navigation__container {
    width: 100% !important;
  }
  .wp-block-navigation__container li.has-child > a {
    position: relative;
  }
  .wp-block-navigation__container li.has-child > a::after {
    content: "̶";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
  }
  .wp-block-navigation__container li.has-child:has(.hidden-submenu) > a::after {
    content: "+";
  }
}

@media only screen and (min-width: 601px) {
  .site-header .wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
    background-color: var(--wp--preset--color--primary);
    border: 1px solid transparent !important;
    border-radius: 5px;
    overflow: hidden;
  }
}

.wp-block-navigation :where(.wp-block-navigation__submenu-container) a.wp-block-navigation-item__content {
  padding: 8px 16px;
}

.hidden-submenu {
  display: none !important;
}

.wp-block-column:not(.has-text-align-center) > .wp-block-separator {
  margin-left: 0;
}

/* 
-------------------------------------------------------------------------------------------------
2. Buttons & Forms
------------------------------------------------------------------------------------------------
*/
.wp-block-button__link,
.wp-element-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-block-button__link:has(img, picture) img,
.wp-block-button__link:has(img, picture) picture,
.wp-element-button:has(img, picture) img,
.wp-element-button:has(img, picture) picture {
  margin-right: 9px;
}

input.gform_button {
  background-color: var(--wp--preset--color--primary);
  border-width: 0;
  border-radius: 5px;
  color: var(--wp--preset--color--base);
  font-size: var(--wp--preset--font-size--small);
  font-weight: bold;
  cursor: pointer;
}
input.gform_button:focus {
  outline: none;
  background-color: var(--wp--preset--color--primary);
  box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.2);
}

form .address_line_2,
form .address_city,
form .address_state,
form .address_zip,
form .address_country {
  margin-bottom: 0 !important;
  position: unset;
  left: 0;
  height: 0;
  overflow: hidden;
}

.ginput_container input, .ginput_container textarea {
  border-color: var(--wp--preset--color--secondary);
  font-size: 16px;
  padding: 8px 12px !important;
}

.wp-block-button__link,
.wp-element-button {
  display: flex;
  align-items: center;
}

.wp-block-button__link:has(img, picture) img,
.wp-block-button__link:has(img, picture) picture,
.wp-element-button:has(img, picture) img,
.wp-element-button:has(img, picture) picture {
  margin-right: 9px;
}

/* 
-------------------------------------------------------------------------------------------------
3. Utilities
------------------------------------------------------------------------------------------------
*/
@media only screen and (min-width: 601px) {
  .is-style-hidden-desktop {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .wp-block-columns:has(> .wp-block-column:first-child:nth-last-child(2) + .wp-block-column > .wp-block-image) {
    display: flex;
    flex-direction: column-reverse;
  }
}
.wp-block-group.alignfull.has-background + .wp-block-group.alignfull.has-background {
  margin-top: 0 !important;
}

@media only screen and (max-width: 600px) {
  .flex-end-mobile {
    justify-content: flex-end !important;
  }
  .flex-start-mobile {
    justify-content: flex-start !important;
  }
  .space-around-mobile {
    justify-content: space-around !important;
  }
  .space-between-mobile {
    justify-content: space-between !important;
  }
}
.z-index-2 {
  z-index: 2;
  position: relative;
}

.wp-block-column:has(.card-link) {
  position: relative;
}
.wp-block-column:has(.card-link) .card-link > a {
  z-index: 2;
  text-decoration: none;
}
.wp-block-column:has(.card-link) .card-link > a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: auto;
}
.wp-block-column:has(.card-link) .card-link > a:hover {
  color: var(--wp--preset--color--secondary);
}
.wp-block-column:has(.card-link) .wp-block-group {
  position: unset;
}

.transform-y-48 {
  transform: translateY(-48px);
  z-index: 1;
}

/* 
-------------------------------------------------------------------------------------------------
4. Type
-------------------------------------------------------------------------------------------------
*/
a {
  text-underline-offset: 2px;
}

.entry-content > .wp-block-heading,
.entry-content > h2,
.entry-content > h3,
.entry-content > h4 {
  margin-top: clamp(40px, 5vw, 80px);
}
.entry-content > .wp-block-heading + .wp-block-heading,
.entry-content > .wp-block-heading h2,
.entry-content > .wp-block-heading h3,
.entry-content > .wp-block-heading h4,
.entry-content > h2 + .wp-block-heading,
.entry-content > h2 h2,
.entry-content > h2 h3,
.entry-content > h2 h4,
.entry-content > h3 + .wp-block-heading,
.entry-content > h3 h2,
.entry-content > h3 h3,
.entry-content > h3 h4,
.entry-content > h4 + .wp-block-heading,
.entry-content > h4 h2,
.entry-content > h4 h3,
.entry-content > h4 h4 {
  margin-top: 32px;
}
.entry-content .wp-block-column .wp-block-heading,
.entry-content .wp-block-column h2,
.entry-content .wp-block-column h3,
.entry-content .wp-block-column h4,
.entry-content .wp-block-column > .wp-block-group .wp-block-heading,
.entry-content .wp-block-column > .wp-block-group h2,
.entry-content .wp-block-column > .wp-block-group h3,
.entry-content .wp-block-column > .wp-block-group h4 {
  margin-top: clamp(24px, 3vw, 60px);
}
.entry-content .wp-block-column .wp-block-heading:first-child,
.entry-content .wp-block-column h2:first-child,
.entry-content .wp-block-column h3:first-child,
.entry-content .wp-block-column h4:first-child,
.entry-content .wp-block-column > .wp-block-group .wp-block-heading:first-child,
.entry-content .wp-block-column > .wp-block-group h2:first-child,
.entry-content .wp-block-column > .wp-block-group h3:first-child,
.entry-content .wp-block-column > .wp-block-group h4:first-child {
  margin-top: 0;
}
.entry-content .wp-block-column .wp-block-heading + .wp-block-heading,
.entry-content .wp-block-column .wp-block-heading + h2,
.entry-content .wp-block-column .wp-block-heading + h3,
.entry-content .wp-block-column .wp-block-heading + h4,
.entry-content .wp-block-column h2 + .wp-block-heading,
.entry-content .wp-block-column h2 + h2,
.entry-content .wp-block-column h2 + h3,
.entry-content .wp-block-column h2 + h4,
.entry-content .wp-block-column h3 + .wp-block-heading,
.entry-content .wp-block-column h3 + h2,
.entry-content .wp-block-column h3 + h3,
.entry-content .wp-block-column h3 + h4,
.entry-content .wp-block-column h4 + .wp-block-heading,
.entry-content .wp-block-column h4 + h2,
.entry-content .wp-block-column h4 + h3,
.entry-content .wp-block-column h4 + h4,
.entry-content .wp-block-column > .wp-block-group .wp-block-heading + .wp-block-heading,
.entry-content .wp-block-column > .wp-block-group .wp-block-heading + h2,
.entry-content .wp-block-column > .wp-block-group .wp-block-heading + h3,
.entry-content .wp-block-column > .wp-block-group .wp-block-heading + h4,
.entry-content .wp-block-column > .wp-block-group h2 + .wp-block-heading,
.entry-content .wp-block-column > .wp-block-group h2 + h2,
.entry-content .wp-block-column > .wp-block-group h2 + h3,
.entry-content .wp-block-column > .wp-block-group h2 + h4,
.entry-content .wp-block-column > .wp-block-group h3 + .wp-block-heading,
.entry-content .wp-block-column > .wp-block-group h3 + h2,
.entry-content .wp-block-column > .wp-block-group h3 + h3,
.entry-content .wp-block-column > .wp-block-group h3 + h4,
.entry-content .wp-block-column > .wp-block-group h4 + .wp-block-heading,
.entry-content .wp-block-column > .wp-block-group h4 + h2,
.entry-content .wp-block-column > .wp-block-group h4 + h3,
.entry-content .wp-block-column > .wp-block-group h4 + h4 {
  margin-top: 20px;
}
.entry-content .wp-block-column .wp-block-image + .wp-block-heading,
.entry-content .wp-block-column .wp-block-image + h2,
.entry-content .wp-block-column .wp-block-image + h3,
.entry-content .wp-block-column .wp-block-image + h4,
.entry-content .wp-block-column > .wp-block-group .wp-block-image + .wp-block-heading,
.entry-content .wp-block-column > .wp-block-group .wp-block-image + h2,
.entry-content .wp-block-column > .wp-block-group .wp-block-image + h3,
.entry-content .wp-block-column > .wp-block-group .wp-block-image + h4 {
  margin-top: 24px;
}
.entry-content .wp-block-column p,
.entry-content .wp-block-column > .wp-block-group p {
  margin-block-start: clamp(8px, 3vw, 18px);
}
.entry-content .wp-block-column p:first-child,
.entry-content .wp-block-column > .wp-block-group p:first-child {
  margin-block-start: 0;
}
.entry-content .wp-block-column p:first-child + h2, .entry-content .wp-block-column p:first-child h3, .entry-content .wp-block-column p:first-child h4,
.entry-content .wp-block-column > .wp-block-group p:first-child + h2,
.entry-content .wp-block-column > .wp-block-group p:first-child h3,
.entry-content .wp-block-column > .wp-block-group p:first-child h4 {
  margin-top: 32px;
}
.entry-content .wp-block-column ul + p,
.entry-content .wp-block-column ol + p,
.entry-content .wp-block-column > .wp-block-group ul + p,
.entry-content .wp-block-column > .wp-block-group ol + p {
  margin-top: 24px;
}
.entry-content mark {
  background: transparent;
}
.entry-content ul + ul,
.entry-content ul + ol, .entry-content ol + ul,
.entry-content ol + ol {
  margin-top: clamp(40px, 3vw, 60px);
}

/* 
-------------------------------------------------------------------------------------------------
5. Lists & Bullets
-------------------------------------------------------------------------------------------------
*/
ul.wp-block-list {
  list-style: disc outside;
  padding-left: 24px;
}
ul.wp-block-list li {
  margin: 0 0;
  padding-left: 8px;
}
ul.wp-block-list li::marker {
  color: var(--wp--preset--color--secondary);
  font-size: 1.3em;
}

ol.wp-block-list {
  counter-reset: list-counter;
  list-style: none;
  padding-left: clamp(42px, 3vw, 48px);
}
ol.wp-block-list li {
  position: relative;
  margin: 16px 0;
}
ol.wp-block-list li:before {
  content: counter(list-counter);
  counter-increment: list-counter;
  position: absolute;
  left: calc(clamp(42px, 3vw, 48px) * -1);
  top: 3px;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background: var(--wp--preset--color--secondary);
  border-radius: 50%;
  color: white;
  font-weight: bold;
  font-size: 16px;
}

ul.wp-block-list.is-style-pin-bullets {
  list-style: none;
  padding: 0;
  -moz-column-count: 2;
       column-count: 2;
  gap: clamp(6px, 3vw, 32px);
}
ul.wp-block-list.is-style-pin-bullets li {
  padding-left: 36px !important;
  margin: 0;
  margin-bottom: 12px;
  line-height: 1.333;
  min-height: 28px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  background-image: url("./img/map-pin.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: auto 28px;
}
ul.wp-block-list.is-style-pin-bullets li:before {
  content: "";
  display: none;
}

ul.wp-block-list.is-style-checkmark-bullets {
  list-style: none;
  padding-left: clamp(40px, 3vw, 45px);
}
ul.wp-block-list.is-style-checkmark-bullets > li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 0;
  line-height: 1.5;
}
ul.wp-block-list.is-style-checkmark-bullets > li:last-child {
  margin-bottom: 0;
}
ul.wp-block-list.is-style-checkmark-bullets > li::before {
  content: "✓";
  position: absolute;
  left: calc(clamp(40px, 3vw, 45px) * -1);
  top: 16px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp--preset--color--contrast);
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
}

/* 
-------------------------------------------------------------------------------------------------
6. Rank Math FAQ
-------------------------------------------------------------------------------------------------
*/
.rank-math-block {
  margin: 24px auto;
}

.rank-math-list-item {
  background: white;
  border: 1px solid var(--wp--preset--color--neutral);
  padding: 16px 32px;
  margin-bottom: 16px;
}

.rank-math-question {
  position: relative;
  display: block;
  padding: 24px 64px 24px 0;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}
.rank-math-question:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--wp--preset--color--secondary);
  border-bottom: 2px solid var(--wp--preset--color--secondary);
  transform: translateY(-75%) rotate(45deg);
  transition: transform 0.2s;
}

.rank-math-answer {
  display: none;
  padding: 0 0 24px 0;
}
.rank-math-answer p {
  font-size: 18px;
  margin-bottom: 16px;
}
.rank-math-answer a {
  text-decoration: underline;
}

.fcp-opened .rank-math-question:after {
  transform: translateY(-25%) rotate(-135deg);
}
.fcp-opened .rank-math-answer {
  display: block;
}/*# sourceMappingURL=style.css.map */