/* CSS */
/* GDPR BANNER */
/* AUTHOR: hyperstud.io */

#gdpr{
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 2000;

    padding: 10px 0px 10px 0px;
    background: #333333;

}

#gdpr .inside{

}

#gdpr .information{
    display: block;
    font-size:0px;
}

#gdpr .text{
    display:inline-block;
    vertical-align: middle;
    width:50%;
    width:calc(100% - 660px);
    max-width:900px;
    color:#fff;
    padding-right:0px;
}

#gdpr .text a,
#gdpr .text a:visited,
#gdpr .text a:hover{
    color:#fff;
    border-bottom:2px solid #fff;
}


#gdpr .bottom{
    position: absolute;
    top:5px;
    right:20px;
    bottom:0px;
    height:30px;
    width:50%;
    width:calc(660px);
    margin:auto 0;
    text-align: right;
}


#gdpr .gdpr_fieldset{
    position: relative;
    display: inline-block;
    vertical-align:middle;
    height:20px;
    width:120px;
    text-align: left;
    top:2px;
}

#gdpr input[type="checkbox"] {
    position: absolute;
    left: -15px;
    opacity: 0;
}

#gdpr input[type="checkbox"]+label:before {
    content: "";
    position: absolute;
    top:0px;
    left:0px;
    width: 10px;
    height: 11px;
    border: 2px solid #fff;
    background: transparent;
}

#gdpr input[type="checkbox"]:checked+label:before {
    background: #fff;
}

#gdpr input[type="checkbox"]+label{
    display: block;
    padding-left:23px;
    cursor: pointer;
    color:#fff;
}


#gdpr .button{
    display: inline-block;
    vertical-align: middle;  
    cursor: pointer;
    line-height:1em;
    width:125px;
    text-align: center;
    background:#fff;
    padding:4px 13px 0px 13px;
    border-radius:7px;
    border: 2px solid #fff;
    position: relative; 
    color:#fff;
    height:25px;    
}

#gdpr .button.save{
    background:transparent;
    border: 2px solid #fff;
}

#gdpr .button.selectall{
    color:#111;
    margin-left:45px;
}



/* iPhone */


@media (min-width:961px) and (max-width: 1400px){



    #gdpr .information{
        min-height:65px;
    }

    #gdpr .text{
        /*width:calc(100% - 580px);*/
        width:calc(100% - 400px);
        max-width:590px;
        position: relative;
        top:10px;
    }

    #gdpr .bottom{
        top:0px;
        /*width:calc(580px);*/
        width:calc(400px);
        height:50px;
    }

    #gdpr .gdpr_fieldset{
        width:100px;

    }

    #gdpr .button.selectall{
        margin-left:20px;
    }


    #gdpr .button{
        width:50%;
        width:calc(50% - 5px);
        margin-top:5px;
    }

    #gdpr .button.save{
        margin-right:10px;
    }

    #gdpr .button.selectall{
        margin-left:0px;
    }

    #gdpr .gdpr_fieldset{
        width: 50%;
        top:0px;
        left: 5px;
    }

}


@media (min-width: 961px){

    #gdpr{
        -webkit-transform:translateY(100%);
        -moz-transform:translateY(100%);
        transform:translateY(100%);

        -webkit-transition: transform 800ms ease;                  
        -moz-transition: transform 800ms ease;                 
        -o-transition: transform 800ms ease;   
        -ms-transition: transform 800ms ease;          
        transition: transform 800ms ease;         
    }

    #gdpr.trans{
        bottom:0px;
        -webkit-transform:translateY(0);
        -moz-transform:translateY(0);
        transform:translateY(0);
    }

}


@media (max-width:961px) { 


    #gdpr {
        top:auto;
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding:20px;
        overflow: hidden;
        display: none;

        padding: 25px 0px 25px 0px;
        border-radius:10px;   
        overflow-y: scroll;   
        -webkit-overflow-scrolling: touch; 
        width:auto;
        height:auto;
        max-height:480px;

    }

    #gdpr.trans{
        display: block;
    }


    #gdpr .text{
        display: block;
        width:auto;
        padding-right:0px;
    }

    #gdpr .bottom{
        position: relative;
        top:auto;
        right:auto;
        display: block;
        width:auto;
        height:auto;
        margin:15px 0 0 0;

    }


    #gdpr .gdpr_fieldset{
        display: inline-block;
        width:50%;
        left: 0px;
    }

    #gdpr .button{
        display: block;
        width:100%;
    }

    #gdpr .button.save{
        margin-top:10px;
    }

    #gdpr .button.selectall{
        margin:10px 0px 0px 0px;
    }



}

@media (max-width: 481px){


}



