#drawCookiesContainer {
	font-family: "Yanone Kaffeesatz", sans-serif;
}
#drawCookies {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    color: #FFF;
    padding: 20px;
	z-index: 999999;
	font-size: 16px;
	line-height: 1.3;
    letter-spacing: 1px;
}
#drawCookiesContainer .drawCookiesPanelDisplay {
    display: none;
}
#drawCookiesContainer #drawCookiesPanel {
    position: fixed;
    z-index: 9999999999;
    background: #FFF;
    max-width: 25rem;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: calc(100vh - 35px);
    box-sizing: border-box;
    margin: 0;
}
#drawCookiesContainer .drawCookiesPanelHeading {
    text-align: center;
    position: relative;
    font-weight: bold;
    padding: 15px 20px;
    border-bottom: 1px solid #EEE;
}
#drawCookiesContainer .drawCookiesPanelHeading .closePanelCookies {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #eee;
    color: #999;
    border-radius: 50%;
    cursor: pointer;
	font-family: cursive;
}
#drawCookiesContainer #drawCookiesOverlay {
    position: fixed;
    background: #000;
    opacity: .6;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999999;
}
#drawCookiesContainer #drawCookiesPanelBody {
    padding: 10px 20px 15px;
}
#drawCookiesPanelBody label {
    font-size: 16px;
    line-height: normal;
    font-weight: bold;
    margin: 0;
	position: relative;
    border: none;
}
#drawCookiesPanelBody .checkbox input {
	visibility: visible;
}
#drawCookiesPanelBody .item-row {
    margin-bottom: 15px;
}
#drawCookiesPanelBody .item-row .checkbox {
	margin: 0;
}
#drawCookiesPanelBody .item-row p {
    margin: 3px 0;
    font-size: 15px;
    color: #6c757d;
	line-height: 1.2;
}
#drawCookiesPanelBody .item-row .more {
	font-size: 12px;
    color: #c00a27;
}

#drawCookies .btn {
	margin-right: 5px;
    background: #ff8d00;
    font-size: 12px;
    text-align: center;
    padding: 8px 15px;
	border-radius: 50px;
	border: none;
	margin-top: 8px;
	background: #FFF;
	color: #7d7d7d;
}
#drawCookies .btn-primary {
	background: #c00a27;
	color: #FFF;
}

#drawCookiesPanel .drawCookiesPanelHeading h5 {
	color: #282f33;
	font-weight: bold;
	margin: 0;
	font-size: 25px;
}
#drawCookiesSave {
	text-align: center;
}
#drawCookiesSave button {
	background: #C00A27;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
}

@media(max-width: 767px) {
	#drawCookies {
		font-size: 14px;
	}
	#drawCookies .btn {
		font-size: 10px;
	}
}