.cookie-popup {
    display: none;
    position: fixed;
    left: 0;
    z-index:99999;
    width: 100%;
    background-color: #fafafa;
    color: #000;
    line-height: initial;
    box-sizing: initial;
}    
.cookie-popup-inner {
    display: table;
    width: 100%;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	background: rgba(0,0,0,0.1);
}
.cookie-popup-left {
    display: table-cell;
    vertical-align: middle;
    padding: 15px;
}
.cookie-popup-headline {
    font-size: 20px;
}
.cookie-popup-sub-headline {
    font-size: 12px;
	line-height: 20px
}
.cookie-popup-right {
    display: table-cell;
    vertical-align: middle;
    padding: 10px 15px;
    text-align: right;
}
.cookie-popup-accept-cookies {
    display: inline-block;
    position: relative;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    line-height: 1.49;
    border-radius: 2px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 5px 18px;
    font-size: 15px;
    min-width: 64px;
    line-height: 1.5;
    border-radius: 2px;
    text-decoration: none;
    color: #000;
    background-color: #c7c7c7;
    border-color: rgba(0,0,0,.1) rgba(0,0,0,.12) rgba(0,0,0,.15);
    box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
}    
.cookie-popup-accept-cookies:hover {
    text-decoration: none;
    color: inherit;
}
.cookie-popup-accept-cookies:active {
    bottom: 0;
    color: initial;
}
.cookie-popup-learn-more {
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 8px 18px;
    font-size: 14px;
    min-width: 64px;
    border-radius: 2px;
    text-decoration: none;
    color: #000;
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(0,0,0,.1) rgba(0,0,0,.12) rgba(0,0,0,.15);
    margin-left: 8px;
}
.cookie-popup-learn-more:hover {
    opacity: 1;
    text-decoration: none;    
}
.cookie-popup-learn-more:active,
.cookie-popup-learn-more:focus {
    text-decoration: none;
}
.cookie-popup-lower {
    padding: 15px;
    font-size: 12px;
    line-height: 20px;
}


/* Positions */
.cookie-popup.position-bottom {
    bottom: 0;
    box-shadow: 0 -4px 6px rgba(50,50,93,.11), 0 -1px 3px rgba(0,0,0,.08);
}
.cookie-popup.position-top {
    top: 0;
    box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
}
.cookie-popup.position-bottomright {
    width: 300px;
    right: 10px;
    bottom: 10px;
    left: inherit;
    box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}
.cookie-popup.position-bottomright .cookie-popup-right {
    width: initial;
}
.cookie-popup.position-bottomleft {
    width: 300px;
    left: 10px;
    bottom: 10px;
    right: inherit;
    box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}
.cookie-popup.position-bottomleft .cookie-popup-right {
    width: initial;
}
.cookie-popup.position-topright {
    width: 320px;
    right: 10px;
    top: 10px;
    left: inherit;
    box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}
.cookie-popup.position-topright .cookie-popup-right {
    width: initial;
}
.cookie-popup.position-topleft {
    width: 300px;
    left: 10px;
    top: 10px;
    box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}
.cookie-popup.position-topleft .cookie-popup-right {
    width: initial;
}
.cookie-popup.position-topleft .cookie-popup-left, .cookie-popup.position-topleft .cookie-popup-right{
	display:block;
	text-align:inherit;
}
.cookie-popup.position-topright .cookie-popup-left, .cookie-popup.position-topright .cookie-popup-right{
	display:block;
	text-align:inherit;
}
.cookie-popup.position-bottomleft .cookie-popup-left, .cookie-popup.position-bottomleft .cookie-popup-right{
	display:block;
	text-align:inherit;
}
.cookie-popup.position-bottomright .cookie-popup-left, .cookie-popup.position-bottomright .cookie-popup-right{
	display:block;
	text-align:inherit;
}
.cookie-popup.position-topleft .cookie-popup-headline, .cookie-popup.position-topright .cookie-popup-headline, .cookie-popup.position-bottomleft .cookie-popup-headline, .cookie-popup.position-bottomright .cookie-popup-headline{
    margin-bottom: 5px;
}
/* Themes */
.theme-light .cookie-popup { background-color: #ffffff; color: #000; }
.theme-light .cookie-popup-accept-cookies { background-color: #fff; color: #000; }
.theme-light .cookie-popup-learn-more { color: #000; }

.theme-dark .cookie-popup { background-color: #272b44; color: #fff; }
.theme-dark .cookie-popup-accept-cookies { background-color: rgb(54, 179, 126); color: #fff; }
.theme-dark .cookie-popup-learn-more { color: #fff; }

.theme-red .cookie-popup { background-color: #ff0000; color: #fff; }
.theme-red .cookie-popup-accept-cookies { background-color: rgba(0,0,0,0.3); color: #fff;  }
.theme-red .cookie-popup-learn-more { color: #fff; }

.theme-pink .cookie-popup { background-color: #f43f86; color: #fff; }
.theme-pink .cookie-popup-accept-cookies {  background-color:rgb(54, 179, 126); color: #fff;  }
.theme-pink .cookie-popup-learn-more { color: #000; color: #fff; }

.theme-purple .cookie-popup{ background-color: #63028f; color: #fff; }
.theme-purple .cookie-popup-accept-cookies {  background-color: rgba(0,0,0,0.3); color: #fff;  }
.theme-purple .cookie-popup-learn-more { color: #fff; }

.theme-deeppurple .cookie-popup { background-color: #7e57c2; color: #fff; }
.theme-deeppurple .cookie-popup-accept-cookies {  background-color: rgba(0,0,0,0.3); color: #fff;  }
.theme-deeppurple .cookie-popup-learn-more { color: #fff; }

.theme-indigo .cookie-popup { background-color: #461f6e; color: #fff; }
.theme-indigo .cookie-popup-accept-cookies {  background-color: rgba(0,0,0,0.3); color: #fff;  }
.theme-indigo .cookie-popup-learn-more { color: #fff; }

.theme-blue .cookie-popup { background-color: #0000fe; color: #fff; }
.theme-blue .cookie-popup-accept-cookies {  background-color: rgba(0,0,0,0.3); color: #fff;  }
.theme-blue .cookie-popup-learn-more { color: #fff; }

.theme-lightblue .cookie-popup { background-color: #29b6f6; color: #000; }
.theme-lightblue .cookie-popup-accept-cookies { background-color: rgba(0,0,0,0.3); color: #fff;  }
.theme-lightblue .cookie-popup-learn-more { color: #000; }

.theme-cyan .cookie-popup { background-color: #08bfe0; color: #000; }
.theme-cyan .cookie-popup-accept-cookies {  background-color: rgba(0,0,0,0.3); color: #fff;  }
.theme-cyan .cookie-popup-learn-more { color: #000; }

.theme-teal .cookie-popup { background-color: #1ea8aa; color: #fff; }
.theme-teal .cookie-popup-accept-cookies {  background-color: rgba(0,0,0,0.3); color: #fff;  }
.theme-teal .cookie-popup-learn-more { color: #000; color: #fff; }

.theme-green .cookie-popup { background-color: #36b37e; color: #000; }
.theme-green .cookie-popup-accept-cookies { background-color: rgba(0,0,0,0.3); color: #fff; }
.theme-green .cookie-popup-learn-more { color: #000; }

.theme-lightgreen .cookie-popup { background-color: #9ccc65; color: #000; }
.theme-lightgreen .cookie-popup-accept-cookies { background-color: rgba(0,0,0,0.3); color: #fff; }
.theme-lightgreen .cookie-popup-learn-more { color: #000; }

.theme-lime .cookie-popup { background-color: #d4e157; color: #000; }
.theme-lime .cookie-popup-accept-cookies { background-color: rgba(0,0,0,0.3); color: #fff; }
.theme-lime .cookie-popup-learn-more { color: #000; }

.theme-yellow .cookie-popup { background-color: #ffaa15; color: #000; }
.theme-yellow .cookie-popup-accept-cookies { background-color: rgba(0,0,0,0.3); color: #fff; }
.theme-yellow .cookie-popup-learn-more { color: #000; }

.theme-amber .cookie-popup { background-color: #ffca28; color: #000; }
.theme-amber .cookie-popup-accept-cookies { background-color: rgba(0,0,0,0.3); color: #fff; }
.theme-amber .cookie-popup-learn-more { color: #000; }

.theme-orange .cookie-popup { background-color: #ff6600; color: #fff; }
.theme-orange .cookie-popup-accept-cookies { background-color: rgba(0,0,0,0.3); color: #fff; }
.theme-orange .cookie-popup-learn-more { color: #000; }

.theme-deeporange .cookie-popup { background-color: #ff7043; color: #fff; }
.theme-deeporange .cookie-popup-accept-cookies { background-color: rgba(0,0,0,0.3); color: #fff; }
.theme-deeporange .cookie-popup-learn-more { color: #fff; }

.theme-brown .cookie-popup { background-color: #8d6e63; color: #fff; }
.theme-brown .cookie-popup-accept-cookies { background-color: rgba(0,0,0,0.3); color: #fff; }
.theme-brown .cookie-popup-learn-more { color: #fff; }

.theme-grey .cookie-popup { background-color: #bdbdbd; color: #000; }
.theme-grey .cookie-popup-accept-cookies { background-color: rgba(0,0,0,0.3); color: #fff; }
.theme-grey .cookie-popup-learn-more { color: #000; }

.theme-bluegrey .cookie-popup { background-color: #272b44; color: #fff; }
.theme-bluegrey .cookie-popup-accept-cookies { background-color: rgba(0,0,0,0.3); color: #fff; }
.theme-bluegrey .cookie-popup-learn-more { color: #fff; }

@media (min-width:600px) and (max-width:680px){
	.cookie-popup-left{
		width:65%;
	}
	.cookie-popup-right{
		width:35%;
	}
}
@media (max-width:480px){
	.cookie-popup-left {
		display: block;
		width:100%;
	}
	.cookie-popup-right{
		display: block;
		width:100%;
		text-align:left;
	}
}