/* Cookie Dialog */
#gdpr-cookie-message {
    position: fixed;
    right: 30px;
    bottom: 30px;
    max-width: 575px;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgb(0 0 0 / 25%);
    margin-left: 30px;
    z-index: 9999;
}
#gdpr-cookie-message h4 {
    color: #E83460;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 0px;
    text-transform: uppercase;
}
#gdpr-cookie-message h5 {
    color: #E83460;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
}
#gdpr-cookie-message p, #gdpr-cookie-message ul {
    color: #1c1c1c;
    font-size: 16px;
    line-height: 1.5em;
    margin-top: 0px;
    margin-bottom: 0px;
}
#gdpr-cookie-message p:last-child {
    margin-bottom: 0;
    text-align: right;
}
#gdpr-cookie-message li {
    width: 49%;
    display: inline-block;
}
#gdpr-cookie-message li label, #gdpr-cookie-message li input{
    cursor: pointer;
    font-size: 16px;
}

#gdpr-cookie-message a {
    color: #1c1c1c;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.75);
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message a:hover {
    border-bottom-color: #1c1c1c;
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message button,
button#ihavecookiesBtn {
    border: none;
    background: #7E44A4;;
    color: white;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 8px;
    margin-left: 15px;
    cursor: pointer;
    text-transform: uppercase; 
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message button:hover {
    background: white;
    color: #E83460;
    transition: all 0.3s ease-in;
}
button#gdpr-cookie-advanced {
    background: #868686;
    color: #fff;
}
button#gdpr-cookie-advanced:hover {
    background: #fff;
    color: #868686;
}
#gdpr-cookie-message button:disabled {
    opacity: 0.3;
}
#gdpr-cookie-message button:disabled:hover {
    background: #868686;
    color: #fff;
}
#gdpr-cookie-message input[type="checkbox"] {
    float: none;
    margin-top: 0;
    margin-right: 5px;
}
#gdpr-cookie-message p:nth-last-of-type(1) {
    margin-top: 25px;
}

#gdpr-cookie-message h4 i{
	font-family: 'Font Awesome 5 Free';
	margin-right: 7px;
}

#gdpr-cookie-message h4 i:before{
	font-family: 'Font Awesome 5 Free';
}

@media screen and (max-width: 767px) {
	#gdpr-cookie-message {
	    right: 0px;
	    bottom: 0px;
	    max-width: 100%;
	    margin-left: 0px;
	    box-shadow: 0 0px 6px rgb(0 0 0 / 25%);
	    border-radius: 0px;
	    padding-bottom: 10px;
	}
	
	#gdpr-cookie-message button,
	button#ihavecookiesBtn {
	    margin-bottom: 10px;
	}
	
	#gdpr-cookie-message p, #gdpr-cookie-message ul,#gdpr-cookie-message a {
	    font-size: 12px;
	}
	#gdpr-cookie-message li {
	    width: 100%;
	}
	#gdpr-cookie-message li label
	{
		padding-bottom: 5px;
		padding-top: 5px;
	}
	#gdpr-cookie-message h5 {
	    font-size: 16px;
	    margin-bottom: 7px;
	    margin-top: 10px;
	}
	#gdpr-cookie-message h4 {
    	font-size: 16px;
    }
    #gdpr-cookie-message p:nth-last-of-type(1) {
	    margin-top: 14px;
	}
}