﻿body {
   
}

#cookieOptInModal {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    line-height: 28px;
    /*    font-family: Arial,sans-serif;
    font-size: 13px;
    line-height: 18px;*/
    /*letter-spacing: -0.02pt;*/
}

.cookieOptInHeadline {
    padding-bottom: 13px;
}

.cookieOptInHidden {
    display:none;
}

.cookieOptInFloatLeft {
    float:left;
}
.cookieOptInFloatRight {
    float:right;
}

.cookieOptInClearFix {
    overflow: auto;
}

.cookieOptInMt-1 {
    margin-top:20px;
}

.cookieOptInMB-1 {
    margin-top: 20px;
}

.cookieOptInBTMain, .cookieOptInBTMain:active, .cookieOptInBTSub, .cookieOptInBTSub:active {
    display: inline-flex;
    padding: 16px 14px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    /*    border: 1px solid var(--special-stroke-1);*/
    background: var(--basic-white);
    /* Button Shadow 1 */
    border: none;
    box-shadow: 0px 4px 0px 0px #9C9C9C;
    color: var(--primary-printec-blue);
    font-family: "Nunito Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    transition: all .6s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin: 0 0 0 0;
    text-decoration: none;
    position: relative;
    /*min-width: 129px;*/
    box-sizing: content-box;
    width: 100%;
    box-sizing: border-box;
}

.cookieOptInBTMain:before {
    content: '';
    position: absolute;
    display: block;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    border-radius: 12px;
    border: 1px solid var(--special-stroke-1);
    pointer-events: none;
    background-color: transparent;
}

    .cookieOptInBTMain:hover {
        transform: translateY(4px);
        box-shadow: 0px 0px 0px 0px #444;
        color: var(--primary-printec-blue);
        background: var(--basic-white);
    }

        .cookieOptInBTMain:hover:before {
            border: 2px solid var(--primary-printec-blue);
        }

.cookieOptInBTMain {
    /*border: 1px solid var(--primary-printec-blue);
    
    background-color: var(--primary-printec-blue);*/ /*#0056a4;*/
    /*color: white;*/
}

/*    .cookieOptInBTMain:hover {
        color:#eeeeee;
    }*/

    .cookieOptInBTSub {
        border: 1px solid #cdcdcd;
        background-color: #ffffff;
        color: #202020;
    }

.cookieOptInBTSub:hover {
    color: #666;
}









.cookieOptInViewDetailBrowser {
    border: 1px solid #c0c0c0;
    width:100%;
    height:auto;
    padding-bottom:10px;

}

.cookieOptInAccordion {

   background-color: #EEEEEE;
   padding:6px 5px 5px 5px;
   font-size:18px;
   margin:10px 10px 0 10px; 
}

.cookieOptInAccordion > div {
    width:75%;
    display:block;
    float:left;
}

    .cookieOptInAccordion > button,
    .cookieOptInAccordion > button:hover,
    .cookieOptInAccordion > button:active,
    .cookieOptInAccordion > button:focus,
    .cookieOptInAccordion > button:visited {
        width: 35px;
        box-sizing: border-box;
        border: 1px solid #EEEEEE;
        background-color: #EEEEEE;
        display: block;
        float: right;
        font-weight: bold;
        line-height: 20px;
        display: block;
        padding-top: 4px;
        outline: none;
        font-size: 28px;
        color: var(--primary-printec-blue);
        /*margin: 0 auto;*/
    }


.cookieOptInAccordionPlus:after {
    content: "+";
}

.cookieOptInAccordionMinus:after {
    content: "–";
}



/* ####################################### Custom Checkbox Category  ####################################### */

.cookieOptCheckcontainer {
    display: block;
    position: relative;
    padding-left: 28px;
    margin-bottom: 3px;
    margin-top: 3px;
    margin-left:3px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
    .cookieOptCheckcontainer[disabled] {
        color: var(--basic-3) !important;
    }


    /* Hide the browser's default checkbox */
    .cookieOptCheckcontainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }




.cookieOptCheckCheckmark {
    position: absolute;
    top: 4px;
    left: 0;
    border: 2px solid var(--primary-printec-blue);
    width: 20px;
    height: 20px;
    margin-top: 0;
    background-color: #FFF;
    border-radius: 4px;
    flex-shrink: 0;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    .cookieOptCheckCheckmark:active {
        filter: brightness(90%);
    }

.cookieOptCheckcontainer input:checked ~ .cookieOptCheckCheckmark {
    background-color: var(--primary-printec-blue);
    border-color: var(--primary-printec-blue);

}

.cookieOptCheckcontainer[disabled] > span {
    background-color: #cccccc !important;
    border-color: var(--special-stroke-1) !important;
}

/* On mouse-over, add a grey background color */
/*.cookieOptCheckcontainer:hover input ~ .cookieOptCheckCheckmark {
    background-color: ;
}*/

/* When the checkbox is checked, add a blue background */
/*.cookieOptCheckcontainer input:checked ~ .cookieOptCheckCheckmark {
    background-color: var(--primary-printec-blue);
}*/

/* Create the checkmark/indicator (hidden when not checked) */
.cookieOptCheckCheckmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.cookieOptCheckcontainer input:checked ~ .cookieOptCheckCheckmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.cookieOptCheckcontainer .cookieOptCheckCheckmark:after {
/*    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);*/
position: absolute;
    top: -1px;
    left: -1px;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8" standalone="no" %3F><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="12.7272" height="9.4727" viewBox="0 0 12.7272 9.4727" xml:space="preserve"><desc>Created with Fabric.js 5.3.0</desc><defs></defs><g transform="matrix(1 0 0 1 6.363615 4.73635)" id="sWueiAIbtfMkIlQQ177JO" ><path style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(255,255,255); fill-rule: evenodd; opacity: 1;" transform=" translate(0, 0)" d="M -6.36362 0.19095 L -1.8181599999999998 4.73635 L 6.36361 -3.4454399999999996 L 5.081810000000001 -4.73635 L -1.8181599999999989 2.1636500000000005 L -5.081799999999999 -1.0908999999999995 z" stroke-linecap="round" /></g><g transform="matrix(1 0 0 1 4.1348229497 10.0229621125)" id="7Dj4A2SnoxrYTBMh0bSO_" ><path style="stroke: rgb(0,0,0); stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(255,255,255); fill-opacity: 0; fill-rule: nonzero; opacity: 1;" transform=" translate(0, 0)" d="M 0 0" stroke-linecap="round" /></g><g transform="matrix(1 0 0 1 24.1348229497 30.0229621125)" id="yPpp5-ighAQImcmT75_B_" ><path style="stroke: rgb(0,0,0); stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(255,255,255); fill-opacity: 0; fill-rule: nonzero; opacity: 1;" transform=" translate(0, 0)" d="M 0 0" stroke-linecap="round" /></g></svg>');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
}




.cookieOptCheckCheckmarkTristate > span {
    background-color: var(--primary-printec-blue);
}



    .cookieOptCheckCheckmarkTristate > span > span {
        position: relative;
        color: #fff;
        font-size: 16px;
        left: 6px;
        top: -6px;
        font-weight: bold;
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg);
        display: inline !important;
    }


/* ******************************* Custom Checkbox Cookie Item  ************************************************************************* */


.cookieOptCheckContainerItem {
    display: block;
    position: relative;
    padding-left: 26px;
    margin-bottom: 3px;
    margin-top: 3px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .cookieOptCheckContainerItem[disabled] {
        color: var(--basic-3) !important;
    }


    /* Hide the browser's default checkbox */
    .cookieOptCheckContainerItem input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }



.cookieOptCheckCheckmarkItem {
    position: absolute;
    top: 3px;
    left: 0;
    border: 2px solid var(--primary-printec-blue);
    width: 20px;
    height: 20px;
    margin-top: 0;
    background-color: #FFF;
    border-radius: 4px;
    flex-shrink: 0;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* On mouse-over, add a grey background color */
/*.cookieOptCheckContainerItem:hover input ~ .cookieOptCheckCheckmarkItem {
    background-color: var(--primary-printec-blue);
}*/

/* When the checkbox is checked, add a blue background */
.cookieOptCheckContainerItem input:checked ~ .cookieOptCheckCheckmarkItem {
    background-color: var(--primary-printec-blue);
}

/* Create the checkmark/indicator (hidden when not checked) */
.cookieOptCheckCheckmarkItem:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.cookieOptCheckContainerItem input:checked ~ .cookieOptCheckCheckmarkItem:after {
    display: block;
}

/* Style the checkmark/indicator */
.cookieOptCheckContainerItem .cookieOptCheckCheckmarkItem:after {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8" standalone="no" %3F><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="12.7272" height="9.4727" viewBox="0 0 12.7272 9.4727" xml:space="preserve"><desc>Created with Fabric.js 5.3.0</desc><defs></defs><g transform="matrix(1 0 0 1 6.363615 4.73635)" id="sWueiAIbtfMkIlQQ177JO" ><path style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(255,255,255); fill-rule: evenodd; opacity: 1;" transform=" translate(0, 0)" d="M -6.36362 0.19095 L -1.8181599999999998 4.73635 L 6.36361 -3.4454399999999996 L 5.081810000000001 -4.73635 L -1.8181599999999989 2.1636500000000005 L -5.081799999999999 -1.0908999999999995 z" stroke-linecap="round" /></g><g transform="matrix(1 0 0 1 4.1348229497 10.0229621125)" id="7Dj4A2SnoxrYTBMh0bSO_" ><path style="stroke: rgb(0,0,0); stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(255,255,255); fill-opacity: 0; fill-rule: nonzero; opacity: 1;" transform=" translate(0, 0)" d="M 0 0" stroke-linecap="round" /></g><g transform="matrix(1 0 0 1 24.1348229497 30.0229621125)" id="yPpp5-ighAQImcmT75_B_" ><path style="stroke: rgb(0,0,0); stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(255,255,255); fill-opacity: 0; fill-rule: nonzero; opacity: 1;" transform=" translate(0, 0)" d="M 0 0" stroke-linecap="round" /></g></svg>');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
}

.cookieOptCheckCheckmarkItem > span {
    background-color: var(--primary-printec-blue);
}

.cookieOptCheckContainerItem[disabled] > span {
    background-color: #cccccc !important;
    border-color: var(--special-stroke-1) !important;
}




.cookieOptCheckContainerDivItem {
    padding: 0 20px 20px 27px;
    overflow: hidden;
    display:none;
    transition: max-height 0.4s ease-out;
}

.cookieOptCheckContainerDivItem > div {
    margin: 12px 0 5px;
}


#cookieOptInModalContent {
    /* Modal Content/Box */
    background-color: #f9f9f9;
    /* margin: 15% auto; */ /* 15% from the top and centered */
    padding: 30px;
    border: 1px solid #bebebe;
    width: 90%; /* Could be more or less, depending on screen size */
    margin: 5%;
    min-height: 100px;
    box-sizing: border-box;
    border-radius: 12px;
    box-shadow: 0px 6px 0px 0px rgba(0, 0, 0, 0.25);
    min-height: 450px;
}


#cookieOptInModal {
    z-index: 100000;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: scroll;
    -webkit-overflow-scrolling:touch;
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    
}


    @media only screen and (min-height: 600px) {

        #cookieOptInModal {

        }

        .cookieOptInViewDetailBrowser {
            height: 300px;
            overflow-y: scroll;
        }
        
        
        #cookieOptInModalContent {
            margin:0;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            max-width: 450px;
        }
    }

.noIframecontent {
/*    font-family:Arial;
    font-size:12px;*/
    padding:10px;
    border: 1px solid #f0f0f0;
    margin:10px;
}

/* V2 */
.cookieOptInFloatRightMargin {
    margin-top: 4px;
    margin-bottom: 10px;
    width: 100%;
}

.cookieOptInFooter {
    /*    padding-top: 11px;
    font-size: 9px;*/
    text-align: center;
    padding: 25px 0 0px 0px;
}


@media only screen and (max-width: 480px) {
    .cookieOptInResBT{
        width: 100%;
    }

        .cookieOptInResBT + .cookieOptInResBT{
            margin-top: 13px;
        }
}