.gdpr-module {
	position: fixed;
    bottom: 0;
    width: 100%;
	font-size: 12px;
	z-index: 9999;
}
.gdpr-button {
	border: none;
    background-color: rgba(52,58,64,1);
    color: rgb(255,255,255);
	position: absolute;
    bottom: 0;
    left: 10px;
    border-radius: 10px 10px 0 0;
    transition: bottom 1s ease-in;
    outline: none;
}
.gdpr-button.open {
	bottom: -30px;
    transition: bottom 1s ease-out;
}
.gdpr-dashboard {
	border-top: 1px solid rgba(52,58,64,.6);
	position: absolute;
    bottom: 0;
	background-color: rgb(23, 23, 23);
    color: white;
    overflow: hidden;
    transition: bottom 1s ease-out;
    padding: 10px;
}
.gdpr-dashboard.collapsed {
    color: white;
    bottom: -200px;
    overflow: hidden;
    transition: bottom 1s ease-in;
}
.gdpr-actions {
	margin: 0 0 10px;
    text-align: center;
	font-size: 16px;
}
.gdpr-decline {
	outline: none;
	border: none;
    color: rgb(255,255,255);
    cursor: pointer;
    background-color: transparent;
    display: inline-block;
}
.gdpr-decline:hover {
	color: red;
}
.gdpr-accept {
	outline: none;
    background-color: rgb(75, 129, 232);
    border-radius: 3px;
    color: rgb(255,255,255);
    cursor: pointer;
    display: block;
    padding: .4em .8em;
    font-size: .9em;
    font-weight: 700;
    border-width: 2px;
    border-style: solid;
    border: none;
    text-align: center;
    white-space: nowrap;
    display: inline-block;
}
.gdpr-accept:hover {
	background-color: rgb(113, 167, 255);
    color: rgb(0,0,0);
}
