/*
Theme Name: Canyoningguides
Author: Schiemer Software GmbH
Author URI: https://schiemer-software.com/
Description: Canyoningguides Theme
Version: 2.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  src: url('fonts/Montserrat-VariableFont_wght.woff2') format('woff2');
}

* {
  font-family: 'Montserrat', sans-serif;
  /*outline: 1px solid #f00 !important;*/
}
:root {
  --white: #fff;
  --always-white: #fff;
  --very-light-grey: #EDEDED;
  --light-grey: #707070;
  --text-grey: #C1C1C1;
  --darker-grey: #868686;
  --black: #000;
  --always-black: #000;
  --grid-grey: #242424;
  --sponsors-white: #fcfeff;
  --main-color: #82d1cb;
  --main-color-filter: brightness(0) saturate(100%) invert(85%) sepia(42%) saturate(330%) hue-rotate(116deg) brightness(86%) contrast(89%);
  --logo-blue: #1970b7;
  --active-opacity: 0.3;


  --site-width: 1400px;
  --mobile-padding: 15px;

  --font-weight-bold: 700;
  --font-weight-semibold: 600;
  --font-weight-medium: 500;
  --font-weight-regular: 400;

  --footer-wrap-min-width: 200px;
}

html, body {
  position: relative;
  overflow-x: hidden;
}
html {
  margin: 0 !important;
}

p, a, i, li, b, span {
  font-weight: var(--font-weight-medium);
}

a {
  text-decoration: underline;
  color: var(--black);
}
figure {
  margin: 0;
}
.wp-block-group {
  display: flex;
}
.wp-block-buttons {
  display: flex;
  gap: 10px;
}
.wp-block-button a {
  display: flex;
  flex-direction: row;
  color: var(--black);
  background-color: var(--main-color);
  padding: 15px 20px;
  font-size: 15px;
  font-weight: var(--font-weight-semibold);
}
.wp-block-button img {
  height: 17px;
  object-fit: contain;
}

/* Gallery */
.wp-block-gallery {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--very-light-grey);
  isolation: isolate;
}
.wp-block-gallery figure {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.wp-block-gallery figure.is-active {
  opacity: 1;
}
.wp-block-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wp-block-gallery button img {
  width: 10px;
  height: 10px;
}
.wp-gallery-controls {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 14px;
  pointer-events: none;
}
.gallery-nav-btn {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--black);
  background: rgba(255, 255, 255, 0.5);
  background-clip: padding-box;
  color: var(--black);
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  appearance: none;
  box-shadow: none;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.gallery-nav-btn:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 1);
  border-color: var(--black);
}
.gallery-nav-btn:active {
  transform: scale(0.97);
}
.gallery-nav-btn:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}



.only-visible-on-mobile {
  display: none;
}
.word-break-on-mobile {
  word-break: keep-all;
}
.full-width-img {
  position: relative;
  left: calc(-50vw + 50%);
  width: 100vw;
  margin: 0 !important;
}
.full-width-img img {
  width: 100%;
}



/* Header */
.header-logo {
  width: 200px;
  height: auto;
  object-fit: cover;
}
.header-wrapper {
  width: 100%;
  height: fit-content;
}
.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  padding: 20px 40px;
  font-size: 18px;
  user-select: none;
  max-width: var(--site-width);
  margin: 0 auto;
}
.header a {
  z-index: 2;
}
.header-nav-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding-top: 20px;
}
.header-menu {
  list-style-type: none !important;
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.header-nav-links a {
  text-decoration: none;
  color: var(--black);
  font-size: 15px;
}
.header-nav-links a.active {
  opacity: var(--active-opacity);
}
.header-nav-links a.contact {
  border: 1px solid var(--black);
  border-radius: 25px;
  padding: 6px 20px;
}
/* header-mobile */
.mobile-header-title {
  font-weight: var(--font-weight-regular);
  font-size: 20px;
  margin: 0;
  text-transform: uppercase;
}
.mobile-right-header {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding-right: calc(var(--mobile-padding) - 10px);
  z-index: 2;
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 13px; /* 15px -3px for the bars diveded by 2 must be an even number --> height must be an even number */
  width: 32px;
}
.nav-toggle .bar {
  height: 1px;
  width: 100%;
  background-color: var(--black);
  transition: all 100ms ease-in-out;

  --rotation-deg: 21.5deg;
}
.nav-toggle:hover {
  cursor: pointer;
}
.x:nth-of-type(1) {
  transition: all 100ms ease-in-out;
  transform: rotate(var(--rotation-deg));
  transform-origin: top left;
  width: 35px;
}
.x:nth-of-type(2) {
  transition: all 100ms ease-in-out;
  transform-origin: center;
  width: 35px;
  opacity: 0;
}
.x:nth-of-type(3) {
  transition: all 100ms ease-in-out;
  transform: rotate(calc(-1 * var(--rotation-deg)));
  transform-origin: bottom left;
  width: 35px;
}


/* page.php */
.content-area {
  max-width: var(--site-width);
  margin: 0 auto;
  color: var(--black);
}
.whatsapp-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  position: relative;
  overflow: visible;
  transition: transform 0.25s ease;
  transform: translateY(0) scale(1);
}
.whatsapp-button::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  filter: blur(10px);
  z-index: -1;
  transition: opacity 0.25s ease, transform 0.25s ease;
  animation: pulse-whatsapp 2s infinite;
}
@keyframes pulse-whatsapp {
  0% {
    opacity: 0.55;
    transform: scale(1);
    filter: blur(10px);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.08);
    filter: blur(12px);
  }
  100% {
    opacity: 0.55;
    transform: scale(1);
    filter: blur(10px);
  }
}
.whatsapp-button:hover {
  transform: scale(1.08);
}
.whatsapp-button:hover::after {
  opacity: 0.9;
  transform: scale(1.12);
}
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}
.whatsapp-float svg {
  width: 25px;
  height: 25px;
  fill: var(--white);
  transition: fill 0.3s ease;
}

/* Home page */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}
h2 {
  font-size: 48px;
  font-weight: var(--font-weight-semibold);
}
.home-h1-section {
  position: relative;
  left: calc(-50vw + 50%);
  width: 100vw;
  background-color: var(--main-color);
  padding: 150px 0;
  margin-top: -1px; /* to prevent 1px white line above the section (probably) due to subpixel rendering issues */
}
.h2-container {
  display: flex;
  justify-content: space-between;
  align-items: end;
  max-width: var(--site-width);
  margin: 0 auto;
  width: 100%;
}
.h2-container h2 {
  line-height: 1.5;
  margin-left: 5px;
}
.home-img-down {
  width: 40px;
}
.home-h1-img img {
  max-height: 90vh;
  object-fit: cover;
}
.home-tour-section {
  gap: 20px;
}
.home-rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 250px;
}
.home-rating-row p {
  margin: 0;
  padding-block: 5px;
}
.home-rating-row img, .home-rating-row figure {
  width: 15px;
  height: 15px;
}
.home-tour-detail-section {
  width: 100%;
}
.home-tour-detail-section h4 {
  font-size: 22px;
  font-weight: var(--font-weight-semibold);
  max-width: 520px;
  padding-top: 25px;
  padding-bottom: 50px;
  line-height: 1.6;
}
.home-caption {
  font-size: 16px;
}
.home-tour-detail-section.align-right {
  justify-content: end;
}
.home-h4 {
  font-size: 22px;
  font-weight: var(--font-weight-semibold);
  padding-top: 25px;
  padding-bottom: 50px;
  line-height: 1.6;
}
.home-feeling {
  display: flex;
  flex-direction: column;
}
.person-row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  width: 100%;
}
.person-item {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 380px;
}
.person-item-button {
  display: flex;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 60px;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  z-index: 2;
}
.person-item.active .person-item-button {
  transform: rotate(0deg);
}
.person-item.active .person-content {
  display: block;
}
.person-item figure:nth-child(2) img {
  width: 380px;
  height: 500px;
  object-fit: cover;
  transition: filter 0.3s ease;
}
.person-item.active figure:nth-child(2) img {
  filter: var(--main-color-filter);
  z-index: 1;
}
.person-content {
  display: none;
  position: absolute;
  top: 100px;
  font-size: 14px;
  padding-inline: 20px;
  max-width: calc(100% - 40px);
}
.gift-row {
  display: flex;
  flex-direction: row;
  align-items: end;
  gap: 20px;
  width: 100%;
  padding-top: 0;
  padding-bottom: 50px;
}
.gift-row h4 {
  font-size: 22px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.6;
  width: 50%;
  padding: 0;
}
.gift-img-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.gift-img-container > div {
  flex: 1;
  overflow: hidden;
}
.gift-img-container img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}
.gift-col {
  display: flex;
  flex-direction: column;
}
.gift-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0px;
  justify-content: start;
}
.gift-row .text-arrow img {
  height: 23px;
  transform: scale(0.5) translateY(-2px);
  object-fit: cover;
}


/* Touren */
.h1-touren {
  font-size: 70px;
  font-weight: var(--font-weight-semibold);
  padding-top: 200px;
  padding-bottom: 100px;
}

/* Über uns */
.h2-ueber-uns {
  padding-top: 200px;
  padding-bottom: 150px;
}
.h2-ueber-uns h2 {
  font-size: 46px;
}
.ueber-uns-img img {
  max-height: 50vw;
  object-fit: cover;
}
.ueber-uns-text-section {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.ueber-uns-text-section > div {
  flex: 1;
}
.ueber-uns-text-section p {
  flex: 1;
  margin: 0;
  line-height: 1.3;
}
.ueber-uns-text-section h4 {
  font-size: 29px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.6;
  padding: 0;
}
.ueber-uns-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


/* Gutscheine */
.gut-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
}
.gut-row > div {
  flex: 1;
}
.gut-row figure {
  margin: 0;
  flex: 1;
}
.gut-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gut-row h3 {
  font-size: 23px;
  font-weight: var(--font-weight-semibold);
  max-width: 540px;
  line-height: 1.3;
  padding-top: 20px;
}
.gut-form {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}
.gut-form h4 {
  font-size: 32px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.6;
  padding: 0;
  margin-bottom: 20px;
}


/* Footer */
footer {
  background-color: var(--main-color);
}
footer a {
  text-decoration: unset;
}
.hidden {
  display: none !important;
}
.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  padding-inline: 50px;
  max-width: var(--site-width);
  margin: 0 auto;
  height: fit-content;
}
.footer-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.footer-links {
  margin: 0;
}
.footer-social, .footer-contact, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  list-style-type: none !important;
  padding: 0;
  margin: 0;
}
.footer-menu a {
  font-size: 30px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.6;
}
.footer-menu a.active {
  opacity: var(--active-opacity);
}

.footer-bottom-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  padding-inline: 50px;
  max-width: var(--site-width);
  margin: 0 auto;
}
.footer-goto-top {
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
}
.footer-goto-top img {
  margin-right: 5px;
}


/* WPForm customization */
.wpforms-container {
  width: 100%;
  padding: 0;
  margin-top: 40px;
}
.wpforms-container input, .wpforms-field-label-inline {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: var(--font-weight-semibold) !important;
}
.wpforms-title {
  display: flex;
  padding-bottom: 0px !important;
  overflow: hidden !important;
}
.wpforms-title label {
  font-size: 18px;
  min-width: fit-content;
  padding-top: 20px;
}
.wpforms-title input {
  font-size: 12px;
  padding-block: 0;
  border: none;
  margin-top: 22px !important;
}
.wpforms-title input::placeholder {
  color: var(--tennis-red);
}
.wpforms-submit {
  font-family: 'Montserrat', sans-serif;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  color: var(--black);
  background-color: var(--main-color);
  border: 1px solid var(--black);
  border-radius: 25px;
  padding: 12px 24px;
}
.wpforms-submit:hover {
  cursor: pointer;
  border-width: 2px;
  padding: 11px 23px;
}
.wpforms-form {
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  color: var(--black);
}
::placeholder{
  color: var(--black);
}
.wpforms-field-medium {
  color: var(--black);
  background-color: var(--white);
  border: none;
  border-bottom: 1px solid var(--black);
  padding: 10px;
  max-width: none !important;
  border-radius: 0px;
  -webkit-border-radius: 0px;
}
.wpforms-field-medium:focus {
  outline: none;
}
.wpforms-field-full-border textarea {
  font-weight: var(--font-weight-semibold) !important;
  color: var(--black);
  background-color: var(--white);
  border: none;
  border-bottom: 1px solid var(--black);
  padding: 10px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
}
/* textarea placeholder color should be grey */
.wpforms-field-full-border textarea::placeholder {
  color: var(--black);
}
.wpforms-field-full-border textarea:focus {
  outline: none;
}
.wpforms-field-full-width {
  flex: 1 0 100% !important;
}
.wpforms-field-half-width input {
  width: 100% !important;
}
.wpforms-container textarea.wpforms-field-medium {
  height: 250px !important;
}
.wpforms-field-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 25px;
}
.wpforms-field {
  flex: 1 0 45%;
  padding-top: 0 !important;
  min-width: 250px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
}
.wpforms-field ul {
  list-style: none;
  padding-left: 0;
  padding-bottom: 20px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
}
.wpforms-mitgliedsform label {
  vertical-align: middle !important;
}
.wpforms-field ul {
  display: inline;
  list-style: none;
  padding-left: 0;
  padding-bottom: 20px;
  margin-bottom: 5px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
}
.wpforms-field li {
  display: inline-block;
  padding-block: 8px !important;
  margin: 5px;
  border: 1px solid var(--white) !important;
  border-radius: 25px;
}
.wpforms-field li label {
  padding-block: 8px !important;
  padding-inline: 20px !important;
}
.wpforms-container ul li {
  margin-right: 5px;
  margin-bottom: 5px;
}
.wpforms-field li input[type="radio"] {
  display: none;
}
.wpforms-interest-checkboxes input[type="checkbox"] {
  display: none;
}
.wpforms-data-privacy-check li {
  border: none !important;
  padding-left: 0 !important;
  display: flex;
  align-items: center;
}
.wpforms-data-privacy-check li.wpforms-selected {
  background-color: var(--white);
  color: var(--black);
}
/* custom border around input of .wpforms-data-privacy-check checkbox */
.wpforms-data-privacy-check input[type="checkbox"] {
  margin: 0 !important;
  margin-right: 10px !important;
}
.wpforms-selected input[type="checkbox"] {
  accent-color: var(--black);
  border-radius: 0px;
  -webkit-border-radius: 0px;
}
.wpforms-payment-price {
  appearance: unset !important;
  border: 1px solid var(--black) !important;
  border-radius: 0px !important;
  -webkit-border-radius: 0px !important;
  padding-inline: 7px !important;
}
.wpforms-payment-price:checked {
  background-image: url('assets/Checkbox.svg');
  border-radius: 0px;
  -webkit-border-radius: 0px;
}
.step-number {
  display: flex;
  align-items: end;
  height: 100%;
  position: absolute;
  transform: translateX(-100px);
  width: fit-content;
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
}
.wpforms-placeholder {
  opacity: 0;
}
.wpforms-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
.wpforms-select .wpforms-field-label {
  font-weight: var(--font-weight-semibold) !important;
  padding-bottom: 30px !important;
}
.wpforms-select .wpforms-field-label-inline {
  font-weight: var(--font-weight-semibold) !important;
  border: 1px solid var(--black) !important;
  border-radius: 25px !important;
  background-color: var(--main-color) !important;
  padding: 11px 20px !important;
}
.wpforms-select .wpforms-field-label-inline.active {
  border: 2px solid var(--black) !important;
}


.mobile-padding-stack {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  #wpadminbar {
    display: none;
  }
  html.no-scroll {
    overflow: hidden;
    height: 100%;
  }
  .mobile-padding {
    padding-inline: var(--mobile-padding);
  }
  .mobile-padding-stack {
    padding-inline: var(--mobile-padding);
    word-break: break-word;
  }

  /* header */
  .header {
    padding: 10px;
    align-items: center;
  }
  .header-logo {
    width: 150px;
    padding-left: calc(var(--mobile-padding) - 5px);
  }
  .mobile-right-header {
    display: flex !important;
  }
  .header-nav-container {
    transform: translateX(100%);
    transition: transform 0.3s ease;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: var(--main-color);
    padding: var(--mobile-padding);
    z-index: 1;
  }
  .header-nav-container.active {
    transform: translateX(0);
  }
  #menu-header-menu {
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 40px;
    width: 100vw;
    height: 80vh;
  }
  #menu-header-menu a {
    font-size: 30px;
    font-weight: var(--font-weight-semibold);
    width: 100%;
    padding: 10px;
  }
  .footer-column {
    gap: 40px;
  }
  
  .header-nav-links a.contact {
    border: unset;
    border-radius: unset;
    padding: unset;
  }

  

  /* Home page */
  h2 {
    font-size: 32px;
  }
  .home-h1-section {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .h2-container {
    flex-direction: column;
    align-items: start;
    gap: 20px;
    padding-inline: var(--mobile-padding);
  }
  .h2-container > div {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-left: -5px;
  }
  .h2-container h2 {
    margin-left: 0px;
  }
  .home-tour-section {
    flex-direction: column;
  }
  .home-tour-section > div {
    padding-inline: var(--mobile-padding);
    width: calc(100% - (var(--mobile-padding) * 2));
  }
  .home-tour-section.mobile-reversed {
    flex-direction: column-reverse;
  }
  .home-feeling {
    padding-inline: var(--mobile-padding);
  }
  .person-row {
    flex-direction: column;
    align-items: center;
  }
  .gift-row {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding-inline: var(--mobile-padding);
  }
  .gift-row .home-h4 {
    width: calc(100vw - (var(--mobile-padding) * 2));
    padding-bottom: 20px;
  }
  .gift-img-container {
    flex-direction: column;
  }
  .gift-img-container .gift-row {
    flex-direction: row;
    align-items: center;
    padding-bottom: 20px;
  }
  .gift-img-container img {
    height: 100%;
  }
  
  /* Gallery */
  .wp-block-gallery figure {
    position: relative;
    left: calc(-50vw + 50%);
    width: 100vw;
  }
  .wp-block-gallery img {
    width: 100%;
    height: auto;
  }

  /* Touren */
  .h1-touren {
    font-size: 40px;
    padding-top: 100px;
    padding-bottom: 50px;
    padding-inline: var(--mobile-padding);
  }

  /* Gutscheine */
  .gut-row {
    flex-direction: column;
    padding-inline: var(--mobile-padding);
    width: calc(100% - var(--mobile-padding) * 2);
  }

  /* Über uns */
  .h2-ueber-uns {
    padding-top: 100px;
    padding-bottom: 50px;
    padding-inline: var(--mobile-padding);
    width: calc(100% - var(--mobile-padding) * 2);
  }
  .h2-ueber-uns h2 {
    font-size: 32px;
  }
  .h2-ueber-uns > div {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-left: -5px;
  }
  .h2-ueber-uns img {
    margin-top: -5px;
    width: 40px;
    height: auto;
    object-fit: cover;
  }
  .ueber-uns-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .ueber-uns-text-section {
    flex-direction: column;
    padding-inline: var(--mobile-padding);
  }
  

  /* Footer */
  .footer-logo img {
    width: 150px;
  }
  .footer-content {
    flex-direction: column;
    padding-inline: var(--mobile-padding);
  }
  

  /* WPforms */
  .gut-form {
    padding-inline: var(--mobile-padding);
  }
  .wpforms-field-medium, .wpforms-field-large {
    padding-inline: 0 !important;
  }
  .wpforms-footer {
    flex-direction: column;
    align-items: start;
  }
  .wpforms-field li label {
    padding-inline: unset !important;
  }
  fieldset ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px;
  }
  .wpforms-footer > div, .wpforms-footer ul {
    padding-bottom: 0 !important;
  }



  .only-visible-on-mobile {
    display: block;
  }
  .hidden-on-mobile {
    display: none !important;
  }
}