﻿/* Info-Box Popup CSS*/

/* *, *:before, *:after { margin: 0; padding: 0; box-sizing: border-box; } */
/* Styling the Popup Window */
.blinking {
  font-weight: 100;
  font-size: 14px;
  color: #ff0000;
  font-weight:900;
  -webkit-animation: 2s blink step-end infinite;
  -moz-animation: 2s blink step-end infinite;
  -ms-animation: 2s blink step-end infinite;
  -o-animation: 2s blink step-end infinite;
  animation: 2s blink step-end infinite;
}
@keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: #ff6600;
  }
}
@-moz-keyframes blink {
  from, to {
    color: transparent;
  }
  50% {
    color: #ff6600;
  }
}
@-webkit-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: #ff6600;
  }
}
@-ms-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: #ff6600;
  }
}
@-o-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: #ff6600;
  }
}
.popup {
	/* display: none; */
	position: absolute; 
	top: 60px; 
	left: 50%; 
	width: 300px; 
	margin-left: -150px; 
	padding: 10px;
	background: #ffffff; 
	z-index: 2000;
}
.popup-mobile {
	position: relative; 
	top: 0; left: 0; 
	margin: 30px 0 0; 
	width: 100%;
}		
.popup-btn-close {
	position: absolute; 
	top: 12px; 
	right: 14px; 
	color: #ffffff; 
	cursor: pointer;
	z-index:2500;
}	

.infoBoxText {
	font-size:14px;
	padding-top: 8px;
	text-align: center;
}
.infoBoxTextXmas {
	font-size:14px;
	padding-top: 8px;
	text-align: left;
}
.fixedbox {
	background: white;
	border:3px solid #FF6600;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(0,0,0,0.4);
}
.fixedboxXmas {
	background: white url('../images/uploads/baum.webp') no-repeat bottom right;
	border:3px solid #C0392B;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(0,0,0,0.4);
}
.fixedboxCorona {
	background: white url('../images/uploads/corona.webp') no-repeat bottom right;
	border:3px solid #FF6600;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(0,0,0,0.4);
}
.fixedboxValentine {
	background: white url('../images/uploads/valentine.webp') no-repeat bottom left;
	border:3px solid #8BD023;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(0,0,0,0.4);
}
.highlightHeadCell {
	font-family: "Lato",sans-serif;
	font-weight: 900;
	font-size: 16pt;
	color: #FFF;
	background-color: #FF6600;
	padding: 8px;
	text-align: center;
	vertical-align: top;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.highlightHeadCellXmas {
	font-family: "Lato",sans-serif;
	font-weight: 900;
	font-size: 16pt;
	color: #FFF;
	background-color: #C0392B;
	padding: 8px;
	text-align: center;
	vertical-align: top;
}
.highlightHeadCellValentine {
	font-family: "Lato",sans-serif;
	font-weight: 900;
	font-size: 16pt;
	color: #FFF;
	background-color: #8BD023;
	padding: 8px;
	text-align: center;
	vertical-align: top;
}
