/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 16 paź 2019, 13:02:11
    Author     : Tomek
*/

.wicheckbox{
    color: #999996;
    position: relative;
}
.wicheckbox input{
    opacity:0 !important;
    height:0 !important;
    width: 0 !important;
    position: absolute;
    top:10px;
    left:-12px;
}
.wicheckbox span{
    display: inline-block;
    width:25px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1;
}
.wicheckbox.active span:before{
    content:'';
    position: absolute;
    top:10px;
    left:3px;
    width: 8px;
    height: 8px;
    background: #aed114;
    border-radius: 2px; 
    z-index: 3;
}
.wicheckbox a{
    color: #aed114;
}
.wicheckbox span:after{
    content:'';
    position: absolute;
    top:7px;
    left:0px;
    width: 14px;
    height: 14px;
    background: #e6e4dd;
    border-radius: 2px;
    z-index: 2;
}
#ac_cookie_bar{
    position:fixed;
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 1);
    background-color: #444444;
    /*border:1px solid #F3F3F3;*/
    padding: 10px;
    z-index: 999999;
    bottom:0;
    left:0;
    font-size: 13px;
    right: 0;
    color:#fff;
}
#ac_cookie_bar > div{
    width: 100%;
    max-width: 1200px;
    margin:0 auto;
}
#ac_cookie_bar > div > div{
    display: inline-flex;
    -webkit-align-items: center; /* Safari 7.0+ */
    align-items: center;
    width: 100%;
}
#ac_cookie_bar > div > div > div:nth-of-type(1){
    box-sizing: border-box;
    width: calc(100% - 150px);
}
#ac_cookie_bar > div > div > div:nth-of-type(2){
    box-sizing: border-box;
    padding:5px;
    cursor: pointer;
    width: 140px;
    margin-left:10px;
    text-align: center;
}
#ac_cookie_bar a{
    color:#EC1E38;
    font-weight: 900;
}

#ac_cookie_bar .button_new{
    border:1px solid #ffffff;
    width: 100%;
    display: inline-block;
    text-decoration:none;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    font-weight:400;
    padding: 10px 5px;
}
#ac_cookie_bar .button_new.nomargin{
    margin-bottom: 0px;
}

#ac_cookie_bar .button_new:hover{
    border:1px solid #fff;
    color: #444444;
    background-color: #fff;
}