/* Required Classes */

.animated{ /* required class that should be added to all scrollbox containers manually to hide them and set up reveal effect */
	visibility: hidden;
}

.animatedvisible{ /* required class dynamically added to scrollbox containers to make them visible */
	visibility: visible;
}

/* Suggested class to style close button inside scroll boxes */

.scrollboxclose{
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 1em;
	width: 25px;
	height: 25px;
	font-size: 20px;
	border-radius: 50%;
	cursor: pointer;
	color: black;
	font-weight: bold;
}

/* Demo classes. Remove/ edit as desired */

#newsletter, #specialoffer{
  width: 300px;
  background: white;
  border: 2px solid #ccc;
	position: fixed;
	right: 10px;
	bottom: 10px;
	background: #F4F3F3;
	box-shadow: 0px 0px 10px 2px gray;
	padding: 15px;
	z-index: 1000;
  -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 5px;
	font-size: 16px;
}

#newsletter h3{
	margin: 0;
	background: darkred;
	color: white;
	transform: rotate(-2deg);
	padding: 5px;
}

#newsletter p{
	margin: 0;
	margin-top: 5px;
	line-height: 1.5;
}

#newsletter input{
	margin-top: 5px;
	width: 90%;
	border: 1px solid black;
	line-height: 2;
}

#newsletter input[type="submit"]{
  font-weight: bold;
}

#specialoffer{
	bottom: auto;
	top: 0;
	left: 0;
	width: 100%;
	padding: 10px;
	border: none;
	color: white;
	font-size: 18px;
	background: orange;
}

#specialoffer button{
	position: absolute;
	right: 30px;
	font-weight: bold;
	width: 100px;
	background: #f4f5a9;
	border: 1px solid black;
	line-height: 2;
  top: 12px;
	box-shadow: 0 0 5px #eee;
}

