.f-cookie {position: fixed; left: 15px; width: 300px; bottom: 20px;}
.f-cookie-cnt {padding: 9px 15px; margin-right: 65px; font-size: 0.8em; border-radius: 5px; background: #fff; color: #333; border: 1px solid var(--fzpd-background-primary); box-shadow: 0 0px 12px rgba(0, 0, 0, 0.07);}
.f-cookie-setup {margin-top: 10px; text-align: center;}

.fzpd-app-cookie-accept-button{
    text-align: center;
    border: none;
    background-color: var(--fzpd-background-primary);
    color: white;
    border: none;
    font-size: 0.9em;
    padding: 10px;
    line-height: 18px;
    border-radius: 5px;
    text-decoration: none;
    outline: none;
    white-space: nowrap;
    width: 100%;
    margin: 5px 0px;
}
.nobr{
    border:none!important;
}
.w100{width: 100%}

.fzpd-app-cookie-consent {
    /*position: fixed;*/
    /*bottom: 0;*/
    /*left: 0;*/
    /*right: 0;*/
    /*background-color: #f1f1f1;*/
    /*padding: 20px;*/
    /*box-shadow: 0 -2px 10px rgba(0,0,0,0.1);*/
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: space-between;*/
    /*align-items: center;*/
    /*row-gap: 20px;*/
    /*z-index: 2147483547;*/
}
.fzpd-app-cookie-consent-text { color: #333; }
.fzpd-app-cookie-consent-buttons button {
    /*background-color: #4CAF50;*/
    background-color: var(--fzpd-background-primary);
    transition: all 0.3s;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 4px;
}
.fzpd-app-cookie-consent-buttons button.outlined { border: 2px solid var(--fzpd-background-primary); background-color: white; color: black }
.fzpd-app-cookie-consent-buttons button.outlined:hover { border: 2px solid color-mix(in srgb, var(--fzpd-background-primary), black 15%); }
.fzpd-app-cookie-consent-buttons button:not(.outlined):hover { background-color: color-mix(in srgb, var(--fzpd-background-primary), black 15%); }

.fzpd-switch-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.fzpd-switch-info { display: flex; align-items: center; }

.fzpd-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    margin-right: 15px;
}

.fzpd-switch input { opacity: 0; width: 0; height: 0; }

.fzpd-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.fzpd-switch-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.fzpd-app-cookie-settings-form input:checked + .fzpd-switch-slider { background-color: #2196F3; }

.fzpd-app-cookie-settings-form input:checked + .fzpd-switch-slider:before { transform: translateX(18px); }

.fzpd-switch-label { font-weight: bold; }

.fzpd-switch input:disabled + .fzpd-switch-slider { background-color: #95a5a6; cursor: not-allowed; }

.fzpd-switch input:disabled + .fzpd-switch-slider:before { background-color: #ecf0f1; }

.fzpd-switch input:checked:disabled + .fzpd-switch-slider { background-color: #3498db; opacity: 0.7; }

.fzpd-toggle-description-btn {
    background-color: var(--fzpd-background-primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.fzpd-toggle-description-btn:hover { background-color: color-mix(in srgb, var(--fzpd-background-primary), black 15%); }

.fzpd-description {
    display: none;
    padding: 15px;
    background-color: #e9e9e9;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 15px;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fzpd-submit-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: var(--fzpd-background-primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.fzpd-submit-btn:hover { background-color: color-mix(in srgb, var(--fzpd-background-primary), black 15%); }

.fzpd-app-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2147483647;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.fzpd-app-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.fzpd-app-popup-container {
    background-color: white;
    border-radius: 8px;
    width: 90%;
    max-width: 700px;
    max-height: 80%;
    /*overflow: auto;*/
    overflow: hidden;
    /*padding: 30px;*/
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    /*position: relative;*/
    display: flex;
    flex-direction: column;
}

.fzpd-app-popup-overlay.active .fzpd-app-popup-container {
    transform: translateY(0);
}

.fzpd-app-popup-header {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*background-color: #f5f5f5;*/
    border-bottom: 1px solid #ddd;
    padding: 15px;
}

.fzpd-app-popup-close {
    /*position: absolute;
    top: 15px;
    right: 15px;*/
    width: 24px;
    height: 24px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    position: relative;
    padding: 0;
}

.fzpd-app-popup-close:hover {
    opacity: 1;
}

.fzpd-app-popup-close::before,
.fzpd-app-popup-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #333;
}

.fzpd-app-popup-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.fzpd-app-popup-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.fzpd-app-popup-title {
    /*top: 0;
    margin-bottom: 15px;*/
    color: #333;
    margin:0;
}

.fzpd-app-popup-content {
    overflow: auto;
    line-height: 1.5;
    color: #555;
    /*margin-bottom: 25px;*/
    padding: 20px 30px;
}