@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/*************** Globals ***************/
.bsCnCookieWrp {
    --cn-primary-color: #188600;
    --cn-green-color: #62b570;
    --cn-black-color: #000000;
    --cn-white-color: #ffffff;
    --cn-dark-color: #333333;
    --cn-dark-alt-color: #2a2a2a;
    --cn-gray-color: #cccccc;
    --cn-gray-alt-color: #f6f6f9;
    --cn-fz-small-12: 12px;
    --cn-fz-small-13: 13px;
    --cn-fz-small-14: 14px;
    --cn-fz-medium-16: 16px;
    --cn-fz-large-18: 18px;
    --cn-fw-400: 400;
    --cn-fw-500: 500;
    --cn-fw-600: 600;
    --cn-fw-700: 700;
    --cn-font-family: 'Poppins', sans-serif;

    font-family: var(--cn-font-family);
    font-size: var(--cn-fz-medium-16);
    color: var(--cn-dark-alt-color);
}
.bsCnPrimaryText {
    color: var(--cn-primary-color);
}
.bsCnWhiteText {
    color: var(--cn-white-color);    
}
.bsCnBlackText {
    color: var(--cn-black-color);
}
.bsCnDarkText {
    color: var(--cn-dark-color);
}
.bsCnDarkAltText {
    color: var(--cn-dark-alt-color);
}
.bsCnBgPrimary {
    background: var(--cn-primary-color);
}
.bsCnBgGreen {
    background: var(--cn-green-color);
}
.bsCnBgWhite {
    background: var(--cn-white-color);    
}
.bsCnBgBlack {
    background: var(--cn-black-color);
}
.bsCnBgDark {
    background: var(--cn-dark-color);
}
.bsCnBgDarkAlt {
    background: var(--cn-dark-alt-color);
}
.bsCnContainerW100 {
    width: 100%;
}
.bsCnContainerFw {
    width: 95%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 15px 10px;
    box-shadow: 2px 2px 14px 2px #121212;
    background: var(--cn-white-color);
}

.dmpCookieHeader{
    display: flex;
    border-bottom: 2px solid;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.dmpCookieHeader .dmpCookieHeaderLogo img{
    width: 200px;
}
.bsCnFlexWrp {
    display: flex;
}
.bsCnFlexWrapOn {
    flex-wrap: wrap;
}
.bsCnCheckBoxField {
    padding: 5px 10px;
    gap: 15px;
}
/*
.bsCnCheckBoxField input {
    display: none;
}
.bsCnCheckBoxField label {
    position: relative;
    padding-left: 20px;
    font-weight: var(--cn-fw-700);
    display: inline-block;
    line-height: 1.3em;
    cursor: pointer;
    margin: 0;
    color: var(--cn-dark-alt-color);
}
.bsCnCheckBoxField label input + span::before {
    content: "";
    display: inline-block;
    vertical-align: text-top;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 2px;
    left: 0;
    border: 1px solid var(--cn-gray-color);
}
.bsCnCheckBoxField label input:checked + span::before {
    background: var(--cn-white-color);
}
.bsCnCheckBoxField label input:checked + span::after {
    content: "";
    position: absolute;
    left: 2px;
    top: 4px;
    width: 4px;
    height: 4px;
    transform: rotate(45deg);
    box-shadow: 3px 0 0 var(--cn-primary-color), 6px 0 0 var(--cn-primary-color), 6px -3px 0 var(--cn-primary-color), 6px -6px 0 var(--cn-primary-color), 6px -6px 0 var(--cn-primary-color), 6px -10px 0 var(--cn-primary-color);
    background: var(--cn-primary-color);
}
.bsCnCheckBoxField label input + span {
    display: inline-block;
}
.bsCnCheckBoxField label input:checked:disabled + span::after {
    box-shadow: 3px 0 0 var(--cn-gray-color), 6px 0 0 var(--cn-gray-color), 6px -3px 0 var(--cn-gray-color), 6px -6px 0 var(--cn-gray-color), 6px -6px 0 var(--cn-gray-color), 6px -10px 0 var(--cn-gray-color);
    background: var(--cn-gray-color);
}
 */

/*************** Cookie Consent ***************/
#bsCnCookieModalOverlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    user-select: none;
    background: rgba(0, 0, 0, 0.7);
}
.bsCnCookieWrp {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 100%;
    z-index: 200000;
    transform: translate(-50%, -50%);
    max-height: 98%;
    overflow: auto;
}
.bsCnCookieCustomizeableSection {
    margin-top: 10px;
}
.bsCnCookieContentControls {
    border: 1px solid var(--cn-gray-color);
    padding: 20px 0;
}
.bsCnCookieContentRow {
    gap: 20px;
    margin-bottom: 15px;
}
.bsCnCookieContentRow .bsCnCookieContent .bsCnCookieContentTitle {
    font-size: var(--cn-fz-medium-16);
    font-weight: var(--cn-fw-700);
    margin: 0 0 6px;
}
.bsCnCookieContentRow .bsCnCookieContent .bsCnDisabledCheckBoxMessage {
    padding: 5px 5px 5px 30px;
    margin-top: 10px;
    position: relative;
    font-weight: var(--cn-fw-400);
    background: #EF665B;
    color: var(--cn-white-color);
}
.bsCnCookieContentRow .bsCnCookieContent .bsCnDisabledCheckBoxMessage::before {
    content: '\0021';
    height: 20px;
    width: 20px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute; 
    top: 5px;
    left: 5px;
    background: rgba(0,0,0,0.2);
}
.bsCnCookieContentRow .bsCnCookieContent .bsCnCookieContentText p {
    margin: 0;
}
.bsCnCookieContentRow .bsCnCookieContent .bsCnCookieContentText a {
    display: inline-block;
    text-decoration: underline;
}
.bsCnCookieSelectionBtnGroupWrp {
    gap: 10px;
}
.bsCnCookieSelectionBtnGroupWrp .bsCnCookieSelectionBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    cursor: pointer;
    flex: 1;
}
.bsCnPannelWrp {
    padding: 10px 0 0;
}
.bsCnPannelBtn {
    min-width: 120px;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: var(--cn-fw-600);
    line-height: 1.3em;
    border-left: 1px solid var(--cn-gray-color);
    color: var(--cn-dark-color) !important;
    border-color: var(--cn-gray-color) !important;
    background-color: var(--cn-gray-alt-color) !important;
}
.bsCnPannelBtn:hover,
.bsCnPannelBtn:active,
.bsCnPannelBtn:focus {
    outline: 0;
    color: var(--cn-dark-color) !important;
    background-color: var(--cn-gray-alt-color) !important;
}
.bsCnTabList {
    display: flex;
}
.bsCookieHeaderList{}
.bsCookieItemList{}
.bsCnTabItem {
    font-weight: var(--cn-fw-600);
    cursor: pointer;
    padding: 8px 16px;
    color: var(--cn-dark-color);
    background: var(--cn-gray-alt-color);
    border: 1px solid var(--cn-gray-color);
}
.bsCnTabItem:not(:first-child) {
    margin-left: -1px;
}
.bsCnTabItem:hover,
.bsCnTabItem.isActive {
    background: var(--cn-white-color);
}
.bsCnTabItem.isActive {
    border-bottom-color: var(--cn-white-color);
}
.bsCnTabContent {
    margin-top: -1px;
    border: 1px solid var(--cn-gray-color);
}
.bsCnTabContent .bsCnTabContent{
    padding: 20px 10px;
}
.bsCnTabContentItem {
  display: none;
}
.bsCnTabContentItem.isActive {
  display: block;
  padding: 15px;
}
.bsCnTabContentItem.bsCnTab.bsCnVerticalTab.isActive {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}
.bsCnTabContentItem.bsCnTab.bsCnVerticalTab.isActive .bsCnTabList {
    flex-direction: column;
    width: 180px;
}
.bsCnTabContentItem.bsCnTab.bsCnVerticalTab .bsCnTabList .bsCnTabItem {
    border: 0;
    border-bottom: 1px solid var(--cn-gray-color);
    border-right: 1px solid var(--cn-gray-color);
    margin: 0;
    text-align: left;
}
.bsCnTabContentItem.bsCnTab.bsCnVerticalTab .bsCnTabList .bsCnTabItem.isActive {
    border-right: 0;
}
.bsCnTabContentItem.bsCnTab.bsCnVerticalTab .bsCnTabList .bsCnTabItem:last-child {
    border-bottom: 0;
}
.bsCnTabContentItem.bsCnTab.bsCnVerticalTab .bsCnTabList .bsCnTabContent {
    border-left: 0;
}
.bsCnTabContentItem.bsCnTab.bsCnVerticalTab .bsCnTabContent {
    flex: 1;
    border: 0;
}
.bsCnTabContentItem.bsCnTab.bsCnVerticalTab .bsCnTabContent .bsCnTabContentItem {
    padding: 10px;
    max-height: 168px;
    overflow-y: auto;
}
.bsCnTabContentItem .bsCnTabContentTitle {
    font-weight: var(--cn-fw-600);
    margin: 0 0 5px;
    color: var(--cn-black-color);
}
.bsCnTabContentItem p {
    /*
    line-height: 1.3em;
    color: var(--cn-dark-alt-color);
    margin-top: 0;*/
}
.bsCnTabsWrp + .bsCnCookieSelectionBtnGroupWrp {
    margin-top: 10px;
}
.bsCnTable {
   border-collapse: collapse;
   border-spacing: 0;
   border: 1px solid #cccccc;
   margin: 8px 0 0;
   padding: 0;
   width: 100%; 
}
.bsCnTable thead tr,
.bsCnTable tbody tr {
    border: 0;
}
.bsCnTable tbody tr {
    border-top: 1px solid #cccccc;
}
.bsCnTable thead tr th:not(:last-child),
.bsCnTable tbody tr td:not(:last-child) {
    border-right: 1px solid #cccccc;
}
.bsCnTable th,
.bsCnTable td {
    background-color: #f6f6f9!important;
    border-bottom: 1px solid #cccccc;
    color: #2a2a2a!important;
    padding: 2px;
    text-align: left;
    vertical-align: top;
    line-height: 1.3em;
    word-break: break-word;
}
.bsCnTable th {
    font-weight: var(--cn-fw-600);
}
.bsCnTable td {
    color: #2a2a2a!important;
    font-weight: var(--cn-fw-400);
    max-width: 72px;
    overflow: hidden;
    padding: 4px;
    text-align: left;
    vertical-align: top;
}
.bsCnPannelWrp + .bsCnCookieSelectionBtnGroupWrp {
    margin-top: 10px;
}



/* Switch Container */
.dmpCookieSwitch {
    display: flex;
    align-items: center;
}

/* Hide default checkbox */
.dmpCookieSwitch input {
    display: none;
}

/* Create the slider (background) */
.dmpCookieSlider {
    position: relative;
    width: 50px;
    height: 24px;
    background-color: #ccc;
    border-radius: 34px;
    transition: 0.4s;
}

/* Create the toggle circle inside the slider */
.dmpCookieSlider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
}

/* Checkbox checked - move the slider */
.dmpCookieSwitch input:checked + .dmpCookieSlider {
    background-color: #4caf50;
}

/* Move the toggle circle when checked */
.dmpCookieSwitch input:checked + .dmpCookieSlider:before {
    transform: translateX(26px);
}

/* Disable the toggle switch */
.dmpCookieSwitch input:disabled + .dmpCookieSlider {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Label text beside the switch */
.dmpCookieLabelText {
    margin-left: 10px;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .bsCnCookieSelectionBtnGroupWrp .bsCnCookieSelectionBtn{
        flex: auto;
    }
    .dmpCookieSwitch{
        margin-bottom: 5px;
        width: 100%;
    }
    .bsCnTabContentItem.bsCnTab.bsCnVerticalTab.isActive .bsCnTabList{
        margin-top: 20px;
    }

    .bsCookieHeaderList.bsCnTabList .bsCnTabItem{
        flex: 1;
        font-size: var(--cn-fz-small-14);
        padding: 5px;
        text-align: center;
    }
    .bsCookieItemList.bsCnTabList {
        width: 100% !important;
        flex-direction: row !important;
    }
    .bsCookieItemList.bsCnTabList .bsCnTabItem{
        flex: 1;
        padding: 5px !important;
        border: 1px solid var(--cn-gray-color) !important;
        text-align: center !important;
    }
    .bsCookieItemList.bsCnTabList .bsCnTabItem.isActive{
        border-bottom: none !important;
    }
    .bsCnTabContentItem.bsCnTab.bsCnVerticalTab .bsCnTabContent .bsCnTabContentItem{
        max-height: initial;
        overflow: hidden;
        padding: 0;
    }

    /* Hide table headers */
    .bsCnTable thead {
        display: none;
    }

    /* Stack the table rows and add the respective column label */
    .bsCnTable tr {
        display: block;
        margin-bottom: 10px;
        border-bottom: 2px solid #ddd;
    }

    .bsCnTable td {
        display: block;
        text-align: right;
        position: relative;
        padding-left: 30%;
        border: none;
        border-bottom: 1px solid #ddd;
        max-width: initial;
        font-size: var(--cn-fz-small-12);
    }

    .bsCnTable td:before {
        content: attr(data-label);
        position: absolute;
        left: 5px;
        width: 50%;
        font-weight: bold;
        text-align: left;
    }

    .bsCnTable td:last-child {
        border-bottom: 0;
    }
}

@media screen and (max-width: 640px) {
    .bsCnCheckBoxField {
        flex-wrap: wrap;
        gap: 5px;
    }
    .bsCnCookieContentControls {
        align-items: stretch;
    }
    .bsCnPannelBtn {
        min-width: 80px;
    }
}