/* Plugin Styles */
.cookie-popup {
    display: none;
    /* position: absolute; */
    position: fixed;
    left: 0;
    z-index: 1000;
    width: 100%;
    background-color: #ffffff;
    color: #000;
    font-family: '359Sans-400_400_wt' !important;
    line-height: initial;
    box-sizing: initial;
}    
.cookie-popup-inner {
    display: table;
    width: 70%;
	margin: 0 15%;
}
.cookie-popup-left {
    display: table-cell;
    vertical-align: middle;
    padding: 15px;
}
.cookie-popup-headline {
    font-size: 20px;
}
.cookie-popup-sub-headline {
    font-size: 14px;
}
.cookie-popup-sub-headline a {
    color: #349f36;
    -webkit-transition: color .3s linear;
    -moz-transition: color .3s linear;
    -ms-transition: color .3s linear;
    -o-transition: color .3s linear;
    transition: color .3s linear;
}
.cookie-popup-sub-headline a:hover {
    color: #414141;
}
.cookie-popup-right {
    display: table-cell;
    vertical-align: middle;
    padding: 10px 15px;
    text-align: right;
}
.cookie-popup-accept-cookies {
    display: block;
    margin: 5px auto;
    width: 185px;
    height: 51px;
    background-color: #349f36;
    border: 1px solid #349f36;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 51px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: background-color .3s linear;
    -moz-transition: background-color .3s linear;
    -ms-transition: background-color .3s linear;
    -o-transition: background-color .3s linear;
    transition: background-color .3s linear;
} 
.cookie-popup-accept-cookies:link,
.cookie-popup-accept-cookies:visited,
.cookie-popup-accept-cookies:active {
    color: #fff;
 }  
.cookie-popup-accept-cookies:hover {
    text-decoration: underline;
    background-color: #fff;
    color: #349f36;
}
.cookie-popup-accept-cookies:active {
    bottom: 0;
    color: #fff;
}
.cookie-popup-learn-more {
    display: block;
    clear: both;
    font-size: 14px;
    margin-top: 5px;
    margin-right: 5px;
    text-decoration: none;
    color: #000;
    opacity: 0.75;
}
.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: 14px;
}


/* Positions */
.cookie-popup.position-bottom {
    /* bottom: 120px; */
    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: 300px;
    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;
}

/* Themes */
.theme-light .cookie-popup { background-color: #fafafa; color: #000; }
.theme-light .cookie-popup-accept-cookies { background-color: #c7c7c7; color: #000; }
.theme-light .cookie-popup-learn-more { color: #000; }

/* Mobile */
@media ( max-width: 1024px ) {
	.cookie-popup-inner {
		margin: 0;
	}
	.cookie-popup-left,
	.cookie-popup-right {
		float: left; 
	}
	.cookie-popup.position-bottom {
		bottom: 0;
	}
}