@media (min-width: 640px) {
	.sticky-subscribe .form-group {
		width: calc(50% - 40px);
	}
}

.sticky-subscribe {
	display: none;
    background:#415364;
    padding:30px;
    width:100%;
	position:fixed; 
	bottom:0; 
	left:0;
	color: #fff;
	z-index: 999;
	-webkit-box-shadow: 0px -5px 15px -2px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px -5px 15px -2px rgba(0,0,0,0.5);
	box-shadow: 0px -5px 15px -2px rgba(0,0,0,0.5);
}
.sticky-subscribe .row-nostack {
	flex-direction: row;
	display: flex;
}
.sticky-subscribe-header {
	font-family: 'Georgia', serif;
	font-weight: bold;
	font-size: 24px;
	padding-top: 10px;
}
.sticky-subscribe-text {
	font-family: 'Arial MT STD', Arial, sans-serif;
	font-size: 16px;
	padding-top: 10px;
}
.sticky-subscribe .form-group {
	padding: 10px 20px 0px 0px;
	width: 100%;
}
.sticky-subscribe #country-errors, .sticky-subscribe #email-errors {
	display: inline;
}
.sticky-subscribe #form-submitting {
	color: #fff;
	font-size: 13px;
}
.sticky-subscribe label {
	display:inline;
	font-family: 'Arial MT STD', Arial, sans-serif;
	font-size: 13px;
	color: #fff;
	padding-bottom:5px;
}
.sticky-subscribe label .required {
	color: #e80033;
}
.sticky-subscribe input[type='text'], .sticky-subscribe select {
	border: none;
	background: #fff;
	margin-bottom: 3px;
	padding: 8px;
	border-bottom: #fff 2px solid;
	font-family: 'Arial MT STD', Arial, sans-serif;
	width: 100%;
}
.sticky-subscribe input[type='submit'] {
	width:100%;
	font-family: 'Arial MT STD', Arial, sans-serif;
}
.sticky-subscribe label input {
	display: inline;
	margin-left: 20px;
}
.sticky-subscribe .cta { 
	line-height: 12px; 
}
.sticky-subscribe .parsley-error {
	border: #e80033 2px solid !important;
}
.sticky-subscribe .parsley-errors-list {
	list-style: none;
	float: right;
	margin: 0px;
	padding-left: 0;
}
.sticky-subscribe .parsley-errors-list li {
	font-family: 'Arial MT STD', Arial, sans-serif;
	font-size: 13px;
	color: #e80033;
	margin-bottom: 0;
}
.sticky-subscribe-close {
	position: absolute;
	right: 18px;
	top: 18px;
	width: 18px;
	height: 18px;
	opacity: 0.3;
	cursor: pointer;
  }
  .sticky-subscribe-close:hover {
	opacity: 1;
	cursor: pointer;
  }
  .sticky-subscribe-close:before, .sticky-subscribe-close:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 18px;
	width: 2px;
	background-color: #fff;
  }
  .sticky-subscribe-close:before {
	transform: rotate(45deg);
  }
  .sticky-subscribe-close:after {
	transform: rotate(-45deg);
  }