.blocker {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	z-index: 1;
	padding: 20px;
	box-sizing: border-box;
	background-color: rgba(0, 0, 0, .75);
	text-align: center
}

.blocker:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -.05em
}

.blocker.behind {
	background-color: transparent
}

.modal {
	display: none;
	vertical-align: middle;
	position: relative;
	z-index: 2;
	max-width: 500px;
	box-sizing: border-box;
	width: 90%;
	background: #fff;
	padding: 15px 30px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-o-border-radius: 8px;
	-ms-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 0 0 10px #000;
	-moz-box-shadow: 0 0 10px #000;
	-o-box-shadow: 0 0 10px #000;
	-ms-box-shadow: 0 0 10px #000;
	box-shadow: 0 0 10px #000;
	text-align: left
}

.modal a.close-modal {
	position: absolute;
	top: -12.5px;
	right: -12.5px;
	display: block;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==)
}

.modal-spinner {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	padding: 12px 16px;
	border-radius: 5px;
	background-color: #111;
	height: 20px
}

.modal-spinner>div {
	border-radius: 100px;
	background-color: #fff;
	height: 20px;
	width: 2px;
	margin: 0 1px;
	display: inline-block;
	-webkit-animation: 1.2s ease-in-out infinite sk-stretchdelay;
	animation: 1.2s ease-in-out infinite sk-stretchdelay
}

.modal-spinner .rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s
}

.modal-spinner .rect3 {
	-webkit-animation-delay: -1s;
	animation-delay: -1s
}

.modal-spinner .rect4 {
	-webkit-animation-delay: -.9s;
	animation-delay: -.9s
}

@-webkit-keyframes sk-stretchdelay {
	0%,
	100%,
	40% {
		-webkit-transform: scaleY(.5)
	}
	20% {
		-webkit-transform: scaleY(1)
	}
}

@keyframes sk-stretchdelay {
	0%,
	100%,
	40% {
		transform: scaleY(.5);
		-webkit-transform: scaleY(.5)
	}
	20% {
		transform: scaleY(1);
		-webkit-transform: scaleY(1)
	}
}

.hhpt-skel-container {
	position: relative;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box
}

.hhpt-column,
.hhpt-columns {
	width: 100%;
	float: left;
	box-sizing: border-box
}

@media (min-width:400px) {
	.hhpt-skel-container {
		width: 85%;
		padding: 0
	}
}

@media (min-width:768px) {
	.hhpt-skel-container {
		width: 80%
	}
	.hhpt-column,
	.hhpt-columns {
		margin-left: 4%
	}
	.hhpt-column:first-child,
	.hhpt-columns:first-child {
		margin-left: 0
	}
	.hhpt-one.hhpt-column,
	.hhpt-one.hhpt-columns {
		width: 4.66666666667%
	}
	.hhpt-two.hhpt-columns {
		width: 13.3333333333%
	}
	.hhpt-three.hhpt-columns {
		width: 22%
	}
	.hhpt-four.hhpt-columns {
		width: 30.6666666667%
	}
	.hhpt-five.hhpt-columns {
		width: 39.3333333333%
	}
	.hhpt-six.hhpt-columns {
		width: 48%
	}
	.hhpt-seven.hhpt-columns {
		width: 56.6666666667%
	}
	.hhpt-eight.hhpt-columns {
		width: 65.3333333333%
	}
	.hhpt-nine.hhpt-columns {
		width: 74%
	}
	.hhpt-ten.hhpt-columns {
		width: 82.6666666667%
	}
	.hhpt-eleven.hhpt-columns {
		width: 91.3333333333%
	}
	.hhpt-twelve.hhpt-columns {
		width: 100%;
		margin-left: 0
	}
	.hhpt-one-third.hhpt-column {
		width: 30.6666666667%
	}
	.hhpt-two-thirds.hhpt-column {
		width: 65.3333333333%
	}
	.hhpt-one-half.hhpt-column {
		width: 48%
	}
	.hhpt-offset-by-one.hhpt-column,
	.hhpt-offset-by-one.hhpt-columns {
		margin-left: 8.66666666667%
	}
	.hhpt-offset-by-two.hhpt-column,
	.hhpt-offset-by-two.hhpt-columns {
		margin-left: 17.3333333333%
	}
	.hhpt-offset-by-three.hhpt-column,
	.hhpt-offset-by-three.hhpt-columns {
		margin-left: 26%
	}
	.hhpt-offset-by-four.hhpt-column,
	.hhpt-offset-by-four.hhpt-columns {
		margin-left: 34.6666666667%
	}
	.hhpt-offset-by-five.hhpt-column,
	.hhpt-offset-by-five.hhpt-columns {
		margin-left: 43.3333333333%
	}
	.hhpt-offset-by-six.hhpt-column,
	.hhpt-offset-by-six.hhpt-columns {
		margin-left: 52%
	}
	.hhpt-offset-by-seven.hhpt-column,
	.hhpt-offset-by-seven.hhpt-columns {
		margin-left: 60.6666666667%
	}
	.hhpt-offset-by-eight.hhpt-column,
	.hhpt-offset-by-eight.hhpt-columns {
		margin-left: 69.3333333333%
	}
	.hhpt-offset-by-nine.hhpt-column,
	.hhpt-offset-by-nine.hhpt-columns {
		margin-left: 78%
	}
	.hhpt-offset-by-ten.hhpt-column,
	.hhpt-offset-by-ten.hhpt-columns {
		margin-left: 86.6666666667%
	}
	.hhpt-offset-by-eleven.hhpt-column,
	.hhpt-offset-by-eleven.hhpt-columns {
		margin-left: 95.3333333333%
	}
	.hhpt-offset-by-one-third.hhpt-column,
	.hhpt-offset-by-one-third.hhpt-columns {
		margin-left: 34.6666666667%
	}
	.hhpt-offset-by-two-thirds.hhpt-column,
	.hhpt-offset-by-two-thirds.hhpt-columns {
		margin-left: 69.3333333333%
	}
	.hhpt-offset-by-one-half.hhpt-column,
	.hhpt-offset-by-one-half.hhpt-columns {
		margin-left: 52%
	}
}

.hhpt-row:after,
.hhpt-skel-container:after,
.hhpt-u-cf {
	content: "";
	display: table;
	clear: both
}