/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.filtered-archive-post {
	margin-bottom: 3rem;
}
.blog-featured-img-container {
	position: relative;
}
.blog-featured-img-container > figure {
	position: absolute;
	top: 0;
	right: 15px;
	bottom: 0;
	left: 15px;
	margin-bottom: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.blog-featured-img-container > figure > a > span:nth-child(2):before, .blog-featured-img-container > figure > a > span:nth-child(2):after {
	position: absolute;
	top: 50%;
	left: 0;
	margin-left: 0;
	margin-top: -3px;
	background-color: white;
	margin-top: -3px;
	content: "";
	height: 6px;
	width: 60px;
	opacity: 0;
	transition: all 0.7s ease;
}
.blog-featured-img-container > figure > a:hover > span:nth-child(2):before, .blog-featured-img-container > figure > a:hover > span:nth-child(2):after {
	opacity: 0.9;
}
.blog-featured-img-container > figure > a > span:nth-child(2):after {
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-mox-transform: rotate(90deg);
}
.blog-featured-img-container > figure > a {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin-bottom: 0;
}
.blog-featured-img-container > figure > a > span:nth-child(1) {
	position: relative;
	top: 50%;
	left: 50%;
	margin-top: -30px;
	margin-left: -30px;
	height: 60px;
  	width: 60px;
}
.blog-featured-img-container > figure > a > span:nth-child(2) {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -30px;
	margin-left: -30px;
	height: 60px;
  	width: 60px;
}

.custom-selection {
	position: relative;
	min-width: 100%;
}

.custom-selection:after {
	content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-left: 2px solid #c9c9c9;
    border-bottom: 2px solid #c9c9c9;
    transform: rotate(-45deg);
    top: 13px;
    right: 10px;
    z-index: 99;
    transition: all 0.5s ease;
    transform-origin: center;
}

.custom-selection select {
	appearance: none;
	/* safari */
	-webkit-appearance: none;
	/* other styles for aesthetics */
	width: 100%;
	font-size: 1.15rem;
	padding: 0.5em 1.5em 0.5em 1em;
	background-color: #fff;
	border: 1px solid #caced1;
	border-radius: 0.25rem;
	color: #000;
	cursor: pointer;
}

.custom-selection select,
.custom-selection select option  {
 	color: #000000;
}

.custom-selection select.invalid,
.custom-selection select option[value=""],
.custom-selection select option[disabled] {
	color: #bbbbbb;
}

input.fm-fields {
	width: 100%;
	font-size: 1.15rem;
	padding: 0.5em 1em 0.5em 1em;
	background-color: #fff;
	border: 1px solid #caced1;
	border-radius: 0.25rem;
	color: #000;
	cursor: pointer;	
}

input.fm-fields::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  	color: #bbbbbb;
  	opacity: 0.8; /* Firefox */
}

input.fm-fields:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #bbbbbb;
}

input.fm-fields::-ms-input-placeholder { /* Microsoft Edge */
  color: #bbbbbb;
}

a.fm-read-more {
    background-color: #e4002b;
    border-color: #e4002b;
    -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 16px;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 1.5;
    display: inline-block;
    font-weight: 400;
    border-radius: 0;
    margin-top: 8px;
    color: #fff;
}
a.fm-read-more:hover, a.fm-read-more:focus {
	color: #ffffff;
}
.fm-posted-on {
	margin-bottom: 0;
}
@media screen and (max-width: 767px){
	.blog-featured-img-container {
		min-height: 300px;
	}
	.blog-featured-img-container > figure {
		margin-bottom: 1rem;
	}
}