/* =====================================================
   Datei-Struktur (nur Ordnung + Kommentare)
   Hinweis: Code/Regeln/Values unverändert – nur sortiert.
   ===================================================== */


/* =====================================================
   1) Basis / Reset
   ===================================================== */

html { overflow-x: clip; }

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Firefox */
* {
  scrollbar-width: none;
}

/* IE / alte Edge (falls relevant) */
* {
  -ms-overflow-style: none;
}







body {
  margin: 0;
  height: 100%;
  font-family: var(--font-body);
  background: var(--body-bg-color);
  color: var(--text-color-1);
  overflow-x: hidden;
  overflow-x: clip;
  line-height: var(--line-height);
  font-size: var(--text-size);
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.onepager {
  width: 100%;
}


/* =====================================================
   2) Typografie
   ===================================================== */

h1 {
  font-family: var(--font-heading);
}

h2 {
  font-size: var(--h2-size);
  font-family: var(--font-heading);
}


/* =====================================================
   3) Header / Navigation / Menü
   ===================================================== */

.site-header {
  height: var(--header-height);
  display: flex;
  position: sticky;
  top: 0;
  z-index: 998;
  background-color: white;
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

.header-inner {
  display: flex;
  flex-flow: row;
  width: 90%;
  margin: auto;
  justify-content: space-between;
  max-width: 1400px;
  align-items: center;
}

.site-branding {
  width: 200px;
  height: 60px;
  display: flex;
}

.header-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* Button Icon */
.menu-toggle {
background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  display: none;
  z-index: 9999;
  position: absolute;
  right: 10%;


}

.menu-icon {
  position: relative;
  width: 32px;
  height: 24px;
  display: inline-block;
}

.menu-icon .line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: 0.3s ease all;
}

.menu-icon .line-1 { top: 0; }
.menu-icon .line-2 { top: 50%; transform: translateY(-50%); }
.menu-icon .line-3 { bottom: 0; }

/* X-Zustand */
.menu-toggle.active .line-1 {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active .line-2 { opacity: 0; }
.menu-toggle.active .line-3 {
  transform: rotate(-45deg) translate(10px, -9px);
}


/* =========================
   NAV WRAPPER (animiert)
   ========================= */

/* Desktop: normal */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  padding:0px;
  z-index: 1000;
}

.site-nav-search {
  display: none;
}



.main-menu {
display: flex;
flex-flow: row;
gap: 15px;

}

.main-menu a{
text-decoration: none;
color: var(--primary-color);
transition: 0.3s ease all;

}

.main-menu a:hover{
text-decoration: none;
color: var(--secondary-color);

}


.menu-item  {
  list-style: none;
}















/* =====================================================
   4) Hintergrundgrafiken
   ===================================================== */

.background-images {
  inset: 0 0 0 0;
  z-index: -10;
  opacity: .2;
  overflow: hidden;
  position: fixed;
}

.background-images .svg-background {
  fill: var(--accent-color);
  opacity: .2;
}

.background-image-1,
.background-image-2 {
  position: absolute;
  width: 500px;
  will-change: transform;
}

.background-image-1 {
  top: 30%;
}

.background-image-2 {
  top: 50%;
  right: -200px;
}

.background-overflow {
  inset: 0 0 0 0;
}


/* =====================================================
   5) Gutenberg Buttons / Form Buttons / Slider Nav / Search Button
   ===================================================== */

/* Button Styles (Varianten) */
.is-style-fill .wp-block-button__link { background: var(--primary-color); color: var(--button-text-color-1); position: relative; border-radius: var(--btn-radius);font-size: var(--font-size);justify-content: center; border: 0px;}
.is-style-fill .wp-block-button__link svg { fill: var(--button-text-color-1); }

.is-style-outline .wp-block-button__link { background: none; border: 2px solid var(--primary-color); color: var(--primary-color); position: relative; border-radius: var(--btn-radius); font-size: var(--font-size);justify-content: center;padding: 10px 44px 10px 34px;}
.is-style-outline .wp-block-button__link svg { fill: var(--primary-color); }
.is-style-outline .wp-block-button__link .prbn-button-icon {top: 15px;}

.is-style-secondary .wp-block-button__link { background: var(--secondary-color); color: var(--button-text-color-2); position: relative; border-radius: var(--btn-radius);font-size: var(--font-size);justify-content: center;}
.is-style-secondary .wp-block-button__link svg { fill: var(--button-text-color-2); }

.is-style-invert .wp-block-button__link { background: var(--accent-color); color: var(--button-text-color-1); position: relative; border-radius: var(--btn-radius);font-size: var(--font-size);justify-content: center;}

/* Button Basis */
.wp-block-button__link {
  color: #fff;
  background-color: var(--primary-color);
  border-radius: var(--btn-radius);
  transition:0.4s ease all;
}



.wp-block-buttons .wp-block-button__link {
  padding: 12px 46px 12px 36px;
  width:auto !important;
}

.wp-block-button__link .prbn-button-icon {
  margin-left:0px;
  transition: 0.4s all ease;
  position: absolute;
  right: 25px;
  top: 15px;
}

.wp-block-button__link.hover .prbn-button-icon {
  right:20px;
}

.wp-block-buttons {
  margin: 5px auto;
}

/* Footer Button */
.site-footer button {
  background-color: var(--accent-color);
  box-shadow: none;
  border-radius: var(--btn-radius);
  border: none;
  font-size: var(--font-size);
  font-family: var(--font-body);
  transition: 0.4s all ease;
}

/* Back-to-top Icon Rotation */
#back-to-top svg {
  transform: rotate(270deg);
}

/* Slider Nav Button */
.prbn-slider-nav {
  background-color: var(--primary-color);
  box-shadow: none;
  border-radius: var(--btn-radius);
  padding: 10px;
  border: none;
  transition: 0.4s ease all;
}

/* Gutenberg Search Button (mit Icon) */
.wp-block-search__button.has-icon {
  border-radius: var(--btn-radius);
  border: 0px;
  padding: 10px;
  color: white;
  background-color: var(--primary-color);
  transition: 0.4s all ease;
}

/* Form Actions Button (PRBN) */
.prbn-form-actions button {
  background-color: var(--accent-color);
}

/* Icon im Search Button ausblenden */
.wp-block-search__button .prbn-button-icon {
  display:none;
}


/* Hover Zustände */
.is-style-fill .wp-block-button__link:hover{
  background-color: color-mix(in srgb, var(--primary-color) 85%, white 15%);
}

.is-style-outline .wp-block-button__link.hover{
  border: 2px solid color-mix(in srgb, var(--primary-color) 85%, white 15%);
}

.is-style-secondary .wp-block-button__link:hover{
  background-color: color-mix(in srgb, var(--secondary-color) 85%, white 15%);
}

.is-style-invert .wp-block-button__link:hover{
  background-color: color-mix(in srgb, var(--accent-color) 85%, white 15%);
}

.wp-block-search__button:hover{
  background-color: color-mix(in srgb, var(--primary-color) 85%, white 15%);
}

.prbn-slider-nav:hover{
  background-color: color-mix(in srgb, var(--primary-color) 85%, white 15%);
}

#back-to-top:hover{
  background-color: color-mix(in srgb, var(--primary-color) 85%, white 15%);
}


.wp-block-search__inside-wrapper .wp-block-search__input{
  left: 0px;
  position: relative;
  z-index: -1;
  opacity: 0;
  transition: 0.5s ease all;
}


.wp-block-search__inside-wrapper.hover .wp-block-search__input{
  left: 0px;
  position: relative;
  z-index: 1;
  opacity: 1;
}





/* =====================================================
   6) Sektionen Styles (Allgemein)
   ===================================================== */

.section-icon {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  overflow: hidden;
}

.inhalt-wrapper {
  width: 90%;
  margin: auto;
  display: flex;
  z-index: 2;
  align-items: center;
}

.prbn-single-image, .prbn-post-slider {
  border-radius: var(--img-radius);
  overflow: hidden;
  width: 50%;
  display: flex;
  height:450px;
}



.headline-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.wp-block-image {
  border-radius:var(--img-radius);
  overflow: hidden;
}

.lightbox-image-container {
  border-radius: var(--img-radius);
}


.wp-lightbox-container button:focus, .wp-lightbox-container button:hover, .wp-lightbox-container button:not(:hover):not(:active):not(.has-background) {
  background-color: var(--accent-color) !important;
  border: none;
}

.scrim {
  background-color: #ffffffd4;
}

.content-image {
  width: 50%;
}

.content-section {
  width: 50%;
}

.wp-block-column {
  display: flex;
  flex-flow: column;
}

.wp-block-accordion-heading__toggle-icon {
  color: var(--accent-color);
}

.close-button svg {
  fill:white;
}

.section-wrapper {
  display: flex;
  justify-content: space-between;
  flex-flow: row;
  width: 90%;
  max-width: 1200px;
padding: 100px 0px;
  margin: auto;
}


/* =====================================================
   7) Sektionen Designs
   ===================================================== */

/* ---------------------------------
   HERO
   --------------------------------- */

.section-design-hero h1, .section-design-hero h2, .section-design-hero p  {
  color:white;
}

.section-design-hero .section-wrapper {
  display: flex;
  justify-content: space-between;
  flex-flow: row;
  width: 100%;
  max-width: unset;
  margin: auto;
  height:800px;
  padding:0px;
}

.section-design-hero .content-image--featured {
  position: absolute;
  width: 100%;
  height: 800px;
  display: flex;
  justify-content: center;
}

.section-design-hero .inhalt-wrapper {
  justify-content: center;
  flex-flow: row-reverse;
  max-width: 1200px;
}

.content-text-wrapper {
  padding: 60px;
}

.section-design-hero .featured-image-wrapper{
height: 100%;
width:100%;
}

.section-design-hero .featured-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-design-hero .content-image--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.section-design-hero .prbn-post-slider{
  margin-top:0px;
width: 450px;
}


/* ---------------------------------
   Normal (Platzhalterbereich im Original)
   --------------------------------- */

/* ---------------------------------
   Getauscht
   --------------------------------- */

.section-design-switch .inhalt-wrapper {
  flex-flow: row-reverse;
}


/* ---------------------------------
   Center
   --------------------------------- */

.section-design-center .inhalt-wrapper {
  justify-content: center;
  flex-flow: column-reverse;
}

.section-design-center .content-section {
  width: 80%;
  text-align:center;
}

.section-design-center .content-text-wrapper {
  text-align: center;
  display: flex;
  flex-flow: column;
  align-items: center;
}

.section-design-center .content-section {
  padding: 0px 60px;
}

.section-design-center  .prbn-post-slider {
  width: 100%;
  height: 400px;
}

.section-design-center .headline-wrapper {
gap:10px;
  flex-flow: column-reverse;
}


/* ---------------------------------
   Banner
   --------------------------------- */

.section-design-banner .section-wrapper{
  width: 100%;
  margin: 0px;
  max-width: unset;
  height: auto;
  display: flex;
  padding: 0px;
}

.section-design-banner .inhalt-wrapper{
  width: 100%;
  }

.section-design-banner .prbn-post-slider {
  width: 100%;
  position: relative;
  border-radius: 0px;
}



.section-design-banner .content-section {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color:white;
}

.section-design-banner .headline-wrapper {
flex-flow: column-reverse;
}

.section-design-banner .content-text-wrapper {
  text-align: center;
}

.section-design-banner .prbn-single-image{
  width: 100%;
}

.section-design-banner .prbn-single-image::before, .section-design-banner .prbn-post-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 1;
}

.section-design-banner .prbn-single-image,.section-design-banner .prbn-post-slider {
  border-radius:0px;
  position: relative;
  max-width: unset;
}



/* ---------------------------------
   Banner Small
   --------------------------------- */

.section-design-banner.banner-small {
  min-height: 300px;
  background-color: var(--secondary-color);
}

.section-design-banner.banner-small {
  position: relative;
}

.section-design-banner.banner-small .content-section{
min-height: 300px;
  margin: auto;
  position: unset;
  left:unset;
  transform: translateX(0%);
  color: white;
  width:100%;
}

.section-design-banner.banner-small .content-text-wrapper {
  display: flex;
  flex-flow: column;
}


/* ---------------------------------
   DARK
   --------------------------------- */

.section.dark {
  background-color: var(--secondary-color);
}

.dark h1, .dark h2, .dark p {
  color:white;
}


/* =====================================================
   8) News / Hinweisleiste
   (Hinweis: Duplikat aus Original beibehalten)
   ===================================================== */

.site-news {
  height: 20px;
  position: absolute;
  background-color: var(--accent-color);
  left: 50%;
  transform: translateX(-50%);
  top: 175px;
  z-index: 10;
  padding: 10px 20px;
  border-radius: 0px;
  color: white;
  font-family: var(--font-body);
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--btn-radius);
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.14); 
box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.1);
}

.site-news-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-news-wrapper p {
  padding: 0px;
  margin: 0px auto;
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.search .site-news, .page-template-default .site-news{
  display:none;
}



/* =====================================================
   9) Suche / Suchformular
   ===================================================== */

#searchsubmit {
  background-color: var(--primary-color);
  box-shadow: none;
  border-radius: var(--btn-radius);
  padding: 12px;
  border: none;
  font-size: var(--font-size);
  font-family: var(--font-button);
  color: white;
}

#searchform input {
  padding: 12px;
  border-radius: var(--btn-radius);
  border: 1px solid var(--primary-color);
}

.searchform #s {
  padding: 14px;
  margin-right: 5px;
  width: 120px;
}

.wp-block-search__input {
  border-radius: var(--btn-radius);
  width: 180px;
}


/* =====================================================
   10) Suchergebnisse
   ===================================================== */

.search .section-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.search .page-title {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: var(--h2-size);
  font-weight: 600;
}

.search .page-title span {
  font-size: var(--h1-size);
}

.search .wp-block-search__input {
  opacity: 1;
}


.page-header .page-title {
  margin-bottom: 24px;
}



.search-results-headline {
  margin: 0 0 24px;
  display:none;
}



.search-results-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
  width: 75%;
}

.search-results-item {
  border: 1px solid rgba(0,0,0,.12);
  border-radius: var(--img-radius);
  overflow: hidden;
  background-color: white;
  display: flex;
  padding: 20px;
  justify-content: space-between;
}

.search-results-thumb {
  width: 200px;
  flex: 0 0 200px;
  height: 200px;
  border-radius: var(--img-radius);
  overflow: hidden;
}

.search-results-thumb div {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.06);
  border-radius: var(--img-radius);
}

.search-results-content {
  width: 100%;
  padding: 20px;
}

.search-results-item .wp-block-buttons {
  padding: 0 12px 12px;
  flex-flow: row;
  min-width: 140px;
  align-items: end;
  position: relative;
  bottom: 0px;
  margin: 0px;
}


/* =====================================================
   11) Seiten / Content
   ===================================================== */

.header-image-single {
  height: 400px;
  display: flex;
}

.page.type-page .entry-content {
  width: 80%;
  margin: auto;
}


/* =====================================================
   12) Footer
   ===================================================== */

#site-footer {
  margin: 0px;
  padding: 0px;
  background-color: var(--secondary-color);
  height: auto;
}

#site-footer .prbn-kontaktdaten {
  display: flex;
  flex-flow: column;
  text-align: center;
  padding: 30px;
  font-size: 14px;
}

#site-footer .prbn-kontaktdaten__row {
  margin: 3px;
  color: white;
}

#site-footer .prbn-kontaktdaten__row a {
  color: white;
  text-decoration: none;
}

.footer-copyright {
  margin: 0px;
  padding: 20px;
  text-align: center;
  color: #616161;
}

.footer-button {
  display:flex;
}


/* =====================================================
   13) Back-to-Top Button
   ===================================================== */

.btt #back-to-top {
  position: fixed;
  left: 95%;
  bottom: 10%;
  height: 40px;
  width: 40px;
  top: 100%;
  transition: 0.3s ease all;
  z-index: 12;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btt #back-to-top.show {
  top: 90%;
}

#back-to-top path {
  color: white;
}

.btt button .button-icon {
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  transition: 0.4s all ease;
}

.btt.hover button .button-icon {
  top: 40%;
}


/* =====================================================
   14) Plugins / Blöcke / Sonstiges
   ===================================================== */

.prbn-prev svg {
  transform: rotate(180deg);
}

.wp-lightbox-overlay.zoom.active .scrim {
  background-color: var(--secondary-color) !important;
}

.wp-block-accordion-heading__toggle-title {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--font-size);
}

.wp-block-accordion-heading__toggle:hover
.wp-block-accordion-heading__toggle-title {
  text-decoration: none;
}

.prbn-form-field {
  margin: 10px 0px;
}


/* =====================================================
   15) PRBN – Slider (Basis + Navigation)
   ===================================================== */

.prbn-post-slider {
  position: relative;
  width: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

/* Track bewegt sich horizontal */
.prbn-post-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.4s ease;
  will-change: transform;
}

/* Einzelnes Slide */
.prbn-post-slide {
  flex: 0 0 100%;
  max-width: 100%;
}

/* Bilder sauber & responsiv */
.prbn-post-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover / Fokus */
.prbn-slider-nav:hover,
.prbn-slider-nav:focus-visible {
  background-color: color-mix(in srgb, var(--primary-color) 85%, white 15%);
}

/* Links / Rechts */
.prbn-prev {
  left: 0.75rem;
}

.prbn-prev svg {
  transform: rotate(180deg);
}

.prbn-next {
  right: 0.75rem;
}

.prbn-slider-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.prbn-slider-nav .prbn-button-icon svg {
  width: 1em;
  height: 1em;
  display: block;
}

.prbn-slider-nav .prbn-button-icon path {
  color: white;
}


.prbn-prev .prbn-button-icon  {
  left:0px;
  transition: 0.4s all ease;
  position: relative;
}

.prbn-prev.hover .prbn-button-icon  {
  left:-5px;
}



.prbn-next .prbn-button-icon  {
  right:0px;
  transition: 0.4s all ease;
    position: relative;

}

.prbn-next.hover .prbn-button-icon  {
  right:-5px;
}








.img-slider-navigation {
  margin: auto;
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 20;
  bottom: 50%;
  width: 95%;
  justify-content: space-between;
  transform: translateY(50%);
}

.prbn-post-slider-track {
  transition: transform 300ms ease;
  will-change: transform;
}


/* =====================================================
   16) PRBN – Öffnungszeiten / Öffzeiten
   ===================================================== */

.prbn-oeffnungszeiten {
  margin: 40px;
}

.prbn-oeffzeiten {
  display: flex;
  flex-flow: column;
  align-items: center;
}

.prbn-oeffzeiten__row {
  display: flex;
  flex-flow: row;
  gap: 30px;
  margin: 5px;
  width: 100%;
  justify-content: space-between;
}

.prbn-oeffzeiten__day {
  font-weight: bold;
  text-align: left;
}


.prbn-oeffzeiten__time {
  text-align: right;
}

.site-footer .prbn-oeffnungszeiten {
  margin: 0px;
}


/* =====================================================
   17) PRBN – Kontaktdaten
   ===================================================== */

.prbn-kontaktdaten--header {
  height: 20px;
  margin: 0px;
  padding: 0px;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.prbn-kontaktdaten--header .prbn-kontaktdaten {
  display: flex;
  gap: 60px;
  justify-content: center;
  color: white;
  background-color: var(--secondary-color);
  margin: 0px;
  align-items: center;
  flex-flow: row;
  font-size:12px;
}

.prbn-kontaktdaten--header .prbn-kontaktdaten__row a{
  color: white;
text-decoration: none;
}

.prbn-kontaktdaten {
  margin: 40px;
  display: flex;
  flex-flow: column;
  gap: 3px;
}

.site-footer .prbn-kontaktdaten {
  margin: 0px;
}

.prbn-kontaktdaten--header .prbn-kontaktdaten__button {
  display: none;
}

.prbn-kontaktdaten__row a{
  text-decoration: none;
  color: var(--text-color-1);
}

.prbn-kontaktdaten__row .wp-block-buttons{
  margin-top:20px;
}


/* =====================================================
   18) PRBN – Form Styles
   ===================================================== */

.prbn-form-required {
  color: var(--accent-color);
  margin-left: 4px;
}

.prbn-form-label {
  display: block;
  margin: 0 0 6px;
  font-weight: 400;
  font-size: var(--font-size);
  line-height: 16px;
}

.prbn-form-label span {
  font-size:14px;
}

.prbn-form-input {
  width: 100%;
  max-width: 80%;
  padding: 10px;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: var(--btn-radius);
}


.prbn-form-wrapper {
  max-width: 600px;
  margin: auto;
}

.page-template-default .prbn-form {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.page-template-default .prbn-form-field {
  width: 80%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}




/* ===========================================================
   19) Cookie Banner
   =========================================================== */

.cb-banner {
  position: fixed;  right: 1rem; bottom: -400px; z-index: 9999;
  background: var(--secondary-color); color: #fff; border-radius: var(--img-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,.25); width: 80%; display:flex;
  left: 50%;
  transform: translate(-50%);
  transition: 0.4s all ease;
  }

.cb-banner.show {
  bottom:20px;
  display:flex;
}

.cb-text {
  font-size: 14px;
  color: #9a9a9a;
}

.cb-reopen {

  float: left;
margin-left:10px
}

.cookie-reopen {
  position: relative;
  width: 90%;
  height: 120px;
  margin: auto;
  display: flex;
}

.cb-reopen {
  cursor: pointer;
  border: 0px;
  border-radius: var(--btn-radius);
  padding: 0.75rem 1rem;
  background: var(--primary-color);
  color: #fff;
  font-weight: 400;
  margin: auto;
}


.cb-accept {
  cursor: pointer;
  border: 0px;
  color: #fff;
  font-weight: 400;
  margin: auto;
}

.cb-accept.wp-block-button__link {
  color: #fff;
  background-color: var(--accent-color);
  border-radius: var(--btn-radius);
  box-shadow: none;
  text-decoration: none;
  font-size: var(--font-size);
  padding: 12px 46px 12px 36px;
}


.cb-accept.wp-block-button__link .prbn-button-icon {
 display: none;
}








.cb-accept .wp-block-button__link .prbn-button-icon {

  top: unset;
}




