@charset "UTF-8";
/* sass --watch sass:css */
/* DEFINE VARIABLES */
/* Fonts */
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Jost-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Jost-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Jost-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Didact Gothic";
  font-style: normal;
  font-weight: 400; /* opraveno */
  font-display: swap;
  src: url("../fonts/DidactGothic-Regular.woff2") format("woff2");
}
:root {
  color-scheme: light dark;
}

/* GLOBAL */
body {
  background-color: #f8f5f0;
  font-family: "Didact Gothic";
}
body .main {
  background-color: #f8f5f0;
}
body a:hover {
  color: #dd411d;
}
body .site-branding-logo img {
  width: 240px;
}
@media (max-width: 768px) {
  body .site-branding-logo img {
    width: 150px;
  }
}
body .node__content ul {
  padding: 0 0 0 3rem;
}
body .fw-before-content {
  max-width: 1170px;
  margin: 0 auto;
}
body .font-size-19 p {
  font-size: 1.9rem;
}
body .font-size-18 p {
  font-size: 1.8rem;
}

h1, h2, h3 {
  font-family: "Jost";
  color: #2f2a26;
  text-transform: none;
}
@media (max-width: 768px) {
  h1 br, h2 br, h3 br {
    display: none;
  }
}

h2 {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
}
h2.quotations {
  position: relative;
  padding: 4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: fit-content;
  margin: 0 auto;
}
h2.quotations.quotations--narrow {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  h2.quotations br {
    display: none;
  }
}
h2.quotations::before {
  position: relative;
  bottom: -40px;
  content: "";
  width: 55px;
  height: 55px;
  display: block;
  background-image: url(../images/quotations.webp);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 55px;
}
@media (max-width: 768px) {
  h2.quotations::before {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    background-size: 40px;
  }
}
h2.quotations::after {
  position: relative;
  top: -40px;
  content: "";
  width: 55px;
  height: 55px;
  display: block;
  background-image: url(../images/quotations.webp);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 55px;
  transform: scaleY(-1);
}
@media (max-width: 768px) {
  h2.quotations::after {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    background-size: 40px;
  }
}
h2.subheading {
  color: #c5a27c;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 -1rem 0;
  text-transform: uppercase;
}

h3 {
  margin-top: 4rem;
}

#content {
  background-color: #f8f5f0;
  padding: 4rem 0 4rem 0;
}

.frontpage #content {
  padding: 0;
}

[data-drupal-messages] {
  background-color: #c5a27c;
  color: #2f2a26;
  padding: 2rem 4rem 2rem 7rem;
  margin: 4rem 0;
  border-radius: 2rem;
  background-image: url(../images/svg/exclamation.svg);
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: left 2rem center;
  font-weight: 700;
}
[data-drupal-messages] div {
  padding: 0;
  margin: 0;
}
[data-drupal-messages] ul {
  padding: 0;
  margin: 0;
}
[data-drupal-messages] ul li {
  list-style: none;
}

.logged-in .help.show {
  display: none !important;
}

/* Margin TOP */
.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

/* Margin BOTTOM */
.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

/* Margin TOP + BOTTOM */
.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-4 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-5 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

/* TOP BAR 	*/
.topbar {
  background-color: #f8f5f0;
  color: #4a433d;
  padding: 1rem 0;
}
@media (max-width: 767px) {
  .topbar {
    display: block !important;
  }
}
.topbar .content > div {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .topbar .content > div {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .topbar .content > div .menu-item {
    text-align: center;
  }
}
.topbar .content > div .menu-item a {
  padding: 0 1rem;
  text-transform: none;
  color: #2f2a26;
  font-family: "Didact Gothic";
}
.topbar .content > div .menu-item a:hover {
  color: #c5a27c;
}
@media (max-width: 991px) {
  .topbar .content > div nav {
    flex-basis: 100%;
  }
}
.topbar .content .block-b4n-events {
  margin-left: auto !important;
}
@media (max-width: 991px) {
  .topbar .content .block-b4n-events {
    margin-left: unset !important;
  }
}
.topbar .user-login__topbar a {
  color: #000;
  display: flex;
  justify-content: flex-end;
}

/*  HEADER */
header header.header-v1 .header-inner {
  padding: 0;
}
header .header-main {
  background-color: #f8f5f0;
}
header .header-main .menu-item a {
  font-size: 1.8rem;
  font-family: "Didact Gothic";
  text-transform: none;
  padding: 2rem 1.2rem;
}
header .header-main .menu-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1.7rem;
  width: 100%;
  height: 6px;
  background-image: url("../images/svg/line_menu.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0;
  transition: opacity 0.2s ease;
}
header .header-main .menu-item:hover a {
  color: #c5a27c !important;
}
header .header-main .menu-item:hover a::after {
  opacity: 1;
}
header .header-main .menu-item.menu-item--active-trail a {
  color: #c5a27c !important;
}
header .header-main .menu-item.menu-item--active-trail a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1.7rem;
  width: 100%;
  height: 6px;
  background-image: url("../images/svg/line_menu.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 1;
  transition: opacity 0.2s ease;
}
header .site-branding-logo {
  padding-top: 0 !important;
}

/* NAVIGATION */
.gva-navigation .menu-item a {
  color: #2f2a26 !important;
  font-family: "Jost";
  font-weight: 500 !important;
}

.stuck.header-main {
  background-color: #0f1a13;
}

.menu-bar span {
  background-color: #2f2a26;
}

#header.header-v1 .header-inner {
  padding-right: 0;
}

/* FOOTER */
.copyright {
  background: #efe7dc;
  border-top: none;
}
.copyright .copyright-inner {
  padding: 1.2rem 0;
  color: #4a433d;
}
.copyright .copyright-inner a {
  color: #4a433d;
  text-decoration: underline;
}

#footer .footer-center {
  padding: 8rem 0 6rem 0;
  background-image: none;
  background: #c5a27c;
}
#footer .footer-center .block-title span {
  color: #f8f5f0 !important;
  font-family: "Jost";
}
#footer .footer-center .block-content {
  color: #f8f5f0;
}
#footer .footer-center .block-content li {
  list-style: none;
}
#footer .footer-center .block-content a {
  color: #f8f5f0;
}
#footer .footer-center .footer-socials__wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 1.25rem;
}
#footer .footer-center .footer-socials__wrapper a {
  display: block;
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  background-size: 35px;
}
#footer .footer-center .footer-socials__wrapper a.fb-icon {
  background-image: url(../images/svg/fb.svg);
}
#footer .footer-center .footer-socials__wrapper a.ig-icon {
  background-image: url(../images/svg/ig.svg);
}

/* SECTIONS */
.content-padding.gbb-row .bb-inner {
  padding: 0 0 4rem 0 !important;
}

.gbb-row .bb-inner {
  padding: 4rem 0;
}
@media (max-width: 991px) {
  .gbb-row .bb-inner {
    padding: 2rem 0;
  }
}

.splitter-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}
.splitter-arrow img {
  max-width: 150px;
  height: auto;
}
@media (max-width: 991px) {
  .splitter-arrow img {
    max-width: 120px;
    transform: rotate(90deg);
  }
}

/* BUTTONS */
.btn {
  display: inline-block;
  color: #c5a27c;
  background: none;
  padding: 1.5rem 3rem;
  transition: all 0.25s;
  text-align: center;
  font-family: "Jost";
}
.btn.btn--outline {
  border: 3px solid #c5a27c;
}
.btn.btn--outline.btn--light {
  border-color: #f8f5f0;
  color: #f8f5f0;
}
.btn.btn--outline.btn--light:hover {
  background: #f8f5f0;
  color: #c5a27c;
}
.btn.btn--outline.btn--rounded {
  border-radius: 50px;
}
.btn.btn--outline::after, .btn.btn--outline::before {
  display: none;
}
.btn.btn--outline:hover {
  background: #c5a27c;
  transform: scale(1.1);
  color: #f8f5f0;
}

/* Events list */
.add-new-event-link {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 3rem;
  font-family: "Jost";
  background-color: #c5a27c;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  border: none;
  width: 100%;
  text-align: center;
}
.add-new-event-link:hover {
  color: #2f2a26;
}

.event-desc-text {
  font-size: 1.8rem;
  max-width: 80%;
  margin: 0 auto;
  font-weight: 500;
}

.b4n-events-list .b4n-events-grid {
  display: flex;
  justify-content: stretch;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.b4n-events-list .b4n-events-grid h1 {
  text-align: center;
  margin-bottom: 4rem;
}
.b4n-events-list .b4n-events-grid .b4n-event-card {
  flex: 0 0 370px;
  background-color: #0f1a13;
  color: #f2e6c9;
  transition: all 0.35s;
}
@media (max-width: 991px) {
  .b4n-events-list .b4n-events-grid .b4n-event-card {
    flex: 0 0 100%;
  }
}
.b4n-events-list .b4n-events-grid .b4n-event-card .edit-event-link {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #c5a27c;
  color: #fff;
  padding: 4px 12px;
  font-size: 0.9em;
  text-transform: uppercase;
}
.b4n-events-list .b4n-events-grid .b4n-event-card .b4n-event-content {
  color: #4a433d;
}
.b4n-events-list .b4n-events-grid .b4n-event-card .b4n-event-content p {
  color: #4a433d;
}
.b4n-events-list .b4n-events-grid .b4n-event-card .b4n-event-content h3 {
  color: #2f2a26;
  font-size: 2.2rem;
}
.b4n-events-list .b4n-events-grid .b4n-event-card:hover {
  transform: scale(1.035);
  -webkit-box-shadow: 0px 10px 30px -11px rgb(66, 68, 90);
  -moz-box-shadow: 0px 10px 30px -11px rgb(66, 68, 90);
  box-shadow: 0px 10px 30px -11px rgb(66, 68, 90);
}
.b4n-events-list .b4n-events-grid .b4n-event-card h3 {
  font-size: 1.75rem;
  margin-top: 0;
  color: #c5a27c;
  text-align: center;
}
.b4n-events-list .b4n-events-grid .b4n-event-card .b4n-event-date {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #4a433d;
}
.b4n-events-list .b4n-events-grid .b4n-event-card .b4n-event-place {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #4a433d;
}
.b4n-events-list .b4n-events-grid .b4n-event-card .b4n-event-meta {
  color: #4a433d;
  font-size: 1.5rem;
}
.b4n-events-list .b4n-events-grid .b4n-event-card .b4n-event-meta .b4n-event-description {
  font-weight: 300;
  min-height: 52px;
}
.b4n-events-list .b4n-events-grid .b4n-event-card .b4n-event-meta > span {
  display: block;
  margin: 0.5rem 0;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #4a433d;
}
.b4n-events-list .b4n-events-grid .b4n-event-card .b4n-event-meta .b4n-event-description {
  background: none;
  padding-left: 0;
  text-align: center;
  margin: 1rem 0;
  min-height: 52px;
}
.b4n-events-list .b4n-events-grid .b4n-event-card .b4n-event-meta br {
  display: none;
}
.b4n-events-list .b4n-events-grid .b4n-event-card .b4n-event-actions {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .b4n-events-list .b4n-events-grid .b4n-event-card .b4n-event-actions {
    flex-wrap: wrap;
  }
}
.b4n-events-list .b4n-events-grid .b4n-event-card .b4n-event-actions a.b4n-btn {
  border-radius: 50px;
  padding: 1rem 3rem;
  font-family: "Jost";
  background-color: #c5a27c;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  border: none;
}
.b4n-events-list .b4n-events-grid .b4n-event-card .b4n-event-actions a.b4n-btn:hover {
  transform: scale(1.05);
  background-color: #f8f5f0;
  color: #c5a27c;
}
.b4n-events-list .b4n-events-grid .b4n-event-card .b4n-event-actions button {
  border-radius: 50px;
  padding: 1rem 3rem;
  font-family: "Jost";
  background-color: #c5a27c;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  border: none;
  transition: all 0.5s;
}
.b4n-events-list .b4n-events-grid .b4n-event-card .b4n-event-actions button:hover {
  transform: scale(1.05);
  background-color: #f8f5f0;
  color: #c5a27c;
}
.b4n-events-list .b4n-events-grid .b4n-event-card .b4n-event-actions button.b4n-event-unsign-btn {
  cursor: not-allowed;
  pointer-events: none;
}

.b4n-event-title {
  text-align: center;
  color: #2f2a26;
  margin: 0 0 2rem 0;
}

.b4n-event-detail .b4n-event-section {
  background-color: #efe7dc;
  color: #4a433d;
}
.b4n-event-detail .b4n-event-section h2 {
  color: #2f2a26;
}
.b4n-event-detail .b4n-event-register-box {
  background-color: #efe7dc;
}
.b4n-event-detail .b4n-event-register-box button {
  border-radius: 50px;
  padding: 1.5rem 8rem;
  background-color: #c5a27c;
  color: #fff;
  font-weight: 700;
}
.b4n-event-detail .b4n-event-register-box button.b4n-event-unsign-btn {
  cursor: not-allowed;
  pointer-events: none;
}

/* Event list */
.b4n-event-content {
  background-color: #efe7dc;
  padding: 4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.b4n-event-content h3 {
  margin: 0;
  min-height: 70px;
  font-size: 1.9rem;
}

.b4n-event-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.b4n-event-card .b4n-event-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: #efe7dc;
}
.b4n-event-card .b4n-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.b4n-event-card .b4n-event-image .b4n-event-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #c5a27c;
  color: #fff;
  padding: 4px 12px;
  font-size: 0.9em;
  text-transform: uppercase;
}
.b4n-event-card .b4n-event-image .b4n-event-badge.b4n-event-badge.invite {
  background: #efe7dc;
  color: #c5a27c;
}

/* Expired event list */
.b4n-events-list {
  max-width: 1200px;
  margin: 0 auto;
}
.b4n-events-list.expired-events .b4n-event-card .b4n-event-image {
  filter: grayscale(80%);
}
.b4n-events-list.expired-events .b4n-event-card .b4n-event-actions {
  display: none;
}
.b4n-events-list.expired-events .b4n-event-card .b4n-btn {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}
.b4n-events-list.expired-events .b4n-event-card .b4n-event-badge {
  background: #c5a27c;
}
.b4n-events-list.expired-events .b4n-event-card h3 {
  color: #f2e6c9;
}
.b4n-events-list.expired-events .b4n-event-card .b4n-event-meta {
  color: #f2e6c9;
  font-size: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.b4n-events-list.expired-events .b4n-event-card .b4n-event-meta .b4n-event-description {
  flex-basis: 100%;
}
.b4n-events-list.expired-events .b4n-event-card .b4n-event-meta .b4n-event-place {
  background-image: url(../images/svg/maps-and-flags--wh.svg);
}
.b4n-events-list.expired-events .b4n-event-card .b4n-event-meta .b4n-event-price {
  background-image: url(../images/svg/profit--wh.svg);
}
.b4n-events-list.expired-events .b4n-event-card .b4n-event-meta .b4n-event-occupancy {
  display: none;
}
.b4n-events-list .b4n-event-title {
  text-align: center;
  color: #2f2a26;
  margin: 0 0 2rem 0;
}
.b4n-events-list .b4n-event-detail .b4n-event-section {
  background-color: #efe7dc;
  color: #4a433d;
}
.b4n-events-list .b4n-event-detail .b4n-event-section h2 {
  color: #c5a27c;
}
.b4n-events-list .b4n-event-detail .b4n-event-register-box {
  background-color: #efe7dc;
}

/* MOBILE NAVIGATION */
#menu-bar {
  display: flex;
}

.gva-offcanvas-mobile {
  background: #f8f5f0;
}
@media (max-width: 991px) {
  .gva-offcanvas-mobile .gva-navigation .gva_menu li a:hover {
    color: #0f1a13 !important;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu li a {
    color: #0f1a13 !important;
    font-weight: 500;
  }
  .gva-offcanvas-mobile .close-offcanvas i {
    color: #0f1a13;
  }
  .gva-offcanvas-mobile .close-offcanvas i:hover {
    color: #c5a27c;
  }
}

/* PAGINATION */
.pager__items {
  margin-top: 2rem;
}
.pager__items .pager__item {
  margin: 0 0.75rem;
}
.pager__items .pager__item a {
  border-radius: 50px;
  background-color: #cdbba6;
  color: #4a433d;
  background-color: #cdbba6;
}
.pager__items .pager__item a:hover {
  background-color: #c5a27c;
  color: #f8f5f0;
}
.pager__items .pager__item.is-active a {
  background-color: #c5a27c;
  color: #f8f5f0;
  border-color: #c5a27c;
}

/* MODAL */
.modal-desc {
  max-width: 550px;
  margin: 2rem 0;
  text-align: center;
}

.swal2-modal {
  background-color: #f8f5f0;
}
.swal2-modal h2 {
  color: #2f2a26;
}
.swal2-modal button {
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.5s;
}
.swal2-modal button.swal2-confirm {
  background-color: #c5a27c;
  color: #fff;
}
.swal2-modal button:hover {
  transform: scale(1.1);
}

/* Payment modal content */
#b4n-modal-content {
  background: #f8f5f0;
  padding: 4rem;
  border-radius: 1.2rem;
}

.b4n-signup-modal-content .b4n-signup-modal-info-label {
  font-weight: 700;
}
.b4n-signup-modal-content h2 {
  font-family: "Jost";
  text-align: center;
}
.b4n-signup-modal-content h3 {
  font-family: "Jost";
  margin-top: 0;
  text-align: center;
}
.b4n-signup-modal-content .b4n-signup-modal__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.b4n-signup-modal-content .b4n-signup-modal__wrapper .b4n-signup-modal-qr {
  flex-basis: 40%;
  order: 2;
}
.b4n-signup-modal-content .b4n-signup-modal__wrapper .b4n-signup-modal-qr img {
  max-width: 100%;
  height: auto;
}
.b4n-signup-modal-content .b4n-signup-modal__wrapper .b4n-signup-modal-account-details {
  flex-basis: 60%;
  order: 1;
}

/* Event detail */
.b4n-event-section .b4n-event-info {
  border-bottom: 3px solid #c5a27c;
  padding-bottom: 1.5rem;
}
.b4n-event-section .b4n-event-info .b4n-event-info-label {
  color: #2f2a26;
  font-weight: 700;
}
.b4n-event-section .b4n-event-info .b4n-event-info-value {
  color: #2f2a26;
}
.b4n-event-section .swiper-button-next,
.b4n-event-section .swiper-button-prev {
  color: #c5a27c;
}

.b4n-event-register-box .b4n-event-register-title {
  font-family: "Jost";
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 700;
}
.b4n-event-register-box .b4n-event-register-title.b4n-event-register-title--invite {
  font-size: 1.6rem;
  padding: 0 6rem;
  text-transform: none;
  margin-bottom: 3rem;
  font-weight: 300;
}
.b4n-event-register-box .b4n-btn {
  display: block;
  background-color: #c5a27c;
  color: #0f1a13;
  font-family: "Jost";
  text-transform: none;
  border: none;
  font-size: 1.5rem;
  padding: 2rem 4rem;
  border-radius: 50px;
  margin: 2rem auto;
  transition: all 0.5s;
}
.b4n-event-register-box .b4n-btn:hover {
  transform: scale(1.1);
  background-color: #f8f5f0;
  color: #c5a27c;
}

/* Login form */
.nav-tabs {
  padding: 1.5rem 0;
}
.nav-tabs .is-active a {
  color: #0f1a13;
}
.nav-tabs .is-active a:hover {
  color: #dd411d;
}
.nav-tabs li a {
  color: #0f1a13;
}
.nav-tabs li a:hover {
  color: #dd411d;
}

#user-login-form label,
#user-pass label {
  font-family: "Jost";
  margin: 1.5rem 0 0.5rem 0;
}
#user-login-form #edit-submit,
#user-pass #edit-submit {
  display: block;
  background-color: #c5a27c;
  text-transform: none;
  border: none;
  font-size: 1.35rem;
  padding: 2rem 3rem;
  border-radius: 50px;
  margin-top: 2rem;
  transition: all 0.5s;
  box-shadow: none;
  text-transform: uppercase;
  color: #fff;
  font-family: "Jost";
}
@media (max-width: 768px) {
  #user-login-form #edit-submit,
  #user-pass #edit-submit {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
}
#user-login-form #edit-submit:hover,
#user-pass #edit-submit:hover {
  background-color: #f8f5f0;
  color: #c5a27c;
}

.path-user #page-main-content > .main-content-inner {
  box-shadow: none !important;
  background-color: #efe7dc;
  color: #2f2a26;
  padding: 4rem 6rem !important;
}
.path-user #page-main-content > .main-content-inner h2 {
  color: #2f2a26;
}
.path-user #page-main-content > .main-content-inner label {
  text-transform: uppercase;
}
.path-user #page-main-content > .main-content-inner input[type=text],
.path-user #page-main-content > .main-content-inner input[type=password] {
  border-radius: 0.6rem;
  background: #fdf9f4;
  color: #2f2a26;
}

/* Registration form */
#b4n-events-user-registration-form,
#b4n-events-user-profile-events-form,
#b4n-events-user-profile-dating-form,
#b4n-events-user-profile-invitations-form,
#b4n-events-user-profile-general-form {
  background-color: #efe7dc;
  padding: 6rem 10rem;
  color: #2f2a26;
  max-width: 990px;
  margin: 0 auto;
}
#b4n-events-user-registration-form .form-item-sensitive-data-consent,
#b4n-events-user-profile-events-form .form-item-sensitive-data-consent,
#b4n-events-user-profile-dating-form .form-item-sensitive-data-consent,
#b4n-events-user-profile-invitations-form .form-item-sensitive-data-consent,
#b4n-events-user-profile-general-form .form-item-sensitive-data-consent {
  padding-top: 1.5rem;
  border-top: 1px dotted #c5a27c;
}
#b4n-events-user-registration-form .b4n-current-photo img,
#b4n-events-user-profile-events-form .b4n-current-photo img,
#b4n-events-user-profile-dating-form .b4n-current-photo img,
#b4n-events-user-profile-invitations-form .b4n-current-photo img,
#b4n-events-user-profile-general-form .b4n-current-photo img {
  max-width: 150px;
  height: auto;
  border-radius: 150px;
}
@media (max-width: 768px) {
  #b4n-events-user-registration-form,
  #b4n-events-user-profile-events-form,
  #b4n-events-user-profile-dating-form,
  #b4n-events-user-profile-invitations-form,
  #b4n-events-user-profile-general-form {
    padding: 1.5rem 3rem;
  }
}
#b4n-events-user-registration-form .btn__wrapper,
#b4n-events-user-profile-events-form .btn__wrapper,
#b4n-events-user-profile-dating-form .btn__wrapper,
#b4n-events-user-profile-invitations-form .btn__wrapper,
#b4n-events-user-profile-general-form .btn__wrapper {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  gap: 4rem;
  border-top: 3px solid #c5a27c;
  padding-top: 4rem;
  flex-wrap: wrap;
}
#b4n-events-user-registration-form .fieldset-wrapper,
#b4n-events-user-profile-events-form .fieldset-wrapper,
#b4n-events-user-profile-dating-form .fieldset-wrapper,
#b4n-events-user-profile-invitations-form .fieldset-wrapper,
#b4n-events-user-profile-general-form .fieldset-wrapper {
  max-width: 100%;
}
#b4n-events-user-registration-form fieldset,
#b4n-events-user-profile-events-form fieldset,
#b4n-events-user-profile-dating-form fieldset,
#b4n-events-user-profile-invitations-form fieldset,
#b4n-events-user-profile-general-form fieldset {
  margin: 2rem 0 !important;
}
#b4n-events-user-registration-form .form-type-textarea label,
#b4n-events-user-profile-events-form .form-type-textarea label,
#b4n-events-user-profile-dating-form .form-type-textarea label,
#b4n-events-user-profile-invitations-form .form-type-textarea label,
#b4n-events-user-profile-general-form .form-type-textarea label {
  flex-basis: 100% !important;
}
#b4n-events-user-registration-form .form-type-textarea div,
#b4n-events-user-profile-events-form .form-type-textarea div,
#b4n-events-user-profile-dating-form .form-type-textarea div,
#b4n-events-user-profile-invitations-form .form-type-textarea div,
#b4n-events-user-profile-general-form .form-type-textarea div {
  flex-basis: 100%;
}
#b4n-events-user-registration-form .fieldset-legend--h2,
#b4n-events-user-profile-events-form .fieldset-legend--h2,
#b4n-events-user-profile-dating-form .fieldset-legend--h2,
#b4n-events-user-profile-invitations-form .fieldset-legend--h2,
#b4n-events-user-profile-general-form .fieldset-legend--h2 {
  color: #2f2a26;
}
#b4n-events-user-registration-form .description,
#b4n-events-user-profile-events-form .description,
#b4n-events-user-profile-dating-form .description,
#b4n-events-user-profile-invitations-form .description,
#b4n-events-user-profile-general-form .description {
  flex: 0 0 100%;
  background-image: url(../images/svg/information.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 3.5rem;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  line-height: 1.32;
}
#b4n-events-user-registration-form a,
#b4n-events-user-profile-events-form a,
#b4n-events-user-profile-dating-form a,
#b4n-events-user-profile-invitations-form a,
#b4n-events-user-profile-general-form a {
  color: #c5a27c;
  text-decoration: underline;
}
#b4n-events-user-registration-form .button,
#b4n-events-user-profile-events-form .button,
#b4n-events-user-profile-dating-form .button,
#b4n-events-user-profile-invitations-form .button,
#b4n-events-user-profile-general-form .button {
  background-color: #c5a27c;
  color: #fff !important;
  font-family: "Jost";
  text-transform: none;
  border: none;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  transition: all 0.5s;
  box-shadow: none;
  text-transform: uppercase;
  font-weight: 300;
}
#b4n-events-user-registration-form .button.delete-button,
#b4n-events-user-profile-events-form .button.delete-button,
#b4n-events-user-profile-dating-form .button.delete-button,
#b4n-events-user-profile-invitations-form .button.delete-button,
#b4n-events-user-profile-general-form .button.delete-button {
  background: #950606;
  color: #f2e6c9 !important;
}
#b4n-events-user-registration-form .button#edit-submit,
#b4n-events-user-profile-events-form .button#edit-submit,
#b4n-events-user-profile-dating-form .button#edit-submit,
#b4n-events-user-profile-invitations-form .button#edit-submit,
#b4n-events-user-profile-general-form .button#edit-submit {
  font-size: 1.35rem;
  padding: 2rem 3rem;
}
@media (max-width: 768px) {
  #b4n-events-user-registration-form .button#edit-submit,
  #b4n-events-user-profile-events-form .button#edit-submit,
  #b4n-events-user-profile-dating-form .button#edit-submit,
  #b4n-events-user-profile-invitations-form .button#edit-submit,
  #b4n-events-user-profile-general-form .button#edit-submit {
    font-size: 1rem;
    padding: 1.5rem 3rem;
    margin: 0 auto;
    display: flex;
  }
}
#b4n-events-user-registration-form .button:hover,
#b4n-events-user-profile-events-form .button:hover,
#b4n-events-user-profile-dating-form .button:hover,
#b4n-events-user-profile-invitations-form .button:hover,
#b4n-events-user-profile-general-form .button:hover {
  background: #f8f5f0;
  color: #c5a27c !important;
}
#b4n-events-user-registration-form legend,
#b4n-events-user-profile-events-form legend,
#b4n-events-user-profile-dating-form legend,
#b4n-events-user-profile-invitations-form legend,
#b4n-events-user-profile-general-form legend {
  font-family: "Jost";
  color: #2f2a26;
  padding-bottom: 1rem;
  margin-top: 1.5rem;
  text-align: center;
  text-transform: uppercase;
}
#b4n-events-user-registration-form legend:first-of-type,
#b4n-events-user-profile-events-form legend:first-of-type,
#b4n-events-user-profile-dating-form legend:first-of-type,
#b4n-events-user-profile-invitations-form legend:first-of-type,
#b4n-events-user-profile-general-form legend:first-of-type {
  margin-top: 0;
  font-size: 2.7rem;
  border-bottom: 3px solid #c5a27c;
  text-transform: uppercase;
}
#b4n-events-user-registration-form label,
#b4n-events-user-profile-events-form label,
#b4n-events-user-profile-dating-form label,
#b4n-events-user-profile-invitations-form label,
#b4n-events-user-profile-general-form label {
  color: #2f2a26;
  font-weight: 500;
  font-family: "Jost";
  font-size: 1.6rem;
  text-transform: uppercase;
}
#b4n-events-user-registration-form label.error,
#b4n-events-user-profile-events-form label.error,
#b4n-events-user-profile-dating-form label.error,
#b4n-events-user-profile-invitations-form label.error,
#b4n-events-user-profile-general-form label.error {
  color: red;
}
#b4n-events-user-registration-form input[type=text],
#b4n-events-user-registration-form input[type=email],
#b4n-events-user-registration-form input[type=password],
#b4n-events-user-profile-events-form input[type=text],
#b4n-events-user-profile-events-form input[type=email],
#b4n-events-user-profile-events-form input[type=password],
#b4n-events-user-profile-dating-form input[type=text],
#b4n-events-user-profile-dating-form input[type=email],
#b4n-events-user-profile-dating-form input[type=password],
#b4n-events-user-profile-invitations-form input[type=text],
#b4n-events-user-profile-invitations-form input[type=email],
#b4n-events-user-profile-invitations-form input[type=password],
#b4n-events-user-profile-general-form input[type=text],
#b4n-events-user-profile-general-form input[type=email],
#b4n-events-user-profile-general-form input[type=password] {
  border-radius: 0.6rem;
  background: #fdf9f4;
  border-color: #fdf9f4;
  color: #2f2a26;
  max-width: 350px;
  font-family: "Jost";
}
@media (max-width: 768px) {
  #b4n-events-user-registration-form input[type=text],
  #b4n-events-user-registration-form input[type=email],
  #b4n-events-user-registration-form input[type=password],
  #b4n-events-user-profile-events-form input[type=text],
  #b4n-events-user-profile-events-form input[type=email],
  #b4n-events-user-profile-events-form input[type=password],
  #b4n-events-user-profile-dating-form input[type=text],
  #b4n-events-user-profile-dating-form input[type=email],
  #b4n-events-user-profile-dating-form input[type=password],
  #b4n-events-user-profile-invitations-form input[type=text],
  #b4n-events-user-profile-invitations-form input[type=email],
  #b4n-events-user-profile-invitations-form input[type=password],
  #b4n-events-user-profile-general-form input[type=text],
  #b4n-events-user-profile-general-form input[type=email],
  #b4n-events-user-profile-general-form input[type=password] {
    max-width: 100%;
  }
}
#b4n-events-user-registration-form input[type=radio],
#b4n-events-user-profile-events-form input[type=radio],
#b4n-events-user-profile-dating-form input[type=radio],
#b4n-events-user-profile-invitations-form input[type=radio],
#b4n-events-user-profile-general-form input[type=radio] {
  accent-color: #c5a27c;
  width: 22px;
  height: 22px;
  cursor: pointer;
  flex: 0;
}
#b4n-events-user-registration-form input[type=checkbox],
#b4n-events-user-profile-events-form input[type=checkbox],
#b4n-events-user-profile-dating-form input[type=checkbox],
#b4n-events-user-profile-invitations-form input[type=checkbox],
#b4n-events-user-profile-general-form input[type=checkbox] {
  accent-color: #c5a27c;
  width: 22px;
  height: 22px;
  cursor: pointer;
  flex: 0;
}
@media (max-width: 768px) {
  #b4n-events-user-registration-form input[type=checkbox],
  #b4n-events-user-profile-events-form input[type=checkbox],
  #b4n-events-user-profile-dating-form input[type=checkbox],
  #b4n-events-user-profile-invitations-form input[type=checkbox],
  #b4n-events-user-profile-general-form input[type=checkbox] {
    flex: 0;
  }
}
#b4n-events-user-registration-form .form-type-textarea > div,
#b4n-events-user-profile-events-form .form-type-textarea > div,
#b4n-events-user-profile-dating-form .form-type-textarea > div,
#b4n-events-user-profile-invitations-form .form-type-textarea > div,
#b4n-events-user-profile-general-form .form-type-textarea > div {
  width: 100%;
}
#b4n-events-user-registration-form .form-type-textarea textarea,
#b4n-events-user-profile-events-form .form-type-textarea textarea,
#b4n-events-user-profile-dating-form .form-type-textarea textarea,
#b4n-events-user-profile-invitations-form .form-type-textarea textarea,
#b4n-events-user-profile-general-form .form-type-textarea textarea {
  border-radius: 0.6rem;
  background: #fdf9f4;
  color: #2f2a26;
  border-color: #fdf9f4;
  max-width: 100%;
  height: 65px;
  width: 100%;
}
#b4n-events-user-registration-form select,
#b4n-events-user-profile-events-form select,
#b4n-events-user-profile-dating-form select,
#b4n-events-user-profile-invitations-form select,
#b4n-events-user-profile-general-form select {
  background: #fdf9f4;
  color: #2f2a26;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  min-width: 120px;
  text-align: center;
}
#b4n-events-user-registration-form .form-item,
#b4n-events-user-profile-events-form .form-item,
#b4n-events-user-profile-dating-form .form-item,
#b4n-events-user-profile-invitations-form .form-item,
#b4n-events-user-profile-general-form .form-item {
  margin: 1.5rem 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
#b4n-events-user-registration-form .form-item.form-item-sensitive-data-consent label,
#b4n-events-user-profile-events-form .form-item.form-item-sensitive-data-consent label,
#b4n-events-user-profile-dating-form .form-item.form-item-sensitive-data-consent label,
#b4n-events-user-profile-invitations-form .form-item.form-item-sensitive-data-consent label,
#b4n-events-user-profile-general-form .form-item.form-item-sensitive-data-consent label {
  flex: 1;
}
#b4n-events-user-registration-form .form-item:has(textarea),
#b4n-events-user-profile-events-form .form-item:has(textarea),
#b4n-events-user-profile-dating-form .form-item:has(textarea),
#b4n-events-user-profile-invitations-form .form-item:has(textarea),
#b4n-events-user-profile-general-form .form-item:has(textarea) {
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 768px) {
  #b4n-events-user-registration-form .form-item,
  #b4n-events-user-profile-events-form .form-item,
  #b4n-events-user-profile-dating-form .form-item,
  #b4n-events-user-profile-invitations-form .form-item,
  #b4n-events-user-profile-general-form .form-item {
    flex-wrap: wrap;
  }
}
#b4n-events-user-registration-form .form-item > div,
#b4n-events-user-profile-events-form .form-item > div,
#b4n-events-user-profile-dating-form .form-item > div,
#b4n-events-user-profile-invitations-form .form-item > div,
#b4n-events-user-profile-general-form .form-item > div {
  max-width: 100%;
}
@media (max-width: 768px) {
  #b4n-events-user-registration-form .form-item,
  #b4n-events-user-profile-events-form .form-item,
  #b4n-events-user-profile-dating-form .form-item,
  #b4n-events-user-profile-invitations-form .form-item,
  #b4n-events-user-profile-general-form .form-item {
    gap: 1rem;
  }
}
#b4n-events-user-registration-form .form-item.form-item-de-agree label, #b4n-events-user-registration-form .form-item.form-item-de-public-agree label, #b4n-events-user-registration-form .form-item.form-item-pe-public-agree label,
#b4n-events-user-profile-events-form .form-item.form-item-de-agree label,
#b4n-events-user-profile-events-form .form-item.form-item-de-public-agree label,
#b4n-events-user-profile-events-form .form-item.form-item-pe-public-agree label,
#b4n-events-user-profile-dating-form .form-item.form-item-de-agree label,
#b4n-events-user-profile-dating-form .form-item.form-item-de-public-agree label,
#b4n-events-user-profile-dating-form .form-item.form-item-pe-public-agree label,
#b4n-events-user-profile-invitations-form .form-item.form-item-de-agree label,
#b4n-events-user-profile-invitations-form .form-item.form-item-de-public-agree label,
#b4n-events-user-profile-invitations-form .form-item.form-item-pe-public-agree label,
#b4n-events-user-profile-general-form .form-item.form-item-de-agree label,
#b4n-events-user-profile-general-form .form-item.form-item-de-public-agree label,
#b4n-events-user-profile-general-form .form-item.form-item-pe-public-agree label {
  flex: 1;
  padding: 0;
  margin: 0;
}
#b4n-events-user-registration-form .form-item label,
#b4n-events-user-profile-events-form .form-item label,
#b4n-events-user-profile-dating-form .form-item label,
#b4n-events-user-profile-invitations-form .form-item label,
#b4n-events-user-profile-general-form .form-item label {
  flex: 0 0 180px;
  margin: 0;
  padding: 0;
}
#b4n-events-user-registration-form .form-item label[for=edit-de-birth-year], #b4n-events-user-registration-form .form-item label[for=edit-user-picture-upload],
#b4n-events-user-profile-events-form .form-item label[for=edit-de-birth-year],
#b4n-events-user-profile-events-form .form-item label[for=edit-user-picture-upload],
#b4n-events-user-profile-dating-form .form-item label[for=edit-de-birth-year],
#b4n-events-user-profile-dating-form .form-item label[for=edit-user-picture-upload],
#b4n-events-user-profile-invitations-form .form-item label[for=edit-de-birth-year],
#b4n-events-user-profile-invitations-form .form-item label[for=edit-user-picture-upload],
#b4n-events-user-profile-general-form .form-item label[for=edit-de-birth-year],
#b4n-events-user-profile-general-form .form-item label[for=edit-user-picture-upload] {
  flex: 0 0 95px;
}
#b4n-events-user-registration-form .form-item .description,
#b4n-events-user-profile-events-form .form-item .description,
#b4n-events-user-profile-dating-form .form-item .description,
#b4n-events-user-profile-invitations-form .form-item .description,
#b4n-events-user-profile-general-form .form-item .description {
  flex: 0 0 100%;
  background-image: url(../images/svg/information.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 4rem;
  margin-bottom: 2rem;
}
#b4n-events-user-registration-form #edit-pass,
#b4n-events-user-profile-events-form #edit-pass,
#b4n-events-user-profile-dating-form #edit-pass,
#b4n-events-user-profile-invitations-form #edit-pass,
#b4n-events-user-profile-general-form #edit-pass {
  display: unset;
}
#b4n-events-user-registration-form #edit-pass input[type=password],
#b4n-events-user-profile-events-form #edit-pass input[type=password],
#b4n-events-user-profile-dating-form #edit-pass input[type=password],
#b4n-events-user-profile-invitations-form #edit-pass input[type=password],
#b4n-events-user-profile-general-form #edit-pass input[type=password] {
  background: #fdf9f4;
  color: #2f2a26;
  max-width: 350px;
}
#b4n-events-user-registration-form #edit-pass .password-strength,
#b4n-events-user-registration-form #edit-pass .password-confirm-message,
#b4n-events-user-profile-events-form #edit-pass .password-strength,
#b4n-events-user-profile-events-form #edit-pass .password-confirm-message,
#b4n-events-user-profile-dating-form #edit-pass .password-strength,
#b4n-events-user-profile-dating-form #edit-pass .password-confirm-message,
#b4n-events-user-profile-invitations-form #edit-pass .password-strength,
#b4n-events-user-profile-invitations-form #edit-pass .password-confirm-message,
#b4n-events-user-profile-general-form #edit-pass .password-strength,
#b4n-events-user-profile-general-form #edit-pass .password-confirm-message {
  font-size: 1.2rem;
  line-height: 1.32;
}
#b4n-events-user-registration-form #edit-invitation-type label,
#b4n-events-user-profile-events-form #edit-invitation-type label,
#b4n-events-user-profile-dating-form #edit-invitation-type label,
#b4n-events-user-profile-invitations-form #edit-invitation-type label,
#b4n-events-user-profile-general-form #edit-invitation-type label {
  flex: 1;
}
#b4n-events-user-registration-form .flex-1-col > div,
#b4n-events-user-profile-events-form .flex-1-col > div,
#b4n-events-user-profile-dating-form .flex-1-col > div,
#b4n-events-user-profile-invitations-form .flex-1-col > div,
#b4n-events-user-profile-general-form .flex-1-col > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
#b4n-events-user-registration-form .flex-1-col > div .form-item,
#b4n-events-user-profile-events-form .flex-1-col > div .form-item,
#b4n-events-user-profile-dating-form .flex-1-col > div .form-item,
#b4n-events-user-profile-invitations-form .flex-1-col > div .form-item,
#b4n-events-user-profile-general-form .flex-1-col > div .form-item {
  flex-basis: 100%;
  gap: 1rem;
  margin: 1rem 0;
}
@media (max-width: 768px) {
  #b4n-events-user-registration-form .flex-1-col > div .form-item,
  #b4n-events-user-profile-events-form .flex-1-col > div .form-item,
  #b4n-events-user-profile-dating-form .flex-1-col > div .form-item,
  #b4n-events-user-profile-invitations-form .flex-1-col > div .form-item,
  #b4n-events-user-profile-general-form .flex-1-col > div .form-item {
    flex-wrap: nowrap;
  }
}
#b4n-events-user-registration-form .flex-1-col > div .form-item label,
#b4n-events-user-profile-events-form .flex-1-col > div .form-item label,
#b4n-events-user-profile-dating-form .flex-1-col > div .form-item label,
#b4n-events-user-profile-invitations-form .flex-1-col > div .form-item label,
#b4n-events-user-profile-general-form .flex-1-col > div .form-item label {
  flex-basis: auto;
  padding: 0;
  margin: 0;
}
#b4n-events-user-registration-form .flex-1-col .form-checkboxes,
#b4n-events-user-profile-events-form .flex-1-col .form-checkboxes,
#b4n-events-user-profile-dating-form .flex-1-col .form-checkboxes,
#b4n-events-user-profile-invitations-form .flex-1-col .form-checkboxes,
#b4n-events-user-profile-general-form .flex-1-col .form-checkboxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
#b4n-events-user-registration-form .flex-1-col .form-checkboxes .form-item,
#b4n-events-user-profile-events-form .flex-1-col .form-checkboxes .form-item,
#b4n-events-user-profile-dating-form .flex-1-col .form-checkboxes .form-item,
#b4n-events-user-profile-invitations-form .flex-1-col .form-checkboxes .form-item,
#b4n-events-user-profile-general-form .flex-1-col .form-checkboxes .form-item {
  flex-basis: 100%;
  gap: 1rem;
  margin: 0;
}
#b4n-events-user-registration-form .flex-1-col .form-checkboxes .form-item label,
#b4n-events-user-profile-events-form .flex-1-col .form-checkboxes .form-item label,
#b4n-events-user-profile-dating-form .flex-1-col .form-checkboxes .form-item label,
#b4n-events-user-profile-invitations-form .flex-1-col .form-checkboxes .form-item label,
#b4n-events-user-profile-general-form .flex-1-col .form-checkboxes .form-item label {
  flex-basis: auto;
  padding: 0;
  margin: 0;
}
#b4n-events-user-registration-form .flex-4-cols .fieldset-wrapper > div,
#b4n-events-user-profile-events-form .flex-4-cols .fieldset-wrapper > div,
#b4n-events-user-profile-dating-form .flex-4-cols .fieldset-wrapper > div,
#b4n-events-user-profile-invitations-form .flex-4-cols .fieldset-wrapper > div,
#b4n-events-user-profile-general-form .flex-4-cols .fieldset-wrapper > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1.25rem;
}
#b4n-events-user-registration-form .flex-4-cols .fieldset-wrapper > div .form-item,
#b4n-events-user-profile-events-form .flex-4-cols .fieldset-wrapper > div .form-item,
#b4n-events-user-profile-dating-form .flex-4-cols .fieldset-wrapper > div .form-item,
#b4n-events-user-profile-invitations-form .flex-4-cols .fieldset-wrapper > div .form-item,
#b4n-events-user-profile-general-form .flex-4-cols .fieldset-wrapper > div .form-item {
  flex-basis: 32%;
  gap: 1rem;
  margin: 0;
}
@media (max-width: 768px) {
  #b4n-events-user-registration-form .flex-4-cols .fieldset-wrapper > div .form-item,
  #b4n-events-user-profile-events-form .flex-4-cols .fieldset-wrapper > div .form-item,
  #b4n-events-user-profile-dating-form .flex-4-cols .fieldset-wrapper > div .form-item,
  #b4n-events-user-profile-invitations-form .flex-4-cols .fieldset-wrapper > div .form-item,
  #b4n-events-user-profile-general-form .flex-4-cols .fieldset-wrapper > div .form-item {
    flex-basis: 100%;
    flex-wrap: nowrap;
  }
}
#b4n-events-user-registration-form .flex-4-cols .fieldset-wrapper > div .form-item label,
#b4n-events-user-profile-events-form .flex-4-cols .fieldset-wrapper > div .form-item label,
#b4n-events-user-profile-dating-form .flex-4-cols .fieldset-wrapper > div .form-item label,
#b4n-events-user-profile-invitations-form .flex-4-cols .fieldset-wrapper > div .form-item label,
#b4n-events-user-profile-general-form .flex-4-cols .fieldset-wrapper > div .form-item label {
  flex-basis: auto;
  padding: 0;
  margin: 0;
}
#b4n-events-user-registration-form .flex-4-cols .form-checkboxes,
#b4n-events-user-profile-events-form .flex-4-cols .form-checkboxes,
#b4n-events-user-profile-dating-form .flex-4-cols .form-checkboxes,
#b4n-events-user-profile-invitations-form .flex-4-cols .form-checkboxes,
#b4n-events-user-profile-general-form .flex-4-cols .form-checkboxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
#b4n-events-user-registration-form .flex-4-cols .form-checkboxes .form-item,
#b4n-events-user-profile-events-form .flex-4-cols .form-checkboxes .form-item,
#b4n-events-user-profile-dating-form .flex-4-cols .form-checkboxes .form-item,
#b4n-events-user-profile-invitations-form .flex-4-cols .form-checkboxes .form-item,
#b4n-events-user-profile-general-form .flex-4-cols .form-checkboxes .form-item {
  flex-basis: 20%;
  gap: 0.5rem;
  margin: 0;
}
#b4n-events-user-registration-form .flex-4-cols .form-checkboxes .form-item label,
#b4n-events-user-profile-events-form .flex-4-cols .form-checkboxes .form-item label,
#b4n-events-user-profile-dating-form .flex-4-cols .form-checkboxes .form-item label,
#b4n-events-user-profile-invitations-form .flex-4-cols .form-checkboxes .form-item label,
#b4n-events-user-profile-general-form .flex-4-cols .form-checkboxes .form-item label {
  flex-basis: auto;
  padding: 0;
  margin: 0;
}

/* Content contact form */
.content-contact-form {
  background: #efe7dc;
  padding: 4rem;
}
.content-contact-form label {
  display: flex;
  flex: 1;
  margin-top: 1.2rem;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Jost";
  font-size: 1.6rem;
}
.content-contact-form label.error {
  color: red;
}
.content-contact-form input[type=text],
.content-contact-form input[type=email],
.content-contact-form input[type=tel] {
  border-radius: 0.6rem;
  background: #fdf9f4;
  color: #2f2a26;
  border-color: #fdf9f4;
  box-shadow: none;
  max-width: 100%;
}
.content-contact-form textarea {
  border-radius: 0.6rem;
  background: #fdf9f4;
  color: #2f2a26;
  border-color: #fdf9f4;
  box-shadow: none;
  width: 100%;
}
.content-contact-form .button {
  display: inline-block;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  transition: all 0.5s;
  background-color: #c5a27c;
  color: #fff;
  box-shadow: none;
  margin-top: 2.5rem;
  border: none;
  text-transform: uppercase;
  font-family: "Jost";
}
.content-contact-form .button:hover {
  transform: scale(1.1);
}

/* Swal modal */
.swal2-popup {
  padding: 2rem;
  min-width: 550px;
}
@media (max-width: 768px) {
  .swal2-popup {
    min-width: unset;
  }
}
.swal2-popup .swal2-title {
  font-family: "Jost";
}
.swal2-popup p {
  font-size: 1.5rem;
  color: #0f1a13;
  line-height: 1.25;
}
.swal2-popup .swal2-actions {
  display: flex;
  gap: 1.5rem;
}

/* What we do */
.what-we-do .what-we-do__wrapper {
  border-top: 3px solid #cdbba6;
  border-bottom: 3px solid #cdbba6;
  padding: 0;
}
@media (max-width: 991px) {
  .what-we-do .what-we-do__wrapper {
    padding-bottom: 2rem;
  }
}
.what-we-do .what-we-do__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding: 1.5rem 0;
}
@media (max-width: 768px) {
  .what-we-do .what-we-do__item {
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}
.what-we-do .what-we-do__item:first-of-type {
  border-bottom: 1px solid #cdbba6;
}
@media (max-width: 768px) {
  .what-we-do .what-we-do__item:first-of-type {
    padding-bottom: 3rem;
  }
}
.what-we-do .what-we-do__item .no {
  flex: 0 0 110px;
  font-family: "Jost";
  color: #2f2a26;
  font-size: 6rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .what-we-do .what-we-do__item .no {
    flex: 1;
  }
}
.what-we-do .what-we-do__item .name {
  flex: 0 0 220px;
  font-family: "Jost";
  color: #2f2a26;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.32;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .what-we-do .what-we-do__item .name {
    flex: 1;
  }
}
.what-we-do .what-we-do__item .desc {
  flex: 1;
  color: #4a433d;
  font-size: 1.9rem;
  line-height: 1.5;
}
.what-we-do .what-we-do__item .btn {
  background: none;
  border: none;
  width: 55px;
  height: 55px;
  display: block;
  background-image: url(../images/btn--arrow-circle.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 55px;
  transition: all 0.25s;
}
.what-we-do .what-we-do__item .btn:hover {
  transform: scale(1.1);
}
.what-we-do .what-we-do__item .btn::after {
  display: none;
}

/* Zig-zag features */
@media (max-width: 991px) {
  .content-section .row-wrapper,
  .gavias-blockbuilder-content .row-wrapper {
    flex-wrap: wrap;
  }
}

.zig-zag-features {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 6.25rem;
}
@media (max-width: 768px) {
  .zig-zag-features {
    flex-direction: column;
  }
}
.zig-zag-features .zig-zag-features__item {
  flex: 0 0 calc(50% - 1.25rem);
  padding: 2.5rem;
  aspect-ratio: 1/1;
  font-size: 1.9rem;
  line-height: 1.42;
}
@media (max-width: 768px) {
  .zig-zag-features .zig-zag-features__item {
    aspect-ratio: unset;
  }
}
.zig-zag-features .zig-zag-features__item.zig-zag-features__item--dark {
  background-color: #c5a27c;
  color: #fff;
}
.zig-zag-features .zig-zag-features__item.zig-zag-features__item--dark h3 {
  color: #fff;
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 47px;
}
.zig-zag-features .zig-zag-features__item.zig-zag-features__item--light {
  background-color: #efe7dc;
  margin-top: -6rem;
  margin-bottom: 6rem;
  color: #2f2a26;
}
@media (max-width: 768px) {
  .zig-zag-features .zig-zag-features__item.zig-zag-features__item--light {
    margin: 0;
  }
}
.zig-zag-features .zig-zag-features__item.zig-zag-features__item--light h3 {
  color: #2f2a26;
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 47px;
}
.zig-zag-features .zig-zag-features__item h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.32;
  margin-bottom: 2rem;
  text-transform: uppercase;
  min-height: 47px;
}
.zig-zag-features .zig-zag-features__item.zig-zag-features__item--connect h3 {
  background-image: url(../images/svg/circle.svg);
}
.zig-zag-features .zig-zag-features__item.zig-zag-features__item--community h3 {
  background-image: url(../images/svg/users-round.svg);
}
.zig-zag-features .zig-zag-features__item.zig-zag-features__item--safe h3 {
  background-image: url(../images/svg/sparkles.svg);
}
.zig-zag-features .zig-zag-features__item.zig-zag-features__item--nature h3 {
  background-image: url(../images/svg/heart.svg);
}
.zig-zag-features .zig-zag-features__item.zig-zag-features__item--easy h3 {
  background-image: url(../images/svg/circle-check.svg);
}
.zig-zag-features .zig-zag-features__item.zig-zag-features__item--ai h3 {
  background-image: url(../images/svg/message-circle-more.svg);
}

.content-section p {
  font-size: 1.9rem;
}

/* Quick registratin form HP */
#b4n-events-registration-quick-form {
  background-color: #c5a27c;
  padding: 4rem 6rem;
}
@media (max-width: 991px) {
  #b4n-events-registration-quick-form {
    margin-top: 4rem;
  }
}
#b4n-events-registration-quick-form legend {
  display: none;
}
#b4n-events-registration-quick-form h3 {
  text-transform: uppercase;
  color: #f8f5f0;
  font-size: 2.8rem;
  font-weight: 500;
}
#b4n-events-registration-quick-form .form-item {
  margin: 2rem 0;
}
#b4n-events-registration-quick-form .form-item ::placeholder {
  color: #efe7dc;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 2rem;
  font-family: "Jost";
}
#b4n-events-registration-quick-form .form-item ::placeholder.error {
  color: #2f2a26;
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: none;
}
#b4n-events-registration-quick-form .form-item input[type=text],
#b4n-events-registration-quick-form .form-item input[type=email],
#b4n-events-registration-quick-form .form-item input[type=password] {
  background: none;
  border: none;
  border-bottom: 3px solid #f8f5f0;
  box-shadow: none;
  color: #efe7dc;
  font-size: 1.8rem;
  width: 100%;
  font-family: "Jost";
}
#b4n-events-registration-quick-form .btn__wrapper {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #b4n-events-registration-quick-form .btn__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
#b4n-events-registration-quick-form .btn__wrapper .button {
  border-radius: 50px;
  border: 3px solid #f8f5f0;
  color: #f8f5f0 !important;
  background: none;
  color: #c5a27c;
  font-size: 1.3rem;
  font-weight: 300;
  padding: 1.5rem 3rem;
  box-shadow: none;
  transition: all 0.5s;
  text-transform: uppercase;
  font-family: "Jost";
}
#b4n-events-registration-quick-form .btn__wrapper .button:hover {
  background-color: #f8f5f0;
  color: #c5a27c !important;
}
#b4n-events-registration-quick-form .btn {
  display: block;
  width: fit-content;
}

/* Events carousel */
.b4n-events-carousel .swiper-wrapper {
  justify-content: stretch;
}
.b4n-events-carousel .swiper-pagination {
  display: none;
}
.b4n-events-carousel .swiper-button-prev,
.b4n-events-carousel .swiper-button-next {
  color: #c5a27c;
}
.b4n-events-carousel .b4n-event-content h3 {
  font-size: 1.7rem;
}
.b4n-events-carousel .b4n-event-content .b4n-event-date {
  font-family: "Jost";
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4a433d;
}
.b4n-events-carousel .b4n-event-content .b4n-event-place {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4a433d;
}
.b4n-events-carousel .b4n-event-content .b4n-event-description {
  display: block;
  margin: 1rem 0;
  min-height: 52px;
}
.b4n-events-carousel .b4n-event-content .b4n-event-price {
  display: block;
  margin: 0.5rem 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4a433d;
}
.b4n-events-carousel .b4n-event-content .b4n-event-occupancy {
  display: block;
  margin: 0.5rem 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4a433d;
}
.b4n-events-carousel .swiper-pagination-bullet-active {
  background-color: #c5a27c;
}
.b4n-events-carousel .b4n-event-actions {
  margin-top: 2rem;
}
.b4n-events-carousel .b4n-event-actions .b4n-btn {
  display: inline-block;
  color: #fff;
  background-color: #c5a27c;
  padding: 0.75rem 2.5rem;
  transition: all 0.25s;
  border-radius: 50px;
  text-transform: uppercase;
  font-family: "Jost";
}
.b4n-events-carousel .b4n-event-actions .b4n-btn:hover {
  background-color: #f8f5f0;
  color: #c5a27c;
}

/* Banner HP top */
.section-banners .row-wrapper {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.section-banners .row-wrapper .gsc-column {
  flex: 1;
}
.section-banners .row-wrapper .gsc-column .column-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.section-banners .row-wrapper .gsc-column img {
  width: 100%;
  height: auto;
  display: block;
}
.section-banners .main-center-banner {
  background-color: #c5a27c;
  text-align: center;
  color: #f8f5f0;
  padding: 4rem 2rem;
  height: 463px;
}
@media (max-width: 991px) {
  .section-banners .main-center-banner {
    height: unset;
    background-image: url(../images/main-center-banner.webp);
    background-repeat: no-repeat;
    background-positio: center center;
    background-size: cover;
  }
  .section-banners .main-center-banner .btn {
    border: none;
    background-color: #c5a27c;
    color: #fff;
  }
  .section-banners .main-center-banner .btn:hover {
    background-color: #f8f5f0;
    color: #c5a27c;
  }
}
@media (max-width: 450px) {
  .section-banners .main-center-banner {
    background-image: url(../images/main-center-banner--sm.webp);
    background-positio: center bottom;
    min-height: 370px;
  }
  .section-banners .main-center-banner .btn {
    border: none;
    background-color: #c5a27c;
    color: #fff;
  }
  .section-banners .main-center-banner .btn:hover {
    background-color: #f8f5f0;
    color: #c5a27c;
  }
}
.section-banners .main-center-banner h2 {
  color: #f8f5f0;
}
.section-banners .main-center-banner p {
  max-width: 200px;
  margin: 0 auto;
}
/* User menu block styles */
.b4n-user-menu-block {
  position: relative;
  display: inline-block;
  float: right;
}
.b4n-user-menu-block a {
  color: #c5a27c;
  font-size: 1.5rem;
  font-weight: 500;
}
.b4n-user-menu-block a:hover {
  text-decoration: underline;
}
.b4n-user-menu-block a.login {
  padding-right: 1rem;
  position: relative;
}
.b4n-user-menu-block a.login::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #c5a27c;
}
.b4n-user-menu-block a.register {
  padding-left: 1rem;
}
.b4n-user-menu-block .b4n-user-menu-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 1.5rem;
  font-weight: 700;
}
.b4n-user-menu-block .b4n-user-name {
  color: #c5a27c;
  background-image: url(../images/svg/user-round.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 25px;
}
.b4n-user-menu-block .b4n-user-menu-trigger img {
  border-radius: 100%;
}
.b4n-user-menu-block .b4n-user-menu-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0px;
  background: #fff;
  border: 1px solid #c5a27c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 100;
  min-width: 220px;
  padding: 0.5em 0;
}
@media (max-width: 991px) {
  .b4n-user-menu-block .b4n-user-menu-dropdown {
    right: unset;
  }
}
.b4n-user-menu-block .b4n-user-menu-dropdown a {
  display: block;
  padding: 0.5em 1em;
  color: #c5a27c;
  text-decoration: none;
  font-family: "Jost";
}
.b4n-user-menu-block .b4n-user-menu-dropdown a:hover {
  background: #c5a27c;
  color: #f8f5f0;
}
.b4n-user-menu-block:hover .b4n-user-menu-dropdown {
  display: block;
}
.b4n-user-menu-block:focus-within .b4n-user-menu-dropdown {
  display: block;
}
.b4n-user-menu-block .b4n-user-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><circle cx='12' cy='8' r='4' stroke='%23222' stroke-width='2' fill='none'/><path d='M4 20c0-3.3137 3.134-6 8-6s8 2.6863 8 6' stroke='%23222' stroke-width='2' fill='none'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.b4n-user-menu-block .b4n-required-error {
  border: 2px dotted red !important;
}

/* Event detail */
.b4n-event-detail .b4n-event-image {
  position: relative;
}
.b4n-event-detail .b4n-event-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  background-color: #c5a27c;
  color: #fff;
  padding: 4px 12px;
  text-transform: uppercase;
}
.b4n-event-detail .b4n-event-gallery {
  padding: 0px;
  margin: 2rem 0;
}
@media (max-width: 479px) {
  .b4n-event-detail .b4n-event-gallery img {
    width: 100%;
  }
}
.b4n-event-detail .b4n-event-section {
  padding: 6rem 6rem 2rem 6rem;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .b4n-event-detail .b4n-event-section {
    padding: 2rem;
  }
}
.b4n-event-detail .b4n-event-register-box {
  padding: 0rem 0rem 6rem 0;
  margin-bottom: 2rem;
  text-align: center;
}
.b4n-event-detail .b4n-event-register-box .b4n-event-register-price {
  color: #2f2a26;
  font-size: 1.8rem;
}
.b4n-event-detail .b4n-event-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.b4n-event-detail .b4n-event-info .b4n-event-info-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 2.5rem;
}
@media (max-width: 768px) {
  .b4n-event-detail .b4n-event-info .b4n-event-info-row {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.b4n-event-detail .b4n-event-info .b4n-event-info-label {
  font-size: 0.98em;
  display: block;
  font-weight: 500;
  margin-bottom: 0.2em;
  text-align: center;
}
.b4n-event-detail .b4n-event-info .b4n-event-info-value {
  font-size: 1.13em;
  font-weight: 700;
  display: block;
  text-align: center;
}
.b4n-event-detail .b4n-event-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .b4n-event-detail .b4n-event-nav {
    flex-direction: column;
    gap: 1rem;
  }
}
.b4n-event-detail .b4n-event-nav a {
  display: flex;
  align-items: center;
  color: #c5a27c;
  background: none;
  padding: 0.75rem 2.2rem;
  transition: all 0.25s;
  border: 3px solid #c5a27c;
  border-radius: 50px;
  font-family: "Jost";
}
.b4n-event-detail .b4n-event-nav a:hover {
  color: #f8f5f0;
  background: #c5a27c;
}
.b4n-event-detail .b4n-event-nav a.b4n-back-link::before {
  content: "←";
  font-family: inherit;
  font-weight: bold;
  margin-right: 0.4em;
  font-size: 1.35em;
  position: relative;
  top: -0.1rem;
}
.b4n-event-detail .b4n-event-nav a.b4n-next-link::after {
  content: " →";
  font-family: inherit;
  font-weight: bold;
  margin-left: 0.4em;
  font-size: 1.35em;
  position: relative;
  top: -0.1rem;
}

/* About us content */
.about-us--images .gsc-image {
  display: flex;
  justify-content: center;
}
.about-us--images img {
  max-width: 100%;
  height: auto;
  margin: 0.5rem 0;
}
.about-us--images.pooka img {
  max-width: 250px;
}

.font-16-rem p {
  font-size: 1.64rem;
}

.about-us__column .column-inner {
  height: 100%;
  display: flex;
}
.about-us__column .column-content-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.about-us__column .column-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.about-us__column .column-content .btn {
  margin-top: auto;
  align-self: center;
}

.row-wrapper {
  display: flex;
  align-items: stretch;
}

/* Gavias block vuilder */
.gavias-blockbuilder-content .link-edit-blockbuider {
  right: 0;
  left: unset;
  background: #c5a27c;
  color: #f8f5f0;
  border: none;
}
.gavias-blockbuilder-content .link-edit-blockbuider:hover {
  color: #c5a27c;
  background: #f8f5f0;
}

.content-column-left {
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .content-column-left {
    padding: 0;
  }
}

.content-column-right {
  padding-left: 1rem;
}
@media (max-width: 991px) {
  .content-column-right {
    padding: 0;
  }
}

#block-pooka-local-tasks .nav-tabs li {
  list-style: none;
}

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