@import url("https://use.typekit.net/mgw4arm.css");
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInDrop {
  0% {
    opacity: 0;
    transform: translateY(-30px);
    /* Start slightly above */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    /* Drop to its original position */
  }
}
@keyframes slideUpFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  box-sizing: border-box;
}

html {
  font-family: "aileron", sans-serif;
}

body {
  font-family: "aileron", sans-serif;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 100vw;
  overflow-x: hidden;
  letter-spacing: 0.03em;
  color: #222222;
}
body.no-scroll {
  overflow-y: hidden;
}
body.error404 .site-wrapper, body.search-results .site-wrapper {
  padding-bottom: 40px;
}
body .site-wrapper {
  margin-top: 122px;
}
@media (min-width: 768px) {
  body .site-wrapper {
    margin-top: 212px;
    margin-top: 186px;
  }
}
@media (min-width: 1024px) {
  body .site-wrapper {
    margin-top: 120px;
  }
}

h1 {
  font-size: 28px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 38px;
  }
}
h1:first-child:not(.page-title) {
  margin-top: 0;
}

h2 {
  font-size: 1.5em;
}
h2:first-child {
  margin-top: 0;
}

p {
  line-height: 1.4;
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: #3d8650;
}

ul.custom-list {
  display: grid;
  list-style-type: none;
  /* Verwijder de standaard bullet */
  padding-left: 0;
}
ul.custom-list li::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  background-image: url("/wp-content/themes/okappi/assets/icons/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 7px;
  /* Ruimte tussen het icoon en de tekst */
  vertical-align: middle;
  position: relative;
  top: -1px;
}
ul.custom-list li a {
  color: #222222;
}
ul.custom-list li + li {
  margin-top: 7px;
}

img {
  display: flex;
  max-width: 100%;
}

svg {
  width: 25px;
}

section .breadcrumb-wrapper {
  display: none;
}
section:first-child {
  margin-top: -10px;
}
section:first-child .breadcrumb-wrapper {
  display: block;
}
section:last-child {
  margin-bottom: -10px;
}

.container {
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1400px;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

.padding-top-default {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .padding-top-default {
    padding-top: 60px;
  }
}

.padding-top-half {
  padding-top: 10px;
}
@media (min-width: 768px) {
  .padding-top-half {
    padding-top: 20px;
  }
}

.padding-top-double {
  padding-top: 50px;
}
@media (min-width: 768px) {
  .padding-top-double {
    padding-top: 100px;
  }
}

.padding-bottom-default {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .padding-bottom-default {
    padding-bottom: 60px;
  }
}

.padding-bottom-half {
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .padding-bottom-half {
    padding-bottom: 20px;
  }
}

.padding-bottom-double {
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .padding-bottom-double {
    padding-bottom: 100px;
  }
}

.background-primary-color {
  background-color: #3d8650;
  color: #fff;
}

.background-secondary-color {
  background-color: #d2f09c;
}

.background-tertiary-color {
  background-color: #fff8f0;
}

.background-grey {
  background-color: #efefef;
}

.section-title {
  margin-top: 0;
  font-size: 28px;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 30px;
  }
}

.section-intro-text {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .section-intro-text {
    margin-bottom: 40px;
  }
}

.input-text {
  border: 1.5px solid #3d8650;
  border-radius: 5px;
  height: 40px;
  width: 100%;
  padding: 0 10px;
  font-size: 14px;
}
.input-text:focus-visible {
  outline: none;
}

.input-group-checkbox + .input-group-checkbox {
  margin-top: 5px;
}
.input-group-checkbox input {
  margin-right: 5px;
  cursor: pointer;
}

.btn-ctr {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.btn-primary {
  background-color: #3d8650;
  color: #fff;
  border: none;
  border-radius: 5px;
  min-height: 40px;
  padding: 12px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
}
.btn-primary:hover {
  background-color: #6dbc81;
  color: #fff;
}
.btn-primary.large {
  min-width: 200px;
}

.btn-primary-small {
  background-color: #3d8650;
  color: #fff;
  border: none;
  border-radius: 5px;
  min-height: 40px;
  padding: 12px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
  min-height: unset;
  padding: 7px 10px;
}
.btn-primary-small:hover {
  background-color: #6dbc81;
  color: #fff;
}
.btn-primary-small.large {
  min-width: 200px;
}

.btn-secondary {
  background-color: #d2f09c;
  border: 1px solid #d2f09c;
  color: #222222;
  border-radius: 5px;
  min-height: 40px;
  padding: 12px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.5s ease;
  font-weight: 400;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #3d8650;
  border-color: #3d8650;
}
.btn-secondary.large {
  min-width: 200px;
}

.btn-highlight {
  background-color: #3d8650;
  color: #fff;
  border: none;
  border-radius: 5px;
  min-height: 40px;
  padding: 12px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
  background-color: #F76C5E;
  border: 1px solid #F76C5E;
  border-color: #F76C5E;
}
.btn-highlight:hover {
  background-color: #6dbc81;
  color: #fff;
}
.btn-highlight.large {
  min-width: 200px;
}
.btn-highlight:hover {
  background-color: #F76C5E;
  border-color: #F76C5E;
}

.btn-transparent {
  background-color: #3d8650;
  color: #fff;
  border: none;
  border-radius: 5px;
  min-height: 40px;
  padding: 12px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
  border: 1px solid #3d8650;
  background: transparent !important;
  color: #222222 !important;
}
.btn-transparent:hover {
  background-color: #6dbc81;
  color: #fff;
}
.btn-transparent.large {
  min-width: 200px;
}
.btn-transparent:hover {
  scale: 1.03;
}
.btn-transparent.large {
  min-width: 200px;
}

.btn-delete {
  background-color: #3d8650;
  color: #fff;
  border: none;
  border-radius: 5px;
  min-height: 40px;
  padding: 12px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
  border: 1px solid #D90429;
  background: #D90429 !important;
}
.btn-delete:hover {
  background-color: #6dbc81;
  color: #fff;
}
.btn-delete.large {
  min-width: 200px;
}
.btn-delete:hover {
  scale: 1.03;
}
.btn-delete.large {
  min-width: 200px;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: none;
}
.modal .modal-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}
.modal .modal-inner .modal-content {
  width: 400px;
  background-color: #fff;
  padding: 40px 20px 20px;
  border-radius: 10px;
  position: relative;
  animation: fadeInDrop 0.5s ease-out forwards;
}
@media (min-width: 768px) {
  .modal .modal-inner .modal-content {
    padding: 40px 30px 30px;
    width: 600px;
  }
}
.modal .modal-inner .modal-content svg.modal-close {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}
.modal .modal-inner .modal-content .cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.modal .modal-inner .modal-content .cta button.btn-primary svg {
  width: 20px;
  height: 20px;
}
.modal .modal-inner .modal-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.accordeon-content.hide {
  display: none;
}

.with-sidebar {
  display: grid;
  grid: auto/minmax(0, 1fr);
  gap: 30px;
}
@media (min-width: 768px) {
  .with-sidebar {
    grid: auto/250px 1fr;
  }
}
.with-sidebar .breadcrumb-wrapper {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .with-sidebar .breadcrumb-wrapper {
    grid-column: 1/-1;
  }
}
.with-sidebar aside {
  order: 2;
}
@media (min-width: 768px) {
  .with-sidebar aside {
    order: 0;
  }
}
.with-sidebar main.main-content section.ads-archive button#open-sidebar {
  width: 100%;
  margin-bottom: 20px;
  height: 40px;
}
@media (min-width: 768px) {
  .with-sidebar main.main-content section.ads-archive button#open-sidebar {
    display: none;
  }
}
.with-sidebar main.main-content section.ads-archive .ads-archive-wrapper {
  display: grid;
  grid: auto/repeat(1, minmax(0, 1fr));
  row-gap: 30px;
  column-gap: 20px;
}
@media (min-width: 540px) {
  .with-sidebar main.main-content section.ads-archive .ads-archive-wrapper {
    grid: auto/repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .with-sidebar main.main-content section.ads-archive .ads-archive-wrapper {
    grid: auto/repeat(3, minmax(0, 1fr));
  }
}
.with-sidebar main.main-content section.ads-archive .ads-archive-wrapper > p {
  grid-column: 1/-1;
}

.site-logo a img {
  width: 100px;
  height: auto;
}

.widget.widget_contact a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .widget.widget_contact a {
    justify-content: flex-start;
  }
}
.widget.widget_contact svg {
  width: 17px;
  color: #3d8650;
}
.widget.widget_contact .widget-content {
  display: grid;
  grid: auto/1fr;
  gap: 15px;
}
.widget.widget_contact .widget-content .item.address {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}
@media (min-width: 768px) {
  .widget.widget_contact .widget-content .item.address {
    justify-content: flex-start;
  }
}
.widget.widget_logo .site-logo a img {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .widget.widget_logo .site-logo a img {
    margin: 0;
  }
}
.widget.widget_adsfilter {
  position: relative;
}
.widget.widget_adsfilter .listings-filter form h4 {
  margin-top: 0;
  margin-bottom: 15px;
}
.widget.widget_adsfilter .listings-filter form button#reset-filter {
  position: absolute;
  right: 0px;
  top: 0px;
  min-height: unset;
  padding: 5px 10px;
}
.widget.widget_adsfilter .listings-filter form .filter-section + .filter-section {
  border-top: 1.5px solid #d2f09c;
  margin-top: 20px;
  padding-top: 20px;
}
.widget.widget_adsfilter .listings-filter form ul.taxonomy-dropdown {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.widget.widget_adsfilter .listings-filter form ul.taxonomy-dropdown li {
  padding: 5px 0;
}
.widget.widget_adsfilter .listings-filter form ul.taxonomy-dropdown li a {
  color: #222222;
  display: flex;
  align-items: center;
  cursor: inherit;
}
.widget.widget_adsfilter .listings-filter form ul.taxonomy-dropdown li a span {
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
.widget.widget_adsfilter .listings-filter form ul.taxonomy-dropdown li a span:hover, .widget.widget_adsfilter .listings-filter form ul.taxonomy-dropdown li a span.active {
  border-color: #3d8650;
  color: #3d8650;
}
.widget.widget_adsfilter .listings-filter form ul.taxonomy-dropdown li a img {
  width: 18px;
  margin-left: auto;
  cursor: pointer;
  transition: all 0.2s ease;
}
.widget.widget_adsfilter .listings-filter form ul.taxonomy-dropdown li a img.active {
  rotate: 90deg;
}
.widget.widget_adsfilter .listings-filter form ul.taxonomy-dropdown li ul.child-categories {
  margin-top: 5px;
  margin-right: -10px;
  list-style-type: none;
  display: none;
  background-color: #d2f09c;
  padding: 5px 10px 5px 10px;
  border-radius: 5px;
}
.widget.widget_adsfilter .listings-filter form .taxonomy-checkbox-group .input-group {
  padding: 5px 0;
}
.widget.widget_adsfilter .listings-filter form .taxonomy-checkbox-group .input-group label {
  display: flex;
  gap: 10px;
  cursor: pointer;
}
.widget.widget_adsfilter .listings-filter form .taxonomy-checkbox-group .input-group label input {
  width: 20px;
  height: 20px;
  border-radius: 5px;
}
.widget.widget_adsfilter .listings-filter form .location {
  display: grid;
  grid: auto/1fr;
  gap: 10px;
}
.widget.widget_adsfilter .listings-filter form .location .input-group {
  display: grid;
  grid: auto/1fr;
  gap: 3px;
}
.widget.widget_adsfilter .listings-filter form .location .input-group input {
  border: 1.5px solid #3d8650;
  border-radius: 5px;
  height: 40px;
  width: 100%;
  padding: 0 10px;
  font-size: 14px;
}
.widget.widget_adsfilter .listings-filter form .location .input-group input:focus-visible {
  outline: none;
}
.widget.widget_adsfilter .listings-filter form .location button {
  background-color: #3d8650;
  color: #fff;
  border: none;
  border-radius: 5px;
  min-height: 40px;
  padding: 12px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
}
.widget.widget_adsfilter .listings-filter form .location button:hover {
  background-color: #6dbc81;
  color: #fff;
}
.widget.widget_adsfilter .listings-filter form .location button.large {
  min-width: 200px;
}
.widget.widget_adsfilter .listings-filter form .color,
.widget.widget_adsfilter .listings-filter form .conditions {
  display: none;
}

header.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: #3d8650;
  border-radius: 0 0 10px 10px;
  z-index: 1000;
}
header.site-header .header-top .container {
  display: flex;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 20px;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  header.site-header .header-top .container {
    flex-wrap: nowrap;
  }
}
header.site-header .header-top .container .site-logo {
  width: 150px;
  font-size: 26px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}
header.site-header .header-top .container .searchform-wrapper {
  order: 2;
  flex-grow: 1;
  padding-top: 20px;
  flex-basis: 100%;
}
@media (min-width: 1024px) {
  header.site-header .header-top .container .searchform-wrapper {
    order: 0;
    flex-basis: auto;
    flex-grow: unset;
    padding-top: 0;
    margin-left: auto;
    margin-right: auto;
  }
  header.site-header .header-top .container .searchform-wrapper form {
    max-width: 350px;
  }
  header.site-header .header-top .container .searchform-wrapper form input {
    max-width: 300px;
  }
}
header.site-header .header-top .container .searchform-wrapper #searchform {
  display: grid;
  grid: auto/1fr minmax(0, 40px);
  background-color: #fff;
}
header.site-header .header-top .container .searchform-wrapper #searchform input:focus-visible {
  outline: none;
}
header.site-header .header-top .container .searchform-wrapper #searchform button {
  border-radius: 5px;
  justify-content: center;
}
header.site-header .header-top .container .searchform-wrapper #searchform button:focus-visible {
  outline: none;
}
header.site-header .header-top .container .searchform-wrapper #searchform button svg {
  flex-basis: 20px;
  flex-shrink: 0;
}
header.site-header .header-top .container .searchform-trigger {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media (min-width: 992px) {
  header.site-header .header-top .container .searchform-trigger {
    display: none;
  }
}
header.site-header .header-top .container .searchform-trigger svg {
  width: 20px;
  stroke: white;
  cursor: pointer;
}
header.site-header .header-top .container .site-menus {
  position: fixed;
  background-color: #3d8650;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 20px 20px 30px;
  transform: translateX(-100%);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
  font-size: 14px;
}
header.site-header .header-top .container .site-menus.active {
  transform: translateX(0);
}
@media (min-width: 768px) {
  header.site-header .header-top .container .site-menus {
    transform: translateX(0);
    background-color: transparent;
    position: relative;
    padding: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
    column-gap: 20px;
    overflow-y: initial;
  }
}
@media (min-width: 1024px) {
  header.site-header .header-top .container .site-menus {
    margin-left: 20px;
  }
}
@media (min-width: 768px) {
  header.site-header .header-top .container .site-menus .site-logo {
    display: none;
  }
}
header.site-header .header-top .container .site-menus ul {
  padding-left: 0;
  font-size: 23px;
}
@media (min-width: 768px) {
  header.site-header .header-top .container .site-menus ul {
    display: flex;
    margin: 0;
    column-gap: 40px;
    justify-content: flex-end;
    align-items: center;
    font-size: initial;
  }
}
header.site-header .header-top .container .site-menus ul li.menu-item {
  list-style-type: none;
  padding: 30px 0 10px;
}
@media (min-width: 768px) {
  header.site-header .header-top .container .site-menus ul li.menu-item {
    border-bottom: none;
    padding: 10px;
  }
}
header.site-header .header-top .container .site-menus ul li.menu-item a {
  color: #fff;
}
header.site-header .header-top .container .site-menus ul li.menu-item.menu-item-has-children {
  position: relative;
}
header.site-header .header-top .container .site-menus ul li.menu-item.menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 10px;
}
header.site-header .header-top .container .site-menus ul li.menu-item.menu-item-has-children > a::after {
  content: url("../assets/icons/chevron-down-white.svg");
  display: inline-block;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  header.site-header .header-top .container .site-menus ul li.menu-item.menu-item-has-children > a::after {
    height: 15px;
    width: 15px;
  }
}
header.site-header .header-top .container .site-menus ul li.menu-item.menu-item-has-children.active {
  border-bottom: none;
}
header.site-header .header-top .container .site-menus ul li.menu-item.menu-item-has-children.active > a::after {
  rotate: 180deg;
}
header.site-header .header-top .container .site-menus ul li.menu-item.menu-item-has-children ul.sub-menu {
  margin: 10px 0;
  padding-left: 20px;
}
@media (min-width: 768px) {
  header.site-header .header-top .container .site-menus ul li.menu-item.menu-item-has-children ul.sub-menu {
    padding: 0;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: max-content;
    padding: 30px 15px 10px;
    background-color: #3d8650;
    border-radius: 0 0 5px 5px;
    font-size: 15px;
    text-align: center;
    display: none;
  }
}
header.site-header .header-top .container .site-menus ul li.menu-item.menu-item-has-children ul.sub-menu li.menu-item {
  border-bottom: 1px solid #fff;
}
@media (min-width: 768px) {
  header.site-header .header-top .container .site-menus ul li.menu-item.menu-item-has-children ul.sub-menu li.menu-item {
    border: none;
  }
}
header.site-header .header-top .container .site-menus .secondary-menu-wrapper {
  display: none;
}
@media (min-width: 540px) {
  header.site-header .header-top .container .site-menus .secondary-menu-wrapper {
    display: none;
  }
}
header.site-header .header-top .container .site-menus .secondary-menu-wrapper ul li.menu-item {
  padding: 10px 0;
  border: none;
}
header.site-header .header-top .container .site-menus .link-wrapper {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 5;
}
@media (min-width: 768px) {
  header.site-header .header-top .container .site-menus .link-wrapper {
    margin-top: 0;
  }
}
header.site-header .header-top .container .site-menus .link-wrapper a {
  border-radius: 30px;
  padding-left: 25px;
  padding-right: 25px;
  text-align: center;
}
header.site-header .header-top .container .site-menus .link-wrapper a.btn-secondary {
  border: 1px solid #d2f09c;
}
header.site-header .header-top .container .site-menus .link-wrapper a.btn-secondary:hover {
  border-color: #d2f09c;
}
header.site-header .header-top .container .site-menus .link-wrapper a.login {
  color: #fff;
  text-decoration: underline;
  display: flex;
  align-items: center;
}
header.site-header .header-top .container .site-menus .link-wrapper a.login:hover {
  border-color: #d2f09c;
}
@media (min-width: 768px) {
  header.site-header .header-top .container .site-menus .link-wrapper a.login {
    font-size: initial;
    padding-left: 20px;
    padding-right: 20px;
  }
}
header.site-header .header-top .container .site-menus .link-wrapper a.logout {
  display: flex;
  align-items: center;
}
header.site-header .header-top .container .site-menus svg.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  fill: #fff;
  height: 30px;
  width: 30px;
  cursor: pointer;
}
@media (min-width: 768px) {
  header.site-header .header-top .container .site-menus svg.close-menu {
    display: none;
  }
}
header.site-header .header-top .container .wpml-ls {
  margin-left: auto;
  width: fit-content;
}
@media (min-width: 768px) {
  header.site-header .header-top .container .wpml-ls {
    margin-left: 0px;
  }
}
header.site-header .header-top .container .wpml-ls ul {
  width: 40px;
}
header.site-header .header-top .container .wpml-ls ul li {
  background-color: transparent;
}
header.site-header .header-top .container .wpml-ls ul li a {
  background-color: transparent;
  border: none;
  color: #fff;
}
header.site-header .header-top .container .wpml-ls ul li a::after {
  display: none;
}
header.site-header .header-top .container svg#hamburger-menu {
  margin-left: 20px;
  fill: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  header.site-header .header-top .container svg#hamburger-menu {
    display: none;
  }
}
header.site-header .header-top .container:nth-child(2) {
  background-color: #fff;
}
header.site-header .header-bottom {
  background-color: #d2f09c;
  padding: 15px 0;
  border-radius: 0 0 10px 10px;
  display: none;
}
@media (min-width: 540px) {
  header.site-header .header-bottom {
    display: block;
  }
}
header.site-header .header-bottom .container .secondary-menu-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 10px;
  justify-content: center;
  font-size: 14px;
  white-space: nowrap;
  margin: auto;
}
@media (min-width: 1024px) {
  header.site-header .header-bottom .container .secondary-menu-wrapper ul {
    grid: auto/repeat(6, 1fr);
  }
}
header.site-header .header-bottom .container .secondary-menu-wrapper ul li.menu-item.menu-item-has-children {
  position: relative;
}
header.site-header .header-bottom .container .secondary-menu-wrapper ul li.menu-item.menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 10px;
}
header.site-header .header-bottom .container .secondary-menu-wrapper ul li.menu-item.menu-item-has-children > a::after {
  content: url("../assets/icons/chevron-down-green.svg");
  display: inline-block;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  header.site-header .header-bottom .container .secondary-menu-wrapper ul li.menu-item.menu-item-has-children > a::after {
    height: 15px;
    width: 15px;
  }
}
header.site-header .header-bottom .container .secondary-menu-wrapper ul li.menu-item.menu-item-has-children.active {
  border-bottom: none;
}
header.site-header .header-bottom .container .secondary-menu-wrapper ul li.menu-item.menu-item-has-children.active > a::after {
  rotate: 180deg;
}
header.site-header .header-bottom .container .secondary-menu-wrapper ul li.menu-item.menu-item-has-children ul.sub-menu {
  margin: 10px 0;
  padding-left: 20px;
  display: none;
}
@media (min-width: 768px) {
  header.site-header .header-bottom .container .secondary-menu-wrapper ul li.menu-item.menu-item-has-children ul.sub-menu {
    padding: 0;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    padding: 20px 15px 10px;
    background-color: #d2f09c;
    border-radius: 0 0 5px 5px;
  }
}

footer.site-footer {
  margin-top: auto;
  color: #fff;
  padding: 30px 0;
  border-radius: 10px 10px 0 0;
  z-index: 99;
}
footer.site-footer a {
  color: #fff;
}
footer.site-footer .container {
  display: grid;
  grid: auto/minmax(0, 1fr);
  gap: 20px;
}
@media (min-width: 768px) {
  footer.site-footer .container {
    grid: auto/300px 1fr;
    column-gap: 10%;
  }
}
footer.site-footer .container .site-logo-wrapper .site-logo {
  font-size: 80px;
  font-weight: bold;
  color: #d2f09c;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  footer.site-footer .container .site-logo-wrapper .site-logo {
    width: 300px;
  }
}
footer.site-footer .container .site-logo-wrapper .site-logo .site-description {
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  margin-top: 20px;
  text-transform: initial;
}
footer.site-footer .container .footer-menus {
  margin-top: 30px;
  display: grid;
  grid: auto/1fr;
  column-gap: 60px;
  row-gap: 30px;
}
@media (min-width: 540px) {
  footer.site-footer .container .footer-menus {
    grid: auto/repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  footer.site-footer .container .footer-menus {
    margin-top: 20px;
  }
}
footer.site-footer .container .footer-menus .col h3 {
  font-size: 16px;
  font-weight: normal;
  text-decoration: underline;
  margin-top: 0;
}
footer.site-footer .container .footer-menus .col p {
  display: grid;
  grid: auto/1fr;
  row-gap: 10px;
}
footer.site-footer .container .footer-menus .col ul {
  list-style-type: none;
  padding-left: 0;
  display: grid;
  grid: auto/1fr;
  gap: 7px;
  margin: 0;
}
footer.site-footer .container .footer-menus .col ul li.menu-item-has-children > a {
  text-decoration: underline;
}
footer.site-footer .container .footer-menus .col ul li.menu-item-has-children ul.sub-menu {
  margin-top: 10px;
}
@media (min-width: 1024px) {
  footer.site-footer .container .footer-menus .col ul li.menu-item-has-children ul.sub-menu {
    display: grid;
    grid: auto/1fr 1fr;
    column-gap: 20px;
  }
}
footer.site-footer .container .footer-menus .col.col-2 ul li ul.sub-menu {
  grid: auto/1fr;
}
footer.site-footer .container .site-credentials {
  margin-top: 30px;
  font-size: 12px;
  grid-column: 1/-1;
}
footer.site-footer .container .site-credentials a.privacy {
  padding-right: 6px;
  border-right: 1px solid #fff;
  margin-right: 1px;
}
footer.site-footer .container .site-credentials span a {
  color: #fff;
}
footer.site-footer .container .site-credentials span a.contact-email {
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  display: inline-block;
  font-size: 40px;
}

aside.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 1000;
  padding: 70px 20px 20px;
  border: 1.5px solid #d2f09c;
  border-radius: 5px;
  transform: translateX(-100%);
  transition: all 0.3s ease;
}
aside.sidebar.active {
  transform: translateX(0);
}
@media (min-width: 768px) {
  aside.sidebar {
    position: static;
    transform: none;
    padding-top: 20px;
  }
}
aside.sidebar #close-sidebar {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
}
@media (min-width: 768px) {
  aside.sidebar #close-sidebar {
    display: none;
  }
}
aside.sidebar .sidebar-wrapper {
  overflow-y: auto;
  height: 100%;
  padding-right: 20px;
  margin-right: -20px;
}
aside.sidebar .sidebar-wrapper::before {
  content: "";
  display: block;
  background-color: #d2f09c;
  position: fixed;
  left: 0;
  top: 55px;
  right: 0;
  z-index: 1;
  height: 1px;
  margin-bottom: 10px;
  margin-left: -20px;
}
@media (min-width: 768px) {
  aside.sidebar .sidebar-wrapper::before {
    display: none;
  }
}

#searchform {
  border: 1px solid #3d8650;
  border-radius: 5px;
  display: flex;
  overflow: hidden;
}
#searchform input[type=text] {
  flex-grow: 1;
  border: none;
  color: #3d8650;
  padding: 0 10px;
  padding-top: 3px;
  height: 40px;
}
#searchform button[type=submit] {
  height: 40px;
  width: 40px;
  border: none;
  background-color: #fff;
  display: flex;
  align-items: center;
  cursor: pointer;
}
#searchform button[type=submit] svg {
  height: 20px;
  stroke: #3d8650;
}

.slick-slider button.slick-prev {
  width: 25px;
  height: 25px;
  background-image: url(../assets/icons/chevron-left-blue.svg);
  left: 5px;
  z-index: 10;
}
.slick-slider button.slick-prev::before {
  display: none;
}
.slick-slider button.slick-next {
  width: 25px;
  height: 25px;
  background-image: url(../assets/icons/chevron-right-blue.svg);
  right: 5px;
}
.slick-slider button.slick-next::before {
  display: none;
}

.gform_wrapper .gform_validation_errors {
  margin-bottom: 30px;
}
.gform_wrapper .gform_validation_errors ol li a {
  color: #F76C5E;
}
.gform_wrapper .gform_heading .gform_required_legend {
  display: none;
}
.gform_wrapper form {
  display: grid;
  grid: auto/1fr;
  gap: 5px;
}
.gform_wrapper form .gform-body .gform_fields {
  grid-column-gap: 20px;
}
.gform_wrapper form .gform-body .gform_fields .gfield {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container input {
  border: 1.5px solid #3d8650;
  border-radius: 5px;
  height: 40px;
  width: 100%;
  padding: 0 10px;
  font-size: 14px;
}
.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container input:focus-visible {
  outline: none;
}
.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container select {
  border: 1.5px solid #3d8650;
  border-radius: 5px;
  height: 40px;
  width: 100%;
  padding: 0 10px;
  font-size: 14px;
  background-color: #fff;
  color: grey;
}
.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container select:focus-visible {
  outline: none;
}
.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container select:focus-visible {
  outline: none;
}
.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container textarea {
  border: 1px solid #3d8650;
  border-radius: 5px;
  width: 100%;
  padding: 10px;
}
.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container textarea:focus-visible {
  outline: none;
}
.gform_wrapper form .gform-body .gform_fields .gfield .validation_message {
  color: #F76C5E;
}
.gform_wrapper form .gform-body .gform_fields .gfield.gfield--type-textarea {
  grid-column: 1/-1;
}
.gform_wrapper form .gform-body .gform_fields .gfield.gfield--width-full {
  grid-column: 1/-1;
}
.gform_wrapper form .gform_footer {
  display: flex;
  justify-content: end;
}
.gform_wrapper form .gform_footer input[type=submit] {
  background-color: #3d8650;
  color: #fff;
  border: none;
  border-radius: 5px;
  min-height: 40px;
  padding: 12px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
  padding: 5px 15px;
}
.gform_wrapper form .gform_footer input[type=submit]:hover {
  background-color: #6dbc81;
  color: #fff;
}
.gform_wrapper form .gform_footer input[type=submit].large {
  min-width: 200px;
}

.gform_confirmation_message {
  padding: 20px;
  border: 1px dotted #3d8650;
  font-size: 1.4em;
  margin-top: 5px;
}

@media (max-width: 767px) {
  form#acf-form .acf-fields .acf-field {
    float: none;
    width: 100% !important;
  }
}
form#acf-form .acf-fields .acf-field[data-name=related_testimonials] {
  display: none;
}
form#acf-form .acf-fields .acf-field .acf-label label {
  font-weight: bold;
}
form#acf-form .acf-fields .acf-field .acf-label label span.acf-required {
  position: relative;
  top: -5px;
}
form#acf-form .acf-fields .acf-field .acf-label p.description {
  font-size: 12px;
}
form#acf-form .acf-fields .acf-field .acf-input .acf-input-prepend {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
}
form#acf-form .acf-fields .acf-field .acf-input .acf-input-wrap input {
  border: 1.5px solid #3d8650;
  border-radius: 5px;
  height: 40px;
  width: 100%;
  padding: 0 10px;
  font-size: 14px;
}
form#acf-form .acf-fields .acf-field .acf-input .acf-input-wrap input:focus-visible {
  outline: none;
}
form#acf-form .acf-fields .acf-field .acf-input .acf-input-wrap i.acf-icon {
  top: 10.5px;
}
form#acf-form .acf-fields .acf-field .acf-input textarea {
  border: 1px solid #3d8650;
  border-radius: 5px;
  width: 100%;
  padding: 10px;
}
form#acf-form .acf-fields .acf-field .acf-input textarea:focus-visible {
  outline: none;
}
form#acf-form .acf-fields .acf-field .acf-input select {
  border: 1.5px solid #3d8650;
  border-radius: 5px;
  height: 40px;
  width: 100%;
  padding: 0 10px;
  font-size: 14px;
  background-color: #fff;
  color: grey;
  padding-left: 10px;
}
form#acf-form .acf-fields .acf-field .acf-input select:focus-visible {
  outline: none;
}
form#acf-form .acf-fields .acf-field .acf-input select:focus-visible {
  outline: none;
}
form#acf-form .acf-fields .acf-field .acf-input .select2-selection {
  border: 1px solid #3d8650;
  height: 40px;
  display: flex;
  align-items: center;
}
form#acf-form .acf-fields .acf-field .acf-input .select2-selection .select2-selection__arrow {
  top: 6px;
}
form#acf-form .acf-fields .acf-field .acf-input a.acf-button {
  background-color: #3d8650;
  color: #fff;
  border: none;
  border-radius: 5px;
  min-height: 40px;
  padding: 12px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
}
form#acf-form .acf-fields .acf-field .acf-input a.acf-button:hover {
  background-color: #6dbc81;
  color: #fff;
}
form#acf-form .acf-fields .acf-field .acf-input a.acf-button.large {
  min-width: 200px;
}
form#acf-form .acf-fields .acf-field .acf-input .acf-gallery {
  border-radius: 5px;
  overflow: hidden;
}
form#acf-form .acf-fields .acf-tab-wrap {
  overflow: hidden;
  overflow-x: auto;
  background-color: transparent;
}
form#acf-form .acf-fields .acf-tab-wrap ul.acf-tab-group {
  border-top: none;
  padding-left: 0;
}
form#acf-form .acf-fields .acf-tab-wrap ul.acf-tab-group li a {
  border-radius: 5px 5px 0 0;
}
form#acf-form .acf-form-submit input.button-primary {
  background-color: #d2f09c;
  border: 1px solid #d2f09c;
  color: #222222;
  border-radius: 5px;
  min-height: 40px;
  padding: 12px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.5s ease;
  font-weight: 400;
}
form#acf-form .acf-form-submit input.button-primary:hover {
  color: #fff;
  background-color: #3d8650;
  border-color: #3d8650;
}
form#acf-form .acf-form-submit input.button-primary.large {
  min-width: 200px;
}

input[type=checkbox] {
  appearance: none;
  /* Verwijdert de standaard stijl */
  width: 20px;
  height: 20px;
  border: 1.5px solid #3d8650;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
input[type=checkbox]::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url(../assets/icons/check-white.svg);
  background-size: contain;
  background-position: center;
  position: relative;
  left: 1.5px;
  top: 1px;
}

input[type=checkbox]:checked {
  background-color: #3d8650;
  /* Groene kleur wanneer aangekruist */
  border-color: #3d8650;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button,
#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
  background-color: #3d8650;
  color: #fff;
  border: none;
  border-radius: 5px;
  min-height: 40px;
  padding: 12px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:hover,
#add_payment_method .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button:hover {
  background-color: #6dbc81;
  color: #fff;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit.large,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.large,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.large,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.large,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.large,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.large,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.large,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.large,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.large,
#add_payment_method .wc-proceed-to-checkout a.checkout-button.large,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.large,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button.large {
  min-width: 200px;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  background-color: #d2f09c;
  border: 1px solid #d2f09c;
  color: #222222;
  border-radius: 5px;
  min-height: 40px;
  padding: 12px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.5s ease;
  font-weight: 400;
}
.woocommerce #payment #place_order:hover,
.woocommerce-page #payment #place_order:hover {
  color: #fff;
  background-color: #3d8650;
  border-color: #3d8650;
}
.woocommerce #payment #place_order.large,
.woocommerce-page #payment #place_order.large {
  min-width: 200px;
}

.woocommerce .quantity .qty {
  height: 40px;
}

.woocommerce form .form-row input.input-text {
  border: 1.5px solid #3d8650;
  border-radius: 5px;
  height: 40px;
  width: 100%;
  padding: 0 10px;
  font-size: 14px;
}
.woocommerce form .form-row input.input-text:focus-visible {
  outline: none;
}

.select2-container--default .select2-selection--single {
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  border-color: #3d8650;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 7px;
}

.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text {
  border: 1px solid #3d8650;
  border-radius: 5px;
  width: 100%;
  padding: 10px;
}
.woocommerce form .form-row .input-text:focus-visible,
.woocommerce-page form .form-row .input-text:focus-visible {
  outline: none;
}

#add_payment_method #payment,
.woocommerce-cart #payment, .woocommerce-checkout #payment {
  background-color: #f5f5f5;
}

ul.products {
  display: grid;
  grid: auto/repeat(1, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 40px;
}
@media only screen and (min-width: 768px) {
  ul.products {
    grid: auto/repeat(3, minmax(0, 1fr));
    column-gap: 30px;
  }
}
ul.products::before, ul.products::after {
  display: none !important;
}
ul.products li.product {
  float: none;
  margin: 0 !important;
  width: 100% !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
  padding: 20px !important;
  display: flex;
  flex-direction: column;
}
ul.products li.product a.woocommerce-loop-product__link {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
ul.products li.product a.woocommerce-loop-product__link img {
  border-radius: 15px;
}
ul.products li.product a.woocommerce-loop-product__link h2.woocommerce-loop-product__title {
  font-size: 24px !important;
  color: initial;
}
@media (min-width: 768px) {
  ul.products li.product a.woocommerce-loop-product__link span.price {
    height: 30px;
  }
}
ul.products li.product a.woocommerce-loop-product__link .woocommerce-product-short-description {
  font-size: 14px;
  margin-top: 10px;
  color: initial;
}
ul.products li.product a.woocommerce-loop-product__link .woocommerce-product-short-description ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 3px;
}
ul.products li.product a.woocommerce-loop-product__link .woocommerce-product-short-description ul li::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background-image: url(../assets/icons/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 1.5px;
}
ul.products li.product > a.add_to_cart_button {
  margin-top: auto !important;
  text-align: center;
}

.woocommerce form .form-row label {
  line-height: 1.2;
  font-size: 14px;
  margin-bottom: 3px;
}

.woocommerce-NoticeGroup,
.woocommerce-NoticeGroup-checkout {
  grid-column: 1/-1;
}
.woocommerce-NoticeGroup ul,
.woocommerce-NoticeGroup-checkout ul {
  margin-bottom: 0;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
  color: #3d8650;
}

.woocommerce-NoticeGroup {
  padding-top: 50px;
  margin-top: -50px;
}
@media (min-width: 540px) {
  .woocommerce-NoticeGroup {
    padding-top: 110px;
    margin-top: -110px;
  }
}
@media (min-width: 768px) {
  .woocommerce-NoticeGroup {
    padding-top: 120px;
    margin-top: -120px;
  }
}
@media (min-width: 1024px) {
  .woocommerce-NoticeGroup {
    padding-top: 100px;
    margin-top: -100px;
  }
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
  min-width: 150px;
}

.woocommerce-cart table.cart td.actions .coupon {
  display: grid;
  grid: auto/1fr;
  gap: 5px;
}
@media (min-width: 769px) {
  .woocommerce-cart table.cart td.actions .coupon {
    grid: auto/1fr 1fr;
  }
}
.woocommerce-cart table.cart td.actions .coupon .input-text {
  width: 100%;
}
.woocommerce-cart table.cart td.actions .coupon button {
  width: 100% !important;
}

.woocommerce td.product-name dl.variation {
  background-color: #efefef;
  font-size: 14px;
  padding: 10px;
  border-radius: 5px;
}

.woocommerce table.shop_table td {
  vertical-align: top;
}

.woocommerce-form__input-radio {
  margin-right: 5px;
  position: relative;
  top: 1.5px;
}

.search-item {
  border: 1px solid lightgrey;
  border-radius: 8px;
  padding: 10px 20px;
  display: grid;
  grid: auto/1fr;
  gap: 10px;
}
.search-item h2 {
  margin: 0;
}
.search-item .btn-ctr a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.search-item .btn-ctr a svg {
  width: 15px;
  position: relative;
  left: 0;
  transition: all 0.3s ease;
}
.search-item .btn-ctr a:hover svg {
  left: 5px;
}

a.post-card {
  background-color: #d2f09c;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  color: #222222;
  padding: 20px;
  opacity: 0;
  animation: slideUpFadeIn 0.5s ease-out forwards;
}
a.post-card:nth-child(1) {
  animation-delay: 0s;
}
a.post-card:nth-child(2) {
  animation-delay: 0.1s;
}
a.post-card:nth-child(3) {
  animation-delay: 0.2s;
}
a.post-card:nth-child(4) {
  animation-delay: 0.3s;
}
a.post-card:nth-child(5) {
  animation-delay: 0.4s;
}
a.post-card:nth-child(6) {
  animation-delay: 0.5s;
}
a.post-card:nth-child(7) {
  animation-delay: 0.6s;
}
a.post-card:nth-child(8) {
  animation-delay: 0.7s;
}
a.post-card:nth-child(9) {
  animation-delay: 0.8s;
}
a.post-card:nth-child(10) {
  animation-delay: 0.9s;
}
a.post-card:nth-child(11) {
  animation-delay: 1s;
}
a.post-card:nth-child(12) {
  animation-delay: 1.1s;
}
a.post-card:nth-child(13) {
  animation-delay: 1.2s;
}
a.post-card:nth-child(14) {
  animation-delay: 1.3s;
}
a.post-card:nth-child(15) {
  animation-delay: 1.4s;
}
a.post-card:nth-child(16) {
  animation-delay: 1.5s;
}
a.post-card:nth-child(17) {
  animation-delay: 1.6s;
}
a.post-card:nth-child(18) {
  animation-delay: 1.7s;
}
a.post-card:nth-child(19) {
  animation-delay: 1.8s;
}
a.post-card:nth-child(20) {
  animation-delay: 1.9s;
}
a.post-card:nth-child(21) {
  animation-delay: 2s;
}
a.post-card:nth-child(22) {
  animation-delay: 2.1s;
}
a.post-card:nth-child(23) {
  animation-delay: 2.2s;
}
a.post-card:nth-child(24) {
  animation-delay: 2.3s;
}
a.post-card:nth-child(25) {
  animation-delay: 2.4s;
}
a.post-card:nth-child(26) {
  animation-delay: 2.5s;
}
a.post-card:nth-child(27) {
  animation-delay: 2.6s;
}
a.post-card:nth-child(28) {
  animation-delay: 2.7s;
}
a.post-card:nth-child(29) {
  animation-delay: 2.8s;
}
a.post-card:nth-child(30) {
  animation-delay: 2.9s;
}
a.post-card:nth-child(31) {
  animation-delay: 3s;
}
a.post-card:nth-child(32) {
  animation-delay: 3.1s;
}
a.post-card:nth-child(33) {
  animation-delay: 3.2s;
}
a.post-card:nth-child(34) {
  animation-delay: 3.3s;
}
a.post-card:nth-child(35) {
  animation-delay: 3.4s;
}
a.post-card:nth-child(36) {
  animation-delay: 3.5s;
}
a.post-card:nth-child(37) {
  animation-delay: 3.6s;
}
a.post-card:nth-child(38) {
  animation-delay: 3.7s;
}
a.post-card:nth-child(39) {
  animation-delay: 3.8s;
}
a.post-card:nth-child(40) {
  animation-delay: 3.9s;
}
a.post-card:nth-child(41) {
  animation-delay: 4s;
}
a.post-card:nth-child(42) {
  animation-delay: 4.1s;
}
a.post-card:nth-child(43) {
  animation-delay: 4.2s;
}
a.post-card:nth-child(44) {
  animation-delay: 4.3s;
}
a.post-card:nth-child(45) {
  animation-delay: 4.4s;
}
a.post-card:nth-child(46) {
  animation-delay: 4.5s;
}
a.post-card:nth-child(47) {
  animation-delay: 4.6s;
}
a.post-card:nth-child(48) {
  animation-delay: 4.7s;
}
a.post-card:nth-child(49) {
  animation-delay: 4.8s;
}
a.post-card:nth-child(50) {
  animation-delay: 4.9s;
}
a.post-card:nth-child(51) {
  animation-delay: 5s;
}
a.post-card:nth-child(52) {
  animation-delay: 5.1s;
}
a.post-card:nth-child(53) {
  animation-delay: 5.2s;
}
a.post-card:nth-child(54) {
  animation-delay: 5.3s;
}
a.post-card:nth-child(55) {
  animation-delay: 5.4s;
}
a.post-card:nth-child(56) {
  animation-delay: 5.5s;
}
a.post-card:nth-child(57) {
  animation-delay: 5.6s;
}
a.post-card:nth-child(58) {
  animation-delay: 5.7s;
}
a.post-card:nth-child(59) {
  animation-delay: 5.8s;
}
a.post-card:nth-child(60) {
  animation-delay: 5.9s;
}
a.post-card:nth-child(61) {
  animation-delay: 6s;
}
a.post-card:nth-child(62) {
  animation-delay: 6.1s;
}
a.post-card:nth-child(63) {
  animation-delay: 6.2s;
}
a.post-card:nth-child(64) {
  animation-delay: 6.3s;
}
a.post-card:nth-child(65) {
  animation-delay: 6.4s;
}
a.post-card:nth-child(66) {
  animation-delay: 6.5s;
}
a.post-card:nth-child(67) {
  animation-delay: 6.6s;
}
a.post-card:nth-child(68) {
  animation-delay: 6.7s;
}
a.post-card:nth-child(69) {
  animation-delay: 6.8s;
}
a.post-card:nth-child(70) {
  animation-delay: 6.9s;
}
a.post-card:nth-child(71) {
  animation-delay: 7s;
}
a.post-card:nth-child(72) {
  animation-delay: 7.1s;
}
a.post-card:nth-child(73) {
  animation-delay: 7.2s;
}
a.post-card:nth-child(74) {
  animation-delay: 7.3s;
}
a.post-card:nth-child(75) {
  animation-delay: 7.4s;
}
a.post-card:nth-child(76) {
  animation-delay: 7.5s;
}
a.post-card:nth-child(77) {
  animation-delay: 7.6s;
}
a.post-card:nth-child(78) {
  animation-delay: 7.7s;
}
a.post-card:nth-child(79) {
  animation-delay: 7.8s;
}
a.post-card:nth-child(80) {
  animation-delay: 7.9s;
}
a.post-card:nth-child(81) {
  animation-delay: 8s;
}
a.post-card:nth-child(82) {
  animation-delay: 8.1s;
}
a.post-card:nth-child(83) {
  animation-delay: 8.2s;
}
a.post-card:nth-child(84) {
  animation-delay: 8.3s;
}
a.post-card:nth-child(85) {
  animation-delay: 8.4s;
}
a.post-card:nth-child(86) {
  animation-delay: 8.5s;
}
a.post-card:nth-child(87) {
  animation-delay: 8.6s;
}
a.post-card:nth-child(88) {
  animation-delay: 8.7s;
}
a.post-card:nth-child(89) {
  animation-delay: 8.8s;
}
a.post-card:nth-child(90) {
  animation-delay: 8.9s;
}
a.post-card:nth-child(91) {
  animation-delay: 9s;
}
a.post-card:nth-child(92) {
  animation-delay: 9.1s;
}
a.post-card:nth-child(93) {
  animation-delay: 9.2s;
}
a.post-card:nth-child(94) {
  animation-delay: 9.3s;
}
a.post-card:nth-child(95) {
  animation-delay: 9.4s;
}
a.post-card:nth-child(96) {
  animation-delay: 9.5s;
}
a.post-card:nth-child(97) {
  animation-delay: 9.6s;
}
a.post-card:nth-child(98) {
  animation-delay: 9.7s;
}
a.post-card:nth-child(99) {
  animation-delay: 9.8s;
}
a.post-card:nth-child(100) {
  animation-delay: 9.9s;
}
a.post-card .post-image {
  aspect-ratio: 16/10;
}
a.post-card .post-image img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
a.post-card .post-content .post-date {
  font-size: 14px;
}
a.post-card .post-content h3 {
  margin-top: 5px;
  margin-bottom: 15px;
  font-size: 20px;
}

ul.post-type-filter {
  list-style-type: none;
  padding: 0;
  display: flex;
  gap: 7px;
  margin-bottom: 50px;
}
ul.post-type-filter li {
  border: 1px solid #3d8650;
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}
ul.post-type-filter li.active, ul.post-type-filter li:hover {
  background-color: #3d8650;
  color: #fff;
}

div.card {
  position: relative;
  background-color: #d2f09c;
  border-radius: 20px;
}
div.card .card-icon {
  display: flex;
  justify-content: center;
  width: 200px;
  background-color: #d2f09c;
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  padding: 30px 10px;
  border-radius: 40px;
}
div.card .card-icon img {
  width: 20px;
  height: 20px;
}
div.card .card-text {
  padding: 25px 20px;
  text-align: center;
}
div.card .card-text h3 {
  font-size: 20px;
  font-weight: 600;
}
div.card .card-text .text {
  line-height: 1.5;
}

.accordeon-item {
  background-color: #d2f09c;
  border-radius: 20px;
  padding: 20px;
}
.accordeon-item .title {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
.accordeon-item .title h3 {
  margin: 0;
  font-weight: normal;
}
@media (min-width: 768px) {
  .accordeon-item .title h3 {
    font-size: 20px;
  }
}
.accordeon-item .title .trigger {
  margin-left: auto;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #0cb0a080;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.accordeon-item .title .trigger svg {
  width: 12px;
  transition: all 0.3s ease;
}
.accordeon-item .title.active .trigger svg {
  rotate: 45deg;
}
.accordeon-item .text {
  margin-top: 20px;
  display: none;
  line-height: 1.4;
}

.usp-item {
  max-width: 400px;
}
.usp-item .icon {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d2f09c;
  border-radius: 10px;
  margin-bottom: 30px;
}
.usp-item .icon img {
  width: 35px;
}
.usp-item h3 {
  border-bottom: 1px solid #3d8650;
  padding-bottom: 15px;
}
.testimonial-item {
  background-color: #256232;
  border-radius: 10px;
  padding: 40px 20px;
  color: #fff;
}
.testimonial-item .quote {
  font-size: 84px;
  font-style: italic;
  line-height: 1;
}
.testimonial-item .text {
  margin-top: -20px;
  line-height: 1.5;
}
.testimonial-item .name {
  margin-top: 20px;
}
.testimonial-item .score {
  margin-top: 7px;
}
.testimonial-item .score svg {
  width: 20px;
}

nav.slider-nav svg.slick-arrow {
  cursor: pointer;
}
nav.slider-nav svg.slick-arrow.slick-disabled {
  opacity: 0.5;
  cursor: initial;
}

.teammember-item {
  display: grid;
  grid: auto/minmax(0, 1fr);
  gap: 15px;
  border-radius: 5px;
  padding: 15px;
  background-color: #d2f09c;
}
@media (min-width: 540px) {
  .teammember-item {
    grid: auto/minmax(0, 150px) 1fr;
  }
}
.teammember-item .col {
  position: relative;
}
.teammember-item .col:first-child {
  min-height: 150px;
}
@media (min-width: 540px) {
  .teammember-item .col:first-child {
    min-height: unset;
  }
}
.teammember-item .col img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.teammember-item .col h3 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .teammember-item .col h3 {
    font-size: 19px;
  }
}
.teammember-item .col .function {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #222222;
  padding-bottom: 5px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .teammember-item .col .function {
    font-size: 16px;
  }
}
.teammember-item .col .function .trigger {
  cursor: pointer;
}
.teammember-item .col .function .trigger svg {
  width: 18px;
  transition: all 0.3s ease;
}
.teammember-item .col .function.active .trigger svg {
  rotate: 90deg;
}
.teammember-item .col .description {
  font-size: 14px;
  line-height: 1.5;
  display: none;
  padding-top: 10px;
}
@media (min-width: 768px) {
  .teammember-item .col .description {
    font-size: 16px;
  }
}

.faq-item {
  background-color: #d2f09c;
  border-radius: 5px;
  padding: 20px;
  opacity: 0;
  animation: slideUpFadeIn 0.5s ease-out forwards;
}
.faq-item:nth-child(1) {
  animation-delay: 0s;
}
.faq-item:nth-child(2) {
  animation-delay: 0.1s;
}
.faq-item:nth-child(3) {
  animation-delay: 0.2s;
}
.faq-item:nth-child(4) {
  animation-delay: 0.3s;
}
.faq-item:nth-child(5) {
  animation-delay: 0.4s;
}
.faq-item:nth-child(6) {
  animation-delay: 0.5s;
}
.faq-item:nth-child(7) {
  animation-delay: 0.6s;
}
.faq-item:nth-child(8) {
  animation-delay: 0.7s;
}
.faq-item:nth-child(9) {
  animation-delay: 0.8s;
}
.faq-item:nth-child(10) {
  animation-delay: 0.9s;
}
.faq-item:nth-child(11) {
  animation-delay: 1s;
}
.faq-item:nth-child(12) {
  animation-delay: 1.1s;
}
.faq-item:nth-child(13) {
  animation-delay: 1.2s;
}
.faq-item:nth-child(14) {
  animation-delay: 1.3s;
}
.faq-item:nth-child(15) {
  animation-delay: 1.4s;
}
.faq-item:nth-child(16) {
  animation-delay: 1.5s;
}
.faq-item:nth-child(17) {
  animation-delay: 1.6s;
}
.faq-item:nth-child(18) {
  animation-delay: 1.7s;
}
.faq-item:nth-child(19) {
  animation-delay: 1.8s;
}
.faq-item:nth-child(20) {
  animation-delay: 1.9s;
}
.faq-item:nth-child(21) {
  animation-delay: 2s;
}
.faq-item:nth-child(22) {
  animation-delay: 2.1s;
}
.faq-item:nth-child(23) {
  animation-delay: 2.2s;
}
.faq-item:nth-child(24) {
  animation-delay: 2.3s;
}
.faq-item:nth-child(25) {
  animation-delay: 2.4s;
}
.faq-item:nth-child(26) {
  animation-delay: 2.5s;
}
.faq-item:nth-child(27) {
  animation-delay: 2.6s;
}
.faq-item:nth-child(28) {
  animation-delay: 2.7s;
}
.faq-item:nth-child(29) {
  animation-delay: 2.8s;
}
.faq-item:nth-child(30) {
  animation-delay: 2.9s;
}
.faq-item:nth-child(31) {
  animation-delay: 3s;
}
.faq-item:nth-child(32) {
  animation-delay: 3.1s;
}
.faq-item:nth-child(33) {
  animation-delay: 3.2s;
}
.faq-item:nth-child(34) {
  animation-delay: 3.3s;
}
.faq-item:nth-child(35) {
  animation-delay: 3.4s;
}
.faq-item:nth-child(36) {
  animation-delay: 3.5s;
}
.faq-item:nth-child(37) {
  animation-delay: 3.6s;
}
.faq-item:nth-child(38) {
  animation-delay: 3.7s;
}
.faq-item:nth-child(39) {
  animation-delay: 3.8s;
}
.faq-item:nth-child(40) {
  animation-delay: 3.9s;
}
.faq-item:nth-child(41) {
  animation-delay: 4s;
}
.faq-item:nth-child(42) {
  animation-delay: 4.1s;
}
.faq-item:nth-child(43) {
  animation-delay: 4.2s;
}
.faq-item:nth-child(44) {
  animation-delay: 4.3s;
}
.faq-item:nth-child(45) {
  animation-delay: 4.4s;
}
.faq-item:nth-child(46) {
  animation-delay: 4.5s;
}
.faq-item:nth-child(47) {
  animation-delay: 4.6s;
}
.faq-item:nth-child(48) {
  animation-delay: 4.7s;
}
.faq-item:nth-child(49) {
  animation-delay: 4.8s;
}
.faq-item:nth-child(50) {
  animation-delay: 4.9s;
}
.faq-item:nth-child(51) {
  animation-delay: 5s;
}
.faq-item:nth-child(52) {
  animation-delay: 5.1s;
}
.faq-item:nth-child(53) {
  animation-delay: 5.2s;
}
.faq-item:nth-child(54) {
  animation-delay: 5.3s;
}
.faq-item:nth-child(55) {
  animation-delay: 5.4s;
}
.faq-item:nth-child(56) {
  animation-delay: 5.5s;
}
.faq-item:nth-child(57) {
  animation-delay: 5.6s;
}
.faq-item:nth-child(58) {
  animation-delay: 5.7s;
}
.faq-item:nth-child(59) {
  animation-delay: 5.8s;
}
.faq-item:nth-child(60) {
  animation-delay: 5.9s;
}
.faq-item:nth-child(61) {
  animation-delay: 6s;
}
.faq-item:nth-child(62) {
  animation-delay: 6.1s;
}
.faq-item:nth-child(63) {
  animation-delay: 6.2s;
}
.faq-item:nth-child(64) {
  animation-delay: 6.3s;
}
.faq-item:nth-child(65) {
  animation-delay: 6.4s;
}
.faq-item:nth-child(66) {
  animation-delay: 6.5s;
}
.faq-item:nth-child(67) {
  animation-delay: 6.6s;
}
.faq-item:nth-child(68) {
  animation-delay: 6.7s;
}
.faq-item:nth-child(69) {
  animation-delay: 6.8s;
}
.faq-item:nth-child(70) {
  animation-delay: 6.9s;
}
.faq-item:nth-child(71) {
  animation-delay: 7s;
}
.faq-item:nth-child(72) {
  animation-delay: 7.1s;
}
.faq-item:nth-child(73) {
  animation-delay: 7.2s;
}
.faq-item:nth-child(74) {
  animation-delay: 7.3s;
}
.faq-item:nth-child(75) {
  animation-delay: 7.4s;
}
.faq-item:nth-child(76) {
  animation-delay: 7.5s;
}
.faq-item:nth-child(77) {
  animation-delay: 7.6s;
}
.faq-item:nth-child(78) {
  animation-delay: 7.7s;
}
.faq-item:nth-child(79) {
  animation-delay: 7.8s;
}
.faq-item:nth-child(80) {
  animation-delay: 7.9s;
}
.faq-item:nth-child(81) {
  animation-delay: 8s;
}
.faq-item:nth-child(82) {
  animation-delay: 8.1s;
}
.faq-item:nth-child(83) {
  animation-delay: 8.2s;
}
.faq-item:nth-child(84) {
  animation-delay: 8.3s;
}
.faq-item:nth-child(85) {
  animation-delay: 8.4s;
}
.faq-item:nth-child(86) {
  animation-delay: 8.5s;
}
.faq-item:nth-child(87) {
  animation-delay: 8.6s;
}
.faq-item:nth-child(88) {
  animation-delay: 8.7s;
}
.faq-item:nth-child(89) {
  animation-delay: 8.8s;
}
.faq-item:nth-child(90) {
  animation-delay: 8.9s;
}
.faq-item:nth-child(91) {
  animation-delay: 9s;
}
.faq-item:nth-child(92) {
  animation-delay: 9.1s;
}
.faq-item:nth-child(93) {
  animation-delay: 9.2s;
}
.faq-item:nth-child(94) {
  animation-delay: 9.3s;
}
.faq-item:nth-child(95) {
  animation-delay: 9.4s;
}
.faq-item:nth-child(96) {
  animation-delay: 9.5s;
}
.faq-item:nth-child(97) {
  animation-delay: 9.6s;
}
.faq-item:nth-child(98) {
  animation-delay: 9.7s;
}
.faq-item:nth-child(99) {
  animation-delay: 9.8s;
}
.faq-item:nth-child(100) {
  animation-delay: 9.9s;
}
.faq-item.fade-out {
  animation: fadeOut 0.3s ease-out forwards;
}
.faq-item .title {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
.faq-item .title h3 {
  margin: 0;
  font-weight: normal;
  font-size: 18px;
}
@media (min-width: 768px) {
  .faq-item .title h3 {
    font-size: 20px;
  }
}
.faq-item .title .trigger {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-item .title .trigger svg {
  width: 20px;
  transition: all 0.3s ease;
}
.faq-item .title.active .trigger svg {
  rotate: 180deg;
}
.faq-item .content-wrapper {
  display: none;
}
.faq-item .content-wrapper .content {
  margin-top: 20px;
  line-height: 1.4;
  padding-right: 40px;
  display: grid;
  grid: auto/1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .faq-item .content-wrapper .content {
    grid: auto/repeat(2, minmax(0, 1fr));
    column-gap: 50px;
  }
}
.faq-item .content-wrapper .content .col:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}
.faq-item .content-wrapper .content .col .text {
  font-size: 14px;
}
@media (min-width: 768px) {
  .faq-item .content-wrapper .content .col .text {
    font-size: 16px;
  }
}
.faq-item .content-wrapper .content .col .link-wrapper {
  margin-top: 20px;
}
.faq-item .content-wrapper .content .col .link-wrapper a.btn-primary {
  font-size: 14px;
}
@media (min-width: 768px) {
  .faq-item .content-wrapper .content .col .link-wrapper a.btn-primary {
    font-size: 16px;
  }
}
.faq-item .content-wrapper .content .col .image-wrapper {
  border-radius: 5px;
  overflow: hidden;
}
.faq-item .content-wrapper .content .col .image-wrapper img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
}
.faq-item .content-wrapper .content .col iframe,
.faq-item .content-wrapper .content .col video {
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 5px;
}

.breadcrumb-wrapper {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .breadcrumb-wrapper {
    margin-bottom: 30px;
  }
}

.user-ad {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 8px lightgray;
  position: relative;
  opacity: 0;
  animation: slideUpFadeIn 0.5s ease-out forwards;
}
.user-ad:nth-child(1) {
  animation-delay: 0s;
}
.user-ad:nth-child(2) {
  animation-delay: 0.1s;
}
.user-ad:nth-child(3) {
  animation-delay: 0.2s;
}
.user-ad:nth-child(4) {
  animation-delay: 0.3s;
}
.user-ad:nth-child(5) {
  animation-delay: 0.4s;
}
.user-ad:nth-child(6) {
  animation-delay: 0.5s;
}
.user-ad:nth-child(7) {
  animation-delay: 0.6s;
}
.user-ad:nth-child(8) {
  animation-delay: 0.7s;
}
.user-ad:nth-child(9) {
  animation-delay: 0.8s;
}
.user-ad:nth-child(10) {
  animation-delay: 0.9s;
}
.user-ad:nth-child(11) {
  animation-delay: 1s;
}
.user-ad:nth-child(12) {
  animation-delay: 1.1s;
}
.user-ad:nth-child(13) {
  animation-delay: 1.2s;
}
.user-ad:nth-child(14) {
  animation-delay: 1.3s;
}
.user-ad:nth-child(15) {
  animation-delay: 1.4s;
}
.user-ad:nth-child(16) {
  animation-delay: 1.5s;
}
.user-ad:nth-child(17) {
  animation-delay: 1.6s;
}
.user-ad:nth-child(18) {
  animation-delay: 1.7s;
}
.user-ad:nth-child(19) {
  animation-delay: 1.8s;
}
.user-ad:nth-child(20) {
  animation-delay: 1.9s;
}
.user-ad:nth-child(21) {
  animation-delay: 2s;
}
.user-ad:nth-child(22) {
  animation-delay: 2.1s;
}
.user-ad:nth-child(23) {
  animation-delay: 2.2s;
}
.user-ad:nth-child(24) {
  animation-delay: 2.3s;
}
.user-ad:nth-child(25) {
  animation-delay: 2.4s;
}
.user-ad:nth-child(26) {
  animation-delay: 2.5s;
}
.user-ad:nth-child(27) {
  animation-delay: 2.6s;
}
.user-ad:nth-child(28) {
  animation-delay: 2.7s;
}
.user-ad:nth-child(29) {
  animation-delay: 2.8s;
}
.user-ad:nth-child(30) {
  animation-delay: 2.9s;
}
.user-ad:nth-child(31) {
  animation-delay: 3s;
}
.user-ad:nth-child(32) {
  animation-delay: 3.1s;
}
.user-ad:nth-child(33) {
  animation-delay: 3.2s;
}
.user-ad:nth-child(34) {
  animation-delay: 3.3s;
}
.user-ad:nth-child(35) {
  animation-delay: 3.4s;
}
.user-ad:nth-child(36) {
  animation-delay: 3.5s;
}
.user-ad:nth-child(37) {
  animation-delay: 3.6s;
}
.user-ad:nth-child(38) {
  animation-delay: 3.7s;
}
.user-ad:nth-child(39) {
  animation-delay: 3.8s;
}
.user-ad:nth-child(40) {
  animation-delay: 3.9s;
}
.user-ad:nth-child(41) {
  animation-delay: 4s;
}
.user-ad:nth-child(42) {
  animation-delay: 4.1s;
}
.user-ad:nth-child(43) {
  animation-delay: 4.2s;
}
.user-ad:nth-child(44) {
  animation-delay: 4.3s;
}
.user-ad:nth-child(45) {
  animation-delay: 4.4s;
}
.user-ad:nth-child(46) {
  animation-delay: 4.5s;
}
.user-ad:nth-child(47) {
  animation-delay: 4.6s;
}
.user-ad:nth-child(48) {
  animation-delay: 4.7s;
}
.user-ad:nth-child(49) {
  animation-delay: 4.8s;
}
.user-ad:nth-child(50) {
  animation-delay: 4.9s;
}
.user-ad:nth-child(51) {
  animation-delay: 5s;
}
.user-ad:nth-child(52) {
  animation-delay: 5.1s;
}
.user-ad:nth-child(53) {
  animation-delay: 5.2s;
}
.user-ad:nth-child(54) {
  animation-delay: 5.3s;
}
.user-ad:nth-child(55) {
  animation-delay: 5.4s;
}
.user-ad:nth-child(56) {
  animation-delay: 5.5s;
}
.user-ad:nth-child(57) {
  animation-delay: 5.6s;
}
.user-ad:nth-child(58) {
  animation-delay: 5.7s;
}
.user-ad:nth-child(59) {
  animation-delay: 5.8s;
}
.user-ad:nth-child(60) {
  animation-delay: 5.9s;
}
.user-ad:nth-child(61) {
  animation-delay: 6s;
}
.user-ad:nth-child(62) {
  animation-delay: 6.1s;
}
.user-ad:nth-child(63) {
  animation-delay: 6.2s;
}
.user-ad:nth-child(64) {
  animation-delay: 6.3s;
}
.user-ad:nth-child(65) {
  animation-delay: 6.4s;
}
.user-ad:nth-child(66) {
  animation-delay: 6.5s;
}
.user-ad:nth-child(67) {
  animation-delay: 6.6s;
}
.user-ad:nth-child(68) {
  animation-delay: 6.7s;
}
.user-ad:nth-child(69) {
  animation-delay: 6.8s;
}
.user-ad:nth-child(70) {
  animation-delay: 6.9s;
}
.user-ad:nth-child(71) {
  animation-delay: 7s;
}
.user-ad:nth-child(72) {
  animation-delay: 7.1s;
}
.user-ad:nth-child(73) {
  animation-delay: 7.2s;
}
.user-ad:nth-child(74) {
  animation-delay: 7.3s;
}
.user-ad:nth-child(75) {
  animation-delay: 7.4s;
}
.user-ad:nth-child(76) {
  animation-delay: 7.5s;
}
.user-ad:nth-child(77) {
  animation-delay: 7.6s;
}
.user-ad:nth-child(78) {
  animation-delay: 7.7s;
}
.user-ad:nth-child(79) {
  animation-delay: 7.8s;
}
.user-ad:nth-child(80) {
  animation-delay: 7.9s;
}
.user-ad:nth-child(81) {
  animation-delay: 8s;
}
.user-ad:nth-child(82) {
  animation-delay: 8.1s;
}
.user-ad:nth-child(83) {
  animation-delay: 8.2s;
}
.user-ad:nth-child(84) {
  animation-delay: 8.3s;
}
.user-ad:nth-child(85) {
  animation-delay: 8.4s;
}
.user-ad:nth-child(86) {
  animation-delay: 8.5s;
}
.user-ad:nth-child(87) {
  animation-delay: 8.6s;
}
.user-ad:nth-child(88) {
  animation-delay: 8.7s;
}
.user-ad:nth-child(89) {
  animation-delay: 8.8s;
}
.user-ad:nth-child(90) {
  animation-delay: 8.9s;
}
.user-ad:nth-child(91) {
  animation-delay: 9s;
}
.user-ad:nth-child(92) {
  animation-delay: 9.1s;
}
.user-ad:nth-child(93) {
  animation-delay: 9.2s;
}
.user-ad:nth-child(94) {
  animation-delay: 9.3s;
}
.user-ad:nth-child(95) {
  animation-delay: 9.4s;
}
.user-ad:nth-child(96) {
  animation-delay: 9.5s;
}
.user-ad:nth-child(97) {
  animation-delay: 9.6s;
}
.user-ad:nth-child(98) {
  animation-delay: 9.7s;
}
.user-ad:nth-child(99) {
  animation-delay: 9.8s;
}
.user-ad:nth-child(100) {
  animation-delay: 9.9s;
}
.user-ad.boosted {
  border: 2px solid #F76C5E;
}
.user-ad .image-wrapper {
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.user-ad .image-wrapper img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
}
.user-ad .content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  font-size: 14px;
}
.user-ad .content h3 {
  margin-bottom: 15px;
  font-size: 16px;
  margin-top: 10px;
  height: 50px;
}
.user-ad .content .data {
  display: grid;
  grid: auto/1fr;
  gap: 5px;
  margin-bottom: 15px;
  font-size: 14px;
}
.user-ad .content .data > div .label {
  font-weight: bolder;
}
.user-ad .content .data .status.published .value {
  color: #0fbd0f;
}
.user-ad .content .data .status.draft .value {
  color: red;
}
.user-ad .content .data .status.inactive .value {
  color: orange;
}
.user-ad .content .data .status.inactive .value small {
  color: initial;
}
.user-ad .content .data .notification {
  font-size: 18px;
  padding: 5px;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  text-align: center;
  font-weight: bold;
}
.user-ad .content .data .notification button.btn-primary-small {
  font-size: 14px;
  display: grid;
  grid: auto/1fr;
  gap: 0;
}
.user-ad .content .data .notification a {
  background-color: #3d8650;
  color: #fff;
  border: none;
  border-radius: 5px;
  min-height: 40px;
  padding: 12px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
  min-height: unset;
  padding: 7px 10px;
  margin-top: 20px;
  font-size: 16px;
}
.user-ad .content .data .notification a:hover {
  background-color: #6dbc81;
  color: #fff;
}
.user-ad .content .data .notification a.large {
  min-width: 200px;
}
.user-ad .content .link-wrapper {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.user-ad .content .link-wrapper a,
.user-ad .content .link-wrapper button {
  flex-grow: 1;
  font-size: 14px;
  padding: 5px !important;
  min-height: 30px;
}
.user-ad .content .link-wrapper a.btn-highlight svg,
.user-ad .content .link-wrapper button.btn-highlight svg {
  width: 20px;
  height: 20px;
}

.listing {
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: slideUpFadeIn 0.5s ease-out forwards;
}
.listing:nth-child(1) {
  animation-delay: 0s;
}
.listing:nth-child(2) {
  animation-delay: 0.1s;
}
.listing:nth-child(3) {
  animation-delay: 0.2s;
}
.listing:nth-child(4) {
  animation-delay: 0.3s;
}
.listing:nth-child(5) {
  animation-delay: 0.4s;
}
.listing:nth-child(6) {
  animation-delay: 0.5s;
}
.listing:nth-child(7) {
  animation-delay: 0.6s;
}
.listing:nth-child(8) {
  animation-delay: 0.7s;
}
.listing:nth-child(9) {
  animation-delay: 0.8s;
}
.listing:nth-child(10) {
  animation-delay: 0.9s;
}
.listing:nth-child(11) {
  animation-delay: 1s;
}
.listing:nth-child(12) {
  animation-delay: 1.1s;
}
.listing:nth-child(13) {
  animation-delay: 1.2s;
}
.listing:nth-child(14) {
  animation-delay: 1.3s;
}
.listing:nth-child(15) {
  animation-delay: 1.4s;
}
.listing:nth-child(16) {
  animation-delay: 1.5s;
}
.listing:nth-child(17) {
  animation-delay: 1.6s;
}
.listing:nth-child(18) {
  animation-delay: 1.7s;
}
.listing:nth-child(19) {
  animation-delay: 1.8s;
}
.listing:nth-child(20) {
  animation-delay: 1.9s;
}
.listing:nth-child(21) {
  animation-delay: 2s;
}
.listing:nth-child(22) {
  animation-delay: 2.1s;
}
.listing:nth-child(23) {
  animation-delay: 2.2s;
}
.listing:nth-child(24) {
  animation-delay: 2.3s;
}
.listing:nth-child(25) {
  animation-delay: 2.4s;
}
.listing:nth-child(26) {
  animation-delay: 2.5s;
}
.listing:nth-child(27) {
  animation-delay: 2.6s;
}
.listing:nth-child(28) {
  animation-delay: 2.7s;
}
.listing:nth-child(29) {
  animation-delay: 2.8s;
}
.listing:nth-child(30) {
  animation-delay: 2.9s;
}
.listing:nth-child(31) {
  animation-delay: 3s;
}
.listing:nth-child(32) {
  animation-delay: 3.1s;
}
.listing:nth-child(33) {
  animation-delay: 3.2s;
}
.listing:nth-child(34) {
  animation-delay: 3.3s;
}
.listing:nth-child(35) {
  animation-delay: 3.4s;
}
.listing:nth-child(36) {
  animation-delay: 3.5s;
}
.listing:nth-child(37) {
  animation-delay: 3.6s;
}
.listing:nth-child(38) {
  animation-delay: 3.7s;
}
.listing:nth-child(39) {
  animation-delay: 3.8s;
}
.listing:nth-child(40) {
  animation-delay: 3.9s;
}
.listing:nth-child(41) {
  animation-delay: 4s;
}
.listing:nth-child(42) {
  animation-delay: 4.1s;
}
.listing:nth-child(43) {
  animation-delay: 4.2s;
}
.listing:nth-child(44) {
  animation-delay: 4.3s;
}
.listing:nth-child(45) {
  animation-delay: 4.4s;
}
.listing:nth-child(46) {
  animation-delay: 4.5s;
}
.listing:nth-child(47) {
  animation-delay: 4.6s;
}
.listing:nth-child(48) {
  animation-delay: 4.7s;
}
.listing:nth-child(49) {
  animation-delay: 4.8s;
}
.listing:nth-child(50) {
  animation-delay: 4.9s;
}
.listing:nth-child(51) {
  animation-delay: 5s;
}
.listing:nth-child(52) {
  animation-delay: 5.1s;
}
.listing:nth-child(53) {
  animation-delay: 5.2s;
}
.listing:nth-child(54) {
  animation-delay: 5.3s;
}
.listing:nth-child(55) {
  animation-delay: 5.4s;
}
.listing:nth-child(56) {
  animation-delay: 5.5s;
}
.listing:nth-child(57) {
  animation-delay: 5.6s;
}
.listing:nth-child(58) {
  animation-delay: 5.7s;
}
.listing:nth-child(59) {
  animation-delay: 5.8s;
}
.listing:nth-child(60) {
  animation-delay: 5.9s;
}
.listing:nth-child(61) {
  animation-delay: 6s;
}
.listing:nth-child(62) {
  animation-delay: 6.1s;
}
.listing:nth-child(63) {
  animation-delay: 6.2s;
}
.listing:nth-child(64) {
  animation-delay: 6.3s;
}
.listing:nth-child(65) {
  animation-delay: 6.4s;
}
.listing:nth-child(66) {
  animation-delay: 6.5s;
}
.listing:nth-child(67) {
  animation-delay: 6.6s;
}
.listing:nth-child(68) {
  animation-delay: 6.7s;
}
.listing:nth-child(69) {
  animation-delay: 6.8s;
}
.listing:nth-child(70) {
  animation-delay: 6.9s;
}
.listing:nth-child(71) {
  animation-delay: 7s;
}
.listing:nth-child(72) {
  animation-delay: 7.1s;
}
.listing:nth-child(73) {
  animation-delay: 7.2s;
}
.listing:nth-child(74) {
  animation-delay: 7.3s;
}
.listing:nth-child(75) {
  animation-delay: 7.4s;
}
.listing:nth-child(76) {
  animation-delay: 7.5s;
}
.listing:nth-child(77) {
  animation-delay: 7.6s;
}
.listing:nth-child(78) {
  animation-delay: 7.7s;
}
.listing:nth-child(79) {
  animation-delay: 7.8s;
}
.listing:nth-child(80) {
  animation-delay: 7.9s;
}
.listing:nth-child(81) {
  animation-delay: 8s;
}
.listing:nth-child(82) {
  animation-delay: 8.1s;
}
.listing:nth-child(83) {
  animation-delay: 8.2s;
}
.listing:nth-child(84) {
  animation-delay: 8.3s;
}
.listing:nth-child(85) {
  animation-delay: 8.4s;
}
.listing:nth-child(86) {
  animation-delay: 8.5s;
}
.listing:nth-child(87) {
  animation-delay: 8.6s;
}
.listing:nth-child(88) {
  animation-delay: 8.7s;
}
.listing:nth-child(89) {
  animation-delay: 8.8s;
}
.listing:nth-child(90) {
  animation-delay: 8.9s;
}
.listing:nth-child(91) {
  animation-delay: 9s;
}
.listing:nth-child(92) {
  animation-delay: 9.1s;
}
.listing:nth-child(93) {
  animation-delay: 9.2s;
}
.listing:nth-child(94) {
  animation-delay: 9.3s;
}
.listing:nth-child(95) {
  animation-delay: 9.4s;
}
.listing:nth-child(96) {
  animation-delay: 9.5s;
}
.listing:nth-child(97) {
  animation-delay: 9.6s;
}
.listing:nth-child(98) {
  animation-delay: 9.7s;
}
.listing:nth-child(99) {
  animation-delay: 9.8s;
}
.listing:nth-child(100) {
  animation-delay: 9.9s;
}
.listing .image-wrapper {
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}
.listing .image-wrapper img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
}
.listing .image-wrapper span.new-label {
  background-color: #d2f09c;
  position: absolute;
  left: 0;
  top: 5px;
  padding: 5px 10px;
}
.listing .content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.listing .content h3 {
  margin-bottom: 5px;
  margin-top: 20px;
  font-weight: bolder;
}
.listing .content .data {
  display: grid;
  grid: auto/1fr 1fr;
  gap: 5px;
  margin-bottom: 20px;
}
.listing .content .data > div .label {
  font-weight: bolder;
}
.listing .content .data .price {
  text-align: right;
}
.listing .content .link-wrapper {
  display: flex;
  margin-top: auto;
}
.listing .content .link-wrapper a {
  flex-grow: 1;
}

@media (min-width: 768px) {
  .testimonial-slider .slick-list {
    padding: 0 100px 0 0;
  }
}
@media (min-width: 768px) {
  .testimonial-slider .slick-list .slick-track .slick-slide {
    margin: 0 20px 0 0;
  }
}

.add-to-wishlist {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: #d2f09c;
  border-radius: 5px;
  padding: 5px 4px 6px 4px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.add-to-wishlist svg.solid {
  display: none;
}
.add-to-wishlist.marked svg.outline {
  display: none;
}
.add-to-wishlist.marked svg.solid {
  display: block;
}

a.add-wishlist {
  border: 1px solid #3d8650;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  align-items: center;
  font-size: 13px;
  height: 150px;
  gap: 20px;
  transition: all 0.3s ease;
  text-align: center;
}
a.add-wishlist:hover {
  scale: 1.03;
}

.remove-from-wishlist {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: #F76C5E;
  border-radius: 5px;
  padding: 5px 4px 6px 4px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

a.wishlist-item {
  border: 1px solid #3d8650;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  align-items: center;
  font-size: 13px;
  height: 150px;
  position: relative;
  background-color: #3d8650;
  color: #fff;
  transition: all 0.3s ease;
  text-align: center;
}
a.wishlist-item:hover {
  scale: 1.03;
}
a.wishlist-item svg {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 17px;
}

h1.endpoint-title {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
h1.endpoint-title a.btn-back {
  background-color: #d2f09c;
  border: 1px solid #d2f09c;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}
h1.endpoint-title a.btn-back svg {
  width: 20px;
  height: 20px;
}
h1.endpoint-title .action-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
h1.endpoint-title .action-buttons svg {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
h1.endpoint-title .action-buttons svg.toggle-remove-button {
  stroke: red;
}

h2.endpoint-section-title {
  font-size: 18px;
  font-weight: normal;
  padding: 5px 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
}
h2.endpoint-section-title svg {
  width: 20px;
  transition: all 0.3s ease;
}
h2.endpoint-section-title.active svg {
  rotate: 90deg;
}
h2.endpoint-section-title + * {
  margin-top: 20px;
}

.wishlist-popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}
.wishlist-popup .wishlist-popup-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}
.wishlist-popup .wishlist-popup-inner .content-wrapper {
  width: 400px;
  background-color: #fff;
  padding: 40px 20px 20px;
  position: relative;
  animation: fadeInDrop 0.5s ease-out forwards;
}
.wishlist-popup .wishlist-popup-inner .content-wrapper svg.close-popup {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}
.wishlist-popup .wishlist-popup-inner .content-wrapper ul.wishlists {
  padding: 0;
}
.wishlist-popup .wishlist-popup-inner .content-wrapper ul.wishlists li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  border-bottom: 1px solid lightgrey;
}
.wishlist-popup .wishlist-popup-inner .content-wrapper ul.wishlists li:first-child {
  border-top: 1px solid lightgrey;
}
.wishlist-popup .wishlist-popup-inner .content-wrapper ul.wishlists li .add-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid lightgrey;
  padding: 5px;
  cursor: pointer;
}
.wishlist-popup .wishlist-popup-inner .content-wrapper ul.wishlists li .add-toggle svg {
  width: 20px;
  height: 20px;
}
.wishlist-popup .wishlist-popup-inner .content-wrapper ul.wishlists li .add-toggle .add-to-wishlist {
  position: static;
}
.wishlist-popup .wishlist-popup-inner .content-wrapper ul.wishlists li .add-toggle .check {
  display: none;
}
.wishlist-popup .wishlist-popup-inner .content-wrapper ul.wishlists li .add-toggle.marked .plus {
  display: none;
}
.wishlist-popup .wishlist-popup-inner .content-wrapper ul.wishlists li .add-toggle.marked .add-to-wishlist .outline {
  display: none;
}
.wishlist-popup .wishlist-popup-inner .content-wrapper ul.wishlists li .add-toggle.marked .add-to-wishlist .solid {
  display: block;
}
.wishlist-popup .wishlist-popup-inner .content-wrapper ul.wishlists li .add-toggle.marked .check {
  display: block;
}
.wishlist-popup .wishlist-popup-inner .content-wrapper .add-new-wishlist {
  margin-top: 10px;
}
.wishlist-popup .wishlist-popup-inner .content-wrapper .add-new-wishlist a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.wishlist-popup .wishlist-popup-inner .content-wrapper .add-new-wishlist a svg {
  width: 20px;
  height: 20px;
}
.wishlist-popup .wishlist-popup-inner .content-wrapper .add-new-wishlist .new-wishlist-form {
  display: none;
}
.wishlist-popup .wishlist-popup-inner .content-wrapper .add-new-wishlist .new-wishlist-form .input-group {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}
.wishlist-popup .wishlist-popup-inner .content-wrapper .add-new-wishlist .new-wishlist-form .input-group button.btn-secondary {
  flex-shrink: 0;
  height: 30px;
}
.wishlist-popup .wishlist-popup-inner .content-wrapper .add-new-wishlist .new-wishlist-form .input-group button.btn-secondary svg {
  width: 20px;
  height: 20px;
}
.wishlist-popup .wishlist-popup-inner .content-wrapper .cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.wishlist-popup .wishlist-popup-inner .content-wrapper .cta button.btn-primary svg {
  width: 20px;
  height: 20px;
}

#modal-search .modal-inner .modal-content form {
  margin: 30px 0 10px;
}

a.page-card {
  background-color: #d2f09c;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  color: #222222;
  padding: 20px;
  opacity: 0;
  animation: slideUpFadeIn 0.5s ease-out forwards;
}
a.page-card:nth-child(1) {
  animation-delay: 0s;
}
a.page-card:nth-child(2) {
  animation-delay: 0.1s;
}
a.page-card:nth-child(3) {
  animation-delay: 0.2s;
}
a.page-card:nth-child(4) {
  animation-delay: 0.3s;
}
a.page-card:nth-child(5) {
  animation-delay: 0.4s;
}
a.page-card:nth-child(6) {
  animation-delay: 0.5s;
}
a.page-card:nth-child(7) {
  animation-delay: 0.6s;
}
a.page-card:nth-child(8) {
  animation-delay: 0.7s;
}
a.page-card:nth-child(9) {
  animation-delay: 0.8s;
}
a.page-card:nth-child(10) {
  animation-delay: 0.9s;
}
a.page-card:nth-child(11) {
  animation-delay: 1s;
}
a.page-card:nth-child(12) {
  animation-delay: 1.1s;
}
a.page-card:nth-child(13) {
  animation-delay: 1.2s;
}
a.page-card:nth-child(14) {
  animation-delay: 1.3s;
}
a.page-card:nth-child(15) {
  animation-delay: 1.4s;
}
a.page-card:nth-child(16) {
  animation-delay: 1.5s;
}
a.page-card:nth-child(17) {
  animation-delay: 1.6s;
}
a.page-card:nth-child(18) {
  animation-delay: 1.7s;
}
a.page-card:nth-child(19) {
  animation-delay: 1.8s;
}
a.page-card:nth-child(20) {
  animation-delay: 1.9s;
}
a.page-card:nth-child(21) {
  animation-delay: 2s;
}
a.page-card:nth-child(22) {
  animation-delay: 2.1s;
}
a.page-card:nth-child(23) {
  animation-delay: 2.2s;
}
a.page-card:nth-child(24) {
  animation-delay: 2.3s;
}
a.page-card:nth-child(25) {
  animation-delay: 2.4s;
}
a.page-card:nth-child(26) {
  animation-delay: 2.5s;
}
a.page-card:nth-child(27) {
  animation-delay: 2.6s;
}
a.page-card:nth-child(28) {
  animation-delay: 2.7s;
}
a.page-card:nth-child(29) {
  animation-delay: 2.8s;
}
a.page-card:nth-child(30) {
  animation-delay: 2.9s;
}
a.page-card:nth-child(31) {
  animation-delay: 3s;
}
a.page-card:nth-child(32) {
  animation-delay: 3.1s;
}
a.page-card:nth-child(33) {
  animation-delay: 3.2s;
}
a.page-card:nth-child(34) {
  animation-delay: 3.3s;
}
a.page-card:nth-child(35) {
  animation-delay: 3.4s;
}
a.page-card:nth-child(36) {
  animation-delay: 3.5s;
}
a.page-card:nth-child(37) {
  animation-delay: 3.6s;
}
a.page-card:nth-child(38) {
  animation-delay: 3.7s;
}
a.page-card:nth-child(39) {
  animation-delay: 3.8s;
}
a.page-card:nth-child(40) {
  animation-delay: 3.9s;
}
a.page-card:nth-child(41) {
  animation-delay: 4s;
}
a.page-card:nth-child(42) {
  animation-delay: 4.1s;
}
a.page-card:nth-child(43) {
  animation-delay: 4.2s;
}
a.page-card:nth-child(44) {
  animation-delay: 4.3s;
}
a.page-card:nth-child(45) {
  animation-delay: 4.4s;
}
a.page-card:nth-child(46) {
  animation-delay: 4.5s;
}
a.page-card:nth-child(47) {
  animation-delay: 4.6s;
}
a.page-card:nth-child(48) {
  animation-delay: 4.7s;
}
a.page-card:nth-child(49) {
  animation-delay: 4.8s;
}
a.page-card:nth-child(50) {
  animation-delay: 4.9s;
}
a.page-card:nth-child(51) {
  animation-delay: 5s;
}
a.page-card:nth-child(52) {
  animation-delay: 5.1s;
}
a.page-card:nth-child(53) {
  animation-delay: 5.2s;
}
a.page-card:nth-child(54) {
  animation-delay: 5.3s;
}
a.page-card:nth-child(55) {
  animation-delay: 5.4s;
}
a.page-card:nth-child(56) {
  animation-delay: 5.5s;
}
a.page-card:nth-child(57) {
  animation-delay: 5.6s;
}
a.page-card:nth-child(58) {
  animation-delay: 5.7s;
}
a.page-card:nth-child(59) {
  animation-delay: 5.8s;
}
a.page-card:nth-child(60) {
  animation-delay: 5.9s;
}
a.page-card:nth-child(61) {
  animation-delay: 6s;
}
a.page-card:nth-child(62) {
  animation-delay: 6.1s;
}
a.page-card:nth-child(63) {
  animation-delay: 6.2s;
}
a.page-card:nth-child(64) {
  animation-delay: 6.3s;
}
a.page-card:nth-child(65) {
  animation-delay: 6.4s;
}
a.page-card:nth-child(66) {
  animation-delay: 6.5s;
}
a.page-card:nth-child(67) {
  animation-delay: 6.6s;
}
a.page-card:nth-child(68) {
  animation-delay: 6.7s;
}
a.page-card:nth-child(69) {
  animation-delay: 6.8s;
}
a.page-card:nth-child(70) {
  animation-delay: 6.9s;
}
a.page-card:nth-child(71) {
  animation-delay: 7s;
}
a.page-card:nth-child(72) {
  animation-delay: 7.1s;
}
a.page-card:nth-child(73) {
  animation-delay: 7.2s;
}
a.page-card:nth-child(74) {
  animation-delay: 7.3s;
}
a.page-card:nth-child(75) {
  animation-delay: 7.4s;
}
a.page-card:nth-child(76) {
  animation-delay: 7.5s;
}
a.page-card:nth-child(77) {
  animation-delay: 7.6s;
}
a.page-card:nth-child(78) {
  animation-delay: 7.7s;
}
a.page-card:nth-child(79) {
  animation-delay: 7.8s;
}
a.page-card:nth-child(80) {
  animation-delay: 7.9s;
}
a.page-card:nth-child(81) {
  animation-delay: 8s;
}
a.page-card:nth-child(82) {
  animation-delay: 8.1s;
}
a.page-card:nth-child(83) {
  animation-delay: 8.2s;
}
a.page-card:nth-child(84) {
  animation-delay: 8.3s;
}
a.page-card:nth-child(85) {
  animation-delay: 8.4s;
}
a.page-card:nth-child(86) {
  animation-delay: 8.5s;
}
a.page-card:nth-child(87) {
  animation-delay: 8.6s;
}
a.page-card:nth-child(88) {
  animation-delay: 8.7s;
}
a.page-card:nth-child(89) {
  animation-delay: 8.8s;
}
a.page-card:nth-child(90) {
  animation-delay: 8.9s;
}
a.page-card:nth-child(91) {
  animation-delay: 9s;
}
a.page-card:nth-child(92) {
  animation-delay: 9.1s;
}
a.page-card:nth-child(93) {
  animation-delay: 9.2s;
}
a.page-card:nth-child(94) {
  animation-delay: 9.3s;
}
a.page-card:nth-child(95) {
  animation-delay: 9.4s;
}
a.page-card:nth-child(96) {
  animation-delay: 9.5s;
}
a.page-card:nth-child(97) {
  animation-delay: 9.6s;
}
a.page-card:nth-child(98) {
  animation-delay: 9.7s;
}
a.page-card:nth-child(99) {
  animation-delay: 9.8s;
}
a.page-card:nth-child(100) {
  animation-delay: 9.9s;
}
a.page-card .page-image {
  aspect-ratio: 16/10;
}
a.page-card .page-image img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
a.page-card .page-content h3 {
  margin-top: 5px;
  margin-bottom: 15px;
  font-size: 20px;
}

a.card-category {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d2f09c;
  border-radius: 5px;
  padding: 20px;
  height: 100px;
}
a.card-category h2 {
  margin: 0;
  font-size: 20px;
}

.pagination {
  margin: 30px auto;
}
.pagination .pagination-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination .pagination-wrapper button {
  background-color: #3d8650;
  color: #fff;
  border: none;
  border-radius: 5px;
  min-height: 40px;
  padding: 12px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
  min-height: auto;
  height: 30px;
  padding: 5px;
}
.pagination .pagination-wrapper button:hover {
  background-color: #6dbc81;
  color: #fff;
}
.pagination .pagination-wrapper button.large {
  min-width: 200px;
}
.pagination .pagination-wrapper button[disabled] {
  background-color: #6dbc81;
  cursor: initial;
}
.pagination .pagination-wrapper button svg {
  width: 20px;
  height: 20px;
}

.listings-wrapper {
  display: grid;
  grid: auto/minmax(0, 1fr);
  gap: 30px;
}
@media (min-width: 768px) {
  .listings-wrapper {
    grid: auto/250px 1fr;
  }
}
.listings-wrapper .col.col-1 {
  order: 2;
}
@media (min-width: 768px) {
  .listings-wrapper .col.col-1 {
    order: 0;
  }
}
.listings-wrapper .col h1.page-title {
  margin-top: 0;
}
.listings-wrapper .col a.archive-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.listings-wrapper .col a.archive-link svg {
  position: relative;
  left: 0;
  transition: all 0.3s ease;
}
.listings-wrapper .col a.archive-link:hover svg {
  left: 5px;
}
.listings-wrapper .col button#open-sidebar {
  width: 100%;
  margin-bottom: 20px;
  height: 40px;
  position: sticky;
  top: 150px;
  z-index: 999;
}
@media (min-width: 768px) {
  .listings-wrapper .col button#open-sidebar {
    display: none;
  }
}
.listings-wrapper .col .listings-ctr {
  position: relative;
}
.listings-wrapper .col .listings-ctr .spinner {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  display: none;
}
.listings-wrapper .col .listings-ctr .spinner img {
  width: 20px;
}

.listings-grid {
  display: grid;
  grid: auto/repeat(1, minmax(0, 1fr));
  row-gap: 30px;
  column-gap: 20px;
  min-height: 100px;
}
@media (min-width: 540px) {
  .listings-grid {
    grid: auto/repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .listings-grid {
    grid: auto/repeat(3, minmax(0, 1fr));
  }
}
.listings-grid > p {
  grid-column: 1/-1;
}

.page-template-t-checkout .site-wrapper main.main-content .container .woocommerce form.checkout {
  display: grid;
  grid: auto/1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .page-template-t-checkout .site-wrapper main.main-content .container .woocommerce form.checkout {
    grid: auto/1fr 1fr;
  }
}
@media (min-width: 100px) {
  .page-template-t-checkout .site-wrapper main.main-content .container .woocommerce form.checkout {
    gap: 40px;
  }
}
.page-template-t-checkout .site-wrapper main.main-content .container .woocommerce form.checkout #customer_details::before, .page-template-t-checkout .site-wrapper main.main-content .container .woocommerce form.checkout #customer_details::after {
  display: none;
}
.page-template-t-checkout .site-wrapper main.main-content .container .woocommerce form.checkout #customer_details .col-1,
.page-template-t-checkout .site-wrapper main.main-content .container .woocommerce form.checkout #customer_details .col-2 {
  float: none;
  width: 100%;
}
.page-template-t-checkout .site-wrapper main.main-content .container .woocommerce form.checkout h3#order_review_heading {
  display: none;
}
.page-template-t-checkout .site-wrapper main.main-content .container .woocommerce form.checkout #order_review table.woocommerce-checkout-review-order-table thead tr th {
  font-weight: bold;
}
.page-template-t-checkout .site-wrapper main.main-content .container .woocommerce form.checkout #order_review table.woocommerce-checkout-review-order-table tfoot tr th {
  font-weight: bold;
}
.page-template-t-checkout .site-wrapper main.main-content .container .woocommerce form.checkout #payment .place-order button#place_order {
  margin-top: 20px;
  width: 100%;
  font-size: 20px;
  text-transform: uppercase;
}

section.form .container .breadcrumb-wrapper {
  grid-column: 1/-1;
}
section.form .container .col-wrapper {
  display: grid;
  grid: auto/1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  section.form .container .col-wrapper {
    grid: auto/1fr 1fr;
  }
}
@media (min-width: 1024px) {
  section.form .container .col-wrapper {
    gap: 80px;
  }
}
section.form .container .col-wrapper .col .section-intro-text {
  margin-bottom: 0;
}

section.contact .container {
  display: grid;
  grid: auto/1fr;
  row-gap: 40px;
}
@media (min-width: 768px) {
  section.contact .container {
    grid: auto/40% 1fr;
  }
}
section.contact .container .col ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid: auto/1fr;
  gap: 10px;
}
section.contact .container .col ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
}
section.contact .container .col ul li a svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 768px) {
  section.contact .container .col:nth-of-type(1) {
    order: 2;
    border-left: 1px solid #3d8650;
    padding-left: 30px;
  }
}
@media (min-width: 1024px) {
  section.contact .container .col:nth-of-type(1) {
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  section.contact .container .col:nth-of-type(2) {
    padding-right: 30px;
  }
}
@media (min-width: 1024px) {
  section.contact .container .col:nth-of-type(2) {
    padding-right: 60px;
  }
}

section.google-map .container iframe {
  width: 100%;
  display: flex;
}
section.google-map.full-width .container {
  margin: 0;
  padding: 0;
  max-width: none;
}

section.hero-slider {
  position: relative;
}
section.hero-slider::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0px;
  background: black;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4500000684) 0%, rgba(255, 255, 255, 0) 60%);
  z-index: 1;
}
section.hero-slider .slider-wrapper {
  margin-bottom: 0px;
  aspect-ratio: 16/7;
  min-height: 400px;
  overflow: hidden;
  max-width: 100vw;
}
section.hero-slider .slider-wrapper .slick-list .slick-track .slick-slide div .slide img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
  min-height: 400px;
}
section.hero-slider .slider-wrapper ul.slick-dots {
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  max-width: 1400px;
  text-align: left;
  z-index: 10;
}
@media (min-width: 1024px) {
  section.hero-slider .slider-wrapper ul.slick-dots {
    padding-left: 40px;
    padding-right: 40px;
  }
}
section.hero-slider .slider-wrapper ul.slick-dots li {
  margin: 0;
}
section.hero-slider .slider-wrapper ul.slick-dots li button::before {
  font-size: 30px;
  color: #fff;
  opacity: 0.6;
}
section.hero-slider .slider-wrapper ul.slick-dots li.slick-active button::before {
  opacity: 1;
}
section.hero-slider .text-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  padding-bottom: 60px;
}
section.hero-slider .text-wrapper .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
}
@media (min-width: 768px) {
  section.hero-slider .text-wrapper .container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
section.hero-slider .text-wrapper .container .title {
  margin: 0;
  font-size: 28px;
  color: #fff;
  max-width: 550px;
}
@media (min-width: 768px) {
  section.hero-slider .text-wrapper .container .title {
    font-size: 36px;
  }
}
section.hero-slider .text-wrapper .container .text {
  font-size: 14px;
}
section.hero-slider .text-wrapper .container .link-wrapper {
  margin-top: 20px;
}
@media (min-width: 768px) {
  section.hero-slider .text-wrapper .container .link-wrapper {
    position: absolute;
    right: 40px;
    bottom: 15px;
  }
}
section.free-text .container .content .link-wrapper {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 768px) {
  section.cards .container .content {
    text-align: center;
  }
}
@media (min-width: 768px) {
  section.cards .container .content .text {
    max-width: 550px;
    margin: auto;
  }
}
section.cards .container .cards-wrapper {
  margin-top: 70px;
  display: grid;
  grid: auto/1fr;
  column-gap: 25px;
  row-gap: 70px;
}
@media (min-width: 768px) {
  section.cards .container .cards-wrapper {
    grid: auto/repeat(2, minmax(0, 1fr));
    margin-top: 120px;
  }
}

section.accordeon-items .container .accordeon-items-wrapper {
  display: grid;
  grid: auto/1fr;
  gap: 15px;
}

section.faq .container ul.faq-filter {
  list-style-type: none;
  padding: 0;
  background-color: #3d8650;
  border-radius: 5px;
  max-height: 40px;
  overflow: hidden;
  color: #fff;
  display: grid;
  grid: auto/1fr;
  transition: max-height 0.5s ease-out;
  position: relative;
}
section.faq .container ul.faq-filter.active {
  max-height: 500px;
}
@media (min-width: 768px) {
  section.faq .container ul.faq-filter.active {
    max-height: 40px;
  }
}
section.faq .container ul.faq-filter.active svg {
  rotate: 180deg;
}
@media (min-width: 768px) {
  section.faq .container ul.faq-filter {
    display: flex;
    column-gap: 20px;
    background-color: transparent;
    color: initial;
    margin-bottom: 40px;
  }
  section.faq .container ul.faq-filter svg {
    display: none;
  }
}
section.faq .container ul.faq-filter svg {
  width: 20px;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
section.faq .container ul.faq-filter li {
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  cursor: pointer;
}
@media (min-width: 768px) {
  section.faq .container ul.faq-filter li {
    border: 1px solid #3d8650;
    border-radius: 5px;
    color: rgba(0, 0, 0, 0.5);
  }
}
section.faq .container ul.faq-filter li.active {
  order: -1;
}
@media (min-width: 768px) {
  section.faq .container ul.faq-filter li.active {
    background-color: #3d8650;
    color: #fff;
    order: initial;
  }
}
section.faq .container .faq-items-wrapper {
  display: grid;
  grid: auto/1fr;
  gap: 10px;
}
@media (min-width: 768px) {
  section.faq .container .faq-items-wrapper {
    gap: 15px;
  }
}

section.cta {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
section.cta::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: black;
  background: linear-gradient(0deg, black 100%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.45;
  z-index: 1;
}
section.cta .container {
  color: #fff;
  text-align: center;
  display: grid;
  grid: auto/1fr;
  gap: 25px;
  position: relative;
  z-index: 2;
}
section.cta .container > * {
  max-width: 600px;
  margin: auto;
}
section.cta .container .title {
  font-size: 28px;
}
@media (min-width: 768px) {
  section.cta .container .title {
    font-size: 37px;
  }
}
section.cta .container .text {
  font-size: 14px;
}
@media (min-width: 768px) {
  section.cta .container .text {
    font-size: 16px;
  }
}
section.cta .container .link-wrapper {
  font-size: 14px;
  display: flex;
  column-gap: 20px;
}
@media (min-width: 768px) {
  section.cta .container .link-wrapper {
    font-size: 16px;
  }
}
section.cta .container .link-wrapper a {
  padding-left: 20px;
  padding-right: 20px;
}
section.cta.min-height {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section.banner .container .content {
  background-color: #3d8650;
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
}
section.banner .container .content .section-title {
  margin-bottom: 15px;
  font-size: 25px;
}
section.usp .container .usp-wrapper {
  display: grid;
  grid: auto/1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  section.usp .container .usp-wrapper {
    grid: auto/repeat(3, 1fr);
  }
}

section.testimonials .container .content {
  margin-bottom: 20px;
  position: relative;
  padding-right: 70px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  section.testimonials .container .content {
    margin-bottom: 60px;
  }
}
section.testimonials .container .content h2.section-title {
  margin: 0;
}
section.testimonials .container .content .text {
  margin-top: 20px;
  max-width: 600px;
}
section.testimonials .container .content nav.slider-nav {
  position: absolute;
  right: 0;
  top: 2px;
}

section.text-image .container .content {
  display: grid;
  grid: auto/repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px) {
  section.text-image .container .content {
    grid: auto/repeat(2, minmax(0, 1fr));
    gap: 15px;
  }
}
section.text-image .container .content .col {
  border-radius: 10px;
  overflow: hidden;
}
section.text-image .container .content .col:nth-child(2) {
  padding: 35px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background-color: #d2f09c;
  margin-top: -20px;
}
@media (min-width: 768px) {
  section.text-image .container .content .col:nth-child(2) {
    padding: 60px 60px 60px 30px;
    margin-top: 0;
  }
}
section.text-image .container .content .col:nth-child(2) .section-title {
  margin: 0;
  font-size: 18px;
}
@media (min-width: 768px) {
  section.text-image .container .content .col:nth-child(2) .section-title {
    font-size: 30px;
  }
}
section.text-image .container .content .col:nth-child(2) .text {
  font-size: 14px;
}
@media (min-width: 768px) {
  section.text-image .container .content .col:nth-child(2) .text {
    font-size: 16px;
  }
}
section.text-image .container .content .col:nth-child(2) .btn-transparent {
  font-size: 14px;
}
@media (min-width: 768px) {
  section.text-image .container .content .col:nth-child(2) .btn-transparent {
    font-size: 16px;
  }
}
section.text-image .container .content .col img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
  min-height: 200px;
}
@media (min-width: 768px) {
  section.text-image .container .content.image-right .col:first-of-type {
    order: 2;
  }
}

section.video .container .video-wrapper video {
  border-radius: 10px;
}
section.video .container .video-wrapper iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 10px;
}

section.info-slider .container .slider-wrapper {
  display: grid;
  grid: auto/1fr;
  margin-top: 30px;
}
@media (min-width: 768px) {
  section.info-slider .container .slider-wrapper {
    grid: auto/repeat(2, minmax(0, 1fr));
    column-gap: 15px;
  }
}
section.info-slider .container .slider-wrapper .col {
  border-radius: 10px;
  overflow: hidden;
}
section.info-slider .container .slider-wrapper .col:first-child {
  background-color: #d2f09c;
  padding: 20px;
  order: 2;
  margin-top: -20px;
}
@media (min-width: 768px) {
  section.info-slider .container .slider-wrapper .col:first-child {
    margin-top: 0;
    order: 0;
    padding: 30px;
  }
}
section.info-slider .container .slider-wrapper .col .slider h3 {
  margin-top: 0;
}
@media (min-width: 768px) {
  section.info-slider .container .slider-wrapper .col .slider h3 {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  section.info-slider .container .slider-wrapper .col .slider h3 {
    font-size: 30px;
  }
}
section.info-slider .container .slider-wrapper .col .slider .slide-count {
  margin-top: 20px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  section.info-slider .container .slider-wrapper .col .slider .slide-count {
    margin-bottom: 25px;
  }
}
section.info-slider .container .slider-wrapper .col .slider .slide-text {
  line-height: 1.5;
}
section.info-slider .container .slider-wrapper .col nav.slider-nav {
  margin-top: 20px;
}
section.info-slider .container .slider-wrapper .col img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
  min-height: 220px;
}

section.hero-image {
  position: relative;
}
@media (min-width: 768px) {
  section.hero-image {
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) {
  section.hero-image .container {
    padding-right: 55%;
  }
}
section.hero-image .container h1.title {
  margin-top: 0;
}
section.hero-image .container .image-wrapper {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 768px) {
  section.hero-image .container .image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    left: 50%;
    bottom: 60px;
    border-radius: 0 0 0 10px;
  }
}
section.hero-image .container .image-wrapper img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
}
section.statistics .container {
  display: grid;
  grid: auto/1fr;
  row-gap: 10px;
  column-gap: 15px;
}
@media (min-width: 768px) {
  section.statistics .container {
    grid: auto/1fr 1fr 1fr;
  }
}
section.statistics .container .statistics-card {
  background-color: #d2f09c;
  border-radius: 5px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
@media (min-width: 768px) {
  section.statistics .container .statistics-card {
    height: 200px;
  }
}
section.statistics .container .statistics-card .value {
  font-size: 30px;
  font-weight: bold;
}
@media (min-width: 768px) {
  section.statistics .container .statistics-card .value {
    font-size: 50px;
  }
}
section.statistics .container .statistics-card .label {
  font-size: 14px;
}
@media (min-width: 768px) {
  section.statistics .container .statistics-card .label {
    font-size: 16px;
  }
}

section.text-images-grid .container .grid {
  display: grid;
  grid: auto/minmax(0, 1fr);
  gap: 10px;
}
@media (min-width: 768px) {
  section.text-images-grid .container .grid {
    gap: 15px;
    grid: auto/repeat(2, minmax(0, 1fr));
  }
}
section.text-images-grid .container .grid .grid-item {
  background-color: #d2f09c;
  border-radius: 5px;
  overflow: hidden;
}
section.text-images-grid .container .grid .grid-item:not(.image) {
  padding: 20px 15px;
}
@media (min-width: 768px) {
  section.text-images-grid .container .grid .grid-item:not(.image) {
    padding: 25px 20px;
  }
}
@media (min-width: 768px) {
  section.text-images-grid .container .grid .grid-item.image:nth-of-type(1) {
    grid-row: span 2;
  }
  section.text-images-grid .container .grid .grid-item.image:nth-of-type(4) {
    order: 5;
  }
}
section.text-images-grid .container .grid .grid-item h2 {
  font-size: 18px;
  margin-top: 0;
}
@media (min-width: 768px) {
  section.text-images-grid .container .grid .grid-item h2 {
    font-size: 30px;
  }
}
section.text-images-grid .container .grid .grid-item .text {
  line-height: 1.5;
  font-size: 14px;
}
@media (min-width: 768px) {
  section.text-images-grid .container .grid .grid-item .text {
    font-size: 16px;
  }
}
section.text-images-grid .container .grid .grid-item img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
  min-height: 220px;
}

section.team-members .container .teammembers-wrapper {
  margin-top: 20px;
}
@media (min-width: 768px) {
  section.team-members .container .teammembers-wrapper {
    display: grid;
    grid: auto/repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-top: 40px;
  }
}
section.team-members .container .teammembers-wrapper > .col img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
}
section.team-members .container .teammembers-wrapper > .col:nth-child(1) {
  display: none;
}
@media (min-width: 768px) {
  section.team-members .container .teammembers-wrapper > .col:nth-child(1) {
    display: block;
  }
}
section.team-members .container .teammembers-wrapper > .col:nth-child(2) {
  display: grid;
  grid: auto/minmax(0, 1fr);
  gap: 10px;
}

section.products .container .content .text {
  max-width: 800px;
}
section.products .container .woocommerce {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .error404 .site-wrapper main.main-content .container {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .error404 .site-wrapper main.main-content .container h1.page-title {
    margin-bottom: 40px;
  }
}

body.search .site-wrapper main.main-content .container form#searchform {
  max-width: 800px;
}
body.search .site-wrapper main.main-content .container form#searchform:last-child {
  margin-bottom: 30px;
}
body.search .site-wrapper main.main-content .container .search-results {
  display: grid;
  grid: auto/1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  body.search .site-wrapper main.main-content .container .search-results {
    margin-top: 40px;
  }
}
body.search .site-wrapper main.main-content .container .search-results .search-results-wrapper {
  display: grid;
  grid: auto/repeat(1, minmax(0, 1fr));
  row-gap: 30px;
  column-gap: 20px;
  background-color: #fff8f0;
  padding: 20px;
  border-radius: 5px;
}
@media (min-width: 540px) {
  body.search .site-wrapper main.main-content .container .search-results .search-results-wrapper {
    grid: auto/repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  body.search .site-wrapper main.main-content .container .search-results .search-results-wrapper {
    grid: auto/repeat(3, minmax(0, 1fr));
    padding: 30px;
  }
}
body.search .site-wrapper main.main-content .container .search-results .search-results-wrapper h2 {
  grid-column: 1/-1;
  margin: 0;
}

body.woocommerce-account {
  min-height: 100vh;
}
body.woocommerce-account .site-wrapper {
  flex-grow: 1;
  min-height: 600px;
  position: relative;
}
body.woocommerce-account .site-wrapper main.main-content > section {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin-top: -10px;
  margin-bottom: -10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  body.woocommerce-account .site-wrapper main.main-content > section .container {
    display: grid;
    grid: auto/repeat(2, minmax(0, 1fr));
  }
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col.image-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col.image-wrapper img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
}
@media only screen and (min-width: 1024px) {
  body.woocommerce-account .site-wrapper main.main-content > section .container .col.image-wrapper {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin-right: -5px;
    z-index: 2;
  }
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col.content {
  position: relative;
  z-index: 1;
  padding: 30px;
  background-color: #d2f09c;
  border-radius: 5px;
  margin: 60px auto;
  max-width: 500px;
}
@media only screen and (min-width: 1024px) {
  body.woocommerce-account .site-wrapper main.main-content > section .container .col.content {
    max-width: 100%;
    margin: 0;
    padding: 60px;
  }
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .breadcrumb-wrapper {
  display: none;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce button {
  padding-left: 25px;
  padding-right: 25px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .toggle-login-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .toggle-login-buttons button.active {
  background-color: #3d8650 !important;
  color: #fff !important;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce #customer_login h2 {
  display: none;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce #customer_login form {
  padding: 0;
  border: none;
  margin-top: 0;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce #customer_login form p.woocommerce-form-row input {
  border: 1.5px solid #3d8650;
  border-radius: 5px;
  height: 40px;
  width: 100%;
  padding: 0 10px;
  font-size: 14px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce #customer_login form p.woocommerce-form-row input:focus-visible {
  outline: none;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce #customer_login form p.lost_password {
  margin-top: 0;
  padding: 0 5px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce #customer_login form p.lost_password a {
  color: #222222;
  text-decoration: underline;
  font-size: 11px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce #customer_login form button.woocommerce-form-register__submit {
  margin-top: 20px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce #customer_login form .woocommerce-privacy-policy-text {
  font-size: 12px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce #customer_login form.login {
  display: grid;
  grid: auto/1fr;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce #customer_login form.login p.form-row:not(.form-row-wide) {
  order: 1;
  margin-top: 20px;
}
@media only screen and (min-width: 769px) {
  body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce #customer_login .col-1 {
    float: none;
    width: 100%;
  }
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce #customer_login .col-2 {
  display: none;
}
@media only screen and (min-width: 769px) {
  body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce #customer_login .col-2 {
    float: none;
    width: 100%;
  }
}
@media (min-width: 768px) {
  body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce nav.woocommerce-MyAccount-navigation {
    float: left;
    width: 30%;
  }
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce nav.woocommerce-MyAccount-navigation ul {
  margin: 0;
  list-style-type: none;
  padding: 0;
  display: grid;
  grid: auto/repeat(2, 1fr);
  font-size: 12px;
}
@media (min-width: 540px) {
  body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce nav.woocommerce-MyAccount-navigation ul {
    grid: auto/repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce nav.woocommerce-MyAccount-navigation ul {
    font-size: 14px;
    grid: auto/repeat(1, 1fr);
  }
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce nav.woocommerce-MyAccount-navigation ul li {
  height: 40px;
  display: grid;
  grid: auto/1fr;
  transition: all 0.3s ease;
  background-color: #3d8650;
  border: 1px solid #fff;
  border-radius: 5px;
  cursor: pointer;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce nav.woocommerce-MyAccount-navigation ul li:hover {
  scale: 1.04;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce nav.woocommerce-MyAccount-navigation ul li.is-active {
  background-color: #d2f09c;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce nav.woocommerce-MyAccount-navigation ul li.is-active a {
  color: #222222;
}
@media (min-width: 768px) {
  body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce nav.woocommerce-MyAccount-navigation ul li {
    height: 50px;
  }
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce nav.woocommerce-MyAccount-navigation ul li a {
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content {
    float: right;
    width: 68%;
  }
}
@media (min-width: 768px) {
  body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content h1 {
    margin-top: 0;
  }
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content section.endpoint-section {
  position: static;
  margin: 0;
  padding: 20px;
  background-color: #fff8f0;
  border-radius: 5px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content section.endpoint-section + section {
  margin-top: 15px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content section.endpoint-section h3 {
  margin-bottom: 10px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content section.endpoint-section h3:first-child {
  margin-top: 0;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content section.endpoint-section .col-wrapper {
  display: grid;
  grid: auto/1fr;
  gap: 20px;
}
@media (min-width: 1024px) {
  body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content section.endpoint-section .col-wrapper {
    grid: auto/1fr 1fr;
  }
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content section.endpoint-section textarea {
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #3d8650;
}
@media (min-width: 768px) {
  body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content section#credits-overview .col-wrapper {
    grid: auto/1fr 1fr;
  }
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content section#credits-overview .col-wrapper .col {
  display: grid;
  grid: auto/minmax(0, 1fr) minmax(0, 10px) minmax(0, 100px);
  align-items: center;
  font-size: 13px;
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 7px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content section#credits-overview .col-wrapper .col .label {
  font-weight: bold;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content section#credits-overview .col-wrapper .col .value {
  width: 20px;
  flex-shrink: 0;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content section#credits-overview .col-wrapper .col .add_to_cart_button {
  height: 30px;
  min-height: unset;
  flex-shrink: 0;
  margin-left: auto;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content section#credits {
  font-size: 14px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content section#credits .acf-field-6780e2aa3eea7,
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content section#credits .acf-field-6780e2d33eea8,
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content section#credits .acf-field-678620e09e8f6 {
  display: none;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content section#credits .add_to_cart_button {
  background-color: #3d8650;
  color: #fff;
  border: none;
  border-radius: 5px;
  min-height: 40px;
  padding: 12px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
  min-height: unset;
  padding: 7px 10px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content section#credits .add_to_cart_button:hover {
  background-color: #6dbc81;
  color: #fff;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content section#credits .add_to_cart_button.large {
  min-width: 200px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content section#credits .btn-primary {
  font-size: 14px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .woocommerce-Address,
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .edit-account {
  padding: 20px;
  background-color: #fff8f0;
  border-radius: 5px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .woocommerce-Address + form, body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .woocommerce-Address + .endpoint-section,
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .edit-account + form,
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .edit-account + .endpoint-section {
  margin-top: 20px;
  padding: 20px;
  background-color: #fff8f0;
  border-radius: 5px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .ads-wrapper {
  display: grid;
  grid: auto/repeat(1, minmax(0, 1fr));
  gap: 20px;
}
@media (min-width: 540px) {
  body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .ads-wrapper {
    grid: auto/repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .ads-wrapper {
    grid: auto/repeat(3, minmax(0, 1fr));
  }
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .ads-wrapper .ad .content {
  font-size: 14px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .ads-wrapper .ad .content h3 {
  font-size: 17px;
  margin-top: 10px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .wishlists-wrapper {
  display: grid;
  grid: auto/repeat(2, minmax(0, 1fr));
  gap: 15px;
}
@media only screen and (min-width: 540px) {
  body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .wishlists-wrapper {
    grid: auto/repeat(3, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 992px) {
  body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .wishlists-wrapper {
    grid: auto/repeat(4, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 1200px) {
  body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .wishlists-wrapper {
    grid: auto/repeat(5, minmax(0, 1fr));
  }
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content form#acf-form {
  margin-bottom: 20px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content form#acf-form .acf-fields .acf-field.acf-field--post-title {
  padding-left: 0;
  padding-right: 0;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content form#acf-form .acf-fields .acf-field [data-name=is_main_ad],
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content form#acf-form .acf-fields .acf-field [data-name=is_dungi_pro],
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content form#acf-form .acf-fields .acf-field [data-name=post_end_date],
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content form#acf-form .acf-fields .acf-field [data-name=boost_end_date] {
  display: none;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content form#acf-form .acf-fields .acf-field.acf-field-670e27a888d29 {
  display: none;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content form#acf-form .acf-fields .acf-field.acf-field-67123af730f4d {
  display: none;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content form#acf-form .acf-fields .acf-tab-wrap ul.acf-tab-group {
  display: grid;
  grid: auto/1fr 1fr;
  gap: 3px;
  border: none;
  padding: 0;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content form#acf-form .acf-fields .acf-tab-wrap ul.acf-tab-group::before, body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content form#acf-form .acf-fields .acf-tab-wrap ul.acf-tab-group::after {
  display: none;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content form#acf-form .acf-fields .acf-tab-wrap ul.acf-tab-group li {
  margin: 0;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content form#acf-form .acf-fields .acf-tab-wrap ul.acf-tab-group li a.acf-tab-button {
  border: 1px solid #d2f09c;
  border-radius: 5px;
  background-color: #d2f09c;
  text-transform: uppercase;
  text-align: center;
  justify-content: center;
  margin: 0;
  display: flex;
  align-items: center;
  height: 100%;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content form#acf-form .acf-form-submit {
  margin-top: 15px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content form.edit-account fieldset {
  border-radius: 5px;
  margin-top: 25px;
  margin-bottom: 20px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content form.edit-account fieldset legend {
  padding: 0 5px;
  font-size: 20px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .updated {
  margin-bottom: 20px;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .toggle-edit-content {
  display: none;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .shop_table.subscription_details,
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .shop_table.order_details {
  position: static;
  margin: 0;
  padding: 20px;
  background-color: #fff8f0;
  border-radius: 5px;
  border: none;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .shop_table.subscription_details + header,
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .shop_table.order_details + header {
  display: none;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .shop_table.subscription_details + header + .woocommerce-orders-table--orders,
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .shop_table.order_details + header + .woocommerce-orders-table--orders {
  display: none;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .shop_table.subscription_details + header + .woocommerce-orders-table--orders + section,
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .shop_table.order_details + header + .woocommerce-orders-table--orders + section {
  display: none;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .shop_table.subscription_details + .woocommerce-customer-details,
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .shop_table.order_details + .woocommerce-customer-details {
  display: none;
}
body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .shop_table.subscription_details {
  margin-top: 20px;
}
@media (min-width: 768px) {
  body.woocommerce-account .site-wrapper main.main-content > section .container .col .woocommerce .woocommerce-MyAccount-content .shop_table.subscription_details {
    margin-top: 0;
  }
}
body.woocommerce-account footer {
  margin-top: 0;
}
body.woocommerce-account.logged-in .site-wrapper main.main-content section.my-account {
  position: static;
  margin: 0;
  display: block;
}
body.woocommerce-account.logged-in .site-wrapper main.main-content section.my-account h1 {
  font-size: 26px;
}
body.woocommerce-account.logged-in .site-wrapper main.main-content section.my-account .container {
  display: block;
}
body.woocommerce-account.logged-in .site-wrapper main.main-content section.my-account .container .col.image-wrapper {
  display: none;
}
body.woocommerce-account.logged-in .site-wrapper main.main-content section.my-account .container .col.content {
  background-color: transparent;
  padding: 0;
  max-width: unset;
  margin: 0;
}
body.woocommerce-account.logged-in .site-wrapper main.main-content section.my-account .container .col.content .breadcrumb-wrapper {
  display: block;
}

.acf-gallery .acf-gallery-main {
  right: 0 !important;
}

.acf-gallery .acf-gallery-toolbar .acf-hl {
  display: grid;
  grid: auto/1fr;
  gap: 5px;
}
.acf-gallery .acf-gallery-toolbar .acf-hl::before, .acf-gallery .acf-gallery-toolbar .acf-hl::after {
  display: none;
}
@media (min-width: 992px) {
  .acf-gallery .acf-gallery-toolbar .acf-hl {
    grid: auto/1fr 1fr;
  }
}
.acf-gallery .acf-gallery-toolbar .acf-hl .acf-button {
  width: 100%;
}

body.single-ad .site-wrapper main.main-content h2.section-title {
  font-size: 18px;
}
@media only screen and (min-width: 768px) {
  body.single-ad .site-wrapper main.main-content h2.section-title {
    font-size: 23px;
  }
}
@media (min-width: 768px) {
  body.single-ad .site-wrapper main.main-content section.single-ad-details .container {
    display: grid;
    grid: auto/repeat(2, minmax(0, 1fr));
    column-gap: 15px;
  }
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .breadcrumb-wrapper {
  grid-column: span 2;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-images {
  border-radius: 5px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-images .slick-slider button {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-images .slick-slider .slick-list .slick-track .slick-slide img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-images .slick-slider.single-ad-slider-thumbnails {
  margin-top: 5px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-images .slick-slider.single-ad-slider-thumbnails .slick-list {
  padding-right: 30px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-images .slick-slider.single-ad-slider-thumbnails .slick-list .slick-track .slick-slide {
  margin-right: 10px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-images .slick-slider.single-ad-slider-thumbnails .slick-list .slick-track .slick-slide img {
  height: 60px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details {
  background-color: #fff8f0;
  padding: 20px;
  border-radius: 5px;
  font-size: 14px;
  position: relative;
  margin-top: 30px;
}
@media (min-width: 768px) {
  body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details {
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details {
    font-size: 16px;
    display: flex;
    flex-direction: column;
  }
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details h1 {
  font-size: 20px;
  margin-bottom: 2px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details h1 {
    font-size: 26px;
    margin-bottom: 5px;
  }
}
@media (min-width: 1024px) {
  body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details h1 {
    font-size: 30px;
  }
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .category {
  font-size: 12px;
  display: flex;
  gap: 5px;
}
@media (min-width: 768px) {
  body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .category {
    font-size: 14px;
  }
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .category svg {
  width: 17px;
  height: 17px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .short-description {
  margin-top: 20px;
}
@media (min-width: 768px) {
  body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .short-description {
    margin-top: 30px;
  }
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .author-info {
  margin-top: 20px;
  display: flex;
  gap: 5px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .author-info button.author-name {
  display: flex;
  gap: 5px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .author-info button.author-name svg {
  width: 20px;
  height: 20px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .author-info .modal a.archive-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border: 1px dotted #3d8650;
  border-radius: 5px;
  padding: 5px 15px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .author-info .modal a.archive-link svg {
  position: relative;
  left: 0;
  transition: all 0.3s ease;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .author-info .modal a.archive-link:hover svg {
  left: 5px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .cta {
  margin-top: 20px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices {
  display: grid;
  grid: auto/1fr 1fr;
  row-gap: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices .price-item {
  text-align: center;
  border: 1px solid #3d8650;
  overflow: hidden;
  font-size: 13px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices .price-item .label {
  background-color: #d2f09c;
  padding: 10px 5px;
  border-bottom: 1px solid #3d8650;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices .price-item .value {
  padding: 10px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices.items-1 .price-item {
  border-radius: 5px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices.items-1 .price-item .label {
  border-radius: 0 0 5px 5px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices.items-2 .price-item:nth-of-type(odd) {
  border-radius: 5px 0 0 5px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices.items-2 .price-item:nth-of-type(even) {
  border-radius: 0 5px 5px 0;
  border-left: 0;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices.items-3 {
  grid: auto/1fr 1fr 1fr;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices.items-3 .price-item:nth-of-type(1) {
  border-radius: 5px 0 0 5px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices.items-3 .price-item:nth-of-type(1) .label {
  border-bottom-left-radius: 5px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices.items-3 .price-item:nth-of-type(2) {
  border-left: none;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices.items-3 .price-item:nth-of-type(3) {
  border-left: none;
  border-radius: 0 5px 5px 0;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices.items-3 .price-item:nth-of-type(3) .label {
  border-bottom-right-radius: 5px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices.items-4 {
  grid: auto/1fr 1fr;
}
@media (min-width: 1024px) {
  body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices.items-4 {
    grid: auto/repeat(4, 1fr);
  }
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices.items-4 .price-item:nth-of-type(odd) {
  border: 1px solid #3d8650;
  border-radius: 5px 0 0 5px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices.items-4 .price-item:nth-of-type(odd) .label {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 0;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices.items-4 .price-item:nth-of-type(even) {
  border-left: none;
  border-radius: 0 5px 5px 0;
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices.items-4 .price-item:nth-of-type(even) .label {
  border-bottom-right-radius: 5px;
}
@media (min-width: 1024px) {
  body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices.items-4 .price-item:nth-of-type(2) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (min-width: 1024px) {
  body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices.items-4 .price-item:nth-of-type(2) .label {
    border-bottom-right-radius: 0;
  }
}
@media (min-width: 1024px) {
  body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices.items-4 .price-item:nth-of-type(3) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;
  }
}
@media (min-width: 1024px) {
  body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .prices.items-4 .price-item:nth-of-type(3) .label {
    border-bottom-left-radius: 0;
  }
}
body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .social-share {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (min-width: 768px) {
  body.single-ad .site-wrapper main.main-content section.single-ad-details .container .ad-details .social-share {
    margin-top: auto;
  }
}
body.single-ad .site-wrapper main.main-content section.single-ad-long-description .container .text {
  font-size: 14px;
  max-width: 750px;
}
@media only screen and (min-width: 1024px) {
  body.single-ad .site-wrapper main.main-content section.single-ad-long-description .container .text {
    font-size: 16px;
  }
}
body.single-ad .site-wrapper main.main-content section.single-ad-long-description .container .video-wrapper {
  margin-top: 30px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-long-description .container .video-wrapper iframe {
  border-radius: 5px;
  max-width: 100%;
}
body.single-ad .site-wrapper main.main-content section.single-ad-long-description .container .video-wrapper video {
  border-radius: 5px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-technical-data .container .data-wrapper {
  border: 1px solid lightgrey;
  max-width: 750px;
  border-radius: 5px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-technical-data .container .data-wrapper .data-item {
  display: grid;
  grid: auto/minmax(0, 250px) minmax(50%, 1fr);
  column-gap: 20px;
  padding: 10px 20px;
  font-size: 14px;
}
@media only screen and (min-width: 1024px) {
  body.single-ad .site-wrapper main.main-content section.single-ad-technical-data .container .data-wrapper .data-item {
    font-size: 16px;
  }
}
body.single-ad .site-wrapper main.main-content section.single-ad-technical-data .container .data-wrapper .data-item:nth-of-type(even) {
  background-color: #d2f09c;
}
body.single-ad .site-wrapper main.main-content section.single-ad-testimonials .container .content {
  position: relative;
  padding-right: 70px;
  margin-bottom: 20px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-testimonials .container .content h2.section-title {
  margin: 0;
}
body.single-ad .site-wrapper main.main-content section.single-ad-testimonials .container .content nav.slider-nav {
  position: absolute;
  right: 0;
  top: 2px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-testimonials .container .add-testimonial {
  margin-top: 20px;
}
body.single-ad .site-wrapper main.main-content section.single-ad-testimonials .container .add-testimonial .updated {
  font-size: 20px;
  padding: 15px;
  color: #3d8650;
}
body.single-ad .site-wrapper main.main-content section.single-ad-testimonials .container .add-testimonial h3 {
  display: none;
}
body.single-ad .site-wrapper main.main-content section.single-ad-testimonials .container .add-testimonial form.acf-form {
  display: none;
}
body.single-ad .site-wrapper main.main-content section.single-ad-testimonials .container .add-testimonial form.acf-form .acf-fields .acf-field[data-name=related_ad] {
  display: none;
}
body.single-ad .site-wrapper main.main-content section.related-ads {
  background-color: #fff8f0;
}
@media (min-width: 768px) {
  body.single-ad .site-wrapper main.main-content section.related-ads .container h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
body.single-ad .site-wrapper main.main-content section.related-ads .container .ads-wrapper {
  display: grid;
  grid: auto/repeat(1, minmax(0, 1fr));
  row-gap: 40px;
  column-gap: 15px;
}
@media only screen and (min-width: 540px) {
  body.single-ad .site-wrapper main.main-content section.related-ads .container .ads-wrapper {
    grid: auto/repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 1024px) {
  body.single-ad .site-wrapper main.main-content section.related-ads .container .ads-wrapper {
    grid: auto/repeat(4, minmax(0, 1fr));
  }
}

section.ads-archive {
  padding-bottom: 50px;
}
section.ads-archive .subcategories-wrapper {
  display: grid;
  grid: auto/repeat(1, minmax(0, 1fr));
  row-gap: 15px;
  column-gap: 15px;
}
@media (min-width: 540px) {
  section.ads-archive .subcategories-wrapper {
    grid: auto/repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  section.ads-archive .subcategories-wrapper {
    grid: auto/repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  section.ads-archive .subcategories-wrapper {
    grid: auto/repeat(4, minmax(0, 1fr));
  }
}
section.ads-archive .listings-grid .spinner {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  display: none;
}
section.ads-archive .listings-grid .spinner img {
  width: 20px;
}

section.woocommerce-order-details header h2 {
  margin-bottom: 20px !important;
}

.single-product .site-wrapper main.main-content nav.woocommerce-breadcrumb {
  display: none;
}
.single-product .site-wrapper main.main-content .product {
  display: grid;
  grid: auto/1fr;
  gap: 20px;
}
.single-product .site-wrapper main.main-content .product > * {
  margin: 0;
  width: 100%;
}
.single-product .site-wrapper main.main-content .product .woocommerce-product-gallery {
  display: none;
}
.single-product .site-wrapper main.main-content .product .woocommerce-product-gallery img {
  border-radius: 15px;
}
.single-product .site-wrapper main.main-content .product .summary h1 {
  text-align: center;
}
.single-product .site-wrapper main.main-content .product .summary p.price {
  display: none;
}
.single-product .site-wrapper main.main-content .product .summary .woocommerce-product-details__short-description ul {
  display: grid;
  list-style-type: none;
  /* Verwijder de standaard bullet */
  padding-left: 0;
}
.single-product .site-wrapper main.main-content .product .summary .woocommerce-product-details__short-description ul li::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  background-image: url("/wp-content/themes/okappi/assets/icons/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 7px;
  /* Ruimte tussen het icoon en de tekst */
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.single-product .site-wrapper main.main-content .product .summary .woocommerce-product-details__short-description ul li a {
  color: #222222;
}
.single-product .site-wrapper main.main-content .product .summary .woocommerce-product-details__short-description ul li + li {
  margin-top: 7px;
}
.single-product .site-wrapper main.main-content .product .summary form.variations_form select {
  border: 1.5px solid #3d8650;
  border-radius: 5px;
  height: 40px;
  width: 100%;
  padding: 0 10px;
  font-size: 14px;
  background-color: #fff;
  color: grey;
}
.single-product .site-wrapper main.main-content .product .summary form.variations_form select:focus-visible {
  outline: none;
}
.single-product .site-wrapper main.main-content .product .summary form.variations_form select:focus-visible {
  outline: none;
}
.single-product .site-wrapper main.main-content .product .summary form.variations_form .single_variation_wrap {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.single-product .site-wrapper main.main-content .product .summary form.variations_form .single_variation_wrap .single_variation span.price {
  font-size: 16px;
}
.single-product .site-wrapper main.main-content .product .summary form.variations_form .single_variation_wrap .woocommerce-variation-add-to-cart {
  width: fit-content;
  flex-shrink: 0;
}
.single-product .site-wrapper main.main-content .product .summary form.variations_form .single_variation_wrap .woocommerce-variation-add-to-cart button.single_add_to_cart_button {
  background-color: #3d8650;
  color: #fff;
  border: none;
  border-radius: 5px;
  min-height: 40px;
  padding: 12px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
}
.single-product .site-wrapper main.main-content .product .summary form.variations_form .single_variation_wrap .woocommerce-variation-add-to-cart button.single_add_to_cart_button:hover {
  background-color: #6dbc81;
  color: #fff;
}
.single-product .site-wrapper main.main-content .product .summary form.variations_form .single_variation_wrap .woocommerce-variation-add-to-cart button.single_add_to_cart_button.large {
  min-width: 200px;
}
.single-product .site-wrapper main.main-content .product .summary .wpcvt-wrap .wpcvt-variations {
  max-height: unset;
  overflow: hidden;
  display: grid;
  grid: auto/1fr;
  gap: 20px;
  padding: 20px;
  margin-left: -20px;
  margin-right: -20px;
}
@media (min-width: 540px) {
  .single-product .site-wrapper main.main-content .product .summary .wpcvt-wrap .wpcvt-variations {
    grid: auto/repeat(2, 1fr);
  }
}
.single-product .site-wrapper main.main-content .product .summary .wpcvt-wrap .wpcvt-variations .wpcvt-variation {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 20px;
  margin: 0;
  flex-direction: column;
  transition: all 0.3s ease;
}
.single-product .site-wrapper main.main-content .product .summary .wpcvt-wrap .wpcvt-variations .wpcvt-variation:hover {
  scale: 1.02;
}
.single-product .site-wrapper main.main-content .product .summary .wpcvt-wrap .wpcvt-variations .wpcvt-variation .wpcvt-variation-image img {
  border-radius: 50%;
}
.single-product .site-wrapper main.main-content .product .summary .wpcvt-wrap .wpcvt-variations .wpcvt-variation .wpcvt-variation-info {
  text-align: center;
}
.single-product .site-wrapper main.main-content .product .summary .wpcvt-wrap .wpcvt-variations .wpcvt-variation .wpcvt-variation-info .wpcvt-variation-name {
  font-size: 20px;
  margin-bottom: 20px;
}
.single-product .site-wrapper main.main-content .product .summary .wpcvt-wrap .wpcvt-variations .wpcvt-variation .wpcvt-variation-info .wpcvt-variation-price {
  font-size: 18px;
}
.single-product .site-wrapper main.main-content .product .summary .wpcvt-wrap .wpcvt-variations .wpcvt-variation .wpcvt-variation-info .wpcvt-variation-description ul {
  display: grid;
  list-style-type: none;
  /* Verwijder de standaard bullet */
  padding-left: 0;
}
.single-product .site-wrapper main.main-content .product .summary .wpcvt-wrap .wpcvt-variations .wpcvt-variation .wpcvt-variation-info .wpcvt-variation-description ul li::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  background-image: url("/wp-content/themes/okappi/assets/icons/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 7px;
  /* Ruimte tussen het icoon en de tekst */
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.single-product .site-wrapper main.main-content .product .summary .wpcvt-wrap .wpcvt-variations .wpcvt-variation .wpcvt-variation-info .wpcvt-variation-description ul li a {
  color: #222222;
}
.single-product .site-wrapper main.main-content .product .summary .wpcvt-wrap .wpcvt-variations .wpcvt-variation .wpcvt-variation-info .wpcvt-variation-description ul li + li {
  margin-top: 7px;
}
.single-product .site-wrapper main.main-content .product .summary .wpcvt-wrap .wpcvt-variations .wpcvt-variation .wpcvt-variation-actions {
  width: auto;
  flex: unset;
}
.single-product .site-wrapper main.main-content .product .summary .wpcvt-add-to-cart .quantity {
  display: none;
}
.single-product .site-wrapper main.main-content .product .summary .wpcvt-add-to-cart button {
  background-color: #3d8650;
  color: #fff;
  border: none;
  border-radius: 5px;
  min-height: 40px;
  padding: 12px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
}
.single-product .site-wrapper main.main-content .product .summary .wpcvt-add-to-cart button:hover {
  background-color: #6dbc81;
  color: #fff;
}
.single-product .site-wrapper main.main-content .product .summary .wpcvt-add-to-cart button.large {
  min-width: 200px;
}
.single-product .site-wrapper main.main-content .product .product_meta {
  display: none;
}
.single-product .site-wrapper main.main-content .related.products {
  display: none;
}

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