/* =========================================================
   PRO-LINK COOKIE CONSENT
   Namespace: plcc-
========================================================= */

/* RESET */

.plcc-popup *,
.plcc-popup *::before,
.plcc-popup *::after {
    box-sizing: border-box;
}

.plcc-popup button,
.plcc-popup input,
.plcc-popup textarea,
.plcc-popup select {
    font-family: Arial, sans-serif !important;
}

/* =========================================================
   OVERLAY
========================================================= */

.plcc-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: none;
    z-index: 99991;
}

/* =========================================================
   POPUP
========================================================= */

.plcc-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 100%;
    max-width: 650px;

    background: #fff;
    border-radius: 12px;

    box-shadow: 0 10px 40px rgba(0,0,0,.2);

    padding: 20px;

    z-index: 99992;

    display: none;

    font-family: Arial, sans-serif !important;
    color: #222;
}

/* =========================================================
   OPEN BUTTON
========================================================= */

html body button.plcc-open-btn {
    appearance: none;
    -webkit-appearance: none;

    position: fixed;

    right: 20px;
    bottom: 90px;

    width: 55px;
    height: 55px;

    border: none;
    outline: none;

    border-radius: 50% !important;

    background: #add8e6;

    cursor: pointer;

    z-index: 99990;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    transition: .2s;
	padding: 0;

}

html body button.plcc-open-btn:hover {
    opacity: .9;
}

.plcc-open-btn svg {
    width: 40px;
    height: 40px;
    fill: #000;
}

/* =========================================================
   TABS
========================================================= */

.plcc-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

html body button.plcc-tab-btn {
    appearance: none;
    -webkit-appearance: none;

    border: none !important;
    outline: none !important;
    box-shadow: none !important;

    background: transparent !important;

    padding: 12px 18px;

    cursor: pointer;

    font-family: Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;

    color: #222 !important;

    border-radius: 8px 8px 0 0 !important;

    transition: .2s;
}

html body button.plcc-tab-btn:hover {
    background: #f5f5f5 !important;
}

html body button.plcc-tab-btn.active {
    background: #e9e9e9 !important;
    font-weight: bold !important;
}

/* =========================================================
   TAB CONTENT
========================================================= */

.plcc-tab-content {
    display: none;

    max-height: 320px;

    overflow-y: auto;

    padding: 10px 5px;

    font-size: 14px;
    line-height: 1.5;

    color: #333;
}

.plcc-tab-content.active {
    display: block;
}

.plcc-tab-content h3 {
    margin-top: 0;
    margin-bottom: 10px;

    font-size: 22px !important;
    line-height: 1.3 !important;

    color: #111;
}

.plcc-tab-content p {
    margin: 0 0 15px;
}

/* =========================================================
   OPTIONS
========================================================= */

.plcc-option {
    display: flex;
    align-items: flex-start;
    gap: 20px;

    padding: 20px 0;
}

.plcc-option + .plcc-option {
    border-top: 1px solid #ddd;
}

.plcc-option-text {
    flex: 1;
}

.plcc-option-text strong {
    display: block;
    margin-bottom: 5px;

    font-size: 15px;
    color: #111;
}

/* =========================================================
   SWITCH
========================================================= */

.plcc-switch {
    position: relative;

    width: 60px;
    height: 34px;

    min-width: 60px;
}

.plcc-switch input {
    opacity: 0;

    width: 0;
    height: 0;
}

.plcc-slider {
    position: absolute;
    inset: 0;

    background: #ccc;

    border-radius: 34px;

    transition: .3s;

    cursor: pointer;
}

.plcc-slider::before {
    content: "";

    position: absolute;

    width: 26px;
    height: 26px;

    left: 4px;
    bottom: 4px;

    background: #fff;

    border-radius: 50%;

    transition: .3s;
}

.plcc-switch input:checked + .plcc-slider {
    background: #2196F3;
}

.plcc-switch input:checked + .plcc-slider::before {
    transform: translateX(26px);
}

/* =========================================================
   EXTRA CONTENT
========================================================= */

.plcc-extra {
    display: none;
    margin-top: 15px;
}

/* =========================================================
   PROVIDER
========================================================= */

.plcc-provider {
    padding: 15px;

    border: 1px solid #ddd;
    border-radius: 8px;

    background: #fafafa;
}

.plcc-provider p {
    margin: 10px 0;
}

/* =========================================================
   COOKIE INFO
========================================================= */

.plcc-cookie {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    padding: 12px 0;

    border-bottom: 1px solid #e5e5e5;
}

.plcc-cookie-name {
    width: 20%;

    font-weight: bold;

    color: #444;
}

.plcc-cookie-desc {
    width: 80%;

    color: #666;

    font-size: 14px;
}

.plcc-cookie-meta {
    margin-top: 6px;

    font-size: 12px;

    color: #999;
}

/* =========================================================
   BUTTONS
========================================================= */

html body button.plcc-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 20px;
}

html body button.plcc-btn {
    appearance: none;
    -webkit-appearance: none;
	
    border: none !important;
    outline: none !important;
    box-shadow: none !important;

    text-decoration: none !important;

    padding: 12px 20px;

    cursor: pointer;

    border-radius: 8px !important;

    font-family: Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;

    transition: .2s;
}




html body button.plcc-btn:hover {
    opacity: .9;
}

html body button.plcc-btn-primary {
    background: #007bff !important;
    color: #fff !important;
}

html body button.plcc-btn-secondary {
    background: #e9ecef !important;
    color: #222 !important;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .plcc-popup {
        width: calc(100% - 20px);
        padding: 15px;
    }

    .plcc-cookie {
        flex-direction: column;
    }

    .plcc-cookie-name,
    .plcc-cookie-desc {
        width: 100%;
    }

    .plcc-tabs {
        flex-wrap: wrap;
    }

    .plcc-tab-btn {
        flex: 1 1 auto;
    }

}




.plcc-open-btn img {
    all: unset;

    width: 40px !important;
    height: 40px !important;

    display: block !important;

    object-fit: cover !important;
}