/* Obal cookie okna */
.dm-cookie-popup {
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    max-width: 450px;
    text-align: left;
    position: fixed;
    z-index: 1000;
    position: fixed;
}

/* Tlačítko pro zavření / křížek */
.dm-cookie-popup-decline-cookies-cancel-screen {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 25px;
    cursor: pointer;
    outline: none;
    z-index: 10;
}

.dm-cookie-popup-decline-cookies-cancel-screen:focus {
    outline: none;
}

/* Text v horní části */
.dm-cookie-popup-sub-headline {
    margin: 0 0 15px;
    font-size: 14px;
    color: #333;
    text-align: left;
}

/* Text v detailu pro každý souhlas */
.dm_cookies_more_info {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
    text-align: left;
    display: none;
    overflow: hidden;
}


.dm-cookie-popup-buttons {
    display: flex;
    justify-content: space-between;
    
}
.dm-cookie-popup-buttons button {
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 600;
    outline: none !important;
}

.dm-cookie-popup-buttons button:focus {
    outline: none !important;
}

button.dm-cookie-popup-learn-more {
    background: #eee;
    border-color: #eee;
    color: black;
    width: 47%;
}

.dm-cookie-popup-right p {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.dm-cookie-popup-decline-cookies {
    width: 47%;
}

.dm-cookie-popup-accept-cookies {
    width: 47%;
}
.dm-cookie-popup-accept-cookies-save-group {
    width: 47%;
    display: none;
}
/* Odkaz na CMS článek */
.dm-cookie-popup-cms-link {
    display:none;
    text-align: center;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Titulky jednotlivých souhlasů */
.dm_title_group {
    padding-left: 7px;
    color:  black;
    font-size: 14px;
    font-weight: 600;
}

/* Pozice */
.position-topleft { top: 20px; left: 20px; }
.position-topright { top: 20px; right: 20px; }
.position-bottomleft { bottom: 20px; left: 20px; }
.position-bottomright { bottom: 20px; right: 20px; }
.position-center { top: 50%; left: 50%; transform: translate(-50%, -50%); }











.dm_cookies_variant_item {
    background-color: #f8f8f8; /* Světle šedé podbarvení */
    padding: 15px;
    border-radius: 8px; /* Zaoblení rohů */
    margin-bottom: 10px; /* Mezery mezi sekcemi */
    position: relative;
    cursor: pointer;
}

.dm_cookies_variant_item span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    gap: 10px;
}

.dm_title_group {
    flex-grow: 1; /* Aby text vyplnil volné místo */
    padding-left: 10px;
}

.dm_cookies_variant_item.active .dm_cookies_more_info {
    display: block; /* Zobrazí se při aktivaci */
}

.dm_arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #333; /* Tmavě šedá šipka */
    transition: transform 0.3s ease;
}

.dm_cookies_variant_item.active .dm_arrow {
    transform: rotate(180deg);
}

/* Styl přepínačů */
.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
    transform: translateY(3px);
    min-width: 10px !important;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.dm_slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 20px;
}

.dm_slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .dm_slider:before {
    transform: translateX(14px);
}


@media (max-width:767px)
{
    #dm-cookie-popup-container .dm-cookie-popup {
        width: calc(100% - 20px);
        max-height: calc(100% - 20px);
        overflow: auto;
    }

    .cookie-modal-open #dm-cookie-popup-container {
        width: 100%;
    }
}

@media (max-height: 500px) { /* Přizpůsobí se pro nízké obrazovky */
    #dm-cookie-popup-container .dm-cookie-popup {
        max-height: calc(100% - 40px); /* Maximální výška podle okna prohlížeče */
        overflow: auto; /* Přidá posuvník, pokud je obsah příliš vysoký */
    }
}

@media (max-width:399px) {
    .dm-cookie-popup-accept-cookies, .dm-cookie-popup-decline-cookies, .dm-cookie-popup-accept-cookies-save-group {
        font-size: 14px;
    }
}

