

<style>

.asdasdasdasd {	
}

div.cookies_warning {
	position:fixed;
	z-index:5;
	max-width:15%;
	border:2px solid #ccc;
	border-radius:4px;
	background-color:#f9f9d9;
	right:20px;
	bottom:20px;
	padding:5px;
	font-family:calibri, helvetica, arial;
}

div.cookies {
	-webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    -webkit-padding-start: 0;
    -webkit-tap-highlight-color: transparent;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

div.cookies > div.filter {
	animation-name: onetrust-fade-in;
    animation-duration: 400ms;
    animation-timing-function: ease-in-out;
    background: rgba(0,0,0,0.5);
    z-index: 2147483646;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
}

div.cookies > div.main {
	padding: 0;
	position: fixed;
    z-index: 2147483647;
    bottom: 0;
    left: 0;
    color: #ffffff; 
    background-color: #333333; 
	max-width: 410px;
    min-width: 410px;
    height: 100%;
    -webkit-box-shadow: 0px 2px 10px -3px #999;
    -moz-box-shadow: 0px 2px 10px -3px #999;
    box-shadow: 0px 2px 10px -3px #999;
    font-size: .79em;
    line-height: 1.4;
}

div.cookies > div.main > div.content {
	position: absolute;
    overflow-y: scroll;
    padding-right: 10px;
    top: 30px;
    bottom: 20px;
    margin-left: 25px;
    margin-right: 7px;
    width: calc(100% - 42px);
}

div.cookies > div.main > div.content > div {
    max-width: none;
    display: block;
    margin: 0;
    flex-direction: initial;
    width: 100%;
    float: left;
}

div.cookies > div.main > div.content > div:nth-child(2) {
	border-top: 2px solid #ebebeb;
    margin-top: 15px;
    padding-top: 30px;
}

div.cookies button {
	background-color: #D40511;
    border-color: #D40511;
    color: #FFFFFF;
    float: left;
    margin-right: 10px;
    font-size: .9em;
    letter-spacing: .08em;
    margin-top: 19px;
    max-width: 394px;
    padding: 12px 30px;
    line-height: 1.4;
    word-break: break-word;
    word-wrap: break-word;
    white-space: normal;
    font-weight: bold;
    height: auto;
    text-align: center;
    text-decoration: none;
    border-radius: 2px;
    border: 1px solid #bbb;
    cursor: pointer;
    box-sizing: border-box;
}

div.cookies div.cookies_categorie {
	position: relative;
    border-radius: 1px;
    margin: 0;
    padding: 5px;
    border: 1px solid #d8d8d8;
    float: left;
    width: calc(100% - 12px);
    line-height: 1.1;
}

div.cookies div.cookies_categorie .title {
	width: 65%;
}

div.cookies div.toggle_button {
	padding-left: 30px;
	position: absolute;
    top: 25px;
    transform: translateY(-50%);
    right: 16px;
    z-index: 1;
}

div.cookies div.toggle_button input {
	pointer-events: initial;
	position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    display: inline;
}

div.cookies div.toggle_button label {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 25px;
    margin-bottom: 0;
    font-weight: 600;
}

div.cookies div.toggle_button span {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f2f1f1;
    border: 1px solid #ddd;
    transition: all .2s ease-in 0s;
    -moz-transition: all .2s ease-in 0s;
    -o-transition: all .2s ease-in 0s;
    -webkit-transition: all .2s ease-in 0s;
    border-radius: 20px;
}

div.cookies div.toggle_button span::before {
	position: absolute;
    content: "";
    height: 21px;
    width: 21px;
    bottom: 1px;
    background-color: #7d7d7d;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 20px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    box-sizing: border-box;
}

div.cookies div.toggle_button input:checked+label span {
    background-color: #d5e9ff;
    border: 1px solid #3860be;
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all .2s ease-in 0s;
    border-radius: 20px;   
}

div.cookies div.toggle_button input:checked+label span::before {
	-webkit-transform: translateX(21px);
    -ms-transform: translateX(21px);
    transform: translateX(21px);
    background-color: #3860be;
}

</style>