/* Minification failed. Returning unminified contents.
(48,24): run-time error CSS1039: Token not allowed after unary operator: '-selectedMenuTextCasameta'
(245,26): run-time error CSS1039: Token not allowed after unary operator: '-primaryColor'
 */
/*
PARTNER KACHELN
 */

.partner-tiles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px; 
}

.partner-tile {
    border: 1px solid #ccc;
    margin-bottom: 20px; 
    padding: 20px;
    width: 200px;
    text-align: center;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    /*height: 200px;*/
    cursor: pointer;
    background-color: #f9f9f9;
    border-radius: 8px; 
}

.partner-tile img {
    width: 100%;
    height: 120px; 
    object-fit: contain; 
    margin: 0 auto 15px;
}

.partner-tile p {
    font-size: 14px; 
    border-top: 1px solid #ccc; 
    padding-top: 10px; 
    margin-top: 10px; 
}

.partner-tile:hover, .selected-partner {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15); 
}

.selected-partner {
    transform: scale(1.05); 
    border-color: var(--selectedMenuTextCasameta);
}

/*
 */


h1 {
    position: relative;
    margin-bottom: 5px;
    margin-left: 10px;
}

h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 350px;
    height: 2px;
    background-color: #ccc; 
}

/*.row {*/
/*    display: flex;*/
/*    align-items: center; */
/*}*/

/*.col-35-11 {*/
/*    flex: 0 0 auto;*/
/*    width: 40%; */
/*}*/

/*.col-65 {*/
/*    flex: 0 0 auto;*/
/*    width: 60%;*/
/*}*/


.inputFieldsContainer {
    background-color: #f9f9f9; 
    padding: 40px; 
    margin: 20px auto; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 30%;
    max-width: 600px; 
    border-radius: 10px; 
}

.my-form-groups:not(.agreementCheckbox-row) {
    justify-content: flex-start;
    padding: 0 0 20px; 
}

#agreementCheckbox {
    height: 0;
}

.input-group, .inp_waherung {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input {
    flex-grow: 1;
}

.toggle-password {
    position: absolute;
    right: 10px; 
    cursor: pointer;
    z-index: 9999;
}

#registerBtn {
    width: 100%; 
    padding: 10px 0;
    background-color: #007bff; 
    border: none; 
    border-radius: 5px; 
    font-size: 16px; 
    color: white; 
    cursor: pointer;
    transition: background-color 0.3s; 
}

#registerBtn:hover {
    background-color: #0056b3; 
}


.alert-success {
    position: relative; 
    padding: 20px; 
    margin: 20px 0; 
    background-color: #e9fcef; 
    border: 1px solid #b2d3be; 
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    color: #155724; 
    font-size: 16px; 
}

.alert-danger {
    position: relative;
    padding: 20px;
    margin: 20px 0;
    background-color: #fddbdb;
    border: 1px solid #ff8181;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #b31818;
    font-size: 16px;
}

#errorBox ul {
    list-style-type: none;
    padding: 0;
}

/*.alert-success::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: -10px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%); */
/*    width: 20px;*/
/*    height: 20px;*/
/*    background-color: #e9fcef;*/
/*    border-left: 1px solid #b2d3be; */
/*    border-top: 1px solid #b2d3be;*/
/*    border-radius: 0 0 0 8px; */
/*}*/

/*.alert-success::after {*/
/*    content: "Info"; */
/*    position: absolute;*/
/*    top: -1.5em; */
/*    left: 20px;*/
/*    background-color: #155724;*/
/*    color: white; */
/*    font-size: 12px; */
/*    padding: 2px 8px;*/
/*    border-radius: 4px;*/
/*    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
/*}*/

.fa-eye-slash{
    cursor: pointer;
    margin-left: 10px;
}

/*
ALLGEMEINE PAGE
 */

#extr-page-register #main {
    padding: 20px;
}


.myAccountContainer {
    padding: 20px;
}

html, body {
    overflow: visible;
    overflow-x: clip;
}

div.cf-turnstile:not(#reset-password-captcha) {
    padding: 20px 0;
    width: 100%;
}

.alert-success p {
    white-space: pre-line;
}

@media only screen and (max-width: 679px) and (min-width: 0) {
    html, body {
        overflow-x: clip;
    }
    
    #content {
        padding-bottom: unset;
    }

    #extr-page-register #main {
        padding: unset;
        background: var(--primaryColor);
        margin: 0;
    }

    #extr-page-register .inputFieldsContainer {
        width: unset;
        margin: unset;
    }

    .myAccountContainer {
        padding: 0 20px;
    }
    
    .myAccountContainer h1 {
        margin: unset;
        padding: 20px;
    }

    .myAccountContainer h1::after {
        width: 100%;
    }
    
    #choosePartnerText {
        margin: 10px 35px!important;
    }
    
    .partner-tiles-container {
        display: flex;
        padding: 0 0 20px;
    }

    .partner-tile {
        width: 36%;
        padding: 10px;
        margin-bottom: unset;
    }

    .partner-tile img {
        margin: unset;
    }
    
    div.cf-turnstile {
        padding: 10px 0;
    }

    .footer {
        bottom: unset !important;
        transform: unset!important;
    }
    
    .footer .container {
        margin: unset;
    }
    
    .footer nav .flex-column {
        margin: unset;
    }

    .footer .col-md-4.footer-column {
        text-align: center;
    }
    
    .footer .footer-logo-container {
        padding: 5px 0;
    }
    
    .footer .row {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .footer ul.nav.flex-column {
        margin: unset;
    }
    
    .footer .nav.flex-column li.nav-item {
        text-align: left;
        padding: 2px 0;
    }
    
}
