/* Required Classes */

.animated{ /* required class that should be added to all scrollbox containers manually to hide them and set up reveal effect */
	visibility: visible;
}

.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: 18px;
	border-radius: 50%;
	cursor: pointer;
	color: white;
	background: black;
}

/* Demo classes. Remove/ edit as desired */

#newsletter{
	font-family: 'Open Sans', sans-serif;
	position: fixed;
	right: 0px;
	bottom: 10%;
	background: #e78031;
	padding: 10px 20px;
	z-index: 1000;
  -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color:#FFFFFF;
}
#newsletter h4{
	text-transform: uppercase;
	font-weight: 400;
}

#newsletter p{
	margin: 0;
	margin-top: 5px;
	line-height: 1.5;
	font-weight: 700;
}

#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: #7239c1;
}

#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;
}


