/*active*/
.gdpr-settings {
    position: fixed;
    max-width: calc(96.66vw);
    max-height: 60vh;
    overflow-y: scroll;
    margin-bottom: 1rem;
    border-radius: 1px;
    top: auto;
    bottom: 0;
    transform: translate(50%,0);
    right: 50%; 	/*left: 1rem;*/
    opacity: 0;
    padding: 3rem !important;
    z-index: 999;
    transition: all .3s ease;
    box-shadow: 0 0 2em rgb(0,0,0,0.15);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
	background:#252634;
}

.gdpr-settings-sm {
    max-width: 30rem;
    margin-right: 1rem;
}

.gdpr-settings-sm.gdpr-settings-right {
    left: auto;
    right: 1rem;
    margin-right: 0;
    margin-left: 1rem;
}
/*active*/
@media (min-width: 768px) {
    .gdpr-settings {
        max-height: none;
        overflow: auto;
    }
}

.gdpr-settings.dark {
    background-color: #111;
}


.gdpr-container {
    position: relative;
    height: auto;
}

.gdpr-blocked-message {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.gdpr-blocked-message a {
    text-decoration: underline !important;
}

.gdpr-container:not(.gdpr-content-active) {
    min-height: 250px;
}

.gdpr-container.gdpr-content-active {
    min-height: 0 !important;
}

.gdpr-container.gdpr-content-active .gdpr-blocked-message {
    display: none;
}

.gdpr-settings .gdpr-accept{
    background-color: transparent !important;
	border:0px solid transparent !important;
    color: #fff;
    border-radius: 3px;
    display: block;
    height: 100%;
    transition: background-color 0.2s;
	position: relative;
	background: transparent;
	padding: 10px 40px !important;
	font-weight:700;
	text-transform:uppercase;
	cursor:pointer;
}

.gdpr-settings .gdpr-accept:hover{
    background-color: #e4a101;
}
.gdpr-accept:before{
    transform: skewX(-20deg);
	transition: .3s linear;
	content: "";
    position: absolute;
    left: 0;
    top: 0;
	padding: 10px 0;
    height: 100%;
    width: 100%;
    transform: skewX(-10deg);
    z-index: -1;
    right: 0;
    margin: 0 auto;
	background-color: #e4a101;
}
#gdpr-settings *{
	font-family: Poppins, cursive;
	color: #1c1121;
}

#gdpr-close{
    margin-top: 10px;
    padding: 0;
    background-color: transparent;
    color: #ffffff !important;
    border: none;
    transition: color 0.2s;
    text-transform: uppercase;
    font-weight: 700;
}
#gdpr-close:hover{
    color: #E8A302 !important;
	cursor:pointer;
}
.gdpr-settings p {
	margin-bottom: 0 !important;
	color:#ffffff !important;
}
@media (min-width: 992px){
	.gdpr-settings {
        max-width: 1400px !important;
		width:100%;
    }
}