/* gdpr-cookie-style.css */

.d-none {
    display: none;
}

.pt-14 {
    padding-top: 14px;
}

.gdpr-extensions-com-cookie-data-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
}

.gdpr-extensions-com-cookie-data-container.bottom_left {
    left: 30px;
    right: auto;
}

.gdpr-cookie-icon {
    background-color: #fff;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.75em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gdpr-cookie-icon img {
    width: 36px;
    height: 36px;
    /* border-radius: 50%; */
}

.gdpr-cookie-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
    overflow: unset;
}

.gdpr-cookie__container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 440px;
    background-color: transparent;
    padding: 20px;
    border-radius: 7px;
    overflow-y: unset;
    width: 100%;
    transition: max-width 0.3s ease-in-out, max-height 0.3s ease-in-out;
}

.gdpr-cookie__content {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
    max-height: 550px;
    max-width: 550px;
    overflow-y: auto;
    transition: max-width 0.3s ease-in-out, max-height 0.3s ease-in-out;
    background-color: white;
    border-radius: 7px;
    padding: 20px;
    position: relative;
    margin: 0 auto;
}

.gdpr-toggle-container {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 20px;
}

.gdpr-toggle-btn {
    opacity: 0;
    width: 0;
    height: 0;
}

.gdpr-toggle-label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 20px;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    padding: 2px;
}

.gdpr-toggle-btn:checked+.gdpr-toggle-label, .allToggle:checked+.gdpr-toggle-label {
    background-color: var(--cm-btn-bg-color);
}

.gdpr-toggle-label::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #fff;
    transition: margin 0.3s;
}

.gdpr-toggle-btn:checked+.gdpr-toggle-label::before, .allToggle:checked+.gdpr-toggle-label::before {
    margin-left: auto;
    margin-right: 0;
}

.gdpr-cookie-popup.active {
    display: block;
}

.gdpr-close-btn {
    position: fixed;
    top: 8px;
    right: 10px;
    left: 10px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.gdpr-close-btn img {
    width: 30px;
    height: 30px;
    right: 0px;
    cursor: pointer;
    color: #333;
    font-weight: bold;
    padding: 5px;
    background-color: #ddd;
    border-radius: 2px;
}

.gdpr-close-btn img:hover {
    background-color: #ccc;
}

.accept-all-btn {
    background-color: #2172B1;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 16px;
}

.accept-all-btn:hover {
    background-color: #d25b00;
}

.gdpr-accept-all {
    box-shadow: 0 9px 12px;
    background-color: #fff;
    position: fixed;
    left: 0;
    width: 100%;
    bottom: 0;
    padding: 10px 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
}

.gdpr-cookie__headline {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    padding-bottom: 6px;
}

.gdpr-cookie__txt {
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    padding: 12px 0;
}

.gdpr-cookie-data {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    align-items: center;
    background-color: #2172B127;
    margin: 10px 0;
}

.cookie-text {
    width: calc(100% - 60px);
}

.no-scroll {
    overflow: hidden;
}

.links-parent {
    display: block;
    max-height: 100px;
    overflow-y: auto;
}

.links-parent a {
    display: block;
}

.category__container {
    border: 1px solid #eaeaea;
    background: #fafafa;
    padding: 9px 0;
    border-radius: 6px;
    margin-bottom: 10px;
}

.category__header {
    color: inherit;
    height: 32px;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0 15px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    font-size: 16px;
    font-weight: 500;
}

.category__header .arrow {
    margin-right: 7px;
    transition: 0.3s;
    margin-top: -2px;
    color: inherit;
}
.gdpr2click{
    justify-content: space-between;
}

.cookie-item {
    padding-left: 29px;
    padding-right: 20px;
    color: inherit;

}

.category-content {
    transition: max-height 0.3s ease-in-out;
    max-height: 1000px;
    overflow: hidden;
}

.category-content.d-none {
    max-height: 0;
}

.cookie-item .more_details {
    color: #2172B1;
    font-size: 16px;
    cursor: pointer;
    line-height: 24px;
    text-align: right;

}

.cookie-item__desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    margin-bottom: 8px;
}

.gdpr-cookie__container.expanded {
    max-width: 1400px;
}

.gdpr-cookie__conten.expanded {
    max-height: 90vh;
}

.gdprCookie__header-wrap {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    align-items: center;
}

.gdprCookie__table-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    /* padding-bottom: 6px; */
}

.cookie-item_desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
}

.gdpr-cookie__container table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

.gdpr-cookie__container tr {
    border-bottom: 1px solid #e7e6e6;
    font-size: 14px;
    font-weight: 500;
    line-height: 50px;
}

.gdpr-cookie__container .row-head {
    background: #e7e6e6;
    text-align: left;
}

.gdpr-cookie__container table .row-head th {
    color: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    min-width: 150px;
    padding: 16px;
}

.gdpr-cookie__container table tr:last-child {
    border-bottom: 0;
}

.gdpr-cookie__container table .row-data td {
    color: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 16px;
}

.gdpr-cookie__container table .row-data td.desc {
    min-width: 220px;
}

.gdpr-cookie__container .table-border {
    border: 1px solid #e7e6e6;
    border-radius: 10px;
    margin-top: 10px;
    overflow-x: auto;
    max-height: 60vh;
}
.button-pair {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .gdpr-cookie__container .acceptance-btn , .gdpr-cookie__container .decline-btn {
    text-align: end;
    position: sticky;
    bottom: -20px;
    width: 100%;
    left: 0;
} */

.gdpr-cookie__container .acceptance-btn button, .gdpr-cookie__container .decline-btn button {
    margin: 18px 0;
    width: auto;
    line-height: 24px;
    font-size: 16px;
    padding: 8px 16px;
    gap: 8px;
    border-radius: 6px;
    color: white;
    pointer-events: all;
    background-color: #2172B1;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease-in-out;
}

.gdpr-cookie__container .acceptance-btn button:hover {
    box-shadow: 0 7px 14px rgba(50, 50, 93, .1), 0 3px 6px rgba(0, 0, 0, .08);
    transform: translateY(-1px);
}

.gdprCookie__table-header {
    position: sticky;
}

.links-parent a {
    color: inherit;
}

.gdprCookie__table-back {
    color: inherit;
    cursor: pointer;
}

.gdprclick__plugins {
    /* border: 1px solid #eaeaea; */
    border-radius: 6px;
}

.gdprclick__plugins .gdprclick__plugin {
    border-bottom: 1px solid #eaeaea;
    padding: 8px;
}

.gdprclick__plugins .gdprclick__plugin:last-child {
    border-bottom: none;
}

.gdprclick__plugin {
    display: flex;

}

.gdprclick__name {
    font-weight: 600;
}

.gdprclick__desc {
    font-size: 14px;
    text-wrap: pretty;
    padding: 0 20px;
}
.gdprclick__cookiedata .detailed-data{
    margin: 0 10px;
}

.gdprclick__header {
    width: calc(100% - 60px);
    display: flex;
    flex-direction: column;
}
.detailedcookie-data {
    background-color: #fafafa;
    outline: 1px solid lightgrey;
    padding: 10px;
    border-radius: 6px;
}
.detailed-data {
    display: flex;
    gap: 10px;
    background-color: white;
    border-radius: 4px;
    margin-bottom: 10px;
    border: 1px solid #e6dede;
}
.detailed-data:last-child {
    margin-bottom: 0;
}
.names ul, .data ul {
    list-style-type: none;
    font-size: 12px;
    color: #525252;
    padding: 0px 10px 10px 10px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.info-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.info-list li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}
.label {
    min-width: 120px;
}
.value {
    flex: 1;
    text-align: left;
}
.gdpr__stickyfoot{
    margin-top: 20px;
    text-align: end;
    position: sticky;
    bottom: -20px;
    width: 100%;
    left: 0;
    padding: 10px 0px;
    background-color: #fff;
}
.gdpr__poweredBy {
    font-size: 12px;
    line-height: 18px;
    text-align: center !important;
    padding: 15px 0;
    cursor: pointer;
}
.space-btw{
    display: flex;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .gdpr-cookie__container {
        max-width: 90%;
        padding: 10px;
    }

    .gdpr-cookie__headline {
        font-size: 18px;
    }

    .gdpr-cookie__txt {
        font-size: 14px;
        padding: 8px 0;
    }

    .gdpr-cookie__content {
        padding: 10px;
    }

    .gdpr-close-btn img {
        width: 20px;
        height: 20px;
    }

    .accept-all-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .gdpr-cookie__container table .row-head th {
        font-size: 14px;
        min-width: unset;
        padding: 12px;
    }

    .gdpr-cookie__container table .row-data td {
        font-size: 14px;
        padding: 12px;
    }

    .gdpr-cookie__container .acceptance-btn {}

    .gdprclick__plugin {}

    .gdprclick__desc {
        font-size: 12px;
    }

    .gdprclick__name {
        width: 100%;
    }
}