/*

    Theme Name:		 Brikk Child
    Theme URI:		 https://themeforest.net/item/brikk-directory-listing-wordpress-theme/29105129
    Description:	 Brikk Child is a child theme of Brikk
    Author:			 Utillz
    Author URI:		 https://themeforest.net/user/utillz
    Template:		 brikk
    Version:		 1.7.0.2
    Text Domain:	 brikk-child

*/

/*
 * add your custom styles here
 *
 */
.rz-modal.rz-visible[data-id="listing-edit"] {
    width: 1200px;
    transform: translate(-50%, -50%);
    margin-left: 0 !important;
  	max-height: 90vh;
}

.rz-modal[data-id="listing-edit"] .rz-modal-heading {
  padding: 1rem !important;
}

.rz-modal[data-id="listing-edit"] .rz-close {
    padding: 1rem !important;
}

.rz-checklist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 25px; 
    padding: 0;
    margin: 0;
}

.rz-checklist li {
    list-style: none; 
    display: flex;
    align-items: center;
}

.rz-checklist:has(input[name="addons[]"]) {
    display: block !important;
}

@media (max-width: 768px) {
    .rz-checklist {
        grid-template-columns: repeat(2, 1fr); /* 2 Spalten */
        gap: 8px 20px; /* Etwas kleinerer Abstand */
    }
}

/* Anpassung für Smartphones (max-width: 480px) */
@media (max-width: 480px) {
    .rz-checklist {
        grid-template-columns: repeat(2, 1fr); /* 1 Spalte für bessere Lesbarkeit */
        gap: 6px 12px; /* Noch kompakterer Abstand */
    }
}

.house-size-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    background-color: #f5f5f5;
    overflow: hidden;
    position: relative;
}

/* Das Eingabefeld */
.house-size-container input {
    flex: 2;
    padding: 12px;
    border: none;
    background: #f5f5f5;
    font-size: 16px;
    text-align: left;
    border-radius: 8px 0 0 8px;
}

/* Das Dropdown-Menü (Unit) */
.house-size-container select {
    flex: 0.6;
    padding: 12px;
    border: none;
    background: #f5f5f5;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
    padding-left: 10px;
    width: 80px;
    min-width: 60px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
}

/* Vertikale Trennlinie zwischen Eingabe und Dropdown */
.house-size-container::before {
    content: "|";
    position: absolute;
    left: calc(100% - 80px); /* Platzierung direkt vor dem Dropdown */
    top: 15%;
    width: 1px;
    height: 70%;
    background-color: #ccc;
}

/* Perfekter Pfeil für das Dropdown */
.house-size-container::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px; /* Größerer Pfeil */
    height: 8px; /* Größerer Pfeil */
    border-right: 2.5px solid #333;
    border-bottom: 2.5px solid #333;
    pointer-events: none;
}

/* Entfernt den Standard-Pfeil in Browsern */
.house-size-container select::-ms-expand {
    display: none;
}

.selection-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

/* Entfernt unnötige Stile */
.selection-box label::after {
    display: none !important;
    content: "" !important;
    background: none !important;
}

.selection-box.active {
    background-image: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.selection-box input {
    display: none !important;
}

/* ✅ Styling für die Auswahlboxen */
.selection-box {
    display: flex;
    flex-direction: column;
    width: calc(50% - 10px);
    max-width: 400px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    background-color: #f9f9f9;

    /* ✅ Weiche Übergänge */
    transition: all 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* ✅ Hover-Effekt */
.selection-box:hover {
    border-color: #666;
    background-color: #f1f1f1;
    transform: scale(1.02); /* Kleiner Zoom-Effekt */
    transition: all 0.3s ease-in-out;
}

/* ✅ Text Styling */
.selection-box label {
    display: block;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
}

/* ✅ Beschreibung weicher einblenden */
.selection-box .description {
    font-size: 14px;
    color: #555;
    display: block;
    margin-top: 5px;
    opacity: 0.8;
    transition: opacity 0.3s ease-in-out;
}

/* ✅ Aktivierter Zustand mit Schatten & Animation */
.selection-box.active {
    border: 2px solid #000;
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* ✅ Leichter Schatten */
    transform: scale(1.05); /* ✅ Sanfte Skalierung */
    transition: all 0.3s ease-in-out;
}

/* ✅ Aktivierte Beschreibung heller */
.selection-box.active .description {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

/* ✅ Responsive Verhalten */
@media (max-width: 600px) {
    .selection-box {
        width: 100%;
    }
}

.select2-container {
    display: none !important;
}

.rz--meta.rz--style-inline li.break::before {
    content: none !important;
}

.rz--meta.rz--style-inline {
    display: flex !important; /* Beibehaltung von Flexbox für eine saubere Ausrichtung */
    align-items: center !important;
    flex-wrap: wrap !important;
    padding: 0;
    margin: 0;
    list-style: none;
}

.rz--meta.rz--style-inline li {
    display: inline !important;
    font-size: 15.5px !important;
    font-weight: 400;
    white-space: nowrap; /* Kein Umbruch innerhalb eines Eintrags */
    padding: 0 !important;
    margin: 0 !important;
}

.rz--meta.rz--style-inline li span {
    display: inline;
    padding: 0 !important;
    margin: 0 !important;
}

/* Punkt zwischen den Einträgen */
.rz--meta.rz--style-inline li + li::before {
    content: " · "; /* Punkt als Trenner */
    color: #000; /* Grauer Punkt, wie im Screenshot */
  	font-weight: 600 !important;
    margin-left: 3px !important; /* Kleiner Abstand nach links */
    margin-right: 2px; /* Kleiner Abstand nach rechts */
    font-size: 16px;
}

/* Entfernt jegliche Abstände der Überschrift */
h1.rz-title {
    margin-bottom: -20.5px !important; /* Noch enger setzen */
    padding-bottom: 0 !important;
    line-height: 1 !important; /* Sicherstellen, dass die Schrift keine extra Höhe erzeugt */
}

.rz--meta.rz--style-inline ul {
    margin: 0 !important;
  	margin-top: -1.5rem !important;
}

/* Falls `h1` oder `ul` in einem Flex-Container ist, verhindern, dass Abstand bleibt */
.rz-single-heading-title {
    display: block !important; /* Falls `flex` zu viel Abstand erzeugt */
    align-items: flex-start !important; /* Falls nötig */
}

.rz-mod-listing h4 {
    font-size: 23px !important;
  	color: #222222 !important;
}

.rz-month, 
.rz-month h1, 
.rz-month h2, 
.rz-month h3, 
.rz-month h4, 
.rz-month h5, 
.rz-month h6 {
    font-size: 15px !important;
}

/* Hauptcontainer mit Kasten-Styling */
.rz--meta.rz--style-sorted {
    display: flex !important; /* Elemente nebeneinander */
    flex-wrap: nowrap !important; /* Kein Umbruch */
    align-items: center !important; /* Vertikal zentrieren */
    justify-content: center !important; /* Zentriert die Inhalte */
    width: fit-content !important; /* Passt sich der Breite der Inhalte an */
}

/* Entfernt die Aufzählungspunkte */
.rz--meta.rz--style-sorted ul {
    display: flex !important; /* Alle Elemente in einer Reihe */
    flex-wrap: nowrap !important; /* Kein Umbruch */
    list-style: none !important; /* Entfernt die Punkte */
    padding: 0 !important;
    margin: 0 auto !important;
    gap: 20px; /* Gleichmäßiger Abstand */
    justify-content: center; /* Zentriert die Elemente */
    align-items: center; /* Vertikal ausrichten */
}

/* Jedes Listenelement enthält ein Icon + Text */
.rz--meta.rz--style-sorted li {
    display: flex !important; /* Flexbox für Ausrichtung */
    align-items: center !important; /* Vertikal ausrichten */
    font-size: 16px !important; /* Schriftgröße */
  	font-weight: 400 !important;
    padding: 0 !important;
    margin: 0px 0 !important;
    white-space: nowrap !important; /* Kein Zeilenumbruch */
    position: relative; /* Ermöglicht Trennstriche */
}

/* Größe der Icons innerhalb der Liste */
.rz--meta.rz--style-sorted li i {
    font-size: 27px !important; /* Größe der Icons */
}

/* Entfernt Standardpunkte */
.rz--meta.rz--style-sorted li::before {
    content: none !important;
    display: none !important;
}

/* Vertikale Trennstriche zwischen den Elementen */
.rz--meta.rz--style-sorted li:not(:last-child)::after {
    content: "";
    display: inline-block;
    border-left: 1.5px solid #ccc; /* Dünner vertikaler Strich */
    height: 30px; /* Länger machen */
    background-color: #ccc; /* Farbe des Strichs */
  	margin-left: 14px; /* Abstand zum Text */
  	margin-right: -4px;
    vertical-align: middle; /* Mittig ausrichten */
}

/* Zeigt nur die ersten 4 Elemente an */
.rz--meta.rz--style-sorted li:nth-child(n+5) {
    display: none !important;
}

@media (max-width: 768px) {  
    .rz--meta.rz--style-sorted li:nth-child(n+3) {
        display: none !important;
    }
}

/* Entfernt den Trennstrich nach dem letzten sichtbaren Element */
.rz--meta.rz--style-sorted li:nth-child(4)::after {
    content: none !important;
}

@media (max-width: 768px) {  
    .rz--meta.rz--style-sorted li:nth-child(2)::after {
        content: none !important;
    }
}

/* Standardmäßig haben alle `.rz-mod-listing`-Elemente einen Trennstrich */
.rz-mod-listing {
    border-bottom: 1px solid #ccc;
}

/* Entfernt den Trennstrich, wenn kein Inhalt vorhanden ist */
.rz-mod-listing.no-border {
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

/* Reduziert den Abstand nach einem `.no-border`-Element */
.rz-mod-listing.no-border + .rz-mod-listing {
    margin-top: -50px !important;
}

/* Falls mehrere `.rz-mod-listing`-Elemente aufeinanderfolgen, reduziere den Abstand */
.rz-mod-listing.no-border + .rz-mod-listing,
.rz-mod-listing.no-border + * {
    margin-top: -50px !important;
}

.rz-author {
    margin-bottom: 30px !important; /* Erhöht den Abstand nach unten */
    margin: 0 auto; /* Zentriert den Kasten */
}
.rz-listings-outer{
    margin-bottom: 35px !important; /* Erhöht den Abstand nach unten */
}

.text-container {
    overflow: hidden;
    position: relative;
    line-height: 1.5em; /* Standard-Zeilenhöhe */
    max-height: calc(1.5em * 6); /* Genau 10 Zeilen */
    transition: max-height 0.3s ease-in-out;
}

/* Button-Styling für "Show more" */
.show-more-btn {
    display: inline;
    background: none;
    border: none;
    color: #000; /* Schwarz */
    font-size: 16px;
    font-weight: 600; /* Etwas dicker als normal */
    text-decoration: underline;
    cursor: pointer;
    margin-top: 20px;
  	margin-bottom: -20px;
    margin-left: -3px;
    transform: translateX(-3px);
    transition: opacity 0.2s ease-in-out;
}

/* Hover-Effekt für den Button */
.show-more-btn:hover {
    opacity: 0.6;
}

.show-more-btn::after {
    content: " \276F"; /* › - Nicht ausgefüllter Pfeil */
    font-size: 14px;
    margin-left: 5px;
    text-decoration: none !important; /* Sicherstellen, dass Pfeil nicht unterstrichen wird */
    display: inline-block; /* Verhindert, dass er vom Text betroffen ist */
}

/* Pfeil nach unten drehen, wenn der Text sichtbar ist */
.text-container.expanded + .show-more-btn::after {
    transform: rotate(90deg);
}

/* Wenn der Text vollständig sichtbar ist */
.expanded {
    max-height: none !important;
    overflow: visible !important;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('assets/dist/fonts/custom-fonts/PlusJakartaSans-VariableFont.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('assets/dist/fonts/custom-fonts/PlusJakartaSans-Italic-VariableFont.woff2') format('woff2');
    font-weight: 100 900;
    font-style: italic;
}

body, p, h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.rz-action-price .rz--price {
    margin: 0 7px 0 0 !important;;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
  	font-size: 27px !important;
  	font-weight: 720 !important;
}

.rz-tax-list li .rz--label {
    font-size: 16px !important;
    font-weight: 400 !important;
  	font-style: normal !important;
}

.rz-mod-listing-meta .rz--meta ul {
    font-size: 16px !important;
    font-weight: 400 !important;
  	font-style: normal !important;
}

.rz-tax-list li .rz--label strong {
    font-weight: 400 !important;
}

.rz-mod-listing-meta .rz--meta ul strong {
    font-weight: 400 !important;
}

body {
    font-size: 16px !important;
}

.rz-mod-listing-meta .rz--meta li {
    font-weight: 400 !important;
}

.rz-reviews-stats-text {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.rz-form {
    font-size: 16px !important;
}

.rz-month, .rz-month h1, .rz-month h2, .rz-month h3, .rz-month h4, .rz-month h5, .rz-month h6 {
    font-size: 16px !important;
  	font-weight: 600 !important;
}

.rz-listing-action .rz-action-footer .rz-button {
    font-size: 16px !important;
}
    
.rz-single-content p {
    line-height: 1.5rem !important;
    text-align: left !important;
}

.rz-mod-listing h4 {
    margin: 0 0 1rem !important;
}

.brk-header .brk-header-container .brk-site-actions .rz-button {
   	font-size: 14px !important;
}

.rz-submission-step .rz--title {
    font-size: 26px !important;
}

.rz-checkbox em {
    font-size: 15px !important;
}

.rz-form-group .rz-heading>label {
    font-size: 17px !important;
}

.rz-submission-types .rz--type .rz--content .rz--title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 750 !important;
}

.rz-single-heading .rz-single-heading-title .rz-title {
    font-size: 23px !important;
}

.rz-submission-types .rz--type:hover .rz--radio span:after {
    color: #222222 !important;
}

.rz-submission-types .rz--type .rz--radio input:checked+span:after {
    color: #222222 !important;
}

.brk-gallery-actions a {
    font-size: 14px !important;
    font-weight: 500 !important;
}

.brk-gallery-actions i {
    margin-right: 0.3rem;
}

@media (min-width:1025px){
    .brk-gallery-actions a:hover{
        background-color: #DCDBDB;
    }
}

.rz-action-price .rz--text {
    font-weight: 500 !important;
  	font-size: 17px !important;
}

.rz-action-price {
    align-items: baseline !important;
}

.rz-boxes .rz-box .rz--heading .rz--title h4 a {
    font-size: 15px !important;
}

.rz-submission-types .rz--type .rz--image .rz-dummy-image i.icon-brikk-myicons.icon-brikk-myiconsprivate-jet-1::before {
    font-size: 39px !important;
}

.rz-submission-types .rz--type .rz--image .rz-dummy-image i.icon-brikk-myicons.icon-brikk-myiconsxml-version10-encodingUTF-8::before {
    font-size: 35px !important;
}

.rz-submission-types .rz--type .rz--image .rz-dummy-image i.icon-brikk-myicons.icon-brikk-myiconsyacht::before {
    font-size: 42px !important;
}

.rz-submission-types .rz--type .rz--image .rz-dummy-image i.icon-brikk-myicons.icon-brikk-myiconsmodern-house::before {
    font-size: 28px !important;
}

.rz-submission-types .rz--type .rz--image .rz-dummy-image i.icon-brikk-myicons.icon-brikk-myiconscamper-van-1::before {
    font-size: 32px !important;
}

.rz-mod-listing .rz-mod-content {
  	margin: 3rem 0 !important;
}

.rz-mod-listing-meta .rz--meta.rz--style-sorted ul {
  	margin: -1.5rem 0 !important;
}

.rz-calendar .rz-calendar-month .rz-weekdays {
    flex-wrap: nowrap !important; 
  	font-size: 15px !important;
}

.rz-calendar .rz-calendar-month .rz-days {
    font-size: 15px !important;
}

.rz-calendar .rz-calendar-month .rz-month h4 {
    font-size: 15px !important;
}


input[name="rz_power-(hp)"] {
  padding-right: 3.5rem;
  box-sizing: border-box;
}

.rz-number-type-number:has(input[name="rz_power-(hp)"]) {
  position: relative;
}

.rz-number-type-number:has(input[name="rz_power-(hp)"])::after {
  content: "hp";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #222222;
  font-size: 16px;
  pointer-events: none;
}


input[name="rz_power-(kw)"] {
  padding-right: 3.5rem;
  box-sizing: border-box;
}

.rz-number-type-number:has(input[name="rz_power-(kw)"]) {
  position: relative;
}

.rz-number-type-number:has(input[name="rz_power-(kw)"])::after {
  content: "kW";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #222222;
  font-size: 16px;
  pointer-events: none;
}


input[name="rz_speed-(kt)"] {
  padding-right: 3.5rem;
  box-sizing: border-box;
}

.rz-number-type-number:has(input[name="rz_speed-(kt)"]) {
  position: relative;
}

.rz-number-type-number:has(input[name="rz_speed-(kt)"])::after {
  content: "knots";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #222222;
  font-size: 16px;
  pointer-events: none;
}

select {
  line-height: 1.5 !important;
}

.rz-form-group input[type=text]{
    height: auto !important;
    min-height: 41px !important; 
}

.woocommerce input.button {
  font-weight: 600; 
}

.rz-listing-tagline {
    margin: 0 !important;
    color: #6a6a6a;
    font-size: 15px !important;
}

.routiz .rz-listing .rz-title h4 {
    font-weight: 600 !important;
  	margin-top: -0.3rem !important;
  	margin-bottom: 0 !important;
  	font-size: 16px !important;
}

.rz-listing-details ul {
    font-size: 15px !important;
}

.rz-listing-bottom {
    margin: 0 !important;
}

.rz-listing-details {
    margin-top: -0.25em !important;
  	margin-bottom: -0.12em !important;
    padding-top: 0px !important;
  	border-top: none !important;
  	font-weight: 500;
}

.rz-listing-bottom {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #000 !important;
}

.brk-explore .brk-explore-sidebar {
    flex: 0 1 63% !important;
  	max-width: none !important;
}

.rz-listing-cover .rz-listing-cover-inner {
    position: relative;
    aspect-ratio: 1.06 / 1 !important;
  	border-radius: 25px !important;
}

.rz-slider-nav.rz-nav-next {
    right: 59px !important;
    width: 55px
}

.rz-slider-nav.rz-nav-prev {
    left: 62px !important;
    width: 55px;
}

.rz-listing-image {
    width: 143% !important;
    transform: translateX(-15.3%) !important;
}

.rz-listing-cover:after {
    border-radius: 25px !important;
}

.rz-listing-favorite {
    font-size: 24px !important;
    right: 11px !important;
    top: 4px !important;
}

.rz-slider-nav span {
    width: 30px !important;
    height: 30px !important;
}

.rz-slider-nav span i {
    line-height: 30px !important;
}

.rz-slider-nav.rz-nav-next span {
    right: 13px !important;
}

.rz-slider-nav.rz-nav-prev span {
    left: 13px !important;
}

.woocommerce-MyAccount-content form.posts-filter select {
    font-size: 15px;
  	border-radius: 10px;
  	text-indent: 0.5em;
}

.rz-boxes .rz-box .rz--actions ul li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
}

.rz-boxes .rz-box .rz--actions ul li {
    padding: 0 15px;
}

.rz-boxes .rz-box .rz--actions ul {
    margin: 0 -5px;
}

.rz-boxes .rz-box .rz--actions a {
  position: relative;
}

.rz-boxes .rz-box .rz--actions a::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10px;
  background: #000;
  color: #fff;
  font-size: 12px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
  height: 28px;
  padding: 0 12px;
  line-height: 27px;
}

.rz-boxes .rz-box .rz--actions a::before {
  content: "";
  position: absolute;
  top: calc(100%);
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  border-width: 6px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 9;
}

.rz-boxes .rz-box .rz--actions a:hover::after,
.rz-boxes .rz-box .rz--actions a:hover::before {
  opacity: 1;
}

.rz-boxes .rz-box .rz--actions a[data-modal="listing-edit"]::after {
  content: "Edit";
}
.rz-boxes .rz-box .rz--actions a[data-modal="listing-edit-booking-calendar"]::after {
  content: "Booking Calendar";
}
.rz-boxes .rz-box .rz--actions a[data-modal="listing-edit-booking-ical"]::after {
  content: "iCal";
}
.rz-boxes .rz-box .rz--actions a[data-action="account-listing-delete"]::after {
  content: "Delete";
}
.rz-boxes .rz-box .rz--actions a[href*="status=publish"]::after {
  content: "Unpublish";
}
.rz-boxes .rz-box .rz--actions a[href*="status=pending_listing"]::after {
  content: "Publish";
}
.rz-boxes .rz-box .rz--actions a[data-modal="conversation"]::after {
  content: "Send Message";
}
.rz-boxes .rz-box .rz--actions a[data-modal="account-entry"]::after {
  content: "Decline";
}
.rz-boxes .rz-box .rz--actions a[data-modal="add-review"]::after {
  content: "Add Review";
}
.rz-boxes .rz-box .rz--actions a[data-action="account-listing-delete"][data-confirmation="Are you sure you want to delete this item?"]:hover {
  background-color: #e53935;
}
.rz-boxes .rz-box .rz--actions a[data-action="account-listing-delete"][data-confirmation="Are you sure you want to publish this item?"]:hover {
  background-color: #26AE55;
}
.rz-boxes .rz-box .rz--actions a[data-action="account-listing-delete"][data-confirmation="Are you sure you want to hide this listing from public view?"]:hover {
  background-color: #F76C2C;
}

.rz-post-status a, .rz-post-status span {
    background-color: #f5d7b9;
    color: #ab7036;
}

div:where(.swal2-container) div:where(.swal2-popup) {
    border-radius: 20px !important;
}

div:where(.swal2-container) button:where(.swal2-styled) {
    padding: .625em 1.6em !important;
    border-radius: 15px !important;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    background-color: var(--main) !important;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel) {
    background-color: #000;
}

.woocommerce-Address-title h2 {
    font-size: 1.4em !important;
}

.woocommerce-account .addresses .title .edit {
    font-size: 14px;
  	font-weight: 600;
  	line-height: 16px;
}

.woocommerce-MyAccount-content .rz-boxes-tabs ul li a {
    padding: 0.5rem;
}
.woocommerce-MyAccount-content .rz-boxes-tabs ul li.rz--active a {
  	padding-top: 0.5rem;
  	padding-bottom: 0.5rem;
}
.woocommerce-MyAccount-content form.posts-filter input.button.filter-btn {
    padding: 11px 25px!important;
}

.woocommerce-MyAccount-content p.rz-weight-600.rz-text-right a.rz-no-decoration {
    font-size: 15px;
    border-radius: 32px;
}

.rz-listings {
    row-gap: 25px;
}

.rz-listing-tagline {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsist;
    white-space: normal;
    line-height: 1.4em;
    max-height: 2.8em;
    opacity: 0.8 !important;
  	font-weight: 500;
  	overflow-wrap: anywhere;
}


.rz-more-filters {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid #ccc;
    border-radius: 999px;
    background-color: #fff;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    transition: all 0.2s ease;
}

.rz-more-filters:hover {
    background-color: #f5f5f5;
    border-color: #aaa;
  	color: #000;
}

.rz-more-filters i {
    margin-right: 8px;
    font-size: 16px;
}

a.rz-link.rz-search-clear.rz-action-dynamic-explore {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid #ccc;
    border-radius: 999px;
    background-color: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    transition: all 0.2s ease;
}

a.rz-link.rz-search-clear.rz-action-dynamic-explore:hover {
   background-color: #f5f5f5;
    border-color: #000;
  	color: #000;
}

.rz-search-filter--inline .rz-search-footer .rz-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid #ccc;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
}

.rz-overlay {
    background-color: rgba(0, 0, 0, 0.4);
}

.rz-modal-more-filters {
    width: 580px;
    margin-left: -290px;
}

.rz-modal.rz-modal-more-filters {
    bottom: 5%;
}

.rz-modal {
    border-radius: 30px;
}

.woocommerce-MyAccount-content form.posts-filter input.button.filter-btn {
  	display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid #ccc;
    border-radius: 999px;
    background-color: #fff;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: all 0.2s ease;
  	line-height: 15px;
}

.woocommerce-MyAccount-content form.posts-filter input.button.filter-btn:hover {
   background-color: #f5f5f5;
    border-color: #aaa;
  	color: #000;
}

.brk-account-nav ul {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly; /* gleichmäßig verteilen von oben nach unten */
  height: 100vh; /* volle Höhe */
  }

.converted-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0.5rem;
}

.converted-checklist .button-checkbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid #ccc;
  border-radius: 9999px;
  cursor: pointer;
  background-color: #fff;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
}

.converted-checklist .button-checkbox:hover {
  background-color: #f7f7f7;
  border-color: #000;
}

.converted-checklist input[type="checkbox"] {
  display: none;
}

.converted-checklist .button-checkbox:has(input[type="checkbox"]:checked) {
  background-color: #f1f1f1;
  border: 2px solid #000;
  color: #000;
}

@keyframes buttonBounce {
  0%   { transform: scale(1); }
  50%  { transform: scale(0.94); }
  100% { transform: scale(1); }
}

.converted-checklist .button-checkbox:active {
  transform: scale(0.94);
}

.rz-modal.rz-modal-more-filters .rz-modal-heading, .rz-modal.rz-modal-more-filters .rz-close {
    padding: 17px;
}

.rz-modal-more-filters.rz-modal .rz-modal-container {
    padding: 15px 30px;
}

.rz-modal-append {
  overflow-y: auto !important;
}

.rz-modal .rz-modal-footer {
    padding: 18px;
}

.converted-checklist {
    margin-top: 1.5rem;
}

.rz-modal-more-filters .rz-mod [data-type="tab"] {
  	border-bottom: 1px solid #e6e6e6;
  	padding-bottom: 16px;
  	margin-bottom: 16px;
}

.rz-modal-footer {
    box-shadow: 0 -2px 16px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.rz-modal-more-filters .rz-filter-tab {
  	display: none;
}

.rz-modal-more-filters.rz-modal .rz-search-filter .rz-form-group .rz-heading > label {
  	font-size: 19px !important;
  	line-height: 2.5rem !important;
  	font-weight: 630 !important;
}

.rz-stepper-button.rz-disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}


.rz-link.rz-more-filters:active,
.rz-link.rz-search-clear:active,
.rz-button.rz-button-accent.rz-action-filter:active {
  transform: scale(0.96);
  transition: transform 0.1s ease;
}

.brk-header .brk-header-container {
    height: 96px;
}

body.admin-bar .brk-account-bar {
    top: 103px !important;
    width: 210px !important;
}

.brk-submission>.brk--content>.brk--top {
    height: 96px !important;
}

.woocommerce-account .brk-site-header {
    padding-inline: 48px;
}

.page-id-40905 .brk-header-container {
  position: relative;
}

.page-id-40905 .brk-site-nav {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;   
  justify-content: center;
  margin-top: -47px;
}

.routiz .rz-explore-listings {
    padding: 1.4rem 2rem 1.5rem;
}

body.page-id-40905 #rz-explore .rz--inner,
body.page-id-40905 #rz-explore .rz-search-filter.rz-search-filter--inline {
    display: none !important;
}

.rz-is-explore .brk-header .brk-site-header {
	padding-inline: 48px;
}

.page-id-1625 .brk-row {
    max-width: 100%;
  	padding-inline: 48px;
}

.rz-mt-2 {
  display: none !important;
}

.rz-guests .rz--label:after {
	display: none !important;
}

.rz-filter-tab .rz-tab-title:after {
	display: none !important;
}

.brk-carousel-search .rz-search-form .rz-filter-tab .rz-tab-title {
    padding: 0 20px 0 20px;
}

.brk-carousel-search .rz-search-form .rz-search-mods>.rz-mod>.rz-form-group>.rz-guests .rz--label {
    padding: 0 20px 0 20px;
}

.brk-carousel-search .rz-search-form .rz--form {
    border-radius: 40px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 2px, rgba(0, 0, 0, 0.05) 0px 4px 12px;
  	border: 1px solid #ddd;
  	height: 46px;
}

.brk-carousel-search .rz-search-form .rz-search-submit {
    padding: 4.5px;
    width: 44px;
  	margin-left: -6px;
}

.brk-carousel-search .rz-search-form .rz-search-submit .rz-button {
  	padding: 10px;
	line-height: 1;
  	font-size: 15px;
}

.brk-carousel-search .rz-search-form{
    text-align: center;
}

.rz-search-form .rz-preloader i {
    font-size: 17px;
	vertical-align: top;
}

.rz-search-form .rz-preloader {
    margin: -19px 0 0 -19px;
}

.rz-mod[data-type="guests"] .rz--dropdown .rz--footer .rz-button,
.rz-mod[data-type="guests"] .rz--dropdown .rz--footer .rz-button * {
  color:#fff !important;
}

.rz-tab-flyout .rz-tab-footer .rz-button.rz-small {
  color: #fff !important;             
}

.page-id-40905 .brk-header .brk-header-container .brk-site-actions .rz-button {
    display: none;
}

.rz-guests .rz--dropdown .rz--inner {
    padding: 16px 32px !important;
}

.rz-guests.rz-open .rz--dropdown {
    width: 400px;
    border-radius: 30px;
}

.rz-filter-tab.rz-expand .rz-tab-flyout {
    width: 850px;
    border-radius: 30px;
}

.rz-filter-tab .rz-tab-flyout .rz-tab-content {
    padding: 18px 32px !important;
  	max-height: 500px !important;
  	height: 500px !important;
}

.rz-guests .rz--dropdown {
    margin-top: 12px !important;
  	margin-left: -48px;
}

.rz-filter-tab.rz-expand .rz-tab-flyout {
    margin-top: 12px;
  	top: auto;
}

.brk-carousel-search .rz-guests .rz--dropdown tbody tr td {
  padding: 18px 20px;   
  vertical-align: middle;
  margin: 0;            
}

.brk-carousel-search .rz-guests .rz--dropdown tbody tr:not(:last-child) td {
  border-bottom: 1px solid rgba(0,0,0,.12); 
}

.brk-carousel-search .rz-guests.rz-is-placeholder .rz--label > span::before,
.brk-carousel-search .rz-guests .rz--label > span:empty::before{
  content: "Add guests";
}

.page-id-40905 .brk-carousel-search .rz--form{
  border-radius: 9999px;         
  background: #fff;              
  transition: box-shadow .18s ease;
}

.page-id-40905 .brk-carousel-search .rz--form:hover,
.page-id-40905 .brk-carousel-search .rz--form:focus-within{
  box-shadow: 0 4px 12px rgba(0,0,0,.13);   
}

.explore-searchbar-row{
  display:flex;
  align-items:center;
  gap:12px;
}

.explore-searchbar{ 
  flex:1 1 auto; 
  min-width:0; 
}
.explore-searchbar > *{ width:100%; }

.explore-search-actions{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top: 48px;
}
.explore-search-actions .btn-pill{
  display:inline-flex;
  font-size: 14px;
  align-items:center;
  justify-content:center;
  height:42px;
  padding:0 16px;
  border:1px solid #ddd;
  border-radius:9999px;
  background:#fff;
  color:#000;
  font-weight:500;
  text-decoration:none;
  line-height:1;
  white-space:nowrap;
  transition:background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.explore-search-actions .btn-pill:hover{
  background:#f7f7f7;
  border-color: #000;
}

@media (min-width:1025px){
  .brk-explore-sidebar .rz-link.rz-more-filters,
  .brk-explore-sidebar .rz-link.rz-search-clear{ display:none !important; }
}

@media (max-width:1024px){
  .explore-searchbar-row{ flex-wrap:wrap; }
  .explore-search-actions{ width:100%; gap:8px; margin-top:8px; }
}

.rz-more-filters {
    margin-left: 0rem !important;
}

.rz-filter-tab .rz-tab-title.rz-is-placeholder span {
    font-size: 14.5px;
  	font-weight:600;
}

.rz-guests.rz-is-placeholder .rz--label span {
    font-size: 14.5px;
  	font-weight:600;
}

.brk-carousel-search .rz-search-form .rz-filter-tab .rz-tab-title {
    font-size: 14.5px;
  	font-weight:600;
}

.brk-carousel-search .rz-search-form .rz-search-mods>.rz-mod>.rz-form-group>.rz-guests .rz--label {
    font-size: 14.5px;
  	font-weight:600;
}

.rz-filter-tab .rz-tab-title{
  max-width:none !important;
  width:auto !important;
  overflow:visible !important;
  text-overflow:clip !important;
}

.rz-search-form .rz-search-mods > .rz-mod[data-type="autocomplete"],
.rz-search-form .rz-search-mods > .rz-mod[data-type="tab"],
.rz-search-form .rz-search-mods > .rz-mod[data-type="guests"]{
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
}


.brk-carousel-search .rz-search-form .rz-filter-tab .rz-tab-title {
    height: 46px;
    line-height: 46px;
}

.brk-carousel-search .rz-search-form .rz-search-mods>.rz-mod>.rz-form-group>.rz-guests .rz--label {
    height: 46px;
    line-height: 46px;
}

.brk-carousel-search .rz-search-form .rz-search-mods>.rz-mod>.rz-form-group>.rz-geo-field input {
  	height: 46px !important;
    font-size: 14.5px;
    font-weight: 500;
  	line-height: 20px;
    top: -0.5px;
    position: relative;
    border: none !important;
}

.brk-header:not(.is-expanded) .brk-carousel-search .rz-search-form .rz-search-mods>.rz-mod>.rz-form-group>.rz-geo-field input {
  	width: 210px;
}

.rz-dynamic-map .rz-preloader > i {
    font-size: 20px;
}

.brk-header.brk-is-sticky {
  background-color: #fff !important;
}

.brk-cover {
  z-index: 5 !important;
  position: relative;
}

.elementor-section.elementor-top-section.elementor-element-41b206cc {
  max-height: 150px !important;
}

.brk-carousel-search {
    padding: 0rem 0;
}

.page-id-40905 .brk--container {
  max-height: 150px !important;
}

.brk-carousel-search .brk-carousel-search-type {
    margin: 0 0 0px;
}

.brk-carousel-search .brk-carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;     
  gap: 1rem;              
  padding: 0;
  margin: 0 auto;
  list-style: none;
}


.brk-carousel-search.brk--style-horizontal .brk-carousel-nav li a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  color: #6a6a6a !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 16px !important;
}

.brk-carousel-search.brk--style-horizontal .brk-carousel-nav li a i,
.brk-carousel-search.brk--style-horizontal .brk-carousel-nav li a img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  line-height: 1;
}

.brk-carousel-search.brk--style-horizontal .brk-carousel-nav li.brk-active a {
  color: #222 !important;
}

.brk-carousel-search .brk-carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.brk-carousel-search .brk-carousel-nav li a {
  position: relative;
}

.brk-carousel-search .brk-carousel-nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px !important;
  height: 2px;
  background: #222;
  opacity: 0;
  transform: scaleX(.2);
  transition: opacity .2s ease, transform .25s ease;
}

.brk-carousel-search .brk-carousel-nav li.brk-active a::after {
  opacity: 1;
  transform: scaleX(1);
}

.brk-bg:after {
     top: auto !important;
}

.brk-carousel-search.brk--style-horizontal .brk-carousel-nav li a {
    line-height: 40px;
}

.brk-carousel-search.brk--style-horizontal .brk-carousel-nav {
    margin: 0 -.5rem 24px;
}





:root{
  --lx-header-expanded: 200px;
  --lx-header-collapsed: 96px;
  --lx-drop: 76px;
  --lx-sbar-w: 850px;
  --lx-sbar-h: 66px;
  --lx-sbar-w-collapsed: 480px;
  --lx-anim: 800ms cubic-bezier(.25, .9, .25, 1);
  --lx-anim-width: 800ms cubic-bezier(.22, 1, .36, 1);
}

.brk-header{
  height: var(--lx-header-collapsed);
  transition: height var(--lx-anim), box-shadow var(--lx-anim);
}

.brk-header.is-expanded{
  height: var(--lx-header-expanded) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.brk-carousel-search{
  transition: transform var(--lx-anim) !important;
  transform: translateY(0);
}

.brk-header.is-expanded .brk-carousel-search{
  transform: translateY(var(--lx-drop)) !important;
}

.brk-carousel-search .brk--container{
  box-sizing: border-box;
  margin: 0 auto;
  transition: width var(--lx-anim-width);
}

.brk-header.is-expanded .brk-carousel-search .brk--container{
  width: var(--lx-sbar-w) !important;
  max-width: min(var(--lx-sbar-w), 90vw) !important;
  margin: 0 auto;
}

.brk-carousel-search .rz-search-form .rz--form{
  transition: min-height var(--lx-anim), padding var(--lx-anim), box-shadow var(--lx-anim);
}

.brk-header.is-expanded .brk-carousel-search .rz-search-form .rz--form{
  min-height: var(--lx-sbar-h) !important;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(0,0,0,.10);
  padding: 14px 16px;
}

.brk-carousel-search .rz-search-form input[type="text"],
.brk-carousel-search .rz-search-form input[type="search"],
.brk-carousel-search .rz-search-form .rz-tab-title,
.brk-carousel-search .rz-search-form .rz-dropdown input,
.brk-carousel-search .rz-search-form button{
  transition: height var(--lx-anim), line-height var(--lx-anim);
}

.brk-header.is-expanded .brk-carousel-search .rz-search-form input[type="text"],
.brk-header.is-expanded .brk-carousel-search .rz-search-form input[type="search"],
.brk-header.is-expanded .brk-carousel-search .rz-search-form .rz-tab-title,
.brk-header.is-expanded .brk-carousel-search .rz-search-form .rz-dropdown input,
.brk-header.is-expanded .brk-carousel-search .rz-search-form .rz-dropdown input,
.brk-header.is-expanded .brk-carousel-search .rz-search-form button{
  height: var(--lx-sbar-h) !important;
  line-height: var(--lx-sbar-h) !important;
  border-radius: 999px;
}

.brk-header.is-expanded .explore-search-actions.rz-search-footer.rz-search-footer--header{
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.brk-header:not(.is-expanded) .explore-search-actions.rz-search-footer.rz-search-footer--header{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.brk-header.is-expanded .brk-carousel-search .rz-search-mods,
.brk-header.is-expanded .brk-carousel-search .rz-mod{
  display:flex;
  align-items:center;
}

.brk-header.is-expanded .brk-carousel-search .rz-mod > *,
.brk-header.is-expanded .brk-carousel-search .rz-form-group,
.brk-header.is-expanded .brk-carousel-search .rz-tab-title{
  box-sizing:border-box;
  min-height:66px;
  height:66px;
  line-height:66px;
}

.brk-header.is-expanded .brk-carousel-search .rz-geo .rz-dropdown > input.rz-map-address{
  height:66px !important;
  line-height:66px !important;
  padding:0 18px;
  padding-right: 50px !important;
  border-radius:999px;
}

.brk-header.is-expanded .brk-carousel-search .rz-mod[data-type="guests"] .rz-form-group,
.brk-header.is-expanded .brk-carousel-search .rz-mod[data-type="guests"] .rz-heading,
.brk-header.is-expanded .brk-carousel-search .rz-mod[data-type="guests"] .rz-heading > *{
  height:66px !important;
  line-height:66px !important;
}

.brk-header.is-expanded .brk-carousel-search .rz-mod[data-type="guests"] .rz-heading{
  padding:0 18px;
  border-radius:999px;
}

.brk-header.is-expanded .brk-carousel-search .rz-search-form input[type="text"],
.brk-header.is-expanded .brk-carousel-search .rz-search-form input[type="search"],
.brk-header.is-expanded .brk-carousel-search .rz-search-form .rz-dropdown input{
  height:66px !important;
  line-height:66px !important;
  padding:0 18px;
  border-radius:999px;
}

.brk-header.is-expanded .brk-carousel-search .rz-geo .rz-geo-field,
.brk-header.is-expanded .brk-carousel-search .rz-search-mods > .rz-mod{
  margin:0 !important;
}

.brk-header.is-expanded .brk-carousel-search .rz-search-form
.rz-search-mods > .rz-mod[data-type="guests"]
> .rz-form-group.rz-field .rz-guests.rz-no-select .rz--label{
  height:66px !important;
  line-height:66px !important;
}

.brk-header.is-expanded .brk-carousel-search .rz-search-form
.rz-search-mods > .rz-mod[data-type="guests"]
> .rz-form-group.rz-field .rz-guests.rz-no-select{
  height:66px !important;
  line-height:66px !important;
}

.brk-header.is-expanded .brk-carousel-search .rz-search-mods{
  display:flex !important;
  justify-content:space-between !important;
  align-items:stretch !important;
  gap:0 !important;
}

.brk-header.is-expanded .brk-carousel-search .rz-search-mods > div{
  flex:1 1 0 !important;
  min-width:0 !important;
  text-align:center !important;
  box-sizing:border-box !important;
}

.rz-filter-tab .rz-tab-flyout .rz-tab-footer{
  display:none !important;
}

.rz-guests .rz--footer{
  display:none !important;
}


.rz-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.40);  
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--lx-anim);
  z-index: 30; /* unter dem Header */
  display: block !important;
}

.brk-header {
  z-index: 40;
}

body:has(.brk-header.is-expanded) .rz-overlay {
  opacity: 1;
  pointer-events: auto;
}

.rz-modal-visible .rz-overlay {
  opacity: 1;
  pointer-events: auto;
  z-index: 9998; 
}

.rz-modal-visible .rz-modal {
  z-index: 9999;
}

.explore-searchbar {
  position: relative;
  margin-left: 68px;
}

.brk-header.is-expanded .brk-carousel-search .rz-search-form .rz-search-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin: 0 8px;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  width: 68px;
  margin-left: 17px;
}

.brk-header.is-expanded .brk-carousel-search .rz-search-form .rz-search-submit .rz-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  height: 48px !important;
  width: 99px !important;
}


.brk-header.is-expanded .rz-search-submit .rz-button i,
.brk-header.is-expanded .rz-search-submit .rz-button svg {
  font-size: 16px;
}

.brk-header.is-expanded .rz-search-submit .rz-button i::after {
  content: "Search";
  display: inline-block;
  margin-left: 6px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Plus Jakarta Sans", sans-serif !important;
  font-weight: 500;
  font-size: 16px;
  color: #fff;

  text-transform: none !important;
  font-variant-caps: normal !important;
}

.brk-header:not(.is-expanded) .rz-search-submit .rz-button i::after {
  content: "";
  display: none;
}


.brk-header .rz-search-mods {
  display: flex;
  align-items: stretch;
  border-radius: 999px;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}

.brk-header .rz-search-mods .rz-mod {
  position: relative;
  flex: 1;
  transition: all 0.15s ease;
}

.brk-header .rz-search-mods .rz-mod > * {
  position: relative;
  z-index: 1;
}

.brk-header .rz-search-mods .rz-mod::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0px;
  right: 0px;
  border-radius: 999px;
  background: transparent;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  z-index: 0;
  pointer-events: none;
}

.brk-header .rz-search-mods .rz-mod:hover::before,
.brk-header .rz-search-mods .rz-mod:focus-within::before,
.brk-header .rz-search-mods .rz-mod.rz-is-active::before {
  background-color: #EFEFEF;
}

.brk-header .rz-search-mods .rz-mod:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 9px;
  bottom: 9px;
  right: 0;        /* an der rechten Kante des Feldes */
  width: 1.3px;      /* überall gleich dick */
  background-color: #ddd;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.brk-header .rz-search-mods .rz-mod:hover::after,
.brk-header .rz-search-mods .rz-mod:focus-within::after,
.brk-header .rz-search-mods .rz-mod.rz-is-active::after,
.brk-header .rz-search-mods .rz-mod:hover + .rz-mod::after,
.brk-header .rz-search-mods .rz-mod:focus-within + .rz-mod::after,
.brk-header .rz-search-mods .rz-mod.rz-is-active + .rz-mod::after {
  opacity: 0;
}

.brk-carousel-search .rz-search-form .rz-search-mods>.rz-mod {
    border-right: 0px solid #000;
}

.brk-header .rz-search-mods .rz-mod:first-child::before { left: 5px; }
.brk-header .rz-search-mods .rz-mod:last-child::before  { right: 4px; }

.brk-header .rz-search-mods .rz-mod + .rz-mod::after { 
  content: ""; 
  position: absolute; 
  top: 9px; 
  bottom: 9px; 
  left: 0px; 
  width: 1.3px; 
  background-color: #ddd; 
  transition: opacity 0.2s ease; 
  z-index: 2; 
  transform: translateX(-50%); 
}

.brk-header .rz-search-mods:has(.rz-mod:nth-child(2):hover) .rz-mod::after {
  opacity: 0;
}

.brk-header.is-expanded .rz-search-mods .rz-mod:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 15px;
  right: 0;        /* an der rechten Kante des Feldes */
  width: 1.3px;      /* überall gleich dick */
  background-color: #ddd;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.brk-header.is-expanded .rz-search-mods .rz-mod + .rz-mod::after { 
  content: ""; 
  position: absolute; 
  top: 15px; 
  bottom: 15px; 
  left: 0px; 
  width: 1.3px; 
  background-color: #ddd; 
  transition: opacity 0.2s ease; 
  z-index: 2; 
  transform: translateX(-50%); 
}

.brk-header.is-expanded .rz-search-mods .rz-mod:first-child::before { left: -6px; }

.brk-header.is-expanded .rz-search-mods .rz-mod:last-child::before { right: 10px; }

.brk-header.is-expanded .brk-carousel-search .rz-search-form {
  align-items: center; 
}

.brk-header.is-expanded .brk-carousel-search .rz--form {
  align-items: center;
}

.brk-header.is-expanded .brk-carousel-search .rz-search-mods {
  height: 64px;
  left: -10px;
  margin-right: -13px;
}

.brk-header.is-expanded .brk-carousel-search .rz-search-form .rz-search-mods>.rz-mod>.rz-form-group>.rz-geo-field .rz-geo-get {
    right: 5px;
}

.brk-header.is-expanded .brk-carousel-search .rz-search-form .rz-search-mods>.rz-mod>.rz-form-group>.rz-geo-field input {
  	left: 7px;
}

.brk-header.is-expanded .rz-filter-tab .rz-tab-title.rz-is-placeholder span {
    font-size: 16px;
  	font-weight:600;
}

.brk-header.is-expanded .rz-guests.rz-is-placeholder .rz--label span {
    font-size: 16px;
  	font-weight:600;
}

.brk-header.is-expanded .brk-carousel-search .rz-search-form .rz-filter-tab .rz-tab-title {
    font-size: 16px;
  	font-weight:600;
}

.brk-header.is-expanded .brk-carousel-search .rz-search-form .rz-search-mods>.rz-mod>.rz-form-group>.rz-guests .rz--label {
    font-size: 16px;
  	font-weight:600;
}

.brk-header.is-expanded .brk-carousel-search .rz-search-form .rz-search-mods>.rz-mod>.rz-form-group>.rz-geo-field input {
    font-size: 15px;
}

.brk-header.is-expanded .rz-search-mods .rz-mod::before {
  top: 0px !important;
  bottom: 0px !important;
  left: 5px;
  right: 5px;
}

.brk-header .rz-search-mods {
  overflow: visible;
}

.rz-filter-tab .rz-tab-flyout .rz-tab-content > .rz-grid > .rz-mod:last-child .rz-form-group {
    height: auto !important;
    min-height: auto !important;
    line-height: normal !important;
}

.brk-header .rz-tab-flyout .rz-mod::before,
.brk-header .rz-tab-flyout .rz-mod:hover::before,
.brk-header .rz-tab-flyout .rz-mod:focus-within::before,
.brk-header .rz-tab-flyout .rz-mod.rz-is-active::before {
  background-color: #fff !important;
}

.rz-calendar-clear {
    padding: 0 16px !important;
    line-height: 35px !important;
    font-size: 13px !important;
}

.rz-calendar-actions {
    margin-top: 1.2rem !important;
}

.brk-carousel-search .rz-filter-tab .rz-tab-flyout, .brk-carousel-search .rz-guests .rz--dropdown {  
   max-width: 850px !important;
}

.rz-filter-tab .rz-tab-flyout {
    position: fixed !important;
}

.rz-calendar .rz-calendar-month .rz-days li:hover {
    border: 2px solid #000;
  	border-radius: 999px !important;
}

.rz-calendar-start .rz-calendar .rz-calendar-month .rz-days li.rz--temp-active:hover:before, .rz-calendar-start .rz-calendar .rz-calendar-month .rz-days li:not(.rz--from-day):not(.rz--past-day):not(.rz--not-available):not(.rz--temp-disabled):hover:before {
    right: 100% !important;
}

.rz-tab-flyout .rz-calendar .rz-calendar-month .rz-days li {
    margin-bottom: 2px !important;
    margin-top: 2px !important;
}

.rz-calendar .rz-calendar-month .rz-days li.rz--selected {
    border-radius: 0px !important;
}

.rz-calendar .rz-calendar-month .rz-days li.rz--selected {
    border: none !important;
}

.rz-calendar .rz-calendar-month .rz-month h4 {
    margin: 0 0 10px !important;
}

.rz-calendar .rz-calendar-month .rz-weekdays {
    margin: 0 0 0px !important;
  	color: #6A6A6A !important;
}

.rz-calendar .rz-calendar-month .rz-days li.rz--temp-disabled:hover {
    border: none;
}

.rz-calendar .rz-calendar-month .rz-days li.rz--in-between:hover {
    border: none;
 	border-radius: 0px !important;
}

.rz-guests .rz--dropdown .rz--title {
    margin-bottom: 0rem !important;
}

.rz-stepper .rz--row {
    align-items: center;
}

.rz-modal-more-filters [data-input-type=stepper] .rz-stepper .rz-stepper-text {
    min-width: 50px !important;
}

.brk-carousel-search .rz-search-form .rz-search-mods>.rz-mod>.rz-form-group>.rz-guests table {
    margin-top: -10px;
    margin-bottom: -8px;
}

.rz-guests .rz-dropdown {
    left: auto !important;
    right: 0 !important;
}

.brk-header .rz-search-mods .rz-mod.is-open::before {
  background-color: #dddddd;
}

.brk-header .rz-search-mods .rz-mod:has(.rz-guests.rz-open)::before {
  background-color: #dddddd;
}

.brk-header .rz-search-mods .rz-mod.is-open::after,
.brk-header .rz-search-mods .rz-mod.rz-is-active::after {
  opacity: 0;
}

.brk-header .rz-search-mods .rz-mod:has(.rz-guests.rz-open)::after {
  opacity: 0;
}

.rz-calendar .rz-calendar-month .rz-days{
  height: auto !important;
  min-height: 0 !important;
  align-content: start !important; 
}

.rz-calendar .rz-calendar-month .rz-days{
  display: grid !important;
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  grid-auto-rows: 1fr !important;   
}

.rz-calendar .rz-calendar-month .rz-days > li{
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
}

.rz-calendar .rz-calendar-month .rz-days > li > span{
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
}

.rz-single .rz-sidebar {
    flex: 0 1 400px !important;
    max-width: 400px !important;
}

.rz-calendar .rz-calendar-month .rz-days li span i {
    top: 31% !important;
}

.cal-price {
    margin-top: -26px;
}

.routiz .rz-mod-action {
    box-shadow: 0 6px 22px rgba(0, 0, 0, .10);
 	border: 1px solid #ddd;
}

.routiz .rz-mod-action-report {
	border: none;
}

.rz-calendar .rz-calendar-month .rz-days li.rz--available:not(.rz--past-day):not(.rz--temp-disabled):not(.rz--in-between):not(.rz--selected):hover span {
    background-color: transparent !important;
}

.rz--future-day.rz--available.rz--from-day.rz--selected span .cal-price span {
    background: transparent !important;
}

.rz-action-price {
    margin-bottom: 0.4rem !important;
}

.rz-tab-flyout .rz-calendar .rz-calendar-month .rz-days li span i {
  top: 50% !important;
}

.rz-tab-flyout .rz-calendar .rz-calendar-month .rz-weekdays {
    margin-right: -1px !important;
}

.rz-listing-action .rz-calendar .rz-calendar-month .rz-days li.rz--available, .rz-calendar .rz-calendar-month .rz-days li.rz--not-available.rz--temp-active {
    width: 50px !important;
}

.rz-listing-action .rz-calendar .rz-calendar-month .rz-weekdays {
    margin-right: -4px !important;
}

.rz-single .rz-sidebar {
    margin-left: 25px;
}

.rz-author {
    box-shadow: 0 6px 22px rgba(0, 0, 0, .10);
}

.rz-listing:hover .rz-listing-cover {
  box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}

.rz-listing-cover {
    border-radius: 25px;
}

.rz-slider-nav.rz-nav-prev {
    background: transparent !important;
}
.rz-slider-nav.rz-nav-next {
    background: transparent !important;
}

.rz-listing {
  transform: translate3d(0, 0, 0) scale(1);
  will-change: transform;
}

.rz-dashboard .rz--box {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    border: 1px solid #d4d4d4;
}

.rz-boxes-table table {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  	border-radius: 25px;
}

.rz-boxes-table .rz--actions ul li {
    padding: 0px 10px;
}

.rz-boxes-table .rz--cell-name {
    width: 40%;
}

body.woocommerce-account.woocommerce-messages .rz-modal-conversation {
    width: 55.2%;
    max-height: 86%;
    margin-top: 53px;
    left: 44.81%;
    border-radius: 0px;
    margin-left: 0px;
}

.rz-modal[data-id="listing-edit"] .rz-modal-listing {
    grid-template-columns: 40px auto;
    padding: 0.75rem 3rem;
}

.rz-tab .rz--name {
    font-size: 20px !important;
    line-height: 40px !important;
  	margin-left: 46% !important;
}

.rz-modal[data-id="listing-edit"] .rz-tab {
    margin: 10px 0 15px !important;
    height: 60px !important;
    padding: 10px 15px;
    margin-bottom: -1rem !important;
}

.rz-modal[data-id="listing-edit"] .selection-container {
    column-gap: 60px;
    row-gap: 20px;
    justify-content: flex-start;
    margin-left: 10px;
    margin-top: 30px;
}


.rz-modal[data-id="listing-edit"] .rz-form-group {
    margin-bottom: 3.5rem;
}

.rz-modal[data-id="listing-edit"] .rz-modal-container {
    padding: 1.75rem 3rem;
}

[class~=rz-grid]>[class*=rz-col-6] {
    margin-bottom: 2.5rem !important;
}

[class~=rz-grid]>[class*=rz-col-4] {
	margin-bottom: 2.5rem !important;
}

.rz-upload-wrapper {
    margin-top: 2rem;
}

.rz-modal[data-id="listing-edit"] .rz-form-group[data-id="rv-rules"] {
  margin-top: 1rem;
}

.woocommerce-MyAccount-content form.posts-filter select {
    margin-bottom: 1.5rem;
    height: 45px;
    max-width: 300px;
    margin-right: 10px;
    cursor: pointer;
}

.woocommerce-MyAccount-content form.posts-filter input.button.filter-btn {
    margin-left: 0.5rem;
    height: 43px !important;
}

.rz-boxes .rz-box {
    border-radius: 25px;
  	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
    border: 1px solid #d4d4d4;
}
.rz-boxes .rz-box .rz--actions .rz-button {
    display: none;
}

.rz-boxes-tabs ul {
    margin: 0 0.25rem;
}


.rz-calendar.rz-calendar-large .rz-calendar-month {
    flex: 0 1 43.5% !important;
    margin-inline: 25px;
}

.rz-messages {
    min-height: 150px;
}

.rz-boxes-table tr:hover td {
  background: #ececec;
}

.woocommerce table.shop_table {
    border-radius: 25px;
}

.woocommerce table.my_account_orders .woocommerce-button {
    padding: 6px 18px;
  	font-size: 15px;
    font-weight: 500;
}

.woocommerce table.my_account_orders .woocommerce-button {
  margin-right: 8px;
}

.woocommerce table.my_account_orders .woocommerce-button:last-child {
  margin-right: 0;
}

.rz-button.rz-large {
    padding: 9px 19px;
}

.woocommerce button.button, .woocommerce input.button {
    font-weight: 600;
}

.rz-dashboard [class~="rz-grid"] > [class*="rz-col-4"] {
    margin-bottom: 0 !important;
    border-radius: 20px;
}

.brk-is-sticky .brk-header {
    background-color: white;
}

.rz-button {
    border-radius: 32px;
}

.routiz .rz-error-holder .rz-error, .routiz .rz-select-plan-error .rz-error {
    border-radius: 32px;
}

.woocommerce-MyAccount-content 
p:has(> a[data-action="account-switch-user-role"]) {
    margin-top: -4.3rem;
    margin-bottom: 3rem;
}

.woocommerce .woocommerce-error, .woocommerce .woocommerce-info, .woocommerce .woocommerce-message {
    border-radius: 32px;
    text-align: center;
}

.woocommerce button.button {
    border-radius: 32px;
}

.brk-header .brk--pad>img {
    width: 40px;
    height: 40px;
}

.brk-header .brk--pad>i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 22px;
}

.brk-header .brk-header-container .brk-site-actions .rz-button {
    line-height: 24px;
}

.brk-header .brk--pad>span {
    font-size: 15px;
}

.rz-signin-tabs a {
    font-size: 15px !important;
}

.rz-modal-signin .rz-modal-footer .rz-button {
    max-width: 170px !important;
}

.rz-modal-signin .rz-modal-container {
    padding: 1rem 2.5rem;
}

.rz-signin-errors, .rz-signin-success {
    border-radius: 32px;
}

.rz-signin-errors ul, .rz-signin-success ul {
    text-align: center;
}

.rz-active.rz-signin-success, .rz-signin-errors.rz-active {
    text-align: center;
}

.rz-signin-errors, .rz-signin-success {
    width: auto;
	position: relative;
    margin-left: auto;
 	margin-right: auto;
}

.woocommerce-MyAccount-content .rz-boxes-tabs ul li a {
    font-weight: 600;
}

.rz-preloader {
    margin: -20px 0 0 -20px;
    line-height: 18px;
}

.woocommerce-MyAccount-content .rz-boxes-tabs ul li.rz--active a {
    color: #000000;
    font-weight: 600;
    background: none;
    padding: 0.5rem;
}

.rz-modal-signin .rz-modal-heading {
    padding: 1rem;
}

.rz-modal-signin .rz-close {
    padding: 1rem;
}

.rz-form-group input[type=email], .rz-form-group input[type=number], .rz-form-group input[type=password], .rz-form-group input[type=tel], .rz-form-group input[type=text], .rz-form-group select, .rz-form-group select[multiple], .rz-form-group textarea {
    background: #fff !important;
    background-color: #fff !important;
    border: 1px solid #ddd !important;
}

.rz-modal-signin .rz-modal-container {
	max-width: none;
}

.rz-signin-social a.rz--fb {
    background-color: #ffffff;
    border: 1px solid #6A6A6A;
    border-radius: 10px;
    margin-bottom: 16px;
  	font-style: normal;
}

.rz-signin-social a.rz--fb, .rz-signin-social a.rz--fb .rz-preloader, .rz-signin-social a.rz--gg, .rz-signin-social a.rz--gg .rz-preloader {
    color: #000000;
}

.rz-signin-social a.rz--gg {
    background-color: #ffffff;
    border: 1px solid #6A6A6A;
    border-radius: 10px;
    margin-bottom: 16px;
}

.rz-form-group input[name="user_email"] {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    line-height: 30px;
    border: 1px solid #6A6A6A !important;
}

.rz-form-group input[name="user_email"]:focus {
    border: 2px solid #000 !important;
    z-index: 10 !important;
    border-radius: 10px !important;
    position: relative;
    margin-top: -1px !important;
    padding: 15px 15.2px 2px !important;
}

.rz-form-group input[name="user_password"] {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    line-height: 30px;
    height: auto !important;
    border: 1px solid #6A6A6A !important;
}

.rz-form-group input[name="user_password"]:focus {
    border: 2px solid #000 !important;
    border-radius: 10px !important;
    padding: 15px 15.2px 2px !important;
}

.rz-form:has(input[name="user_email"]:focus)
input[name="user_password"] {
    margin-top: -9px !important;
    line-height: 30px !important;
    padding-top: 24px !important;
}

.rz-form:has(input[name="user_password"]:focus)
input[name="user_email"] {
    margin-bottom: -8px !important;
    line-height: 31px !important;
    padding-bottom: 8px !important;
}

.rz-form-group:has(> input[name="user_email"]) {
    margin-bottom: -1px !important;
}

.rz-modal-signin {
    width: 560px;
    margin-left: -280px;
}

.rz-action-error, .rz-action-success {
    border-radius: 9999px;
    text-align: center;
}

.brk-side .brk--header .brk--title {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.rz-booking-approved {
    text-align: center;
    border-radius: 999px;
}

.rz-boxes-table tr.rz--active .rz--image:after {
    border: 2px solid #fff;
}

div#brk_notifi_list p:last-child {
    padding-inline: 1.5rem;
}

.rz-dashboard .rz-box-author {
    background: #fff;
    color: #000;
    max-height: 449px !important;
}

.brk-account-nav a {
    padding: 10px 30px;
    text-align: left;
    font-size: 23px;
}

.brk-account-nav a span {
    transform: none;
    transition: none;
    color: #000;
    font-size: 14.4px;
    opacity: 1;
    z-index: 1;
    background-color: transparent;
    font-weight: 500;
    left: unset;
    top: unset;
    margin-left: 19px;
}

.brk-account-nav li.woocommerce-MyAccount-navigation-link--customer-logout a span {
    background-color: transparent;
}

.brk-account-nav a:hover span {
        transform: none;
        opacity: 1;
}

.brk-account-nav li:hover > a {
    background-color: #f2f2f2;
}

.brk-account-nav li > a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    margin: 0 10px;          
    border-radius: 17px;
}

.brk-account-nav li.is-active a {
    background-color: #f2f2f2;
}

.rz-boxes-table table {
    width: 40%;
}

body.woocommerce-account.woocommerce-messages .rz-modal-conversation .rz-close {
    padding: 0.5rem;
}

body.woocommerce-account.woocommerce-messages .rz-modal-conversation .rz--title {
    display: none;
}

body.woocommerce-account.woocommerce-messages .rz-modal-conversation .rz-modal-heading {
    padding: 2rem;
}

body.woocommerce-account.woocommerce-messages .rz-modal-conversation .rz-close {
    padding: 1rem;
}

body.woocommerce-account.woocommerce-messages.rz-modal-visible:has(.rz-modal-conversation.rz-visible) .rz-overlay{
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    display: none;
}

.rz-modal-signin input[type="text"]:focus {
    border: 2px solid #000 !important;
    padding-left: 15px !important;
}

.rz-modal-signin input[type="password"]:focus {
    border: 2px solid #000 !important;
    padding-left: 15px !important;
}

.rz-form-group input[type=text] {
    padding: 15px 16px 2px !important;
  }

.rz-form-group input[type=password]{
    padding: 15px 16px 2px !important;
  }

.brk-account-heading {
    margin-top: -3px;
    margin-bottom: 2rem;
}

.brk-is-account-bar {
    padding-left: 210px;
    padding-top: 72px;
}

.page-id-13 .brk-header {
  height: 72px !important;
}

.page-id-13 .brk-header .brk-header-container {
    height: 72px !important;
}

.rz-boxes-table tr.is-active td {
  background: #ececec;
}






.rz-boxes-table table {
	border-collapse: separate;
    border-spacing: 0 8px;
    border-right: 1px solid #ddd;
    box-shadow: none !important;
    padding: 0 10px;
    border-radius: 0px;
}

.rz-boxes-table td {
    background-color: transparent;
}

body.woocommerce-account.woocommerce-messages .brk-account-heading .brk--title {
    font-size: 30px;
    margin: 0;
    width: 42%;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    line-height: 100px;
    padding-left: 34px;
    padding-top: 10px;
}

body.woocommerce-account.woocommerce-messages .rz-boxes-table td {
    border: none;
    padding: 0.5rem 1rem;
}

body.woocommerce-account.woocommerce-messages .brk-account-heading {
    margin-bottom: 0rem;
}

body.woocommerce-account.woocommerce-messages .brk-header {
    border-bottom: 1px solid #ddd;
    box-shadow: none;
}

body.woocommerce-account.woocommerce-messages .brk-row {
  margin: 0;
}

body.woocommerce-account.woocommerce-messages .rz-boxes-table tr td:first-child {
    padding-left: 1.2rem;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

body.woocommerce-account.woocommerce-messages .rz-boxes-table tr td:last-child {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}






.rz-signin-social a.rz--fb::before {
    content: "\f09a"; 
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: none !important;
    left: 28px !important;
    top: 50% !important;
    color: #0866ff;
    opacity: 1;
    --size: 0px !important;
}

.rz-signin-social a.rz--gg::before {
    background-image: url(/wp-content/themes/brikk-child/assets/dist/images/google.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: none !important;
    left: 20px !important;
    top: 25% !important;
    opacity: 1;
    --size: 20px !important;
}

.rz-form-group {
  position: relative;
}

.rz-form-group input {
  font-size: 16px;
  line-height: 1.2;
}

.rz-form-group .floating-label {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #717171;
  pointer-events: none;
  transition: all 0.15s ease;
  background: transparent;
  padding: 0 6px;
  z-index: 2;
}

.rz-form-group input:focus + .floating-label,
.rz-form-group input:not(:placeholder-shown) + .floating-label {
    top: 13px;
    font-size: 12px;
    z-index: 50;
    left: 22px;
}

.g-recaptcha {
    margin-bottom: 1rem;
}

.the_champ_login_container {
    margin: 0px 0;
    padding: 0 0 0.75rem 0rem;
}

.rz-lost-pass-link {
    position: absolute;
    right: 0;
    padding-right: 0.75rem;
    margin-top: -15px;
}

.rz-signin-section[data-id="sign-in"] 
.rz-form-group.rz-inline-group 
button.rz-modal-button {
    margin-top: 15px;
}

.rz-form-group input[type="password"],
.rz-form-group input[type="text"] {
    padding-right: 44px;
}

.toggle-password {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 0;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    color: #000;
    padding: 6px;
    z-index: 5;           
    pointer-events: auto;
}

.toggle-password:hover {
    color: var(--main);
}

.rz-signin-tabs {
    margin: 0 0 2.1rem;
}

.rz-standard-role {
    margin-top: 1rem;
}

.rc-anchor-light.rc-anchor-normal, .rc-anchor-light.rc-anchor-compact {
    border-radius: 15px;
}

.rz-signin-social {
    width: 100%;
}

.rz-boxes-table
.rz--actions
a[data-modal="conversation"] {
  display: none !important;
}

.rz-boxes-table
.rz--actions
ul li:has(a[data-modal="conversation"]) {
  display: none !important;
}

.rz-boxes-table table {
  width: 42%;
}

.rz-modal-signin .rz-form-group input[type=password] {
	line-height: 30px;
    height: auto !important;
    border: 1px solid #6A6A6A;
}

.rz-modal-signin .rz-form-group input[type=text] {
	line-height: 30px;
    height: auto !important;
    border: 1px solid #6A6A6A;
}

.rz-signin-or {
    width: 100%;
    margin-top: -0.1rem;
    margin-bottom: 0.6rem
}

.rz-signin-section[data-id="create-account"]
.rz-signin-social + .rz-signin-or {
    margin-top: -10px;
    margin-bottom: 18px;
}

.rz-signin-section[data-id="sign-in"] .rz-signin-social {
    padding: 0 0.75rem;
}

.rz-signin-section[data-id="sign-in"] .rz-signin-or {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
}

.rz-signin-section[data-id="reset-password"] .rz-form-group .floating-label {
    top: 78%;
}

.rz-signin-section[data-id="reset-password"] .rz-form-group input:focus + .floating-label, .rz-signin-section[data-id="reset-password"] .rz-form-group input:not(:placeholder-shown) + .floating-label {
    top: 68%;
}

.rz-signin-section p {
    text-align: center;
}












