.popup-overlay,
.popup-container {
	position: fixed;
}

.popup-container {
	visibility: visible;
    display: none;
}

@media (min-width:768px) {
    .popup-container {
        display: block;
    }
}
.popup-theme .popup-container,
.popup-theme-default-theme .popup-container {
	padding: 20px;
	border: 3px solid #224575;
	box-shadow: 1px 1px 3px 0px rgba(2, 2, 2, 0.23);
	background-color: #fff;
}

.popup-container.custom-position {
	margin-left: inherit;
}

.popup-overlay,
.popup-overlay ::after,
.popup-overlay ::before,
.popup-overlay::after,
.popup-overlay::before {
	box-sizing: border-box;
}

.popup-container,
.popup-content,
.popup-content + .popup-close,
.popup-content + .popup-close:active,
.popup-content + .popup-close:focus,
.popup-content + .popup-close:hover,
.popup-overlay,
.popup-title {
	background: 0 0;
	background-color: #fff;
	border: none;
	bottom: auto;
	clear: none;
	cursor: default;
	float: none;
	font-family: inherit;
	font-size: medium;
	font-style: normal;
	font-weight: 400;
	letter-spacing: normal;
	line-height: normal;
	max-height: none;
	max-width: none;
	min-height: 0;
	min-width: 0;
	overflow: visible;
	right: auto;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	white-space: normal;
	z-index: 99999750;
}

.popup-theme .popup-content + .popup-close,
.popup-theme-default-theme .popup-content + .popup-close {
	position: absolute;
	height: auto;
	width: auto;
	left: auto;
	right: 0px;
	bottom: auto;
	top: 0px;
	padding: 8px;
	color: #ffffff;
	font-family: inherit;
	font-weight: 400;
	font-size: 12px;
	line-height: 36px;
	border: 1px none #ffffff;
	border-radius: 0px;
	box-shadow: 1px 1px 3px 0px rgba(2, 2, 2, 0.23);
	text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.23);
	background-color: #224575;
}

.popup-container .popup-content + .popup-close {
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	min-width: 1em;
	z-index: 2;
}

.popup-close {
	box-shadow: none !important;
}

.popup-subscribe {
	margin-top: 30px;
}

.popup-title {
	margin-bottom: 23px;
	font-size: 34px;
	line-height: 45px;
	padding: 10px 0 0;
	font-weight: bold;
}

.popup-unten {
	min-height: 20px;
	display: none;
	width: 100%;
	justify-content: center;
	align-items: center;
	background-color: #b7082c;
	color: #fff;
    text-align: center;
    z-index: 999999999999999999999999999;
    box-shadow: -1px -1px 5px 2px rgba(0,0,0,0.79);
    -webkit-box-shadow: -1px -1px 5px 2px rgba(0,0,0,0.79);
    -moz-box-shadow: -1px -1px 5px 2px rgba(0,0,0,0.79);
    font-size: 14px !important;
    line-height: 20px !important;
    left: 0;
}

.popup-unten > p {
    padding: 8px !important;
}

@media (min-width:768px) {
    .popup-unten {
        display: block;
    }
}

.popup-unten-col {
    display: inline-block;
    vertical-align: middle;
    vertical-align: center;
}

.popup-unten-col-1 {
  text-transform: uppercase;
  color: #224575;
  background-color: #fff;
  font-weight: bold;
  padding-top: 10px;
}

.popup-unten-col-1-text-1 {
  font-size: 28px;
}

.popup-unten-col-2 {
  padding-top: 5px;
  font-size: 16px !important;
  line-height: 22px !important;
}

.popup-unten-col-3 {
  padding-top: 5px;
}

.popup-unten-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #224575;
    color: #fff;
    display: block;
    border: 0;
    border-radius: 20px;
    padding: 5px;
    width: 30px;
    height: 30px;
    text-align: center;
}

.popup-unten-button {
  background-color: #fff !important;
  color: #224575 !important;
  font-weight: bold;
  width: 100% !important;
}

.popup-unten-button:hover {
  background-color: #d9d9d9 !important;
  color: #224575 !important;
  font-weight: bold;
}

.reveal {
	position: fixed;
	bottom: 0;
	opacity: 0;
}

.reveal.active {
	opacity: 1;
}

.active.fade-bottom {
	animation: fade-bottom 0.5s ease-in;
}

.active.fade-left {
	animation: fade-left 0.5s ease-in;
}

.active.fade-right {
	animation: fade-right 0.5s ease-in;
}

@keyframes fade-bottom {
	0% {
		transform: translateY(50px);
		opacity: 0;
	}
	
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes fade-left {
	0% {
		transform: translateX(-100px);
		opacity: 0;
	}
	
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes fade-right {
	0% {
		transform: translateX(100px);
		opacity: 0;
	}
	
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}


