#cookie-consents {
    position: fixed;
    right: 50px;
    bottom: 0;
    transition: top .5s;
    text-align: right;
    z-index:999;
    max-width:250px;
}

#cookie-consents .cc-title {
    padding: 15px;
    background: #fff;
    z-index: 100;
    line-height: 1.1;
    margin: 0;
    display: inline-block;
    box-shadow: 0 0 15px -3px rgba(0,0,0,.75);
    cursor: pointer;
    position: relative;
}

#cookie-consents .cc-handle .cc-title {
    padding: 15px;
    background: #fff;
    z-index: 100;
    line-height: 1.1;
    margin: 0;
}

#cookie-consents .cc-handle .cc-title .icon {
    font-size: 24px;
    vertical-align: middle;
}

#cookie-consents .cc-content {
    position: relative;
    transition: box-shadow .5s;
    padding: 15px;
    background: #fff;
    text-align: left;
    box-shadow: 0 0 15px -3px rgba(0,0,0,.75);
}
#cookie-consents.open .cc-content {
    box-shadow: 0 0 15px -3px rgba(0,0,0,.75);
}

#cookie-consents .cc-options li {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

#cookie-consents .cc-options label {
    margin-left: 15px;
}

#cookie-consents .cc-options p {
    margin-top: 5px;
    font-weight: normal;
}

#cookie-consents .cc-option-title {
    font-weight: bold;
}

#cookie-consents .cc-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: text-bottom;
    margin-left: 10px;
}

#cookie-consents .cc-icon img {
    max-width: 100%;
    height: auto;
    display: block;
}

#cookie-consents .cc-link {
    margin-left: 15px;
}

#cookie-consents .cc-footer .btn {
    width: auto;
}

#cookie-consents .cc-footer a {
    text-decoration: underline;
    color: #0290e4;
}



/* OVERRIDES pranayur.nl */
/**** cookie consent ****/
#cookie-consents {
	max-width: 250px;
}

#cookie-consents [type="checkbox"]:not(:checked),
#cookie-consents [type="checkbox"]:checked {
            position: absolute;
            left: -9999px;
        }
#cookie-consents [type="checkbox"]:not(:checked) + label,
#cookie-consents [type="checkbox"]:checked + label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    margin-bottom: 4px;
    display: inline-block;
    font-size: 15px;
}
/* checkbox aspect */
#cookie-consents [type="checkbox"]:not(:checked) + label:before,
#cookie-consents [type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left: -15px; top: 2px;
    width: 22px; height: 22px;
    border: 2px solid #cccccc;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: inset 0 1px 0px rgba(0,0,0,.1);
}

#cookie-consents .cc-title, #cookie-consents .cc-content {
	box-shadow: none;
}
#cookie-consents .cc-title {
	border: 1px solid #ccc;
	border-bottom:0;
	position:relative;
	top:1px;
}
#cookie-consents .cc-content {
	border: 1px solid #ccc;
}
/* checked mark aspect */
#cookie-consents [type="checkbox"]:not(:checked) + label:after,
#cookie-consents [type="checkbox"]:checked + label:after {
    content: '✔';
    position: absolute;
    top: 3px; left: -10px;
    font-size: 20px;
    line-height: 1.2;
    color: #09ad7e;
    transition: all .2s;
}
/* checked mark aspect changes */
#cookie-consents [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0);
}
#cookie-consents [type="checkbox"]:checked + label:after {
    opacity: 1;
    transform: scale(1);
}
/* disabled checkbox */
#cookie-consents [type="checkbox"]:disabled:not(:checked) + label:before,
#cookie-consents [type="checkbox"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #999999;
    background-color: #dddddd;
}
#cookie-consents [type="checkbox"]:disabled:checked + label:after {
    color: #999999;
}
#cookie-consents [type="checkbox"]:disabled + label {
    color: #aaaaaa;
}

#cookie-consents .cc-footer {
	width:100%;
	text-align:center;
}
#cookie-consents .cc-footer .btn {
	width:100%;
}

/* accessibility */
#cookie-consents [type="checkbox"]:checked:focus + label:before,
#cookie-consents [type="checkbox"]:not(:checked):focus + label:before {
    border: 2px dotted #A70E13;
}
/* hover style just for information */
#cookie-consents label:hover:before {
    border: 2px solid #A70E13 !important;
    background: #ffffff
    }