/* Cookie Law Info - GDPR Modal CSS */
.cli-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}
.cli-modal.cli-show {
    display: block;
}
.cli-modal-dialog {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    max-width: 680px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.cli-modal-content {
    padding: 0;
}
.cli-modal-header {
    padding: 14px 20px;
    background: #f7f7f7;
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cli-modal-header h4 {
    margin: 0;
    font-size: 16px;
}
.cli-modal-close {
    color: #aaa;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}
.cli-modal-close:hover { color: #333; }
.cli-modal-body {
    padding: 20px;
    max-height: 70vh;
    overflow-y: auto;
}
.cli-tab-container { width: 100%; }
.cli-privacy-overview h4 { margin-top: 0; }
.cli-privacy-content-text { font-size: 13px; color: #555; line-height: 1.6; }
.cli-privacy-readmore { font-size: 12px; cursor: pointer; color: #0170B9; }
.cli-tab-header { display: flex; flex-wrap: wrap; border-bottom: 1px solid #ddd; margin-bottom: 16px; }
.cli-tab-header li { list-style: none; }
.cli-tab-header li a {
    display: block;
    padding: 8px 14px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    border: 1px solid transparent;
    border-bottom: none;
    margin-bottom: -1px;
}
.cli-tab-header li.cli-tab-active a {
    color: #333;
    background: #fff;
    border-color: #ddd;
    border-bottom-color: #fff;
}
.cli-tab-content { font-size: 13px; }
.cli-switch { position: relative; display: inline-block; width: 40px; height: 22px; }
.cli-switch input { opacity: 0; width: 0; height: 0; }
.cli-slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc; border-radius: 22px; transition: .3s;
}
.cli-slider:before {
    position: absolute; content: "";
    height: 16px; width: 16px; left: 3px; bottom: 3px;
    background-color: white; border-radius: 50%; transition: .3s;
}
input:checked + .cli-slider { background-color: #61a229; }
input:checked + .cli-slider:before { transform: translateX(18px); }
input:disabled + .cli-slider { opacity: 0.6; cursor: not-allowed; }
.cli-modal-footer {
    padding: 12px 20px;
    background: #f7f7f7;
    border-top: 1px solid #ddd;
    border-radius: 0 0 4px 4px;
    text-align: right;
}
#wt-cli-privacy-save-btn {
    background-color: #61a229;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 13px;
}
#wt-cli-privacy-save-btn:hover { background-color: #4e8221; }
@media (max-width: 600px) {
    .cli-modal-dialog { width: 95%; margin: 10% auto; }
}
