#kj-cookie-notice {
	padding: 1.5vw 2vw;
	background: #FFF;
}

#kj-cookie-notice h2 {
	margin: 0px;
	font-size: 20px;
	margin-bottom: 15px;
}

#kj-cookie-notice .cookie-accept-deny {
	border-radius: 50%;
	border: 1px solid #444444;
	height: 28px;
	width: 28px;
	display: inline-block;
	padding: 1px 0;
	text-align: center;
	margin-right: 5px;
	float: left;
}

#kj-cookie-notice .cookie-notice-options-row {
	margin: 5px 0px;
}

#kj-cookie-notice .cookie-notice-description {
    border-bottom: 1px solid #dedede;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

#kj-cookie-notice .cookie-accept-deny:hover {
	background: #f1f1f1;
}

#kj-cookie-notice .cookie-accept-deny svg {
	width: 14px;
}

#kj-cookie-notice .cookie-notice-options-row-description {
	display: inline-block;
    vertical-align: top;
    margin-left: 10px;
    float: left;
    width: calc(100% - 76px);
    min-height: 28px;
}

#kj-cookie-notice .cookie-accept-deny.disabled {
	cursor: default;
}

#kj-cookie-notice .cookie-accept-deny.active {
	background-color: #53a713
}

#kj-cookie-notice .cookie-accept-deny.deny.active {
	background-color: #a71313
}

#kj-cookie-notice .cookie-accept-deny.active svg {
	fill: #FFF;
}

#kj-cookie-notice .cookie-accept-deny.deny.disabled {
	background-color: #e2e2e2;
	border-color: #bdbdbd;
}

#kj-cookie-notice .cookie-accept-deny.deny.disabled svg {
	fill: #a5a5a5;
}

#kj-cookie-notice .cookie-notice-options-row:after {
	content: "";
	display: table;
	clear: both;
}

#kj-cookie-notice .cookie-notice-save {
	margin-top: 15px;
}

#kj-cookie-notice .cookie-notice-save button {
	background: #9a9a9a;
    color: #FFF;
    border: 0px;
    padding: 8px 10px;
    font-size: 14px;
    cursor: pointer;
    margin-right: 5px;
}

#kj-cookie-notice .cookie-notice-save button.cookie-notice-save-all-settings {
	background: #47a700;
}

#kj-cookie-notice.style-fixed-top,
#kj-cookie-notice.style-fixed-bottom {
	width: 100%;
    position: fixed;
    z-index: 99999;
}

#kj-cookie-notice.style-fixed-top,
#kj-cookie-notice.style-top {
	top: 0px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

#kj-cookie-notice.style-fixed-bottom {
	bottom: 0px;
	box-shadow: 0px -4px 10px 0px rgba(0, 0, 0, 0.1);
}

#kj-cookie-notice.kj-hide-cookie-options .cookie-notice-options,
#kj-cookie-notice.kj-hide-cookie-options .cookie-notice-save-settings {
	display: none;
}

body.admin-bar #kj-cookie-notice.style-fixed-top {
	top: 32px;
}

#kj-cookie-notice.style-top {
	position: relative;
	z-index: 99999;
}

/* Style popup */

#kj-cookie-notice.style-popup {
	width: 50vw;
	position: absolute;
	z-index: 99999;
	left: calc(50% - 25vw);
	top: 25vh;
	box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.2);
}

body.cookie-notice-loaded.cookie-notice-style-popup:before {
	content: "";
	background: rgba(0,0,0,0.6);
	height: 100vh;
	width: 100vw;
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@media only screen and (max-width: 980px) {

	#kj-cookie-notice {
		padding: 3vw;
	}

}

@media only screen and (max-width: 767px) {
	#kj-cookie-notice.style-popup {
		width: calc(100vw - 50px) !important;
		left: 20px !important;
		bottom: 20px;
		top: inherit;
		position: fixed;
	}
}