
/*#F0F0F2*/
/*#999FBF*/
/*#374C8C*/
/*#294273*/
/*#0D0D0D*/

/*
🌿 Modern Recipe Manager Color Theme
🎨 Palette

Primary (brand & buttons):
🍅 Tomato Red → #EF4444
(modern red, vibrant but not harsh)

Secondary (accents & highlights):
🥒 Fresh Green → #10B981
(clean, natural, healthy vibe)

Accent (for hover, tags, highlights):
🍋 Citrus Amber → #F59E0B
(warm highlight for buttons, badges)

Backgrounds:
🍞 Off White → #F9FAFB (light, airy background)
🌰 Warm Gray → #6B7280 (for text, icons, dividers)

Dark Text:
🪵 Charcoal → #1F2937 (headings, contrast text)

🖌 Usage Guide

Navbar/Header: Charcoal background (#1F2937) with white text → modern & clean.

Primary Buttons: Tomato Red (#EF4444) with white text → stands out, strong CTA.

Secondary Buttons: Fresh Green (#10B981) with white text → friendly & balanced.

Cards/Containers: White background with subtle shadow, rounded corners.

Tags/Badges (e.g., “Vegan”, “Quick”): Citrus Amber (#F59E0B) or Green.

Background: Off White (#F9FAFB) → keeps things light, photos pop out.


*/


:root {
    --color-main: #1F2937;
    --color-cta1: #EF4444;
    --color-cta1-hover: #a82727;
    --color-cta2: #10B981;
    --colo-background: #F9FAFB;
    --highlight1: #10B981;
    --highlight1_text: white;

    --highlight2: #c2c6d4;
    --highlight2_text: white;

    --color-warning: #f46d6d;
    --color-alert: #ed9746;
    --main-text: #6B7280;
    --secondary-text: #615d48;
    --white: white;

    --font-family-fa-awesome: 'Font Awesome 6 Free';
}


@font-face {
    font-family: 'FFMetaProCond';
    src: url('/fonts/FFMetaPro/FFMetaProCondRg.TTF') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
    /*descent-override: 0%;*/
    /*ascent-override: 0%;*/
}

@font-face {
    font-family: 'FFMetaProCond';
    src: url('/fonts/FFMetaPro/FFMetaProCondMed.TTF') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
    /*descent-override: 0%;*/
    /*ascent-override: 0%;*/
}

@font-face {
    font-family: 'FFMetaProCond';
    src: url('/fonts/FFMetaPro/FFMetaProCondBd.TTF') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    /*descent-override: 0%;*/
    /*ascent-override: 0%;*/
}


@font-face {
    font-family: 'FFMetaProRegular';
    src: url('/fonts/FFMetaPro/FFMetaProRegular.TTF') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
    /*descent-override: 0%;*/
    /*ascent-override: 0%;*/
}

@font-face {
    font-family: 'FFMetaProLight';
    src: url('/fonts/FFMetaPro/FFMetaProLight.TTF') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
    /*descent-override: 0%;*/
    /*ascent-override: 0%;*/
}



@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto/Roboto-Light.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto/Roboto-Medium.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto/Roboto-SemiBold.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto/Roboto-Bold.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto/Roboto-ExtraBold.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


a {
    cursor: pointer;
}

body, html {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-family: FFMetaProCond, Roboto;
    font-weight: 200;
    color: var(--main-text);

    word-break: break-word;
    overflow-wrap: anywhere;
}

button {
    font-family: FFMetaProCond, Roboto;
    font-size: 1rem;
    font-weight: 100;
}

body {
    overflow-y: scroll;
}

.hidden {
    display: none;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 1em;
}

.warning {
    color: var(--color-warning) !important;
}

.alert {
    color: var(--color-alert) !important;
}

.good {
    color: var(--color-cta1) !important;
}

.noEntriesFound {
    font-size: unset;
    font-weight: unset;
    font-family: FFMetaProRegular;
}

.defaultform .conhnp.formField {
    display: none;
}

.cmsForm p {
    margin: 0;
}


.cmsForm .addReference {
    margin-bottom: 2rem;
}

.cmsImagePreview {
    width: 100%;
    padding: 1rem;
    height: 200px;
    box-sizing: border-box;
    background-size: contain;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.cmsImagePreview input {
    background-color: white;
    margin-bottom: 0 !important;
}

.cmsForm .formField label {
    font-size: 1.2rem;
}

.lazy-image, .lazy-background {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.lazy-loaded {
    opacity: 1;
}

.header {
    width: 100%;
    height: 100px;
    background-color: white;
    -webkit-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.2);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}

.header.headerInverted {
    background-color: var(--color-main);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100px;
}

.header .nav {
    display: flex;
    color: var(--color-main);
    justify-content: flex-end;
    height: 100%;
}




.header .nav a.active,
.main>.container.sideMenu .sideMenu a.active,
.main>.container.sideMenu.secondarySideMenu .sideMenu a.active{
    color: var(--color-cta1);
}

.header .nav a:hover,
.header .nav button:hover,
.main>.container.sideMenu .sideMenu a:hover,
.main>.container.sideMenu .sideMenu button:hover,
.main>.container.sideMenu.secondarySideMenu .sideMenu a:hover,
.main>.container.sideMenu.secondarySideMenu .sideMenu button:hover {
    text-decoration: underline;
    transform: scale(1.01);
}

.header .nav>div,
.header .nav>a {
    padding-left: 40px;
}

.header .nav>div {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 100px;
}

.header .nav>div>i {
    font-size: 1.5rem;
    cursor: pointer;
}

.header .nav a {
    color: var(--color-main);
    text-decoration: none;
    line-height: 100px;
    cursor: pointer;
}
.header.headerInverted .nav>a,
.header.headerInverted .nav>div i {
    color: var(--white);
}



.header .nav>a {
    text-transform: uppercase;
}

.accountImage {
    width: 60px;
    height: 60px;
    background-size: cover;
    border-radius: 100px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.08);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.08);
    margin-right: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.accountImage>i {
    position: absolute;
    right: 0px;
    transition: transform 0.2s ease-in-out;
}


.header .nav button {
    background-color: transparent;
    box-shadow: none;
    border: none;
    color: white;
    font-weight: 200;
    cursor: pointer;
}

.header .logo {
    width: 50px;
}


.header>.container>a {
    display: flex;
}

.header .submenu {
    display: none;
    position: absolute;
    flex-direction: column;
    background-color: white;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.2);
    top: calc(100px + 1rem);
    border-radius: 15px;
    right: 0;
    padding: 1rem;
    z-index: 3;
}

.header .submenu a,
.header .submenu p,
.header .submenu button {
    line-height: 2rem !important;
    white-space: nowrap;
    display: block;
    font-size: 1rem;
}

.header .submenu p {
    margin: 0;
}

.header .submenu button  {
    background-color: transparent;
    border: none;
    color: var(--color-main);
    text-decoration: none;
    line-height: 100px;
    cursor: pointer;
    padding: 0;
    font-weight: 200;
}


/* START Mobile Menue*/

.header .container .mobileMenue {
    display: none;
}

.header .container .mobileMenue .mobileMenueContent {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    background-color: white;
    padding-bottom: 2rem;
}

.header .container .mobileMenue .mobileMenueContent nav {
    flex-direction: column;
    justify-content: center;
}

.header .container .mobileMenue .mobileMenueContent .mobileRuler {
    min-height: 2px;
    height: 2px;
    background-color: #bbc02f;
    margin: 0.5rem 0;
    margin-left: 1rem;
    max-width: 10vw;
}


.header .container .mobileMenue .menueTrigger,
.header .container .mobileMenue .mobileMenueContent i {
    font-size: 1.5rem;
    cursor: pointer;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;         /* Standard syntax */
     -webkit-tap-highlight-color: transparent;

}

.header.headerInverted .container .mobileMenue .menueTrigger {
    color: white;
}

.header .container .mobileMenue .mobileMenueContent i {
    position: absolute;
    right: 1rem;
    top: 22px;
}


.header .container .mobileMenue nav a ,
.header .container .mobileMenue nav button {
    line-height: unset;
    font-size: 1.5rem;
    color: var(--color-main);
    text-align: left;
    padding: 0;
    padding-left: 1rem;
    text-transform: uppercase;
}


.header .container .mobileMenue nav a.active ,
.header .container .mobileMenue nav button.active {
    color: var(--color-cta1);
}

/* END Mobile Menue */

.main {
    min-height: calc(100vh - 180px);
    margin-top: 100px;
    transition: opacity 0.2s ease-in;
    display: flex;
    flex-direction: column;
    background-color: var(--colo-background);
    max-width: 100vw;
    overflow-x: hidden;
}

.noFooter .main {
    min-height: calc(100vh - 100px);
}

.noFooter .main>.container.sideMenu>div:last-child {
    min-height: calc(100vh - 220px);
}

.hideMain {
    opacity: 0;
}

.backBtn {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.backBtn i {
    font-size: 1.5rem;
}

.container {
    /*max-width: 1500px;*/
    /*max-width: 95vw;*/
    max-width: calc(100vw - 4rem);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.main>.slim-container {
    max-width: 1000px;
}

.isolatedContainerControlls {
    max-width: calc(90vw + 4rem);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
}

.main>.container {
    display: flex;
    flex-direction: column;
    padding-bottom: 2rem;
    margin-top: 1rem;
    /*align-items: flex-start;*/
    flex-grow: 0;
    flex-shrink: 0;
}

.container.isolatedContainer {
    background-color: white;
    padding: 0 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    -webkit-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.05);
    box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.05);
    width: 90vw;
}

.main>.container.sideMenu {
    display: grid;
    grid-template-columns: 235px calc(100% - 235px);
    gap: 1rem;
    margin-top: 0;
    padding-bottom: 0;
    max-width: calc(100vw - 3rem);
    margin-left: 0;

}

.main>.container.sideMenu .sideMenu {
    background-color: var(--color-main);
    color: white;
    min-height: calc(100vh - 100px);
    height: 100%;
}

.main>.container.sideMenu.secondarySideMenu .sideMenu {
    background-color: white;
}

.main>.container.sideMenu>div:last-child {
    max-width: 100%;
    background-color: white;
    -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.05);
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    min-height: calc(100vh - 300px);
}

.noFooter .main>.container.sideMenu>div:last-child {
    max-width: unset;
    background-color: unset;
    -webkit-box-shadow: unset;
    -moz-box-shadow: unset;
    box-shadow: unset;
    padding: unset;
    margin-top: unset;
    margin-bottom: unset;
    border-radius: unset;
    min-height: unset;
}

.noFooter .main>.container.sideMenu>div:last-child>div:first-child {
    max-width: 100%;
    background-color: white;
    -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.05);
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    min-height: calc(100vh - 280px);
}

.main>.container.sideMenu .sideMenu a {
    border-bottom: solid 1px #5b698d;
    white-space: nowrap;
    width: 100%;
    display: block;
    padding: 1rem;
    box-sizing: border-box;
    color: white;
    text-decoration: none;
}

.main>.container.sideMenu.secondarySideMenu a {
        border-bottom: solid 1px var(--colo-background);
}

.main>.container.sideMenu.secondarySideMenu .sideMenu a {
    color: var(--main-text);
}

.main:has(.isolatedContainer) {
    /*background-color: var(--colo-background);*/
}

.main:has(.sideMenu),
.main:has(.slim-container){
    /*background-color: var(--colo-background);*/
}




.main:has(.isolatedContainer) .container {
    /*margin-top: 0;*/
}


.btnRow {
    display: flex;
    gap: 0.5rem;
}


.mainSubHeadline h1,
.mainSubHeadline h2,
.mainSubHeadline
{
    margin-bottom: 0;
}

.mainSubHeadline h3,
.mainSubHeadline h4,
.mainSubHeadline h5,
.mainSubHeadline h6
{
    margin-top: 0 !important;
}

.inviteMemberBtn {
    margin-bottom: 1rem;
}

.backSearchRow {
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
}


.btn_cta1,
input[type='file']::file-selector-button
{
    background-color: var(--color-cta1);
    color: white;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;  /* Prevents shrinking */
    flex-grow: 0;
    text-align: center;
    border: none;
    box-shadow: none;
    position: relative;
    text-decoration: none;
}

.btn_cta1>span:first-child {
    margin-right: 5px;
}

.btn_cta1 i {
    margin-right: 5px;
}

.btn_cta1:hover {
    background-color: var(--color-cta1-hover);
}

.btn_cta1 .btnSpinner {
    position: absolute;
    color: var(--color-cta1);
    right: -2rem;
    top: 0.5rem;
}

.text-disabled td:last-child {
    color: var(--color-warning);
}

.text-hidden td:last-child {
    color: var(--color-alert);
}


/* START - Serach Bar */

.searchWrapper {
    position: relative;
}

.searchBar {
    background-color: white;
    display: flex;
    align-items: center;
    border-radius: 15px;
    min-width: 15vw;
    justify-content: flex-end;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.08);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.08);
}

.searchBar.activeSerach i {
    color: var(--color-main);
}


.searchBar i {
    margin-left: 10px;
    margin-right: 10px;
    color: var(--highlight2);
    cursor: pointer;
    padding: 10px;
    padding-left: 0;
}

.searchBar input {
    border: none;
    text-align: right;
    height: 1.5rem;
    border-radius: 15px 0px 0px 15px;
    padding-right: 15px;
    width: 100%;
}

.searchBar input:focus {
  outline: none;
  box-shadow: none;
}

.searchBar input::placeholder {
    color: var(--highlight2);
}

.searchResultsWrapper {
    position: absolute;
    background-color: white;
    width: auto;
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    top: 2rem;
    right: 0;
}

.searchResultsWrapper ul {
    margin: 0;
    padding: 1.5rem 1.5rem;
    gap: 0.25rem;
    display: flex;
    flex-direction: column;
    list-style: none;
}

.searchResultsWrapper li {
    white-space: nowrap;

}

.searchResultsWrapper li a {
    text-decoration: none;
    color: var(--main-text);
}

/* START - Serach Bar */

/* START - LOGIN FORM POPUP */

#forgotPwdDiv {
    display: none;
}

#loginContainer {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
}

#loginContainer .innerWrap {
    width: 350px;
    background-color: var(--white);
    padding: 20px;
    position: absolute;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    top: 50%;
    border-radius: 10px;
}

#loginContainer .innerWrap .close {
    position: absolute;
    right: 25px;
    cursor: pointer;
    color: var(--color-main);
    font-size: 1rem;
    top: 20px;
    right: 25px;
    background-color: transparent;
}

#loginContainer #forgotPwdDiv {
    position: absolute;
    width: 400px;
    background-color: var(--white);
    border: 1px solid #666666;
    top: 0;
    left: 0;
    padding: 20px;
    width: calc(100% - 40px);
    border-radius: 10px;
    height: calc(100% - 40px);
    border: none;
}


#loginForm {
    display: flex ;
    flex-direction: column;
    gap: 15px;
}


.loginInput {
    width: 100%;
    position: relative;
    display: flex;
}


#triggerGetNewPwd {
    text-align: left;
    background-color: transparent;
    border: none;
    color: var(--color-main);
}

.loginInput .inputOverlay {
    position: absolute;
    left: 15px;
    top: 12px;
    color: var(--color-main);
}

.loginInput input {
    width: 100%;
    padding: 15px;
    padding-left: 45px;
    border: 1px solid var(--main-text);
}

#forgotPwdDiv .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


.passwordResetContainer {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 2rem;
}

.passwordResetContainer p {
    text-align: justify;
}

.passwordResetContainer h1 {
    margin-bottom: 0;
}

.changePasswordForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 300px;
}



/* END - LOGIN FORM POPUP */

/* START - ALERT BOX */

.popupMessage {
position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999999999;
    backdrop-filter: blur(2px);
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popupMessage .button1 {
    cursor: pointer;
}

.popupMessage > .wrap {
    background-color: var(--white);
    padding: 25px;
    width: 400px;
    max-width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    max-height: 100%;
    /*top: calc(50% - 2* 65px);*/
    border-radius: 10px;
}

.popupMessage .buttonWrap {
    text-align: center;
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}
.popupMessage.popupAlertMessage .buttonWrap {
    justify-content: center;
}

/* END - ALERT BOX */


/* START -  BASIC TABLE */


table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
  /*font-family: sans-serif;*/
  text-align: left;
}

th, td {
    padding: 12px 15px;
    border: 1px solid #ebebeb;
    white-space: nowrap;
}

th {
    background-color: #ebecf1;
    font-weight: bold;
    color: var(--color-main);
}

tr {
  background-color: #ffffff;
}

tr:nth-child(even) {
  background-color: #f9f9fb;
}



tr:hover {
    background-color: rgba(51, 108, 170, 0.15);
    cursor: pointer;
}


tr i {
    margin: 5px;
    cursor: pointer;
}

/* END -  BASIC TABLE */

/* START - Default Form */

.defaultform .background-image {
    width: 100%;
    display: flex;
    height: 500px;
    background-color: #ebecf1;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 150px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.defaultform .background-image.showFullImage {
    background-size: contain;
    background-repeat: no-repeat;
}

.defaultform .editImages {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.defaultform .editImages .imageWrapper {
    background-color: #ebecf1;
    height: 0px;
    width: calc(20% - 1rem);
    padding-bottom: calc(20% - 1rem);
    border-radius: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.08);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.08);
    position: relative;
    cursor: pointer;
}

.defaultform .editImages .imageWrapper i {
    background-color: white;
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    padding: 0.8rem;
    border-radius: 50px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.08);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.08);
}

.defaultform .editImages .imageWrapper .alerts {
    background-color: white;
    margin: 10px;
    padding: 5px 10px;
    border-radius: 20px;
}

.defaultform .editImages .imageWrapper .alerts p {
    margin: 0;
    color: var(--color-warning);
}

.defaultform .editImages .imageWrapper i.clearImage {
    right: 70px;
}

.defaultform .flex {
    display: flex;
    flex-direction: column;
}

.eventForm .background-image,
.offerForm .background-image{
    margin-bottom: 2rem;
}

#customRepeatContainer .repeatEntry input {
    width: calc(100% - 20px);
    padding: 15px 10px;
    border: 2px solid var(--highlight2);
    color: #666666;
    border-radius: 0px;
    line-height: 20px;
    font-size: 0.8rem;
    border-radius: 10px;
    position: relative;
}


#customRepeatContainer .wrap {
    background-color: var(--white);
    width: 400px;
    padding: 0;
    max-width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    max-height: 100%;
    top: unset;
    border-radius: 10px;
    max-height: 500px;
    overflow-y: scroll;
}


#customRepeatContainer .bigPopup .wrap {
    width: 60vw;
    max-height: 80vh;
    overflow-y: scroll;
}

#importerErrors {
    margin-bottom: 1rem;
}

#importerErrors p {
    margin: 0;
    margin-bottom: 0.1rem;
}


#customRepeatContainer .popupMessage {
    display: flex;
    align-items: center;
    justify-content: center;

}



#customRepeatContainer .repeatControlls a:first-child {
    border: solid 3px var(--color-cta1);
    background-color: white;
    color: var(--color-cta1);
}

#customRepeatContainer .repeatControlls {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    padding-top: 0;
}

#customRepeatContainer #repeatDates {
    padding: 20px;
    padding-bottom: 0;
}

#customRepeatContainer .popupHeader {
    /*height: 50px;*/
    background-color: var(--colo-background);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popupcontent {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

#customRepeatContainer .popupHeader p {
    margin-left: 25px;
}

#customRepeatContainer .closeBTN {
    font-size: 1.1rem;
    color: var(--main-text);
    margin-right: 25px;
}


#customRepeatContainer .repeatEntry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
    background-color: var(--colo-background);
    padding: 10px 10px;
    border-radius: 10px;
}

#customRepeatContainer .repeatEntry label.error {
    position: absolute;
    color: var(--color-warning);
    font-size: 0.6em;
    bottom: 5px;
    left: 15px;
    background-color: white;
}

#customRepeatContainer i {
    cursor: pointer;
    font-size: 0.8rem;
}



.defaultform h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}


.defaultform .background-image p,
.defaultform .background-image h3 {
    text-align: center;
    margin: 0;
    font-weight: 300;
    font-size: 1.2rem;
}

.defaultform .background-image p {

    margin-top: 10px;
    color: #a2a7bd;
}


.defaultform .background-image .editBackground {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    justify-content: center;

}

.defaultform .background-image .editBackground .editBackgroundError label {
    color: var(--color-warning);
    background-color: white;
    padding: 10px;
    border-radius: 30px;
}

.defaultform .background-image .editBackground .editBackgroundIcon,
.defaultform .background-image .editBackground .clearBackgroundIcon {
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    right: 15px;
    bottom: 15px;
    font-size: 1.25rem;
    cursor: pointer;
}

.assocImages {
    position: relative;
}

.profile-image {
    position: relative;
}

.assocImages .profile-image {
    position: relative;
    width: fit-content;
    z-index: 1;
    position: absolute;
    bottom: -120px;
    left: 50px;
}

.the-profile-image {
    width: 200px;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 100%;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.04);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.04);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.04);
    background-color: white;
}

.the-profile-image-edit {
    position: absolute;
    bottom: -20px;
    width: fit-content;
    display: flex;
    left: 120px;
    cursor: pointer;
    align-items: center;
    gap: 5px;
}

.profile-image-address.mobile {
    display: none;
}

.profile-image-address .the-profile-image-edit {
    left: 230px;
    bottom: 0;
}

.profile-image-address .the-profile-image-edit h1 {
    margin: 0;
    font-size: 1.5rem;
    /* white-space: nowrap; */
    max-width: 500px;
    width: 100vw;
    background-color: white;
}

.profile-image-address .the-profile-image-edit>div>p:first-child {
    font-size: 2rem;
}

.profile-image-address {
    position: absolute;
    bottom: -120px;
    left: 2rem;
}

.memberForm .profile-image {
    margin-bottom: 40px;
    margin-top: 20px;
}

.the-profile-image-edit .the-profile-image-error {
    color: var(--color-warning);
}
.the-profile-image-edit p {
    margin: 0;
}

.the-profile-image-edit p {
    white-space: nowrap;
}

.the-profile-image-edit i {
    background-color: white;
    padding: 20px;
    font-size: 1.25rem;
    border-radius: 100%;

}


.defaultform {
    margin-bottom: 2.5rem;
    width: 100%;
}

.defaultform .formSplit>.formField {
    width: 50%;
}


.defaultform .contactAction {
    position: relative;
}
.defaultform .contactAction input {
    width: calc(100% - 80px);
}

.defaultform .contactAction select {
    width: calc(100% - 60px);
}


.defaultform .formField .fieldContactAction {
    right: 0;
    bottom: 22px;
    background-color: var(--color-cta1);
    border-radius: 50px;
    border: none;
    position: absolute;
    padding: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
}


.defaultform .formField {
    position: relative;
    display: flex;
    flex-direction: column;
}

.defaultform .formField .tox-tinymce {
    margin-bottom: 20px;
    margin-top: 5px;
}

.defaultform .formField label {
    font-weight: 100;
}

.defaultform .formSplit {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.filterBoxDateRang input,
.defaultform input {
    width: 100%;
    padding: 15px 10px;
    border: 2px solid var(--highlight2);
    margin-bottom: 20px;
    margin-top: 5px;
    color: #666666;
    border-radius: 0px;
    line-height: 20px;
    font-size: 0.8rem;
    border-radius: 10px;
    box-sizing: border-box;
    opacity: 0.8;
    font-family: Arial;
    /*font-family: FFMetaProCond, 'Roboto';*/
    /*font-weight: 100;*/
}

.defaultform textarea {
    min-width: calc(100%);
    max-width: calc(100%);
    min-height: 2rem;
    max-height: calc(100vh - 300px);
    padding: 15px 10px;
    border: 2px solid var(--highlight2);
    margin-bottom: 20px;
    margin-top: 5px;
    color: #666666;
    border-radius: 0px;
    line-height: 20px;
    font-size: 0.8rem;
    border-radius: 10px;
    height: auto;
    box-sizing: border-box;
    font-family: Arial;
    font-weight: 100;
    font-size: 0.8rem;
}

.defaultform select {
    width: 100%;
    padding: 15px 10px;
    border: 2px solid var(--highlight2);
    margin-bottom: 20px;
    color: #666666;
    border-radius: 10px;
    line-height: 20px;
    height: 55px;
    font-size: 0.8rem;
    margin-top: 5px;
    box-sizing: border-box;
      appearance: none;    /* <-- important */
      -webkit-appearance: none; /* Safari fix */
      -moz-appearance: none; /* Firefox fix */
    /*font-family: FFMetaProCond, 'Roboto';*/
    /*font-weight: 100;*/
    opacity: 0.8;
    font-family: Arial;
}


.defaultform .formField label.error {
    position: absolute;
    width: auto;
    left: 10px;
    bottom: 15px;
    margin: 0;
    font-weight: normal;
    font-size: 12px;
    color: var(--color-warning);
    background-color: #fff;
    max-width: 100%;
}

.selectWithButton {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: row !important;
    gap: 1rem;
}

.selectWithButton select {
    margin: 0;
}

.buttonRow {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.buttonRow  button {
    margin-bottom: 0;
}

.buttonRow .btnRowRight {
    margin-left: auto;
}

.formField:has(label.pretty-checkbox) {
    /*width: unset;*/
}

.upload-box {
    border: 2px dashed #bbb;
    background: white;
    padding: 20px;
    width: calc(100% - 40px);
    text-align: center;
    border-radius: 16px;
    transition: border-color 0.3s, background 0.3s;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
}

.upload-box .filename {
    display: flex;
    align-items: center;
    gap: 6px;
}

.upload-box .preview {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
}


.upload-box:hover {
    border-color: #4a90e2;
    background: #f9fcff;
}

.upload-box input[type="file"] {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.upload-text {
    color: #333;
    font-size: 16px;
    line-height: 1.4;
}

.upload-text span {
    color: var(--main-text);
    font-weight: 600;
}

.catSelection {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.catSelection.maxCatReached>button {
    cursor: not-allowed;
}

.catSelection.maxCatReached>button.selected {
    cursor: pointer;
}

.catSelection>.catOption {
    padding: 10px 15px;
    background-color: var(--highlight2);
    border-radius: 50px;
    cursor: pointer;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    border: none;
    font-size: 1rem;
    font-weight: 100;
}

.catSelection>.catOption.selected {
    color: white;
    background-color: var(--color-main);
}

.occurrencesStatus>div p,
.occurrencesStatus>div label{
    margin: 0;
}

.occurrencesStatus .occurrenceInfo {
    border-bottom: solid 2px white;
    padding-bottom: 1rem;
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
}

.occurrencesStatus {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.editEventStatus .warning {
    padding: 0 1rem;
    margin-top: 0;
}
.editEventStatus .warning span {
    cursor: pointer;
    text-decoration: underline;
    color: var(--color-cta1);
}

.occurrencesStatus .eventOccurrenceOptions {
    width: 100%;
    background-color: var(--colo-background);
    padding: 1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 10px;
}

.editEventStatus>div:first-child {
    padding: 1rem;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    border-radius: 6px;
    gap: 5px;
    flex-direction: column;
    margin-bottom: 20px;
}

.tag-container input {
    margin-bottom: 0;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 5px;
}

.tag {
  background: var(--color-main);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.tag .remove-tag {
  margin-left: 8px;
  cursor: pointer;
}

.tag-input {
  border: none;
  outline: none;
  flex: 1;
  padding: 5px;
  min-width: 100px;
  font-size: 14px;
}

.collapseHeadline {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.collapseHeadline i {
    transition: transform 0.2s ease-in-out;
}

.collapseHeadline {
    cursor: pointer;
}

.collapseHeadline.closeContent i {
    transform: rotateX(180deg);
}

.contactAssign .contactRow {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1rem;
    width: 100%;
}

.contactAssign {
    cursor: pointer;
    margin-bottom: 1rem;
}

.contactAssign .contactRow select {
    width: calc(100% - 20px);
}

.contactAssign .contactRow>div {
    display: flex;
    gap: 30px;
    align-items: center;
    width: 100%;
}

.contactAssign input,
.contactAssign select {
    margin: 0;
}

/* END - Default Form */


/* START - Account */

.default_registerCards {
    gap: 0.5rem;
    display: flex;
    position: relative;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/*.default_registerCards::after {*/
/*    content: '';*/
/*    width: 100%;*/
/*    height: 10px;*/
/*    background-color: var(--color-main);*/
/*    position: absolute;*/
/*    left: 0;*/
/*    bottom: -10px;*/
/*}*/


.default_registerCards>a {
    background-color: var(--color-main);
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    box-shadow: none;
    border-radius: 0rem 0rem 1rem 1rem;
    cursor: pointer;
    text-decoration: none;
}

.default_registerCards>a.active {
    /*outline: solid 5px var(--color-cta1);*/
    background-color: var(--color-cta1);
}

/* END - Account */

/* START - Application Form */

.applicationForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.applicationForm .advocateStatus {
    margin-top: 0;
}

.applicationForm .btn_cta1 {
    /*padding: 0.8rem 1rem;*/
}


.applicationForm .applicationForm  input,
.applicationForm .applicationForm  select,
.applicationForm .applicationForm  textarea {
    border: none;
}

.yscroll {
    height: 80vh;
    overflow-y: scroll;
    padding-right: 2rem;
}


.yscroll::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

.yscroll::-webkit-scrollbar-track {
    background: white;
    border-radius: 6px;
}

.yscroll::-webkit-scrollbar-thumb {
    background: var(--main-text);
    border-radius: 6px;
    cursor: pointer;
}

.leftRightTxt>div {
    display: flex;
    justify-content: space-between;
}

.leftRightTxt p {
    width: 50%;
}

/* END - Application Form */


/* START - Pretty Checkbox */
.pretty-checkbox {
    display: flex;
    align-items: flex-start; /* align checkbox with top of text */
    flex-wrap: nowrap;
    font-size: 1rem;
    user-select: none;
    max-width: 100%; /* prevent overflow */
}

table .pretty-checkbox {
    margin: 0;
}

.pretty-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.checkmark {
    flex-shrink: 0; /* prevent squishing */
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    margin-right: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid var(--highlight2);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.pretty-checkbox input:checked + .checkmark {
    border-color: var(--highlight2);
    background-color: #ebecfb;
}

.pretty-checkbox input:checked + .checkmark::after {
    display: block;
}

.pretty-checkbox:hover .checkmark {
    border-color: var(--highlight2);
}

.pretty-checkbox span + * {
    flex: 1;
}

.pretty-checkbox {
    margin-bottom: 20px;
    width: fit-content;
}

.pretty-checkbox.has-error span {
        border: 2px solid var(--color-warning) !important;
}

/* END - Pretty Checkbox */

/* START - Pretty Radio */

.pretty-radio-group {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.pretty-radio-group input[type="radio"] {
    display: none;
}

.pretty-radio-group label {
    padding: 10px 20px;
    border-radius: 999px;
    border: 2px solid #ccc;
    background-color: #f9f9f9;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.pretty-radio-group p {
    margin-bottom: 0.5rem;
    font-weight: 100;
}

.pretty-radio-group label:hover {
    border-color: var(--color-main);
    color: var(--color-main);
}

.pretty-radio-group input[type="radio"]:checked + label {
    background: linear-gradient(135deg, #364275, #455493);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.pretty-radio-group>div {
    display: flex;
    gap: 1rem;
}

.pretty-radio-group label {
    transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
}



/* END - Pretty Radio */

/* START - defaultTile Style */
.tileView {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.tileContainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    width: 100%;
    gap: 1rem;
}


.defaultTile {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    padding: 1rem;
    color: var(--color-main);
    background-color: white;
}

.bx-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.bx-viewport .defaultTile {
    opacity: 1;
}

.tileViewContainer .bx-controls-direction {
    width: 100%;
}

.tileViewContainer .bx-prev {
    position: absolute;
    left: -25px;
}

.tileViewContainer .bx-next {
    position: absolute;
    right: -25px;
}

.tileViewContainer .bx-controls {
    position: absolute;
    top: calc(50% + -12.5px);
    width: 100%;
}

.tileViewContainer .bx-next i,
.tileViewContainer .bx-prev i {
    font-size: 1.5rem;
    color: white;
    background-color: var(--color-cta1);
    padding: 0.8rem;
    border-radius: 100%;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
}


.pinnedTiles {
    display: flex;
    align-items: stretch;
}

.pinnedTiles .defaultTile  {
    background-color: transparent;
    border: 2px solid var(--color-main);
}

.defaultTile.show {
    opacity: 1;
}

.defaultTile .previewImage {
    width: 100%;
    padding-bottom: 75%;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 0.5rem;
}

.defaultTile .previewImage i {
    position: absolute;
    right: 10px;
    bottom: 10px;
    /*background-color: white;*/
    /* padding: 0.5rem; */
    border-radius: 50px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    /*-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);*/
    /*-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.08);*/
    /*box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);*/
    color: var(--color-cta1);
}



.tileTitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.defaultTile .tileInfos {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}

.defaultTile .tileTags {
    margin-top: auto;
}

.defaultTile .tileInfos span {
    font-weight: 300;
}


.defaultTile h2,
.defaultTile p {
    margin: 0;
    text-decoration: none;
}

.defaultTile h2 {
    font-size: 1.2rem;
    text-align: center;
}

.defaultTile h3 {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 100;
}

.defaultTile p {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    font-weight: 100;
}

.defaultTile .tileCategories {
    font-size: 0.7rem;
    margin-top: 0;

}

.defaultTile .tileCategories>div {
    padding: 3px 6px;
}


.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown button {
    padding: 8px 12px;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 1rem;
    background-color: transparent;
    color: var(--color-main);
}

.dropdown button i {
    font-size: 0.7rem;
    margin-left: 12px;
    margin-right: 20px;
}


.dropdown ul[role="listbox"] {
    position: absolute;
    background: white;
    border-radius: 10px;
    right: 0;
    overflow-y: auto;
    padding: 0;
    margin: 20px 0 0 0;
    list-style: none;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    font-size: 1rem;
    padding: 0.5rem;
}

.dropdown.disabled {
    opacity: 0.3;
}

.dropdown.disabled>button {
    cursor: not-allowed;
}

.dropdown .active,
.dropdown .active a,
.dropdown .active button {
    color: var(--color-cta1);
}

.dropdown ul[role="listbox"] a,
.dropdown ul[role="listbox"] button
{
    white-space: nowrap;
}

.dropdown ul[role="listbox"].filterbox {
    width: 300px;
}

.dropdown ul[role="listbox"] .filterBoxDateRang label {
    align-items: center;
}

.filterBoxDateRang input {
    margin-bottom: 0;
    padding: 8px 8px;
    width: 80%;
}

.dropdown ul[role="listbox"] li {
  padding: 3px 10px;
}

.dropdown ul[role="listbox"] li label {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.dropdown ul[role="listbox"] li label p {
    margin: 0;

}

.dropdown ul[role="listbox"] span {
    padding: 10px 0;
    box-sizing: border-box;
    font-size: 1.1rem;
    font-weight: 300;
}

.dropdown ul[role="listbox"] li:hover,
.dropdown ul[role="listbox"] li:focus-within {
    background-color: #f0f0f0;
}

.tileControlls {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.tileControlls>h2 {
    flex: auto;
    margin: auto;
}

.tileControlls select {
    display: block;
    font-size: 1em;
    border: none;
    font-weight: 100;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    font-family: FFMetaProCond, Roboto;
    color: var(--color-main);
    background-color: transparent;
    padding-right: 50px;
}

.tileControlls option {
    font-family: FFMetaProCond, Roboto;
    font-size: 1em;
    font-weight: 100;
}

/* END - defaultTile Style */

/* START - MAP */

.mapView {
    width: 100%;
    height: calc(100vh - 200px);
    border-radius: 15px;
}

.wirMarker {
    background-image: url(/images/mapMarker.webp);
    background-size: cover;
    width: 37px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wirMarker.markerPinned {
    background-image: url(/images/mapMarkerPinned.webp);
}

.wirMarker>div {
    margin-bottom: 13px;
    font-size: 1rem;
}

.markerContent {
    max-width: 300px;
    border-bottom: 2px solid var(--color-main);
    margin-bottom: 1rem;
    cursor: pointer;
    margin-left: 5px;
    width: 100%;
}

.MapEntryInfoPopup h2 {
    margin-top: 0;
}

.MapEntryInfoPopup {
    width: calc(100% - 5px);
}

.markerContent:last-child {
    margin-bottom: 0;
    border: none;
}

.markerContent .tileTitle {
    margin-top: 0.5rem;
}

.markerContent .tileTitle h2,
.markerContent .tileTitle h3
{
    text-align: center;
    margin: 0;
}


.markerContentEvent .contentImage {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
}

.markerContentAssoc .assocProfile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.markerContentAssoc .mapEntryInfos {
    max-width: 300px;
}

.markerContentAssoc {
    width: auto;
}

.markerContentAssoc .assocProfile {
    padding-bottom: 0;
}

.markerContentAssoc .assocProfile>div:first-child {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 100%;
    flex-shrink: 0;
}
.markerContentAssoc .assocProfile>div:last-child h2,
.markerContentAssoc .assocProfile>div:last-child h3 {
    margin: 0;
    font-size: 0.8rem;
    /*white-space: nowrap;*/
}

.markerContentAssoc .assocProfile>div:last-child h3 {
    font-size: 0.7rem;
    font-weight: 100;
}



.gm-style-iw-t button {
    top: unset !important;
    bottom: 20px !important;
    right: 20px !important;
    display: none !important;
}

/* END - MAP */


/* START - Lightbox */



.lighthouseItem {
  cursor: pointer;
}


.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}


.lightWrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    background-color: white;
}

.close {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    background-color: #000000;
    width: 40px;
    height: 40px;
    /* text-align: center; */
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
}


/* END - Lightbox*/

/* START - Detail Page */

.detailPage {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}


#similiar_event_overview,
#similiar_offer_overview {
    margin-bottom: 2rem;
}

.contactbuttons {
    display: flex;
    gap: 5px;
    width: 100%;
    flex-wrap: wrap;
}

.detailPage .contact p {
    margin: 0;
}

.detailPage .contactbuttons a {
    color: white;
    font-size: 1rem;
    text-decoration: none;
}

.detailPage .mainImage {
    width: 100%;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
}


.detailPage .subImages {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.detailPage .subImages .subImage {
    width: calc(50% - 0.5rem);
    padding-bottom: 50%;
    background-position: center;
    background-size: cover;
        -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.08);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.08);
}

.detailPage>div.left {
    width: 45%;
}

.detailPage>div.right{
    width: 55%;
}

.detailPage>div.right .contact .contactbuttons {
    margin-top: 0.5rem;
}


.detailPage .price_wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}


.detailPage .price {
    font-size: 1.3rem;
}

.detailPage a {
    text-decoration: none;
    color: var(--main-text);
}

.detailPage h1,
.detailPage a {
    margin: 0;
}

.eventOccurrences>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.eventOccurrences .interested button {
    width: 200px;
}

.eventOccurrences p {
    margin: 0.7rem 0;
}

.detailPage .interested {
    margin-top: 1rem;
}

.detailPage .interested button {
    width: 200px;
}

.eventOccurrences .interested {
    margin: 0;
}


.detailAssociation {
    display: flex;
    gap: 1rem;
    border-bottom: solid 1px var(--colo-background);
    padding-bottom: 1rem;
    padding-top: 1rem;
    text-decoration: none;
}

.detailAssociation .the-profile-image {
    width: 100px;
    height: 100px;
    min-width: 100px;
}

.detailAssociation .addressData p,
.detailAssociation .addressData h3 {
    margin: 3px 0;

}
.detailAssociation .addressData p {
    font-weight: 100;
    font-size: 0.8rem;
}

.detailAssociation .addressData {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}


.detailCats {
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.chipInverted {
    border: solid 2px var(--color-main);
    background-color: transparent;
    border-radius: 30px;
    padding: 5px 10px;
    width: fit-content;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    text-decoration: none;
    color: var(--color-main);
}

button.chipInverted,
a.chipInverted {
    cursor: pointer;
}

.chipInverted:focus {
    /*outline: solid 2px var(--color-warning);*/
}


.chipInverted.active {
    border: solid 2px var(--color-cta1);
    color: var(--color-cta1);
}

.membershipAlert {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background-color: var(--colo-background);
    border-radius: 5px;
    border: solid 1px var(--highlight2);
    margin: 1rem 0rem;
}


.membershipAlert p {
    margin: 0;
}

.membershipAlert i {
    color: var(--color-cta1);
}

.membershipAlert.requiresMembership i {
    color: var(--color-warning);
}

.detailBaseInfo {
    margin-top: 2rem;
}
.detailBaseInfo h4 {
    margin-bottom: 0;
}
.detailBaseInfo h3 {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.priceAndIterested {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.thePrice {
    display: flex;
    flex-direction: column;
    gap: 0.0rem;
}
.thePrice p {
    margin: 0;
    font-size: 2rem;
}

.thePrice p>span {
    font-size: 1.2rem;
}

.thePrice p:last-child {
    font-size: 0.8rem;
}


.detailBaseInfo .timeAndLocation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.detailBaseInfo .timeAndLocation a {
    text-decoration: underline;
}

.detailBaseInfo .timeAndLocation {
    margin-top: 0.5rem;
}

.detailBaseInfo .timeAndLocation i {
    padding-left: 5px;
}

.detailBaseInfo .timeAndLocation p {
    margin: 0;
    width: 33.33%;
}

.detailBaseInfo .timeAndLocation.onlylocation p  {
    width: 100%;
}

.detailBaseInfo .timeAndLocation span {
    font-size: 0.9rem;
    font-weight: 100;
}


.detailPage .description {
    font-weight: 100;
}

/* END - Detail Page */

/* START - Profile Page */



.assocProfile .tileView {
    margin-bottom: 2rem;
    margin-top: 4rem;
}

.assocProfile .tileView:last-child {
    margin-bottom: 0;
}

.assocHero {
    width: 100%;
    height: 450px;
    background-position: center;
    background-size: cover;
    background-color: #ebecf1;
    border-radius: 15px;
    margin-top: 2rem;
    position: relative;
}

.assocProfileInfos {
    display: grid;
    grid-template-columns: 0.75fr 0.25fr;
    gap: 1.5rem;
}


.assocProfileInfos>div>div>p {
    font-family: FFMetaProRegular;
}

.assocProfile {
    padding-bottom: 2rem;
}


.assocProfileMap {
    cursor: pointer;
    max-width: 100%;
}

#assocProfileMap {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}

.discountOffer {
    margin-bottom: 1rem;
}

.discountOffer h3,
.discountOffer p {
    margin: 0;
}

.assocProfileInfos>div:first-child {
    margin-top: 140px;
}



.assocProfileInfos>div:last-child {
    margin-top: 1rem;
    border-left: solid 2px var(--color-main);
    padding-left: 1.5rem;
}

.assocTitle h1,
.assocTitle h3 {
    margin-bottom: 0;
}


/* END - Profile Page */


/* START - Content PAGES */

.heroImage {
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.heroImage>h1 {
    font-size: 5rem;
    color: white;
    text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.42);
    text-align: center;
    line-break: anywhere;
}

.heroImageFullHeight {
    width: 100%;
    height: calc(100vh - 100px);
    background-size: cover;
    background-position: center;
}

.heroScrollDown {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: solid 3px white;
    position: absolute;
    left: calc(50vw - 25px);
    bottom: 25px;
    border-radius: 50px;
    font-size: 2rem;
    display: flex;
    /* animation-name: scrollDownTabAnimation; */
    /* animation-iteration-count: infinite; */
    /* animation-duration: 10s; */
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
}

@keyframes scrollDownTabAnimation {
  0% {height: 50px;}
  50% {height: 40px;}
  100% {height: 50px;}
}

.mainHero {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mainHero .heroContent {
    text-align: right;
    padding: 4rem;
}

.mainHero>div h1 {
    color: white;
    font-size: 4.5rem;
    margin: 0;
    text-align: right;
}

.mainHero a {
    font-size: 1.5rem;
    padding: 0.5rem 4rem;
}


.contentPage {
    width: 40vw;
}

.referenceGrid {
    margin-bottom: 2rem;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5rem;
}

.theReferenceGrid {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    gap: 2rem;
}

.referenceGrid h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}


.theReferenceGrid>div {
    width: calc(33% - 2rem);
    padding-bottom: calc(33% - 2rem);
    padding-bottom: calc(33% - 2rem);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

/* END - Content PAGES */

/* START - ERROR PAGES */

.errorpage h1 {
    font-weight: 300;
    font-size: 8rem;
    margin: 0;
}
.errorpage p {
    margin: 0;
    text-align: center;
}

.errorpage {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 340px);
    justify-content: center;
}


/* END - ERROR PAGES */

/* START - FOOTER */

.footer {
    width: 100%;
    height: 80px;
    background-color: var(--color-main);
    display: flex;
}

.noFooter .footer {
    background-color: transparent;
    height: 40px;
    margin-bottom: 1rem;
}

.noFooter .footer a ,
.noFooter .footerMenu a::before {
    color: #bfbfbf;
}

.footer .container {
    display: flex;
    justify-content: center;
}

.footer .footerMenu {
    display: flex;
    color: white;
    align-items: center;
    gap: 1rem;
}

.footerMenu a::before {
    content: "•";
    margin: 0 1rem;
    margin-left: 0;
    color: white;
}

.footerMenu a:first-child::before {
  content: ""; /* remove dot before the first item */
  margin: 0;
}


.footer a {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
}
/* END - FOOTER */


.skip-link {
  position: absolute;
  top: -500px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  text-decoration: none;
  font-weight: bold;
}

.skip-link:focus {
  top: 0;
}

.btn_row.centeredButtons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
    padding-top: 2rem;
}

#onboardingOptions i {
    padding: 2rem 0;
    font-size: 2rem;
}

#memberCheckResult {
    overflow-x: auto;
}

.basicTable {
    width: auto;
}

.csvErrorTableWrapper table {
    width: 100%;
}


#customRepeatContainer .importSpinnWrapper i {
    font-size: 2rem;
}

.csvErrorTableWrapper table tbody>tr>td:first-child {
    text-align: center;
}

.csvErrorTableWrapper table tbody>tr>td {
    white-space: break-spaces;
}

.csvErrorFixesCheckbox {
    margin: 0 !important;
    width: fit-content !important;
}

.testSystemWarning>div {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 20px;
    background-image: url("/images/testSystemBanner.jpg");
    z-index: 10000000000000;
    opacity: 0.5;
    background-size: contain;
    pointer-events: none;
}

.testSystemWarning>div:last-child {
    bottom: 0;
    top: unset;
}

/* START  ----------- DUALBOX ----------- */

.dualbox {
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: stretch;
}

.dualbox>section:last-child .list>ul {
    max-height: fit-content;
}

.dualbox .title {
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 700;
    letter-spacing: .2px;
}

.dualbox .subtitle {
    margin-top: 6px;
}

.dualbox .panel {
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    box-shadow: 1px 1px 17px 0px rgba(0,0,0,0.09);
    -webkit-box-shadow: 1px 1px 17px 0px rgba(0,0,0,0.09);
    -moz-box-shadow: 1px 1px 17px 0px rgba(0,0,0,0.09);
}

.dualbox .panel h3 {
    margin: 6px 6px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.dualbox .count {
    font-size: 12px;
    background: #f1f1f1;
    padding: 4px 8px;
    border-radius: 999px;
    color: var(--main-text);
}

.dualbox .search {
    margin: 0 6px 10px; display: flex; gap: 8px;
}

.dualbox .search input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--card);
    border: 1px solid var(--main-text);
    color: var(--text);
    outline: none;
    transition: box-shadow .2s, border-color .2s;
}

.dualbox .search input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px var(--ring);
}

.dualbox .list {
    position: relative;
    isolation: isolate;
    background: #f1f1f1;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.dualbox .list ul {
    list-style: none;
    margin: 0; padding: 0;
    max-height: 300px;
    overflow: auto;
    scroll-behavior: smooth;
}

.dualbox .list li {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,.04);
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dualbox .list li>div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    position: relative;
}

.dualbox .list li>div p {
    position: absolute;
    margin: 0;
    font-size: 0.60rem;
    background-color: #e0e0e0;
    bottom: -10px;
    right: -5px;
    border-radius: 15px;
    padding: 2px 10px;
}


.dualbox .list li input {
    width: 100px;
    padding: 10px 0px;
    margin: 0;
    text-align: right;
}

.dualbox .list li:last-child {
    border-bottom: none;
}

.dualbox .list li[data-hidden="true"] {
    display: none;
}

.dualbox .chk {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: var(--color-main);
    flex: 0 0 auto;
}

.dualbox .li-text {
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dualbox .list li:hover {
    background: rgba(96,165,250,.08);
}
.dualbox .list li.selected {
    background: rgba(96,165,250,.16);
    outline: 1px solid rgba(96,165,250,.4);
}

.dualbox .actions {
    display: grid;
    grid-auto-rows: min-content;
    gap: 8px; align-content: center;
    justify-items: stretch;
    width: 140px;
}
.dualbox .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 600;
    background: var(--color-cta1);
    color: white;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: transform .06s ease, box-shadow .2s, border-color .2s;
}
.dualbox .btn:hover {
    transform: translateY(-1px);
    border-color: var(--brand);
    box-shadow: 0 10px 24px rgba(0,0,0,.35), 0 0 0 4px var(--ring); }
.dualbox .btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.dualbox .btn.small {
    padding: 8px 10px;
    font-size: 12px; }

.dualbox .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px; }

.dualbox .hint {
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.dualbox .footer {
    display: flex;
    justify-content: space-between;
    gap: 8px; align-items: center;
    margin-top: 10px;
    margin-bottom: 0
}

.dualbox .badge {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 99px;
    border: 1px solid var(--border);
    color: var(--muted);
}


/* ----------------- END DUALBOX -------------------------*/

.shoppingList {
    display: flex;
    flex-direction: column;
    /*padding: 0.25rem;*/
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.shoppingList .listEntry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1f2937f2;
    padding: 1rem;
    border-radius: 15px;
    color: white;
}

.shoppingList .listEntry h3,
.shoppingList .listEntry p {
    margin: 0;
}

.shoppingList h2 {
    margin: 0 1rem;
}

.shoppingList .pretty-checkbox {
    margin: 0;
}

.shoppingList .pretty-checkbox input:checked + .checkmark {
    background-color: #2a3441;
    border-color: #2a3441;
}

/*.shoppingList .checkmark::after {*/
/*    border: 2px solid white;*/
/*}*/

@media (max-width: 900px) {
    .dualbox {
        grid-template-columns: 1fr;
    }
    .dualbox .actions {
        grid-template-columns: unset;
        width: unset;
    }
    .dualbox .row {
        grid-template-columns: unset;
    }
}

/* END ----------- DUALBOX ----------- */

/*a:focus {*/
/*    outline: solid 2px var(--color-cta1) !important;*/
/*}*/

/* MEDIA QUERYS */

@media only screen and (max-width: 1700px) {
    /*.tileContainer {*/
    /*    grid-template-columns: 1fr 1fr 1fr 1fr;*/
    /*}*/

    .defaultform .editImages .imageWrapper {
        height: 0px;
        width: calc(33% - 1rem);
        padding-bottom: calc(33% - 1rem);
    }

}

@media only screen and (max-width: 1615px) {

    .tileContainer {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}


@media only screen and (max-width: 1560px) {
    /*.container {*/
    /*    width: calc(100% - 40px);*/
    /*    padding: 0 20px;*/
    /*}*/

    #customRepeatContainer .bigPopup .wrap {
        width: 90vw;
    }

    .referenceGrid {
        width: 80%;
    }


}

@media only screen and (max-width: 1400px) {
    .referenceGrid {
        margin-top: 2rem;
    }
}

@media only screen and (max-width: 1215px) {
    .container {
        max-width: calc(100vw - 1rem);
    }

    .tileViewContainer .bx-prev {
        position: absolute;
        left: -10px;
    }

    .tileViewContainer .bx-next {
        position: absolute;
        right: -10px;
    }

    .tileViewContainer .bx-next i, .tileViewContainer .bx-prev i {
        font-size: 1rem;
        width: 20px;
        height: 20px;
        line-height: 20px;
    }

    .tileViewContainer .bx-controls {
        top: calc(50% + 10px);
    }

    .tileContainer {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .detailBaseInfo .timeAndLocation {
        flex-direction: column;
    }

    .detailBaseInfo .timeAndLocation p {
        width: 100%;
    }

    .assocProfileInfos {
        display: flex;
        grid-template-columns: unset;
        gap: 1.5rem;
        flex-direction: column;
    }

    .assocProfileInfos>div:last-child {
        padding-left: unset;
        border-left: none;
        border-top: solid 2px var(--color-main);
    }


    .contentPage {
        width: calc(100vw - 4rem);
    }

    .main>.slim-container {
        max-width: calc(100vw - 4rem);
    }

    .heroImage>h1 {
        font-size: 3rem;

    }

    .main>.container.sideMenu {
        display: flex;
        max-width: 100vw;
        gap: 0;
    }

    .main>.container.sideMenu .sideMenu {
        min-height: unset;
    }

    .theSideMenu {
        display: grid;
        grid-template-columns: auto auto auto;
    }

    .main>.container.sideMenu .sideMenu a {
        width: auto;
        padding: 0.8rem;
        border-right: solid 1px #5b698d;
        text-align: center;
    }

    .noFooter .main>.container.sideMenu>div:last-child>div:first-child {
        padding: 1rem;
        margin-top: 0;
        border-radius: 0;
    }

    .main>.container.sideMenu>div:last-child {
        padding: 1rem;
        margin-top: 0;
        border-radius: 0;
    }

}

@media only screen and (max-width: 1000px) {
    .header .nav>div, .header .nav>a {
        padding-left: 20px;
    }

    .header .nav>a {
        font-size: 0.9rem;
    }

    .accountImage {
        margin-right: 25px;
    }

    .defaultform .formSplit {
        flex-direction: column;
    }

    .defaultform .contactAction input {
        width: calc(100% - 60px);
    }

    .defaultform .formSplit>.formField {
        width: 100%;
    }

    .defaultform .formSplit {
        gap: 0rem;
    }


    .tileControlls {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tileControlls>h2 {
        width: 100vw;
        text-align: center;
    }

    .detailPage {
        flex-direction: column-reverse;
    }

    .isolatedContainerControlls {
        max-width: calc(100% - 1rem);
        margin: 0 0.5rem;
        margin-top: 1rem;
    }


    .detailPage>div.left,
    .detailPage>div.right {
        width: 100%;
    }

    .mainHero .heroContent h1 {
        font-size: 3rem;
    }

    .tileViewContainer h1 {
        font-size: 1rem;
    }


    .profile-image-address {
        display: none;
    }

    .profile-image-address.mobile .the-profile-image-edit {
        display: block;
        position: relative;
        left: 0;
        margin-top: 1rem;
    }

     .profile-image-address.mobile {
         display: block;
         position: relative;
         left: unset;
         top: unset;
         bottom: unset;
         margin-top: 1rem;
         margin-bottom: 1rem;
     }

     .noBackgroundImage {
         display: none;
     }

    .profile-image-address.mobile .the-profile-image {
        width: 100px;
        height: 100px;
    }

    .profile-image-address.mobile h1,
    .profile-image-address.mobile p {
        width: fit-content;
      }


    .assocProfileInfos>div:first-child {
        margin-top: 0;
    }


    .searchResultsWrapper {
        left: 0;
        right: unset;
    }

}

@media only screen and (max-width: 815px) {
    .tileContainer {
        grid-template-columns: 1fr 1fr;
    }

    .container.isolatedContainer {
        width: calc(100% - 40px);
        padding: 0 1rem;
    }

    .header .logo {
        width: 35px;
    }

    body {
        font-size: 15px;
    }

    .assocHero {
        margin-top: 1rem;
    }

    .assocProfile {
        padding-bottom: 0rem;
    }

    .detailPage {
        margin-bottom: 0;
    }

    .container.isolatedContainer
    {
        margin-bottom: 1rem;
    }
    .main>.container  {
        padding-bottom: 1rem;
    }

    #similiar_event_overview, #similiar_offer_overview {
        margin-bottom: 0;
    }


    #similiar_event_overview, #similiar_offer_overview {
        margin-top: 1rem;
    }

    .occurrencesStatus .occurrenceInfo,
    .eventOccurrenceOptions .formSplit {
        flex-direction: column;
        gap: 0.5rem;
    }



}


@media only screen and (max-width: 700px) {
    .header .container .mobileMenue.active>.mobileMenueContent {
        display: flex !important;
    }

    .header>.container>.nav {
        display: none;
    }

    .header .container .mobileMenue {
        display: block;
    }
    .header .container {
        min-height: 80px;
    }
    .header {
        height: 80px;
    }

    .header .logo {
        width: 35px;
    }

    .main {
        margin-top: 80px;
    }


    .theSideMenu {
        display: grid;
        grid-template-columns: auto auto;
    }

    .assocImages .profile-image {
        position: relative;
        top: unset;
        left: unset;
        bottom: unset;
        margin-bottom: 2rem;
    }

    .the-profile-image-edit {
        position: relative;
        left: unset;
    }

    .the-profile-image-edit p {
        white-space: wrap;
    }

    .defaultform .background-image {
        margin-bottom: 1rem;
    }

    #customRepeatContainer .bigPopup .wrap,
    #customRepeatContainer .wrap {
        width: calc(100vw - 2rem);
    }

    .popupMessage > .wrap {
        width: calc(100vw - 4rem);
    }

    .contactAssign .contactRow,
    .contactAssign .contactRow>div {
        gap: 0.5rem;
    }

    .defaultform .editImages .imageWrapper {
        height: 0px;
        width: 100%;
        padding-bottom: 100%;
    }
}


@media only screen and (max-width: 600px) {
    .tileContainer {
        grid-template-columns: 1fr;
    }

    .footer .footerMenu {
        flex-direction: column;
        text-align: center;
        text-decoration: none;
        gap: 1rem;
        margin: 1rem;

        display: grid;
        grid-template-columns: auto auto;

    }

    .noFooter .footer {
        height: unset;
    }

    .noFooter .footer .footerMenu {
        margin: 0;
    }


    .footerMenu a::before {
        content: "";
        margin: 0;
    }

    .footer {
        height: unset;
    }

    .mainHero .heroContent {
        padding: 1rem;
        width: 100%;
    }

    .mainHero .heroContent h1 {
        font-size: 2rem;
        text-align: center;
    }

    .mainHero {
        justify-content: unset;
    }

    .mainHero .heroContent a {
        width: 100%;
        box-sizing: border-box;
        white-space: nowrap;
        padding: 0.8rem 0;
    }

    .contentPage {
        width: calc(100vw - 2rem);
    }

    .main>.slim-container {
        max-width: calc(100vw - 2rem);
    }

    .searchWrapper {
        width: 100%;
    }

    .searchResultsWrapper {
        left: unset;
        right: 0;
    }

    .searchResultsWrapper ul {
        padding: 1rem 1rem;
    }

    .searchResultsWrapper {
        width: 100%;
    }

    .searchResultsWrapper ul li {
        white-space: normal;
        line-break: anywhere;
    }

    .markerContentAssoc .assocProfile {
        flex-direction: column;
    }
    .markerContentAssoc .assocProfile h2,
    .markerContentAssoc .assocProfile h3 {
        text-align: center;
    }

    .gm-style .gm-style-iw {
        min-width: 300px !important;
    }

    .popupcontent .button_row {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .popupMessage .buttonWrap {
        flex-direction: column;
        gap: 0.5rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .defaultform .background-image {
        height: 50vh;
    }

    .the-profile-image {
        width: 150px;
        height: 150px;
    }

    .catSelection>.catOption {
        padding: 5px 8px;
    }

    .eventOccurrences>div {
        align-items: flex-start;
        flex-direction: column;
    }

    .priceAndIterested {
        flex-direction: column;
    }

    .referenceGrid {
        width: 100%;
    }

}

@media only screen and (max-width: 500px) {
    .tcaFilterDialog fieldset button {
        width: 100%;
        margin-bottom: 1rem;
    }

    .tcaFilterDialog fieldset button:last-child {
        margin-top: 0.5rem !important;
    }

    .passwordResetContainer {
        width: calc(100vw - 4rem);
    }

    .changePasswordForm {
        width: unset;
    }



}

@media only screen and (max-width: 400px) {
    .isolatedContainerControlls {
            flex-direction: column;
            gap: 1rem;
    }

    .detailAssociation {
        flex-direction: column;
        align-items: center;
        padding-top: 0;
    }

    .detailAssociation .addressData {
        align-items: center;
    }

    .detailAssociation .addressData p,
    .detailAssociation .addressData h3 {
        text-align: center;
    }

    .theSideMenu {
        display: grid;
        grid-template-columns: auto;
    }

    .buttonRow {
        align-items: stretch;
        flex-wrap: wrap;
        flex-direction: column;
    }

    #loginContainer .innerWrap {
        width: calc(100vw - 4rem);
    }

    .pretty-radio-group>div {
        flex-direction: column;
    }

    .pretty-radio-group input[type="radio"]:checked + label {
        transform: scale(1);
    }

}








