/* ---- Breakpoints ---- */

/* BP 5 */
@media screen and (min-width: 500px) {

}

/* BP 4 */
@media screen and (min-width: 600px) {

}

/* BP 3 */
@media screen and (min-width: 769px) {

}

/* BP 2 */
@media screen and (min-width: 960px) {

}

/* BP 1 */
@media screen and (min-width: 1240px) {

}

/* ---- Viewport ---- */

@-webkit-viewport {
	width: device-width;
	zoom: 1.0;
}
@-moz-viewport {
	width: device-width;
	zoom: 1.0;
}
@-ms-viewport {
	width: device-width;
	zoom: 1.0;
}
@viewport {
	width: device-width;
	zoom: 1.0;
}

/* ------------------------------------------------------
**** Box Model Reset
------------------------------------------------------ */

html {
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}

/* ------------------------------------------------------
**** Animations
------------------------------------------------------ */
@keyframes growInFade {
	from {
		transform: scale(0.7);
		opacity: 0;
	}
	to {
		opacity: 1;
		transform: none;
	}
}
@keyframes shrinkOutFade {
	from {
		opacity: 1;
		transform: none;
	}
	to {
		transform: scale(0.7);
		opacity: 0;
	}
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}



/* ------------------------------------------------------
**** Typography
------------------------------------------------------ */


/* ---- Fonts ---- */

/* Fonts.com

font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
font-family: 'Neue Helvetica W01', Helvetica, Arial, sans-serif;

*/

/* Iconfont */
@font-face {
	font-family: 'icomoon';
	src:  url('../fonts/icomoon/fonts/icomoon.eot?xyp1ve');
	src:  url('../fonts/icomoon/fonts/icomoon.eot?xyp1ve#iefix') format('embedded-opentype'),
	url('../fonts/icomoon/fonts/icomoon.ttf?xyp1ve') format('truetype'),
	url('../fonts/icomoon/fonts/icomoon.woff?xyp1ve') format('woff'),
	url('../fonts/icomoon/fonts/icomoon.svg?xyp1ve#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}

.icon-before:before,
.icon-after:after {
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
}

.icon-before.icon-youtube:before,
.icon-after.icon-youtube:after {
	content: "\e913";
}
.icon-before.icon-delete:before,
.icon-after.icon-delete:after {
	content: "\e912";
}
.icon-before.icon-free:before,
.icon-after.icon-free:after {
	content: "\e911";
}
.icon-before.icon-school:before,
.icon-after.icon-school:after {
	content: "\e90f";
}
.icon-before.icon-user:before,
.icon-after.icon-user:after {
	content: "\e910";
}
.icon-before.icon-cross-circle:before,
.icon-after.icon-cross-circle:after {
	content: "\e90d";
}
.icon-before.icon-arrow-up-down:before,
.icon-after.icon-arrow-up-down:after {
	content: "\e90e";
}
.icon-before.icon-arrow-down:before,
.icon-after.icon-arrow-down:after {
	content: "\e900";
}
.icon-before.icon-arrow-left:before,
.icon-after.icon-arrow-left:after {
	content: "\e901";
}
.icon-before.icon-arrow-right:before,
.icon-after.icon-arrow-right:after {
	content: "\e902";
}
.icon-before.icon-arrow-up:before,
.icon-after.icon-arrow-up:after {
	content: "\e903";
}
.icon-before.icon-cross:before,
.icon-after.icon-cross:after {
	content: "\e904";
}
.icon-before.icon-enews:before,
.icon-after.icon-enews:after {
	content: "\e905";
}
.icon-before.icon-facebook:before,
.icon-after.icon-facebook:after {
	content: "\e906";
}
.icon-before.icon-quote-end:before,
.icon-after.icon-quote-end:after {
	content: "\e907";
}
.icon-before.icon-quote-start:before,
.icon-after.icon-quote-start:after {
	content: "\e908";
}
.icon-before.icon-search:before,
.icon-after.icon-search:after {
	content: "\e909";
}
.icon-before.icon-star-half:before,
.icon-after.icon-star-half:after {
	content: "\e90a";
}
.icon-before.icon-star:before,
.icon-after.icon-star:after {
	content: "\e90b";
}
.icon-before.icon-twitter:before,
.icon-after.icon-twitter:after {
	content: "\e90c";
}



html,
body {
	height: 100%;
}


html {
	font-size: 62.5%;
}

body {
	line-height: 1.4;
	font-size: 1.5em;
	color: #0c262d;
	font-family: 'Neue Helvetica W01', Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* BP 2 */
@media screen and (min-width: 960px) {
	body {
		font-size: 1.6em;
	}
}



/* ---- Headings ---- */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	margin: 0 0 1.9rem 0;
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
	font-weight: 200;
	line-height: 1;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
	font-weight: normal;
	line-height: 1;
	color: #8a7b7b;
}

p + h1,
p + h2,
p + h3,
p + h4,
p + h5,
p + h6,
ul + h1,
ul + h2,
ul + h3,
ul + h4,
ul + h5,
ul + h6,
ol + h1,
ol + h2,
ol + h3,
ol + h4,
ol + h5,
ol + h6 {
	margin-top: 3rem;
}


h1, .h1 {
	font-size: 2.3rem;
	color: #515e7c;
	margin: 0 0 1rem 0;
}

h2, .h2 {
	font-size: 2.1rem;
	color: #515e7c;
}

h3, .h3 {
	font-size: 1.8rem;
}

h4, .h4 {
	font-size: 1.7rem;
}

h5, .h5 {
	font-size: 1.6rem;
}

h6, .h6 {
	font-size: 1.5rem;
}

/* BP 5 */
@media screen and (min-width: 500px) {

}

/* BP 4 */
@media screen and (min-width: 600px) {
	h1, .h1 {
		font-size: 2.6rem;
	}

	h2, .h2 {
		font-size: 2.4rem;
	}
}

/* BP 3 */
@media screen and (min-width: 769px) {
	h1, .h1 {
		font-size: 3.1rem;
	}

	h2, .h2 {
		font-size: 2.5rem;
	}
}

/* BP 2 */
@media screen and (min-width: 960px) {

}

/* BP 1 */
@media screen and (min-width: 1240px) {
	h1, .h1 {
		font-size: 3.4rem;
		margin: 0 0 2.6rem 0;
	}

	h2, .h2 {
		font-size: 3rem;
	}

	h3, .h3 {
		font-size: 1.9rem;
	}

	h4, .h4 {
		font-size: 1.8rem;
	}

	h5, .h5 {
		font-size: 1.7rem;
	}

	h6, .h6 {
		font-size: 1.6rem;
	}
}

.heading-inline {
	display: inline;
	float: left;
	padding: 0;
}

p,
ol,
ul,
dl,
address {
	margin: 0 0 1.5rem;
}

small {
	font-size: 1.28rem;
}


/* ---- Lists ---- */
ul,
ol {
	padding: 0 0 0 2rem;
}

li ul,
li ol {
	margin: 1rem 0;
}

ul.inline,
ol.inline {
	list-style-type: none;
	margin-left: 0;
}
ul.inline > li,
ol.inline > li {
	display: inline-block;
	padding-left: 12px;
	padding-right: 12px;
}


/* ---- Breadcrumbs ---- */
.breadcrumb {
	list-style-type: none;
	margin: 5px 0;
	padding: 0;
	font-size: 1.3rem;
	color: #757575;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
}

.breadcrumb > li {
	display: inline;
}
.breadcrumb > li:before {
	content: "/";
	margin: 0 8px;
}
.breadcrumb > li:first-child:before {
	content: none;
}

.breadcrumb a {
	text-decoration: none;
	color: inherit;
}

/* BP 5 */
@media screen and (min-width: 500px) {

}

/* BP 4 */
@media screen and (min-width: 600px) {

}

/* BP 3 */
@media screen and (min-width: 769px) {
	.breadcrumb {
		margin: 11px 0;
		font-size: 1.4rem;
		letter-spacing: 0.15rem;
	}
}

/* BP 2 */
@media screen and (min-width: 960px) {

}

/* BP 1 */
@media screen and (min-width: 1240px) {

}


/* ---- Blockquotes ---- */
blockquote {
	margin: 1.5rem 0;
	padding: 5px 20px 15px;
	background: #f6f6f6;
	font-style: italic;
	position: relative;
	clear: both;
}

blockquote *:last-child {
	margin-bottom: 0;
}

blockquote:before,
blockquote:after {
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	color: #a7cced;
	font-size: 4rem;
	position: absolute;
}

blockquote:before {
	content: "\e908";
	top: 0;
	left: 0;
}

blockquote:after {
	content: "\e907";
	bottom: 0;
	right: 0;
}

@media screen and (min-width: 960px) {
	.blockquote--left {
		float: left;
		width: 45%;
		margin-left: 0px;
		margin-right: 20px;
		clear: right;
	}

	.blockquote--right {
		float: right;
		width: 45%;
		margin-left: 20px;
		margin-right: 0px;
		clear: left;
	}
}


/* ---- HR ---- */
hr {
	box-sizing: content-box;
	display: block;
	height: 1px;
	border: 0;
	border-top: 2px solid #e8ebf7;
	margin: 2em 0;
	padding: 0;
}


/* ---- Text level elements ---- */
abbr[title] {
	border-bottom: 1px dotted #c6bfbf;
	cursor: help;
}

b, strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

ins {
	background-color: #f6f6f6;
	color: #473f3f;
	text-decoration: none;
}

mark {
	background-color: #f6f6f6;
	color: #473f3f;
	font-style: italic;
	font-weight: bold;
}

pre,
code,
kbd,
samp {
	font-family: Monaco, "Courier New", monospace;
	color: #484040;
	background: #efefef;
	background: rgba(0, 0, 0, .07);
	padding: 0 2px;
	margin: 0 -2px;
}

pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -.5em;
}

sub {
	bottom: -.25em;
}


/* ---- Links ---- */
a {
	color: #ffb700;
	word-break: break-word;
}

a:hover,
a:active,
a:focus {
	color: #ffb700;
}

/* Address `outline` inconsistency between Chrome and other browsers. */
a:focus {
	outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
a:active,
a:hover {
	outline: 0;
}


/* ------------------------------------------------------
**** Design Patterns
------------------------------------------------------ */

/* ---- Buttons ---- */
.button,
.radio-button-button label,
.paginate-wrap .page,
.paginate-wrap .page-next,
.paginate-wrap .page-prev {
	display: inline-block;
	margin-bottom: 0;
	white-space: nowrap;
	vertical-align: middle;
	text-align: center;
	cursor: pointer;
	color: #fff;
	background-color: #35ab75;
	text-decoration: none;
	border-radius: 25px;
	border: none;
	text-transform: lowercase;
	transition: background-color 120ms ease-in;
	outline: none;
	position: relative;
	text-transform: uppercase;
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
	font-weight: 700;
	letter-spacing: 0.15rem;
}

p + .button {
	margin-top: 20px;
}

.button:after,
.radio-button-button label:after {
	content: "\e902";
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	font-size: 1.6rem;
	position: absolute;
	right: 6px;
	top: 8px;
}


/* Circle buttons */
.button.button--circle {
	width: 38px;
	height: 38px;
	padding-left: 0;
	padding-right: 0;
	border-radius: 50%;
}
.button.button--circle:after {
	content: none;
}


/* Buttons with icons */
.button.icon-before:before,
.button.icon-after:after {
	font-size: 12px;
}
.button.icon-before:before {
	margin-right: 7px;
}
.button.icon-after:after {
	margin-left: 7px;
}

/* Save */
.button.icon-save.icon-before:before,
.button.icon-save.icon-after:after {
	font-size: 13px;
}

/* Buttons with only icons */
.button.button-icon.icon-before:before,
.button.button-icon.icon-after:after {
	margin: 0;
}

/* Small */
.button.button-icon.button-small {
	padding: 10px 9px 8px;
}
.button.button-icon.button-small.icon-before:before,
.button.button-icon.button-small.icon-after:after {
	font-size: 14px;
}


/* Regular (default) */
.button.button-icon,
.button.button-icon.button-regular,
.radio-button-button label {
	padding: 11px 11px 9px;
}
.button.button-icon.icon-before:before,
.button.button-icon.icon-after:after,
.button.button-icon.button-regular.icon-before:before,
.button.button-icon.button-regular.icon-after:after {
	font-size: 21px;
}

/* Large */
.button.button-icon.button-large {
	padding: 13px 13px 9px;
}
.button.button-icon.button-large.icon-before:before,
.button.button-icon.button-large.icon-after:after {
	font-size: 25px;
}

/* Small */
.button,
.button.button-small,
.field-element--button.field-element--small .button,
.radio-button-button label,
.paginate-wrap .page,
.paginate-wrap .page-next,
.paginate-wrap .page-prev {
	font-size: 1.4rem;
	padding: 6px 25px 6px 14px;
}
.button:after,
.button.button-small:after,
.field-element--button.field-element--small .button:after,
.radio-button-button label:after {
	top: 5px;
	right: 4px;
	font-size: 1.9rem;
}



/* Grey (default) */
.button,
.button.button-grey,
.radio-button-button label,
.paginate-wrap .page,
.paginate-wrap .page-next,
.paginate-wrap .page-prev {
	background-color: #e8ebf7;
	color: #515e7c;
}
.button.icon-before:before,
.button.icon-after:after,
.button.button-grey.icon-before:before,
.button.button-grey.icon-after:after {
	color: #515e7c;
}
.button:hover,
.button.button-grey:hover,
.button:focus,
.button.button-grey:focus,
.radio-button-button label:hover,
.radio-button-button label:focus,
.paginate-wrap .page:hover,
.paginate-wrap .page:focus,
.paginate-wrap .page-next:hover,
.paginate-wrap .page-next:focus {
	background-color: #ebedf7;
	color: #515e7c;
}

/* Orange */
.button[type="submit"],
.button.button-orange,
.bg-blue .button,
.radio-button-button input:checked + label {
	background-color: #ffb700;
	color: #fff;
}
.button[type="submit"].icon-before:before,
.button[type="submit"].icon-after:after,
.button.button-orange.icon-before:before,
.button.button-orange.icon-after:after,
.bg-blue .button.icon-before:before,
.bg-blue .button.icon-after:after, {
	color: #FFF;
}
.button[type="submit"]:hover,
.button[type="submit"]:focus,
.button.button-orange:hover,
.button.button-orange:focus,
.bg-blue .button:hover,
.bg-blue .button:focus {
	background-color: #ffc52f;
	color: #fff;
}

/* Green */
.button.button-green,
.paginate-wrap .on {
	background-color: #75d450;
	color: #515e7c;
}
.button.button-green.icon-before:before,
.button.button-green.icon-after:after {
	color: #515e7c;
}
.button.button-green:hover,
.button.button-green:focus,
.paginate-wrap .on:hover,
.paginate-wrap .on:focus {
	background-color: #81de5d;
	color: #515e7c;
}

/* White */
.button.button-white {
	background-color: #FFF;
	color: #fff;
}
.button.button-white.icon-before:before,
.button.button-white.icon-after:after {
	color: #50f753;
}
.button.button-white:hover,
.button.button-white:focus {
	background-color: #50f753;
	color: #fff;
}

/* Red */
.button.button-red {
	background-color: #e03a3a;
	color: #FFF;
}
.button.button-red.icon-before:before,
.button.button-red.icon-after:after {
	color: #e03a3a;
}
.button.button-red:hover,
.button.button-red:focus {
	background-color: #F03E3E;
	color: #ECECEC;
}


/* Blue */
.button.button-blue {
	background-color: #596474;
	color: #fff;
}
.button.button-blue.icon-before:before,
.button.button-blue.icon-after:after {
	color: #2A333E;
}
.button.button-blue:hover,
.button.button-blue:focus {
	background-color: #4D5765;
	color: #fff;
}

.button-block {
	display: block;
	width: 100%;
}

/* Hover/unhover states */
.button-hover-state {
	display: none;
}
.button:hover .button-hover-state {
	display: inline;
}
.button:hover .button-unhover-state {
	display: none;
}

/* Disabled/unavailable button style */
.button[disabled],
.button-disabled,
.button-disabled:hover,
.button-disabled:focus,
.button-disabled:active {
	border: none;
	background-image: none;
	opacity: 0.4;
	cursor: default;
	box-shadow: none;
}

/* Gets the buttons to line up with form inputs when you want them to */
.button.inline {
	margin-bottom: 0.75em;
}

/* Firefox: Get rid of the inner focus border */
.button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

/* Inline buttons */
.inline-buttons .button {
	margin-right: 8px;
	float: left;
}
.inline-buttons .button:last-child {
	margin-right: 0;
}

/* right */
.inline-buttons.inline-buttons-right {
	text-align: right;
}
.inline-buttons.inline-buttons-right .button {
	margin-right: 0;
	margin-left: 8px
}
.inline-buttons.inline-buttons-right .button:first-child {
	margin-left: 0;
}


/* BP 4 */
@media screen and (min-width: 600px) {

}

/* BP 3 */
@media screen and (min-width: 769px) {

}

/* BP 2 */
@media screen and (min-width: 960px) {

	.button.button--circle {
		width: 48px;
		height: 48px;
	}

	/* Regular */
	.button,
	.button.button-regular,
	.radio-button-button label {
		padding: 16px 41px 16px 25px;
		font-size: 1.4rem;
		line-height: 1.2;
	}
	.button:after,
	.button.button-regular:after,
	.radio-button-button label:after {
		font-size: 2.2rem;
		top: 13px;
		right: 10px;
	}

	/* Large */
	.button.button-large,
	.field-element--button.field-element--large .button {
		font-size: 1.9rem;
		padding: 14px 44px 14px 26px;
	}
	.button.button-large:after {
		font-size: 2.5rem;
		top: 15px;
		right: 8px;
	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {

}


/* ---- Animations ---- */
@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-30px);
                transform: translateY(-30px);
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-30px);
                transform: translateY(-30px);
    }
}

/* ---- Expando ---- */
.expando {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.expando p:last-of-type {
    margin-bottom: 0;
}

/* - Open button - */
.expando-open {
    -webkit-appearance: none;
    border: none;
    outline: none;
    background: none;
    padding: 6px 0 3px 45px;
    position: relative;
    cursor: pointer;
    display: block;
    margin: 0 0 12px;
}
.expando-open__icon {
    position: absolute;
    top: 50%;
    left: 0;
    background-color: #e8ebf7;
    width: 26px;
    height: 26px;
    transform: translate(0, -50%);
}
.expando-open__icon:before,
.expando-open__icon:after {
    content: " ";
    width: 14px;
    height: 2px;
    background-color: #515e7c;
    display: block;
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: transform 200ms ease;
}
.expando-open__icon:after {
    transform: rotate(90deg);
}

/* Hover */
.expando-open:hover,
.expando-open:focus {
    color: #414042;
}

.expando-open:hover .expando-open__icon {
    background-color: #dce0ef;
}
.expando-open:hover .expando-open__icon:before,
.expando-open:hover .expando-open__icon:after {
    background-color: #222932;
}

/* - Close button - */
.expando__close {
    -webkit-appearance: none;
    border: none;
    outline: none;
    background: none;
    text-indent: -9999px;
    padding: 0;
    height: 26px;
    width: 26px;
    position: absolute;
    top: 8px;
    right: 7px;
    cursor: pointer;
}
.expando__close:before,
.expando__close:after {
    content: " ";
    width: 14px;
    height: 2px;
    background-color: #515e7c;
    display: block;
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: transform 200ms ease;
}
.expando__close:before {
    transform: rotate(-45deg);
}
.expando__close:after {
    transform: rotate(45deg);
}

/* Hover */
.expando__close:hover:before,
.expando__close:hover:after {
    background-color: #222932;
}


/* - Expanded - */
.expando.expando--expanded {
    clip: auto;
    height: auto;
    margin: 12px 0 20px;
    overflow: visible;
    position: relative;
    width: auto;
    padding: 15px 32px 15px 20px;
    background-color: #fff;
    animation: fadeInDown 200ms ease;
    animation-fill-mode: forwards;
    border: 1px solid #e8ebf8;
}
.expando-open--expanded .expando-open__icon:before {
    transform: rotate(-45deg);
}
.expando-open--expanded .expando-open__icon:after {
    transform: rotate(45deg);
}

/* BP 3 */
@media screen and (min-width: 769px) {
	.expando.expando--expanded {
		margin: 20px 0 30px;
		padding: 25px 45px;
	}
	.expando__close {
		top: 15px;
		right: 15px;
	}
}

/* ---- Highlight ---- */
.highlight,
.highlight--right,
.highlight--left {
	margin: 0 0 1.5rem;
	padding: 30px;
	background: #fff;
	clear: both;
}

@media screen and (min-width: 960px) {
	.highlight--left {
		float: left;
		width: 45%;
		margin-right: 20px;
		clear: right;
	}

	.highlight--right {
		float: right;
		width: 45%;
		margin-left: 20px;
		clear: left;
	}
}

.highlight *:last-child,
.highlight--right *:last-child,
.highlight--left *:last-child {
	margin-bottom: 0;
}

.highlight--pop {
	box-shadow: 0 0 16px rgba(0, 0, 0, .10);
	margin-top: 32px;
}

.highlight--pop :where(a) {
	color: #515E7C;
	transition: color 200ms ease-in-out;
}

.highlight--center-content {
	text-align: center;
}



/* ---- Site Messages ---- */
ul.messages {
	list-style: none;
	margin: 16px 0 25px;
	padding: 0;
}
	#search-results ul.messages {
		margin-top: 0px;
	}
ul.messages li {
	margin: 0 0 15px;
	padding: 10px 20px;
	vertical-align: bottom;
	text-align: left;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.2em;
}
ul.messages .error {
	background: #E04D4D;
	border-left: 4px solid #B72323;
	color: #FFF !important;
}
ul.messages .confirm {
	color: #FFF !important;
	background: #6DBB5A;
	border-left: 4px solid #439230;
}
ul.messages a {
	color: #FFF;
}


/* ------------------------------------------------------
**** Images
------------------------------------------------------ */

img {
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}

/* ------------------------------------------------------
**** Forms
------------------------------------------------------ */

/* ---- Base styles ---- */
.field-element {
	margin-bottom: 21px;
}

.field-element:before,
.field-element:after {
	content: " ";
	display: table;
}

.field-element:after {
	clear: both;
}

.field-input .textbox,
.field-input select {
	display: block;
	width: 100%;
	outline: none;
	line-height: normal;
	padding: 13px 27px;
	-webkit-appearance: none;
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
	font-weight: 700;
	color: #515e7c;
}
.field-input .textbox,
.field-input select,
.field-element--fileselector .fs-preview-wrapper {
	font-size: 1.4rem;
	line-height: 1.5;
	border: 1px solid #CED2DC;
	border-radius: 25px;
	background-color: #EEF0F3;
}

/* ---- Placeholders ---- */
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #8892a9;
	transition: opacity 200ms ease 150ms;
}
::-moz-placeholder { /* Firefox 19+ */
	color: #8892a9;
	transition: all 200ms ease 150ms;
}
:-ms-input-placeholder { /* IE 10+ */
	color: #8892a9;
	transition: all 200ms ease 150ms;
}
:-moz-placeholder { /* Firefox 18- */
	color: #8892a9;
	transition: all 200ms ease 150ms;
}

/* Selects */
.field-element.field-element--dropdown--placeholder .field-input select {
	color: #8892a9;
}

.field-input .textbox:focus::-webkit-input-placeholder {
	opacity: 0;
}
.field-input .textbox:focus::-moz-input-placeholder {
	opacity: 0;
}
.field-input .textbox:focus:-ms-input-placeholder {
	opacity: 0;
}
.field-input .textbox:focus:-moz-input-placeholder {
	opacity: 0;
}


/* ---- Uppercase ---- */
.field-element--uppercase .field-input .textbox,
.field-element--uppercase .field-input select {
	text-transform: uppercase;
	letter-spacing: 0.1rem;
}
.field-element.field-element--uppercase input[type="checkbox"] + label,
.field-element.field-element--uppercase input[type="radio"] + label {
	text-transform: uppercase;
	letter-spacing: 0.1rem;
}

/* BP 4 */
@media screen and (min-width: 600px) {

}

/* BP 3 */
@media screen and (min-width: 769px) {

}

/* BP 2 */
@media screen and (min-width: 960px) {

}

/* BP 1 */
@media screen and (min-width: 1240px) {
	.field-element--uppercase .field-input .textbox,
	.field-element--uppercase .field-input select,
	.field-element.field-element--uppercase input[type="checkbox"] + label,
	.field-element.field-element--uppercase input[type="radio"] + label {
		letter-spacing: 0.15rem;
	}
}

/* ---- Inline ---- */
.field-elements-inline:before,
.field-elements-inline:after {
	content: " ";
	display: table;
}

.field-elements-inline:after {
	clear: both;
}
.field-elements-inline .field-element {
	float: left;
	margin-right: 1%;
}
.field-elements-inline .field-element:last-child {
	margin-right: 0;
}

/* Button */
.field-elements-inline .field-element--button {
	margin-top: 29px;
}
.field-elements-inline .field-element--button.field-element--inline-no-label {
	margin-top: 0;
}

/* Add top margin to make empty space for margins */
.field-element--inline-with-label {
	margin-top: 29px;
}

/* ---- White ---- */
.field-element.field-element--white .field-input .textbox,
.field-element.field-element--white .field-input select,
.field-element--white.field-element--fileselector .fs-preview-wrapper {
	background-color: #fff;
}


/* ---- Small ---- */
.field-element--small .field-input .textbox,
.field-element--small .field-input select {
	font-size: 1.4rem;
	padding: 7px 15px 7px;
}

/* ---- Large ---- */
.field-element--large .field-input .textbox,
.field-element--large .field-input select {
	font-size: 1.8rem;
	padding: 14px 25px 13px;
}

@media screen and (max-width: 768px) {
	.field-element {
		margin-bottom: 13px;
	}
}

/* ---- Disabled ---- */
.field-element--disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
.field-element--disabled .textbox[disabled],
.field-element--disabled select[disabled],
.field-element--disabled button[disabled] {
	cursor: not-allowed;
}

/* ---- Caps ---- */
.field-element--caps .textbox,
.field-element--caps select {
	text-transform: uppercase;
}

/* ---- Fieldset ---- */
.field-element fieldset {
	border: none;
	padding: 0;
	margin: 0;
}
.fieldset-input {
	margin-bottom: 4px;
}
.fieldset-input:last-child {
	margin-bottom: 0;
}


/* ---- Labels and legends ---- */
.field-label,
.fieldset__legend {
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1.2;
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1.7rem;
	line-height: 1.3;
	letter-spacing: 0.15rem;
	color: #515e7c;
}

/* Instead of h3s */
.label.heading {
	margin: 30px 0px 20px;
	padding: 8px 8px 8px 0px;
	border-bottom: 1px solid #E2E2E2;
}

/* Hidden labels */
.field-element--hidden-label .field-label,
.field-element--hidden-label .fieldset__legend {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.fieldset-input__label-count {
	color: #c7cbda;
	letter-spacing: 0.1rem;
}

/* ---- Required ---- */
.field-label__required {
	text-indent: -9999px;
	line-height: 0;
	display: inline-block;
}

.field-label__required:after {
	content: "*";
	text-indent: 0;
	display: block;
	line-height: inherit;
}


/* ---- Field helpers ---- */
.field-helper {
	font-weight: 400;
	font-size: 1.3rem;
	margin-bottom: 1em;
}

.field-label .field-helper {
	margin-top: 0.3em;
	margin-bottom: 0;
}


/* ---- Field errors ---- */
.field-element.field-element--error  .field-input .textbox,
.field-element.field-element--error  .field-input select {
	background-color: #f7eaec;
}
.field-error__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.field-error__list__item {
	color: #fff;
	background: #E04D4D;
	padding: 10px 20px;
	margin: 11px 0;
	border-left: 6px solid #b72323;
}

/* ---- Text area ---- */
textarea {
	resize: vertical;
}

/* ---- Range ---- */
.field-element--range .field-input .textbox {
	-webkit-appearance: slider-horizontal;
	background: none;
	padding: 0;
	border-radius: 0;
	border: none;
	background: none !important;
}
input[type=range]::-moz-focus-outer {
	border: 0;
}


/* ---- Selects ---- */
.field-element .field-input select {
	-moz-appearance: none;
	background-image: url(../images/form-icons.svg);
	background-repeat: no-repeat, no-repeat;
	background-position: top -257px right -104px;
	padding-right: 46px;
}
.field-element .field-input select[multiple] {
	background-image: none;
	padding-right: 20px;
}

.field-element select::-ms-expand,
.daterangepicker select.monthselect::-ms-expand,
.daterangepicker select.yearselect::-ms-expand {
	display: none;
}

/* Multiple selects */
.field-element.field-element--select.field-element--select--multiple select {
	padding: 8px 8px;
	background-image: none;
}

.field-element.field-element--select.field-element--select--multiple option {
	padding: 6px 10px;
}

/* White */
.field-element--white .field-input select {
	background-position: top -262px right -101px;
}

/* White + Small */
.field-element--small.field-element--white .field-input select {
	background-position: top -262px right -104px;
}
/* White + Large */
.field-element--large.field-element--white .field-input select {
	background-position: top -253px right -104px;
}

/* Small */
.field-element--small .field-input select {
	background-position: top -262px right -104px;
}
/* Large */
.field-element--large .field-input select {
	background-position: top -253px right -104px;
}


/* ---- Checkboxes and radio buttons ---- */
.field-element.field-element--checkbox,
.field-element.field-element--radio {
	font-size: 1.6rem;
}

.field-element input[type="checkbox"],
.field-element input[type="radio"] {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.field-element input[type="checkbox"] + label,
.field-element input[type="radio"] + label {
	padding-left: 34px;
	position: relative;
	cursor: pointer;
	display: inline-block;
	color: #515e7c;
}

.field-element .fieldset-input--bold input[type="checkbox"] + label,
.field-element .fieldset-input--bold input[type="radio"] + label {
	font-weight: bold;
}

.field-element input[type="checkbox"] + label:before,
.field-element input[type="radio"] + label:before {
	content: " ";
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 13px;
	position: relative;
	top: 4px;
	background-color: #EEF0F3;
	border: 1px solid #CED2DC;
	margin-left: -34px;
	border-radius: 1px;
}

/* Check and dot */
.field-element input[type="checkbox"]:checked + label:after,
.field-element input[type="radio"]:checked + label:after {
	content: " ";
	position: absolute;
	left: 1px;
	top: 6px;
	font-size: 15px;
}


/* Without labels */
.field-element.field-element--checkbox--no-label input[type="checkbox"] + label,
.field-element.field-element--radio--no-label input[type="radio"] + label {
	padding-left: 0;
}

.field-element.field-element--checkbox--no-label input[type="checkbox"] + label:before,
.field-element.field-element--radio--no-label input[type="radio"] + label:before {
	margin-left: 0;
	margin-right: 0;
}

.field-element.field-element--checkbox--no-label input[type="checkbox"]:checked + label:after,
.field-element.field-element--radio--no-label input[type="radio"]:checked + label:after {
	left: 1px;
}

.field-element.field-element.field-element--radio--no-label input[type="radio"]:checked + label:after {
	margin-left: 4px;
}


/* -- Checkboxes -- */

/* Check (pseudo element) */
.field-element input[type="checkbox"]:checked + label:after {
	content: " ";
	background-image: url(../images/form-icons.svg);
	background-repeat: no-repeat, no-repeat;
	background-position: top -761px left 1px;
	width: 22px;
	height: 20px;
	margin: -2px 0 0 -1px;
}

.field-element--checkboxlist--columns .field-element__input-set {
	-webkit-columns: 3;
	-moz-columns: 3;
	columns: 3;
}

/* Small */
.field-element.field-element--small input[type="checkbox"]:checked + label:after {
	background-position: top -711px left 1px;
	width: 16px;
	height: 15px;
	margin: -3px 0 0 -4px;
}

/* -- Radio Buttons -- */

/* Radio button (pseudo element) */
.field-element input[type="radio"] + label:before {
	border-radius: 10px;
}

/* Radio dot (pseudo element) */
.field-element input[type="radio"]:checked + label:after {
	left: 6px;
	top: 10px;
	width: 8px;
	height: 8px;
	border-radius: 4px;
	background: #58595B;
}

/* -- Varations -- */

/* White */
.field-element.field-element--white input[type="checkbox"] + label:before,
.field-element.field-element--white input[type="radio"] + label:before {
	background-color: #FFF;
}


/* Small */
.field-element.field-element--small input[type="checkbox"] + label,
.field-element.field-element--small input[type="radio"] + label {
	font-size: 1.3rem;
	padding-left: 28px;
}

.field-element.field-element--small input[type="checkbox"] + label:before,
.field-element.field-element--small input[type="radio"] + label:before {
	width: 16px;
	height: 16px;
	margin-right: 13px;
	top: 2px;
	margin-left: -28px;
	border-radius: 1px;
}

/* Check and dot */
.field-element.field-element--small input[type="checkbox"]:checked + label:after,
.field-element.field-element--small input[type="radio"]:checked + label:after {
	left: 4px;
	top: 6px;
	font-size: 13px;
}

/* Small */
.field-element.field-element--small input[type="radio"] + label:before {
	border-radius: 7px;
}


/* Large */
.field-element.field-element--large input[type="checkbox"] + label:before,
.field-element.field-element--large input[type="radio"] + label:before {
	width: 24px;
	height: 24px;
	margin-right: 16px;
	top: 5px;
}

.field-element.field-element--large input[type="radio"]:checked + label:after {
	left: 7px;
	top: 12px;
	width: 10px;
	height: 10px;
	border-radius: 5px;
}
.field-element.field-element--large input[type="checkbox"]:checked + label:after {
	background-position: top -760px left 1px;
	width: 23px;
	height: 23px;
	margin: -2px 0 0 -1px;
}

/* Large and regular field elements turn small */
@media screen and (max-width: 959px) {

	.field-element input[type="checkbox"] + label,
	.field-element input[type="radio"] + label {
		font-size: 1.3rem;
		padding-left: 28px;
	}

	.field-element input[type="checkbox"] + label:before,
	.field-element input[type="radio"] + label:before {
		width: 16px;
		height: 16px;
		margin-right: 13px;
		top: 2px;
		margin-left: -28px;
		border-radius: 1px;
	}

	/* Check and dot */
	.field-element input[type="checkbox"]:checked + label:after,
	.field-element input[type="radio"]:checked + label:after {
		left: 4px;
		top: 6px;
		font-size: 13px;
	}

	.field-element input[type="checkbox"]:checked + label:after {
		background-position: top -711px left 1px;
		width: 16px;
		height: 15px;
		margin: -3px 0 0 -4px;
	}

	.field-element input[type="radio"] + label:before {
		border-radius: 7px;
	}
}

/* ---- Radio button buttons ---- */
.radio-button-button input {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* ---- Color picker ---- */
.field-element--colorpicker .textbox.colorpicker {
	padding: 3px 8px;
	height: 43px;
	width: 50px;
}

/* Small */
.field-element--colorpicker.field-element--small .textbox.colorpicker {
	padding: 2px 7px;
	height: 33px;
	width: 39px;
}

/* Large and regular field elements turn small */
@media screen and (max-width: 959px) {
	.field-element.field-element--colorpicker .textbox.colorpicker,
	.field-element.field-element--colorpicker.field-element--large .textbox.colorpicker,
	.field-element.field-element--colorpicker.field-element-regular .textbox.colorpicker {
		padding: 2px 7px;
		height: 33px;
		width: 39px;
	}
}

/* ---- Toggle tabs ---- */
.toggle-tab {
	display: none;
}
.toggle-tab.toggle-tab--active {
	display: block;
}
.toggle-tabs--active .toggle-tab {
	animation: fadeInUp 650ms ease;
	animation-fill-mode: forwards;
}

/* ---- Toggle ---- */
.toggle {

}
.toggle-switch,
.toggle-switch:active {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.toggle-label {
	display: block;
	position: relative;
	cursor: pointer;
	user-select: none;
}
.toggle-label:before {
	content: ' ';
	display: block;
	position: absolute;
	z-index: 1;
	height: 16px;
	width: 16px;
	border-radius: 100%;
	top: 3px;
	left: 3px;
	right: auto;
	background: #FFF;
	transition: all 400ms ease;
}
.toggle-label:after {
	content: ' ';
	width: 40px;
	height: 22px;
	border-radius: 14px;
	border: 2px solid #a7cced;
	transition: background-color 400ms ease;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.toggle-switch:checked + .toggle-label:after {
	background-color: #a7cced;
}

.toggle-label-text {
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
	display: inline-block;
	position: absolute;
	top: 0;
	line-height: 1;
}
.toggle-label-text--left {
	right: 100%;
	margin-right: 12px;
	text-align: right;
}
.toggle-label-text--right {
	left: 100%;
	margin-left: 12px;
	text-align: left;
}
.toggle-switch:checked + .toggle-label:before {
	left: calc(100% - 18px);
}

.toggle-label .toggle-label-text--right,
.toggle-switch:checked + .toggle-label .toggle-label-text--left {
	color: #a7cced;
}
.toggle-switch:checked + .toggle-label .toggle-label-text--right {
	color: #FFF;
}

/* Centered */
.toggle.toggle--centered {
	text-align: center;
}
.toggle.toggle--centered .toggle-label {
	width: 39px;
	height: 26px;
	margin: 24px auto 0;
}


/* BP 5 */
@media screen and (min-width: 500px) {
	.toggle-label:before {
		height: 18px;
		width: 18px;
		top: 4px;
		left: 4px;
	}
	.toggle-label:after {
		width: 46px;
		height: 26px;
	}
	.toggle-switch:checked + .toggle-label:before {
		left: calc(100% - 21px);
	}
	.toggle.toggle--centered .toggle-label {
		width: 46px;
		height: 26px;
	}

}

/* BP 4 */
@media screen and (min-width: 600px) {
	.toggle-label-text {
		white-space: nowrap;
	}
	.toggle.toggle--centered .toggle-label {
		margin: 0 auto;
	}
	.toggle-label-text {
		top: 3px;
		font-size: 1.4rem;
		line-height: 1.4;
	}
}

/* BP 3 */
@media screen and (min-width: 769px) {

}

/* BP 2 */
@media screen and (min-width: 960px) {

}

/* BP 1 */
@media screen and (min-width: 1240px) {

}



/* ---- Centered headings ---- */
.heading-centered {
	text-align: center;
}

/* ---- Money ---- */
.field-element--money .field-input .textbox {
	padding-left: 55px;
	background-image: url(../images/form-icons.svg);
	background-repeat: no-repeat;
	background-position: top -447px left 0;
}

.field-element--money .field-input {
	position: relative;
}
.field-element--money .field-input .money-symbol:before {
	content: "\00a4";		/* Generic currency sign */
	position: absolute;
	display: block;
	top: 9px;
	left: 0;
	color: #58595B;
	font-weight: bold;
	font-size: 19px;
	width: 41px;
	text-align: center;
}
.field-element--money .field-input .money-symbol--dollar:before {
	content: "$";    /* Dollars */
}
.field-element--money .field-input .money-symbol--pound:before {
	content: "\00a3";    /* Pounds */
}
.field-element--money .field-input .money-symbol--yen:before {
	content: "\00a5";    /* Yen */
}
.field-element--money .field-input .money-symbol--indian_rupee:before {
	content: "\20B9";   /* Indian rupee */
}

/* White */
.field-element--money.field-element--white .field-input .textbox,
.field-element--money.field-element--white.field-element--small .field-input .textbox,
.field-element--money.field-element--white.field-element--large .field-input .textbox {
	background-position: top -607px left 0;
}

/* Small */
.field-element--money.field-element--small .field-input .textbox {
	background-position: top -447px left 0;
}
.field-element--money.field-element--small .field-input .money-symbol:before {
	top: 4px;
}

/* Large */
.field-element--money.field-element--large .field-input .textbox {
	background-position: top -447px left 0;
}
.field-element--money.field-element--large .field-input .money-symbol:before {
	top: 14px;
}

/* Large and regular field elements turn small */
@media screen and (max-width: 959px) {
	.field-element.field-element--money .field-input .textbox,
	.field-element.field-element--money.field-element--large .field-input .textbox,
	.field-element.field-element--money.field-element--regular .field-input .textbox {
		background-position: top -447px left 0;
		padding-left: 55px;
	}
	.field-element.field-element--white.field-element--money .field-input .textbox,
	.field-element.field-element--white.field-element--money.field-element--large .field-input .textbox,
	.field-element.field-element--white.field-element--money.field-element--regular .field-input .textbox {
		background-position: top -607px left 0;
	}
	.field-element--money .field-input .money-symbol:before,
	.field-element--money.field-element--large .field-input .money-symbol:before,
	.field-element--money.field-element--regular .field-input .money-symbol:before {
		top: 5px;
	}
}


/* ---- Time pickers ---- */

.field-element--timepicker .field-input .textbox {
	padding-left: 55px;
	background-image: url(../images/form-icons.svg),
	url(../images/form-icons.svg);
	background-repeat: no-repeat, no-repeat;
	background-position: top -170px left 12px, top -447px left 0;
}

.ui-timepicker {
	display: block;
	position: absolute;
	height: 200px;
	overflow: auto;
	z-index: 9999 !important;
}

.ui-timepicker-standard {
	background-color: #FFF;
	border: 1px solid #CED2DC;
	display: block;
	margin: 3px 0 0;
	padding: 5px;
	list-style: none outside none;
	border-radius: 4px;
}

.ui-timepicker-standard a {
	color: #24292f;
}

.ui-timepicker-standard .ui-state-hover {
	background-color: #EAECF1;
}

.ui-timepicker-standard .ui-menu-item {
	clear: left;
	float: left;
	margin: 0;
	padding: 0;
	width: 100%;
}

.ui-timepicker-standard .ui-menu-item a {
	display: block;
	padding: 5px 10px;
	line-height: 1.5;
	text-decoration: none;
	border-radius: 3px;
}

.ui-timepicker-hidden {
	display: none;
}

/* White */
.field-element--timepicker.field-element--white .field-input .textbox {
	background-position: top -170px left 12px, top -607px left 0;
}

/* White + Small */
.field-element--timepicker.field-element--white.field-element--small .field-input .textbox {
	background-position: top -175px left 12px, top -607px left 0;
}

/* White + Large */
.field-element--timepicker.field-element--white.field-element--large .field-input .textbox {
	background-position: top -166px left 12px, top -607px left 0;
}

/* Small */
.field-element--timepicker.field-element--small .field-input .textbox {
	background-position: top -175px left 12px, top -447px left 0;
}

/* Large */
.field-element--timepicker.field-element--large .field-input .textbox {
	background-position: top -166px left 12px, top -447px left 0;
}


/* Large and regular field elements turn small */
@media screen and (max-width: 959px) {
	.field-element.field-element--timepicker .field-input .textbox,
	.field-element.field-element--timepicker.field-element--large .field-input .textbox,
	.field-element.field-element--timepicker.field-element--regular .field-input .textbox {
		background-position: top -175px left 12px, top -447px left 0;
		padding-left: 55px;
	}
	.field-element.field-element--white.field-element--timepicker .field-input .textbox,
	.field-element.field-element--white.field-element--timepicker.field-element--large .field-input .textbox,
	.field-element.field-element--white.field-element--timepicker.field-element--regular .field-input .textbox {
		background-position: top -175px left 12px, top -607px left 0;
	}
}

/* ---- Date pickers ---- */

/* Date picker and Date-range picker*/
.field-element--datepicker .field-input .textbox,
.field-element--daterangepicker .field-input .textbox {
	padding-left: 55px;
	background-image: url(../images/form-icons.svg),
	url(../images/form-icons.svg);
	background-repeat: no-repeat, no-repeat;
	background-position: top 11px left 12px, top -447px left 0;
}

/* White */
.field-element--datepicker.field-element--white .field-input .textbox,
.field-element--daterangepicker.field-element--white .field-input .textbox {
	background-position: top 11px left 12px, top -607px left 0;
}
/* White + Small */
.field-element--datepicker.field-element--white.field-element--small .field-input .textbox,
.field-element--daterangepicker.field-element--white.field-element--small .field-input .textbox {
	background-position: top 7px left 12px, top -607px left 0;
}
/* White + Large */
.field-element--datepicker.field-element--white.field-element--large .field-input .textbox,
.field-element--daterangepicker.field-element--white.field-element--large .field-input .textbox {
	background-position: top 15px left 12px, top -607px left 0;
}


/* Small */
.field-element--datepicker.field-element--small .field-input .textbox,
.field-element--daterangepicker.field-element--small .field-input .textbox {
	background-position: top 6px left 12px, top -447px left 0;
}

/* Large */
.field-element--datepicker.field-element--large .field-input .textbox,
.field-element--daterangepicker.field-element--large .field-input .textbox {
	background-position: top 15px left 12px, top -447px left 0;
}


/* Large and regular field elements turn small */
@media screen and (max-width: 959px) {
	.field-element.field-element--datepicker .field-input .textbox,
	.field-element.field-element--datepicker.field-element--regular .field-input .textbox,
	.field-element.field-element--datepicker.field-element--large .field-input .textbox,
	.field-element.field-element--daterangepicker .field-input .textbox,
	.field-element.field-element--daterangepicker.field-element--regular .field-input .textbox,
	.field-element.field-element--daterangepicker.field-element--large .field-input .textbox {
		background-position: top 6px left 12px, top -447px left 0;
		padding-left: 55px;
	}
	.field-element.field-element--white.field-element--datepicker .field-input .textbox,
	.field-element.field-element--white.field-element--datepicker.field-element--regular .field-input .textbox,
	.field-element.field-element--white.field-element--datepicker.field-element--large .field-input .textbox,
	.field-element.field-element--white.field-element--daterangepicker .field-input .textbox,
	.field-element.field-element--white.field-element--daterangepicker.field-element--regular .field-input .textbox,
	.field-element.field-element--white.field-element--daterangepicker.field-element--large .field-input .textbox {
		background-position: top 7px left 12px, top -607px left 0;
	}
}


/* Date/time picker */
.field-element--datetimepicker .field-input .textbox {
	padding-left: 55px;
	background-image: url(../images/form-icons.svg),
	url(../images/form-icons.svg);
	background-repeat: no-repeat, no-repeat;
	background-position: top -88px left 12px, top -447px left 0;
}

/* White */
.field-element--datetimepicker.field-element--white .field-input .textbox {
	background-position: top -88px left 12px, top -607px left 0;
}

/* White + Small */
.field-element--datetimepicker.field-element--small.field-element--white .field-input .textbox {
	background-position: top -93px left 12px, top -607px left 0;
}
/* White + Large */
.field-element--datetimepicker.field-element--large.field-element--white .field-input .textbox {
	background-position: top -85px left 12px, top -607px left 0;
}

/* Small */
.field-element--datetimepicker.field-element--small .field-input .textbox {
	background-position: top -93px left 12px, top -447px left 0;
}

/* Large */
.field-element--datetimepicker.field-element--large .field-input .textbox {
	background-position: top -85px left 12px, top -447px left 0;
}

/* Large and regular field elements turn small */
@media screen and (max-width: 959px) {
	.field-element.field-element--datetimepicker .field-input .textbox,
	.field-element.field-element--datetimepicker.field-element--large .field-input .textbox,
	.field-element.field-element--datetimepicker.field-element--regular .field-input .textbox {
		background-position: top -93px left 12px, top -447px left 0;
		padding-left: 55px;
	}
	.field-element.field-element--white.field-element--datetimepicker .field-input .textbox,
	.field-element.field-element--white.field-element--datetimepicker.field-element--large .field-input .textbox,
	.field-element.field-element--white.field-element--datetimepicker.field-element--regular .field-input .textbox {
		background-position: top -93px left 12px, top -607px left 0;
	}
}


/* Container Appearance */
.daterangepicker {
	position: absolute;
	background: #fff;
	top: 100px;
	left: 20px;
	padding: 4px;
	margin-top: 2px;
	border-radius: 4px;
	width: 278px;
}

.daterangepicker.opensleft:before {
	position: absolute;
	top: -7px;
	right: 9px;
	display: inline-block;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #ccc;
	border-left: 7px solid transparent;
	border-bottom-color: rgba(0, 0, 0, 0.2);
	content: '';
}

.daterangepicker.opensleft:after {
	position: absolute;
	top: -6px;
	right: 10px;
	display: inline-block;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #fff;
	border-left: 6px solid transparent;
	content: '';
}

.daterangepicker.openscenter:before {
	position: absolute;
	top: -7px;
	left: 0;
	right: 0;
	width: 0;
	margin-left: auto;
	margin-right: auto;
	display: inline-block;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #ccc;
	border-left: 7px solid transparent;
	border-bottom-color: rgba(0, 0, 0, 0.2);
	content: '';
}

.daterangepicker.openscenter:after {
	position: absolute;
	top: -6px;
	left: 0;
	right: 0;
	width: 0;
	margin-left: auto;
	margin-right: auto;
	display: inline-block;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #fff;
	border-left: 6px solid transparent;
	content: '';
}

.daterangepicker.opensright:before {
	position: absolute;
	top: -7px;
	left: 9px;
	display: inline-block;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #ccc;
	border-left: 7px solid transparent;
	border-bottom-color: rgba(0, 0, 0, 0.2);
	content: '';
}

.daterangepicker.opensright:after {
	position: absolute;
	top: -6px;
	left: 10px;
	display: inline-block;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #fff;
	border-left: 6px solid transparent;
	content: '';
}

.daterangepicker.dropup{
	margin-top: -5px;
}

.daterangepicker.dropup:before{
	top: initial;
	bottom:-7px;
	border-bottom: initial;
	border-top: 7px solid #CED2DC;
}

.daterangepicker.dropup:after{
	top: initial;
	bottom:-6px;
	border-bottom: initial;
	border-top: 6px solid #fff;
}

.daterangepicker.dropdown-menu {
	max-width: none;
	z-index: 3000;
	display: none;
	border: 1px solid #CED2DC;
}

.daterangepicker.single .ranges, .daterangepicker.single .calendar {
	float: none;
}

.daterangepicker .calendar {
	display: none;
	max-width: 270px;
	margin: 4px;
}

.daterangepicker.show-calendar .calendar {
	display: block;
}

.daterangepicker .calendar.single .calendar-table {
	border: none;
}

/* Calendars */
.daterangepicker .calendar th, .daterangepicker .calendar td {
	white-space: nowrap;
	text-align: center;
	min-width: 32px;
	border: 1px solid #E8E8E8;
}

.daterangepicker .calendar-table {
	border: 1px solid #ddd;
	padding: 4px;
	border-radius: 4px;
	background: #fff;
}

.daterangepicker table {
	width: 100%;
	margin: 0;
	border: none;
}

.daterangepicker td,
.daterangepicker th {
	text-align: center;
	width: 20px;
	height: 20px;
	white-space: nowrap;
	padding: 2px;
}
.daterangepicker td,
.daterangepicker th.available {
	cursor: pointer;
}
.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
	color: #999;
	background: #fff;
	border-color: #E8E8E8;
}
.daterangepicker td.off.in-range {
	background-color: #F4FAFC;
}
.daterangepicker td.off.active {
	background-color: #AAD8EA;
	color: #FFF;
}

.daterangepicker td.disabled,
.daterangepicker option.disabled {
	color: #999;
	cursor: not-allowed;
	text-decoration: line-through;
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
	background: #EAECF1;
}

.daterangepicker td.in-range {
	background: #ebf4f8;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
	background-color: #358AAB;
	border-color: #358AAB;
	color: #fff;
}

.daterangepicker td.week, .daterangepicker th.week {
	font-size: 80%;
	color: #ccc;
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
	font-size: 12px;
	padding: 1px;
	height: auto;
	margin: 0;
	cursor: default;
}

.daterangepicker select.yearselect,
.daterangepicker select.monthselect,
.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect,
.daterangepicker select.ampmselect {
	margin-bottom: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 62px;
	background-color: #FFF;
	outline: none;
	border-radius: 5px;
	font-size: 1.4rem;
	line-height: 1.2;
	padding: 5px 23px 5px 8px;
	border: 1px solid #CED2DC;
	background-image: url(../images/form-icons.svg),
	url(../images/form-icons.svg);
	background-repeat: no-repeat, no-repeat;
	background-position: top -355px right -119px, top -607px right -115px;
}

.daterangepicker select.monthselect {
	margin-right: 2%;
	width: 40%;
}

.daterangepicker select.yearselect {
	width: 44%;
}

.daterangepicker th.month {
	width: auto;
}

/* Previous/Next buttons */
.daterangepicker th.prev .daterangepicker-prev-icon,
.daterangepicker th.next .daterangepicker-next-icon {
	width: 11px;
	height: 17px;
	background-image: url(../images/form-icons.svg);
	background-repeat: no-repeat;
	display: block;
	margin: 0 auto;
}
.daterangepicker th.prev:hover,
.daterangepicker th.next:hover {
	background: none;
	opacity: 0.8;
}
.daterangepicker th.prev .daterangepicker-prev-icon {
	background-position: top -820px left 0px;
}
.daterangepicker th.next .daterangepicker-next-icon {
	background-position: top -880px left 1px;
}

.daterangepicker th.prev,
.daterangepicker th.next,
.daterangepicker th.month,
.daterangepicker .calendar-table thead tr:first-child th {
	border: none;
	background: none;
}

.daterangepicker .calendar-table thead tr:nth-child(2) th {
	background-color: #F2F2F5;
}

/* Text Input Above Each Calendar */
.daterangepicker .input-mini {
	border: 1px solid #ccc;
	border-radius: 4px;
	color: #555;
	display: block;
	height: 30px;
	line-height: 30px;
	vertical-align: middle;
	margin: 0 0 5px 0;
	padding: 0 6px 0 28px;
	width: 100%;
}

.daterangepicker .input-mini.active {
	border: 1px solid #358AAB;
	background-color: rgb(255, 255, 238);
}

.daterangepicker .daterangepicker_input i {
	position: absolute;
	left: 8px;
	top: 7px;
	color: #596474;
}

.daterangepicker .daterangepicker_input {
	position: relative;
}

/* Time Picker */
.daterangepicker .calendar-time {
	text-align: center;
	margin: 5px auto;
	line-height: 30px;
	position: relative;
}

.daterangepicker .calendar-time select.disabled {
	color: #ccc;
	cursor: not-allowed;
}

/* Predefined Ranges */
.daterangepicker .ranges {
	font-size: 11px;
	float: none;
	margin: 4px;
	text-align: left;
}

.daterangepicker .applyBtn {
	background-color: #35ab75;
	color: #FFF;
}
.daterangepicker .applyBtn:hover,
.daterangepicker .applyBtn:focus {
	background-color: #2C9867;
	color: #FFF;
}

.daterangepicker .cancelBtn {
	background-color: #D0D3DA;
	color: #24292F;
}
.daterangepicker .cancelBtn:hover,
.daterangepicker .cancelBtn:focus {
	background-color: #BCBFC5;
	color: #24292f;
}

.daterangepicker .ranges ul {
	list-style: none;
	margin: 0 auto 12px;
	padding: 0;
	width: 100%;
}

.daterangepicker .ranges li {
	font-size: 1.3rem;
	background: #EAECF1;
	border: 1px solid #f5f5f5;
	color: #24292F;
	padding: 4px 12px 3px;
	margin-bottom: 7px;
	border-radius: 5px;
	cursor: pointer;
	line-height: 1.2;
}

.daterangepicker .ranges li.active, .daterangepicker .ranges li:hover {
	background: #358AAB;
	border: 1px solid #358AAB;
	color: #fff;
}

/*  Larger Screen Styling */
@media (min-width: 600px) {
	.daterangepicker{
		width: auto;
	}

	.daterangepicker .ranges ul {
		width: 160px;
	}

	.daterangepicker.single .ranges ul {
		width: 100%;
	}

	.daterangepicker .calendar.left .calendar-table {
		border-right: none;
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
	}

	.daterangepicker .calendar.right .calendar-table {
		border-left: none;
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
	}

	.daterangepicker .calendar.left {
		clear: left;
		margin-right: 0;
	}

	.daterangepicker.single .calendar.left {
		clear: none;
	}

	.daterangepicker.single .ranges,
	.daterangepicker.single .calendar{
		float:left;
	}

	.daterangepicker .calendar.right {
		margin-left: 0;
	}

	.daterangepicker .left .daterangepicker_input {
		padding-right: 12px;
	}

	.daterangepicker .calendar.left .calendar-table {
		padding-right: 12px;
	}

	.daterangepicker .ranges,
	.daterangepicker .calendar {
		float: left;
	}

}

@media (min-width: 769px) {
	.daterangepicker .ranges {
		width: auto;
		float: left;
	}

	.daterangepicker .calendar.left {
		clear: none;
	}
}


/* ---- File upload area ---- */
.file-upload__input {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.file-upload__helptext {
	padding-top: 14px;
}
.file-upload__helptext--hidden {
	display: none;
}
.file-upload__helptext__line2 {
	display: block;
	font-size: 1.3rem;
}
.file-upload__helptext p {
	margin: 0;
}
.file-upload__helptext:before {
	content: " ";
	display: block;
	width: 27px;
	height: 32px;
	background-image: url(../images/form-icons.svg);
	background-repeat: no-repeat;
	background-position: 0 -1317px;
	margin: 0 auto 10px;
}

.file-upload__area {
	cursor: pointer;
	text-align: center;
}
.field-input .textbox.file-upload__area--dragenter {
	border-color: #35ab75;
}

.file-upload__uploads:before,
.file-upload__uploads:after {
	content: " ";
	display: table;
}

.file-upload__uploads:after {
	clear: both;
}
.file-upload__item,
.file-upload__helptext {
	height: 110px;
	margin-top: 8px;
	margin-bottom: 8px;
}
.file-upload__item {
	background-color: #FFF;
	border: 1px solid #ced2dc;
	width: 110px;
	display: inline-block;
	margin-left: 6px;
	margin-right: 6px;
	position: relative;
	cursor: default;
	vertical-align: top;
}

.file-upload__item__remove {
	-webkit-appearance: none;
	padding: 0;
	outline: none;
	border: none;
	background: none;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.3);
}
.file-upload__item__remove:hover,
.file-upload__item__remove:focus {
	background: rgba(0, 0, 0, 0.7);
}

.file-upload__item__remove:after {
	content: " ";
	display: block;
	width: 17px;
	height: 17px;
	background-image: url(../images/form-icons.svg);
	background-repeat: no-repeat;
	background-position: 3px -938px;
}
.file-upload__item__remove__text {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* Feedback */
.file-upload__item__feedback__response {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.file-upload__item__feedback__response p {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	margin: 0;
}

/* Not image response */
.file-upload__item__feedback__response .file-upload__item__feedback__name {
	font-size: 1.2rem;
	margin: 0 0 5px;
}
.file-upload__item__feedback__size {
	font-size: 1.1rem;
	margin: 0;
}
.file-upload__item__feedback__response--success--not-image {
	padding: 26px 15px 20px;
}
.file-upload__item__feedback__response--success--not-image:before {
	content: " ";
	display: block;
	width: 28px;
	height: 24px;
	background-image: url(../images/form-icons.svg);
	background-repeat: no-repeat;
	background-position: 0px -1396px;
	margin: 0 auto 10px;
}

/* Image response */
.file-upload__item__feedback__image {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
}

/* Error */
.file-upload__item__feedback__response--error {
	padding: 25px 15px 20px;
}
.file-upload__item__feedback__response .file-upload__item__feedback__error__text {
	font-size: 1.2rem;
	white-space: normal;
	overflow: visible;
}
.file-upload__item__feedback__response--error:before {
	content: " ";
	display: block;
	width: 23px;
	height: 24px;
	background-image: url(../images/form-icons.svg);
	background-repeat: no-repeat;
	background-position: 0px -1473px;
	margin: 0 auto 10px;
}

/* Hover */
.file-upload__item__feedback__hover {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	color: #FFF;
	padding: 33px 15px 20px;
	overflow: hidden;
}
.file-upload__item:hover .file-upload__item__feedback__hover {
	opacity: 1;
}
.file-upload__item__feedback__hover__size {
	font-size: 1.1rem;
}
.file-upload__item__feedback__hover__dimensions {
	font-size: 1.1rem;
}
.file-upload__item__feedback__hover .file-upload__item__feedback__hover__name {
	font-size: 1.1rem;
	margin-bottom: 6px;
}

/* Progress circles */
.file-upload__progress-circle {
	position: relative;
	font-size: 1.3rem;
	line-height: 1.1;
	display: block;
	width: 56px;
	height: 56px;
	padding: 21px 0 0 0;
	margin: 26px auto 0;
	text-align: center;
}
.file-upload__progress-circle__amount {
	z-index: 1;
	position: relative;
}
.file-upload__progress-circle__pie {
	transform: rotate(-90deg);
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
}
.file-upload__progress-circle__pie__piece {
	transition: all 100ms ease-in-out;
}


/* ---- File selector ---- */
.field-element--fileselector .fs-select-button {
	float: left;
	margin-right: 9px;
}

.field-element--fileselector .fs-preview-wrapper {
	background-color: #EEF0F3;
	position: relative;
	overflow: hidden;
	display: block;
}

.field-element--fileselector .fs-filename {
	padding: 10px 15px;
	word-break: break-all;
	overflow: hidden;
	display: block;
}
.field-element--fileselector .fs-file-selected .fs-filename {
	padding-left: 10px;
	padding-right: 38px;
}

.field-element--fileselector .fs-preview {
	width: 39px;
	display: none;
	float: left;
}
.field-element--fileselector .fs-file-selected .fs-preview {
	display: block;
}

.field-element--fileselector .fs-remove {
	display: none;
	-webkit-appearance: none;
	outline: none;
	border: none;
	background: none;
	padding: 0;
	color: #D4D7DE;
	position: absolute;
	right: 6px;
	top: 9px;
	background-image: url(../images/form-icons.svg);
	background-repeat: no-repeat;
	background-position: top -1075px left 3px;
	width: 22px;
	height: 22px;
}
.field-element--fileselector .fs-remove:hover,
.field-element--fileselector .fs-remove:focus {background-position: top -1135px left 3px;}
.field-element--fileselector .fs-file-selected .fs-remove {
	display: block;
}


/* Small */
.field-element--fileselector.field-element--small .fs-preview {
	width: 30px;
}
.field-element--fileselector.field-element--small .fs-filename {
	padding-top: 8px;
	padding-bottom: 6px;
	font-size: 1.4rem;
}
.field-element--fileselector.field-element--small .fs-remove {
	top: 6px;
	background-position: top -964px left 3px;
	width: 20px;
	height: 20px;
}
.field-element--fileselector.field-element--small .fs-remove:hover,
.field-element--fileselector.field-element--small .fs-remove:focus {
	background-position: top -1023px left 3px;
}
.field-element--fileselector.field-element--small .fs-file-selected .fs-filename {
	padding-right: 31px;
}

/* Large */
.field-element--fileselector.field-element--large .fs-preview {
	width: 48px;
}
.field-element--fileselector.field-element--large .fs-filename {
	padding-top: 13px;
	padding-bottom: 13px;
	padding-left: 25px;
	padding-right: 25px;
	font-size: 1.8rem;
}
.field-element--fileselector.field-element--large .fs-remove {
	top: 14px;
	right: 9px;
}
.field-element--fileselector.field-element--large .fs-file-selected .fs-filename {
	padding-right: 41px;
	padding-left: 20px;
}

/* Popup */
.file-selector-search-wrapper  {
	display: none;
}
.file-selector-search-wrapper.searched  {
	display: block;
}
#file-selector-preview {
	display: block;
	background: #f9f9fb;
	border: 1px solid #E0E3EA;
	margin: 0 0 20px;
	position: relative;
	padding: 20px 25px;
}
.no-results #file-selector-preview {
	display: none;
}
#file-selector-preview .preview-title {
	margin: 0 0 12px;
}
#file-selector-preview .preview-box {
	position: relative;
	height: 150px;
}
#file-selector-preview img {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin: 0 auto;
	display: block;
}

#file-selector-upload .field-element--new-category,
#file-selector-upload.new-category .field-element--select-category {
	display: none;
}
#file-selector-upload.new-category .field-element--new-category,
#file-selector-upload .field-element--select-category {
	display: block;
}

#file-selector-result-wrap {
	max-height: 450px;
	overflow: auto;
	border-top: 1px solid #D7D7D7;
	border-bottom: 1px solid #D7D7D7;
}
#file-selector-upload .field-elements-inline,
#file-selector-search .field-elements-inline {
	display: flex;
}
#file-selector-upload .field-elements-inline .field-element--dropdown,
#file-selector-search .field-elements-inline .field-element--dropdown {
	flex-grow: 1;
}
#file-selector-upload .field-elements-inline .field-element--text,
#file-selector-search .field-elements-inline .field-element--text {
	flex-grow: 1;
}

#file-selector-stats {
	font-size: 1.6rem;
	margin-bottom: 14px;
}
#file-selector-results .file-select-table {
	margin: 0;
	width: 100%;
	border-left: 1px solid #E0E3EA;
	border-right: 1px solid #E0E3EA;
}
#file-selector-results .file-select-table tr {
	border-bottom: 1px solid #D7D7D7;
	cursor: pointer;
}
#file-selector-results .file-select-table tr:last-child {
	border-bottom: 0;
}
#file-selector-results .file-select-table tr:nth-child(odd) {
	background-color: #f9f9fb;
}

/* Hover */
#file-selector-results .file-select-table tr:hover {
	background-color: #ECE9E9;
}

#file-selector-paginate {
	margin-top: 16px;
}
#file-selector-prev {
	float: left;
}
#file-selector-next {
	float: right;
}
#file-selector-results a {
	text-decoration: none;
	color: inherit;
	display: block;
}
#file-selector-results .file-select-table-thumbnail {
	width: 100px;
	padding: 5px 20px;
}
#file-selector-results .file-select-table-text a {
	padding: 27px 25px 27px 0;
}
#file-selector-results .table--content-standard tr:hover td {
	background-color: red;
}

/* ---- Autocomplete ---- */
.ui-autocomplete {
	list-style: none;
	background: #FFFFFF;
	max-height: 400px;
	overflow-y: auto;
	border: 1px solid #CED2DC;
	border-radius: 4px;
	padding: 3px 0;
	margin: 0;
}
.ui-autocomplete .ui-menu-item {
	padding: 5px 11px;
	cursor: pointer;
}
.ui-autocomplete .ui-menu-item.ui-state-focus {
	padding: 5px 11px;
	background: #358AAB;
	color: #FFF;
}


/* ---- Lightweight elements ---- */
.field-element--lightweight {
	margin: 0;
}

/* ---- Field element attach ---- */
.field-element-attach-wrapper {
	position: relative;
}
.field-element--attach-button {
	position: absolute;
	top: 0;
	right: 0;
}
.field-element--attach-button button {
	border: none;
	background: #e8ebf7;
	height: 48px;
	border-radius: 0 25px 25px 0;
	padding: 3px 10px 0 5px;
}
.field-element--attach-button button:before {
	font-size: 4.2rem;
	color: #515e7c;
}

.field-element-attach-wrapper .field-element .field-input .textbox {
	padding-right: 75px;
}

/* Large and regular field elements turn small */
@media screen and (max-width: 959px) {
	.field-element--attach-button button {
		height: 38px;
		border-radius: 0 19px 19px 0;
		padding: 1px 6px 0 2px;
	}
	.field-element--attach-button button:before {
		font-size: 3.6rem;
	}
	.field-element-attach-wrapper .field-element .field-input .textbox {
		padding-right: 55px;
	}
}


/* ---- TinyMCE tweaks ---- */
.mce-panel {
	border-color: #CED2DC !important;
}
.mce-toolbar-grp,
.mce-flow-layout {
	background-color: #EAECF1 !important;
}
.mce-tinymce{
	border-radius: 5px !important;
	overflow: hidden !important;
}
.mce-btn {
	border: 1px solid #EAECF1 !important;
	background-color: #EAECF1 !important;
}
.mce-btn:hover,
.mce-btn:focus{
	color: #333;
	background-color: #DDE0E6 !important;
	border-color: #C6CAD2 !important;
}
.mce-btn.mce-active,
.mce-btn.mce-active:hover{
	background-color: #CED2DC !important;
	border-color: #B5B8C1 !important;
}
.mce-btn:active{
	background-color:#e0e0e0 !important;
	border-color: #ccc !important;
}
.mce-menu-item:hover, .mce-menu-item.mce-selected, .mce-menu-item:focus {
	background-color: #358AAB !important;
	color: #FFF !important;
}


/* ---- Responsiveness ---- */

/* Large and regular field elements turn small */
@media screen and (max-width: 959px) {
	.field-element .field-input .textbox,
	.field-element.field-element--large .field-input .textbox,
	.field-element.field-element--regular .field-input .textbox,
	.field-element .field-input select,
	.field-element.field-element--large .field-input select,
	.field-element.field-element--regular .field-input select {
		padding: 8px 15px 7px;
	}
	.field-element .field-input select,
	.field-element.field-element--large .field-input select,
	.field-element.field-element--regular .field-input select {
		background-position: top -268px right -111px;
		padding-right: 31px;
	}
}

/* iOS zoom fix */
@media screen and (max-width: 768px) {
	.field-element .field-input .textbox,
	.field-element.field-element--large .field-input .textbox,
	.field-element.field-element--regular .field-input .textbox,
	.field-element.field-element--small .field-input .textbox,
	.field-element .field-input select,
	.field-element.field-element--large .field-input select,
	.field-element.field-element--regular .field-input select,
	.field-element.field-element--small .field-input select {
		font-size: 1.6rem;
		padding: 6px 15px 6px;
	}
}


/* ---- Submit Bar ---- */
.submit-bar {
	text-align: right;
	margin: 14px 0;
}
.submit-bar a {
	margin-right: 20px;
}


/* ---- Search Form ---- */
input.search-query {
	margin-bottom: 0;
	padding-right: 14px;
	padding-left: 14px;
	border-radius: 0;

}

.form-search .input-append .search-query,
.form-search .input-prepend .search-query {
	border-radius: 0;
}

.form-search .input-append .search-query {
	border-radius: 14px 0 0 14px;
}

.form-search .input-append .btn {
	border-radius: 0 14px 14px 0;
}

.form-search .input-prepend .search-query {
	border-radius: 0 14px 14px 0;
}

.form-search .input-prepend .btn {
	border-radius: 14px 0 0 14px;
}

.form-search {
	/*radio*/
}
.form-search input,
.form-search textarea,
.form-search select {
	display: inline-block;
	margin-bottom: 0;
	vertical-align: middle;
}
.form-search .hide {
	display: none;
}
.form-search label,
.form-search .btn-group {
	display: inline-block;
}
.form-search .radio,
.form-search .checkbox {
	margin-bottom: 0;
	padding-left: 0;
	vertical-align: middle;
}
.form-search .radio input[type="radio"],
.form-search .checkbox input[type="checkbox"] {
	float: left;
}
.form-search .radio input[type="radio"] margin,
.form-search .checkbox input[type="checkbox"] margin {
	right: 3px;
	left: 0;
}
.form-search .control-group {
	margin-bottom: 0.75em;
}
.form-search legend + .control-group {
	margin-top: 1.5em;
	-webkit-margin-top-collapse: separate;
}


/* ---- Search pagination ---- */
.search-paginate {
	padding: 10px 0;
	text-align: center;
}
.search-paginate .page-prev {
	margin: 0 8px 0 0;
}
.search-paginate .page {
	padding: 2px 9px;
	margin: 0 3px;
	background: #eee;
	border: 1px #e85505 solid;
	text-decoration: none;
}
.search-paginate .page.on {
	color: #000;
	border-color: #000;
}
.search-paginate .page-next {
	margin: 0 0 0 8px;
}


/* ---- Captcha ---- */
.captcha {
	background-color: #f6f6f6;
	padding: 10px;
	width: 100%;
	border: 1px solid #D7D7D7;
}

.captcha .captcha-info, .captcha .info {
	float: right;
	padding-bottom: 8px;
}
.captcha .captcha-info, .captcha .info a {
	text-decoration: none;
}
.captcha .captcha-info .captcha-icon {
	width: 16px;
	height: 16px;
	margin-bottom: 16px;
}

.captcha .captcha-img {
	width: 200px;
	margin-bottom: 10px;
}

.captcha .captcha-input {
	width: 200px;
}


/* ------------------------------------------------------
**** Tables
------------------------------------------------------ */

table {
	border-collapse: collapse;
	border: 1px solid #d7d7d7;
}

th,
td {
	padding: 5px 10px;
	border: 1px solid #d7d7d7;
}

th,
thead td {
	background: #f6f6f6;
}

/* ---- Content tables ---- */
.table--content-standard {
	width: 100%;
	margin: 2rem 0;
}
.table--content-standard caption {
	text-align: left;
	padding-bottom: 13px;
}
.table--content-standard th,
.table--content-standard thead td {
	font-weight: bold;
	background-color: #F0F0F0;
	font-size: 1.4rem;
}
.table--content-standard td {
	background-color: #FFF;
}
.table--content-standard th,
.table--content-standard td {
	border: 1px solid #d7d7d7;
	padding: 5px 10px;
	text-align: left;
}


/* Small */
.table--content-standard.table--content-small {
	font-size: 1.2rem;
}
.table--content-standard.table--content-small th,
.table--content-standard.table--content-small td {
	padding: 5px 10px;
}
.table--content-standard.table--content-small th,
.table--content-standard.table--content-small thead td {
	font-size: 1.4rem;
}

/* BP 5 */
@media screen and (min-width: 500px) {

}

/* BP 4 */
@media screen and (min-width: 600px) {

}

/* BP 3 */
@media screen and (min-width: 769px) {

}

/* BP 2 */
@media screen and (min-width: 960px) {
	.table--content-standard th,
	.table--content-standard thead td {
		font-size: 1.7rem;
	}
	.table--content-standard th,
	.table--content-standard td {
		padding: 10px 13px;
	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {

}

/* ---- Responsive table ---- */
table.responsive {
	overflow: auto;
	overflow-y: hidden;
	overflow-x: auto;
	display: block;
}

/* ---- Responsive tablres (one column) ---- */
/* Max BP 4 */
@media screen and (max-width: 599px) {
	.responsive-table thead tr:first-child {
		display: none;
	}
	.responsive-table {
		overflow: visible !important;
		overflow-y: visible !important;
		overflow-x: visible !important;
		border: none;
	}
	.responsive-table,
	.responsive-table tbody,
	.responsive-table tr,
	.responsive-table td {
		display: block;
		width: 100%;
	}

	.responsive-table tr {
		border-left: 1px solid #d7d7d7;
		border-right: 1px solid #d7d7d7;
		border-bottom: 1px solid #d7d7d7;
		margin-bottom: 20px;
		position: relative;
	}
	.responsive-table td {
		padding: 10px 15px;
		border: none !important;
		border-top: 1px solid #d7d7d7 !important;
	}
	.responsive-table td:before {
		content: attr(data-table-column);
		display: block;
		font-weight: 700;
		background-color: #f0f0f0;
		margin: -10px -15px 5px;
		padding: 8px 15px;
		border-bottom: 1px solid #d7d7d7;
	}
	.responsive-table td[data-table-column=""]:before {
		content: none;
	}
}

/* ---- No Styles Table ---- */
.table__no-styles {
	border-collapse: separate !important;
	border: none !important;
	background: none !important;
	min-width: 0 !important;
}

.table__no-styles th,
.table__no-styles thead td,
.table__no-styles td {
	padding: 0 !important;
	border: 0 !important;
	background: none !important;
}




/* ------------------------------------------------------
**** Helper classes
------------------------------------------------------ */

/* ---- Clearfix ---- */
.clear {
	height: 0;
	clear: both;
	display: block;
}

.-clearfix:before,
.-clearfix:after {
	content: " ";
	display: table;
}

.-clearfix:after {
	clear: both;
}


/* ---- Hiding classes ---- */
.-ir {
	background-color: transparent;
	border: 0;
	overflow: hidden;
}

.-ir:before {
	content: "";
	display: block;
	width: 0;
	height: 150%;
}

.-hidden {
	display: none !important;
	visibility: hidden;
}

.-vis-hidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.-vis-hidden.focusable:active,
.-vis-hidden.focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
}

.-invisible {
	visibility: hidden;
}

/* ---- Pseudo elements ---- */

/* Angle Brackets */
.-r-arrow-after:after {
	content: "\00a0\003e";
}
.-r-arrow-before:before {
	content: "\003e\00a0";
}
.-l-arrow-after:after {
	content: "\00a0\003c";
}
.-l-arrow-before:before {
	content: "\003c\00a0";
}

/* Ellipsis */
.ellipsis-2:after {
	content: "..";
}
.ellipsis-3:after {
	content: "...";
}

/* ---- Floats and positioning ---- */

.left {
	margin: 0 30px 30px 0;
	float: left;
}

.right {
	margin: 0 0 30px 30px;
	float: right;
}

.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.block {
	margin: 0 0 30px;
	display: block;
}

@media screen and (max-width: 600px) {
	.left,
	.center,
	.right {
		margin-left: 0;
		margin-right: 0;
		width: 100%;
		display: block;
		float: none;
	}
}

/* ---- Text align ---- */
.text-align--left {
	text-align: left;
}
.text-align--center {
	text-align: center;
}
.text-align--right {
	text-align: right;
}

/* ---- Grid system ---- */
.grid:before,
.grid:after {
	content: " ";
	display: table;
}

.grid:after {
	clear: both;
}

.grid-col {
	float: left;
	margin-right: 1.754385964912%;
}
.grid-col:last-child,
.grid-col.grid-col-last-in-row {
	margin-right: 0;
}

/* Reverse */
.grid.grid-reverse .grid-col {
	float: right;
	margin-right: 0;
	margin-left: 1.754385964912%;
}
.grid.grid-reverse .grid-col:last-child,
.grid.grid-reverse .grid-col.grid-col-last-in-row {
	margin-left: 0;
}

/* 2 col grid */
.grid-2-cols .grid-col:nth-child(2n+2) {
	margin-right: 0;
}
/* 3 col grid */
.grid-3-cols .grid-col:nth-child(3n+3) {
	margin-right: 0;
}
/* 4 col grid */
.grid-4-cols .grid-col:nth-child(4n+4) {
	margin-right: 0;
}

/* 1 col */
.grid-col-1 {
	width: 6.725146198830%;
}
/* 2 col */
.grid-col-2 {
	width: 15.204678362573%;
}
/* 3 col */
.grid-col-3 {
	width: 23.684210526316%;
}
/* 4 col */
.grid-col-4 {
	width: 32.163742690058%;
}
/* 5 col */
.grid-col-5 {
	width: 40.643274853801%;
}
/* 6 col */
.grid-col-6 {
	width: 49.122807017544%;
}
/* 7 col */
.grid-col-7 {
	width: 57.602339181287%;
}
/* 8 col */
.grid-col-8 {
	width: 66.081871345029%;
}
/* 9 col */
.grid-col-9 {
	width: 74.561403508772%;
}
/* 10 col */
.grid-col-10 {
	width: 83.040935672515%;
}
/* 11 col */
.grid-col-11 {
	width: 91.520467836257%;
}
/* 12 col */
.grid-col-12 {
	width: 100%;
	margin-right: 0;
}

/* BP 1 */
@media screen and (max-width: 1239px) {

	/* 1 col */
	.grid-col-1-bp1 {
		width: 6.725146198830%;
	}
	/* 2 col */
	.grid-col-2-bp1 {
		width: 15.204678362573%;
	}
	/* 3 col */
	.grid-col-3-bp1 {
		width: 23.684210526316%;
	}
	/* 4 col */
	.grid-col-4-bp1 {
		width: 32.163742690058%;
	}
	/* 5 col */
	.grid-col-5-bp1 {
		width: 40.643274853801%;
	}
	/* 6 col */
	.grid-col-6-bp1 {
		width: 49.122807017544%;
	}
	/* 7 col */
	.grid-col-7-bp1 {
		width: 57.602339181287%;
	}
	/* 8 col */
	.grid-col-8-bp1 {
		width: 66.081871345029%;
	}
	/* 9 col */
	.grid-col-9-bp1 {
		width: 74.561403508772%;
	}
	/* 10 col */
	.grid-col-10-bp1 {
		width: 83.040935672515%;
	}
	/* 11 col */
	.grid-col-11-bp1 {
		width: 91.520467836257%;
	}
	/* 12 col */
	.grid-col-12-bp1 {
		width: 100%;
		margin-right: 0;
	}
}

/* BP 2 */
@media screen and (max-width: 959px) {

	/* 1 col */
	.grid-col-1-bp2 {
		width: 6.725146198830%;
	}
	/* 2 col */
	.grid-col-2-bp2 {
		width: 15.204678362573%;
	}
	/* 3 col */
	.grid-col-3-bp2 {
		width: 23.684210526316%;
	}
	/* 4 col */
	.grid-col-4-bp2 {
		width: 32.163742690058%;
	}
	/* 5 col */
	.grid-col-5-bp2 {
		width: 40.643274853801%;
	}
	/* 6 col */
	.grid-col-6-bp2 {
		width: 49.122807017544%;
	}
	/* 7 col */
	.grid-col-7-bp2 {
		width: 57.602339181287%;
	}
	/* 8 col */
	.grid-col-8-bp2 {
		width: 66.081871345029%;
	}
	/* 9 col */
	.grid-col-9-bp2 {
		width: 74.561403508772%;
	}
	/* 10 col */
	.grid-col-10-bp2 {
		width: 83.040935672515%;
	}
	/* 11 col */
	.grid-col-11-bp2 {
		width: 91.520467836257%;
	}
	/* 12 col */
	.grid-col-12-bp2 {
		width: 100%;
		margin-right: 0;
	}
}

/* BP 3 */
@media screen and (max-width: 768px) {

	/* 1 col */
	.grid-col-1-bp3 {
		width: 6.725146198830%;
	}
	/* 2 col */
	.grid-col-2-bp3 {
		width: 15.204678362573%;
	}
	/* 3 col */
	.grid-col-3-bp3 {
		width: 23.684210526316%;
	}
	/* 4 col */
	.grid-col-4-bp3 {
		width: 32.163742690058%;
	}
	/* 5 col */
	.grid-col-5-bp3 {
		width: 40.643274853801%;
	}
	/* 6 col */
	.grid-col-6-bp3 {
		width: 49.122807017544%;
	}
	/* 7 col */
	.grid-col-7-bp3 {
		width: 57.602339181287%;
	}
	/* 8 col */
	.grid-col-8-bp3 {
		width: 66.081871345029%;
	}
	/* 9 col */
	.grid-col-9-bp3 {
		width: 74.561403508772%;
	}
	/* 10 col */
	.grid-col-10-bp3 {
		width: 83.040935672515%;
	}
	/* 11 col */
	.grid-col-11-bp3 {
		width: 91.520467836257%;
	}
	/* 12 col */
	.grid-col-12-bp3 {
		width: 100%;
		margin-right: 0;
	}
}

/* BP 4 */
@media screen and (max-width: 600px) {

	/* 1 col */
	.grid-col-1-bp4 {
		width: 6.725146198830%;
	}
	/* 2 col */
	.grid-col-2-bp4 {
		width: 15.204678362573%;
	}
	/* 3 col */
	.grid-col-3-bp4 {
		width: 23.684210526316%;
	}
	/* 4 col */
	.grid-col-4-bp4 {
		width: 32.163742690058%;
	}
	/* 5 col */
	.grid-col-5-bp4 {
		width: 40.643274853801%;
	}
	/* 6 col */
	.grid-col-6-bp4 {
		width: 49.122807017544%;
	}
	/* 7 col */
	.grid-col-7-bp4 {
		width: 57.602339181287%;
	}
	/* 8 col */
	.grid-col-8-bp4 {
		width: 66.081871345029%;
	}
	/* 9 col */
	.grid-col-9-bp4 {
		width: 74.561403508772%;
	}
	/* 10 col */
	.grid-col-10-bp4 {
		width: 83.040935672515%;
	}
	/* 11 col */
	.grid-col-11-bp4 {
		width: 91.520467836257%;
	}
	/* 12 col */
	.grid-col-12-bp4 {
		width: 100%;
		margin-right: 0;
	}
}

/* ---- Hide ---- */
.hide {
	display: none;
}

/* BP 5 */
@media screen and (min-width: 500px) {
	.hide-bp5 {
		display: none;
	}
}

/* BP 4 */
@media screen and (min-width: 600px) {
	.hide-bp4 {
		display: none;
	}
}

/* BP 3 */
@media screen and (min-width: 769px) {
	.hide-bp3 {
		display: none;
	}
}

/* BP 2 */
@media screen and (min-width: 960px) {
	.hide-bp2 {
		display: none;
	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {
	.hide-bp1 {
		display: none;
	}
}

/* ---- Show ---- */
.show {
	display: initial;
}

/* BP 5 */
@media screen and (min-width: 500px) {
	.show-bp5 {
		display: initial;
	}
}

/* BP 4 */
@media screen and (min-width: 600px) {
	.show-bp4 {
		display: initial;
	}
}

/* BP 3 */
@media screen and (min-width: 769px) {
	.show-bp3 {
		display: initial;
	}
}

/* BP 2 */
@media screen and (min-width: 960px) {
	.show-bp2 {
		display: initial;
	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {
	.hide-bp1 {
		display: none;
	}
}

/* ------------------------------------------------------
**** Template Layout
------------------------------------------------------ */

* {
	margin: 0;
}

html,
body {
	background: #FFF;
	height: 100%;
}

#wrap {
	margin: 0 auto;
	position: relative;
	min-height: 100%;
	height: 100%;
}

.container {
	width: 88%;
	margin: 0 6%;
}

/* BP 4 */
@media screen and (min-width: 600px) {
	.container {
		width: 550px;
		margin: 0 auto;
	}
}

/* BP 3 */
@media screen and (min-width: 769px) {
	.container {
		width: 700px;
	}
}

/* BP 2 */
@media screen and (min-width: 960px) {
	.container {
		width: 900px;
	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {
	.container {
		width: 1160px;
	}
}

/* ---- Sections ---- */
.section {
	padding: 25px 0;
	position: relative;
	z-index: 1;
}

/* No padding */
.section.section--no-padding {
	padding-top: 0;
	padding-bottom: 0;
}

/* BP 5 */
@media screen and (min-width: 500px) {

}

/* BP 4 */
@media screen and (min-width: 600px) {

}

/* BP 3 */
@media screen and (min-width: 769px) {
	.section {
		padding-top: 32px;
		padding-bottom: 32px;
	}
}

/* BP 2 */
@media screen and (min-width: 960px) {
	.section {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	/* No padding */
	.section.section--no-padding-bp2 {
		padding-top: 0;
		padding-bottom: 0;
	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {
	.section {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}


/* ---- Background colours ---- */

/* White */
.bg-white {
	background-color: #fff;
}
.bg-white .subtitle {
	color: #515e7c;
}


.bg-lightestgrey {
	background-color: #f6f6f6;
}
.bg-lightergrey {
	background-color: #e8ebf7;
}
.bg-lightgrey {
	background-color: #cbcdcf;
}
.bg-grey {
	background-color: #898e94;
}

/* Darkgrey */
.bg-darkgrey {
	background-color: #414042;
}
.bg-darkgrey,
.bg-darkgrey .h2,
.bg-darkgrey h2 {
	color: #FFF;
}


/* Black */
.bg-black {
	background-color: #000;
}
.bg-black,
.bg-black .h2,
.bg-black h2,
.bg-parallax-black,
.bg-parallax-black .h2,
.bg-parallax-black h2 {
	color: #FFF;
}

/* Darkblue */
.bg-darkblue {
	background-color: #515e7c;
	color: #FFF;
}
.bg-darkblue h2 {
	color: #FFF;
}

/* Blue */
.bg-blue {
	background-color: #63adf2;
}
.bg-blue,
.bg-blue h1,
.bg-blue .h1,
.bg-blue h2,
.bg-blue .h2 {
	color: #FFF;
}

/* Light blue */
.bg-lightblue {
	background-color: #a7cced;
}
.bg-lightblue,
.bg-lightblue .h2,
.bg-lightblue h2 {
	color: #FFF;
}

/* Text on dark backgrounds */

.reverse-text {
	color: #fff;
}

.reverse-text a {
	color: #fff;
	text-decoration: none;
}

.reverse-text a:hover,
.reverse-text a:active,
.reverse-text a:focus {
	color: #fff;
	text-decoration: underline;
}

.pale-reverse-text,
.pale-reverse-text a {
	color: rgba(255,255,255,0.7);
	text-decoration: none;
}


.pale-reverse-text a:hover,
.pale-reverse-text a:active,
.pale-reverse-text a:focus {
	color: #fff;
	text-decoration: underline;
}



/* ---- Header ---- */
.section--header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 14px 0;
	z-index: 500;
	transition: background-color 280ms ease;
}
.header-logo {
	float: left;
	margin-top: 4px;
}
.header-logo__img {
	width: 84px;
}

/* Post header */
.section--post-header {
	margin-top: 0;
}

/* BP 4 */
@media screen and (min-width: 600px) {

}

/* BP 3 */
@media screen and (min-width: 769px) {

}

/* BP 2 */
@media screen and (min-width: 960px) {
	.header-scrolled .section--header,
	.header-filled .section--header {
		background-color: #414042;
	}
	.header-logo__img {
		width: 120px;
	}
	.header-logo {
		margin-top: 0;
		float: unset;
		text-align: center;
	}

	.section--post-header {
		margin-top: 76px;
	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {
	.section--header {
		padding: 20px 0;
	}

	.section--post-header {
		margin-top: 88px;
	}
	.header-logo {
		float: left;
	}

}


/* ---- Mainbar / sidebar ---- */

/* Mainbar */
.mainbar {

}

/* Wide */
.mainbar.mainbar--wide {
	width: auto;
	padding-right: 0;
	flex: none;
}

.wide-thin-container {
	max-width: 600px;
	margin: 0 auto;
}

/* Sidebar */
.sidebar {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 2px solid #e8ebf7;
}

.sidebar__item {
	margin-bottom: 18px;
}
.sidebar__item--download {
	border-bottom: 2px solid #e8ebf7;
}


/* BP 5 */
@media screen and (min-width: 500px) {

}

/* BP 4 */
@media screen and (min-width: 600px) {

}

/* BP 3 */
@media screen and (min-width: 769px) {
	.sidebar {
		margin-top: 30px;
	}
	.sidebar__item {
		margin-bottom: 28px;
	}
}

/* BP 2 */
@media screen and (min-width: 960px) {
	.mainbar-sidebar-wrapper {
		display: flex;
		flex-wrap: nowrap;
	}


	/* Mainbar */
	.mainbar {
		padding: 45px 34px 45px 0;
		width: 65%;
		flex: 1 1 65%;
	}



	/* Sidebar */
	.sidebar {
		padding: 45px 0 45px 34px;
		border-left: 2px solid #e8ebf7;
		width: 35%;
		flex: 1 1 35%;
		border-top: none;
		margin-top: 0;
	}
	.sidebar__item {
		margin-bottom: 38px;
	}

	/* Reverse */
	.mainbar-sidebar-wrapper--reverse .sidebar {
		border-left: none;
		padding: 45px 34px 45px 0;
		width: 30%;
		flex: 1 1 30%;
	}
	.mainbar-sidebar-wrapper--reverse .mainbar {
		border-left: none;
		border-left: 2px solid #e8ebf7;
		padding: 45px 0 45px 34px;
		width: 70%;
		flex: 1 1 70%;
		order: 2;
	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {
	.mainbar {
		padding: 60px 50px 60px 0;
		width: 60%;
		flex: 1 1 60%;
	}
	.sidebar {
		padding: 60px 0 60px 50px;
		width: 40%;
		flex: 1 1 40%;
	}

	/* Reverse */
	.mainbar-sidebar-wrapper--reverse .mainbar {
		border-left: none;
		border-left: 2px solid #e8ebf7;
		padding: 45px 0 45px 70px;
		width: 80%;
		flex: 1 1 80%;
	}

	.mainbar-sidebar-wrapper--reverse .sidebar {
		border-left: none;
		padding: 45px 34px 45px 0;
		width: 20%;
		flex: 1 1 20%;
	}

}


/* ---- Content title ---- */
.section--content-title {
	padding-top: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid #e8ebf7;
}

.section--content-title .subtitle {
	margin-bottom: 5px;
}
.section--content-title h1 {
	margin-top: 5px;
}

.content-title__subtext {
	margin: 5px 0;
	font-size: 1.4rem;
	color: #757575;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
}

.content-title__subtext__resource-info {
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
}
.content-title__subtext__resource-info__item {
	position: relative;
	margin-bottom: 3px;
}
.content-title__subtext__resource-info__item:last-child {
	margin-bottom: 0;
}
.content-title__subtext__resource-info__item p {
	margin-bottom: 0;
}
.content-title__subtext__resource-info__item:last-child {
	margin-right: 0;
}
.content-title__subtext__resource-info__item:first-child:before {
	content: none;
}


/* BP 5 */
@media screen and (min-width: 500px) {

}

/* BP 4 */
@media screen and (min-width: 600px) {
	.content-title__link {
		float: right;
	}
}

/* BP 3 */
@media screen and (min-width: 769px) {
	.section--content-title {
		padding-top: 21px;
		padding-bottom: 15px;
	}
	.content-title__subtext {
		margin: 11px 0;
		font-size: 1.5rem;
	}
}

/* BP 2 */
@media screen and (min-width: 960px) {
	.section--content-title {
		padding-top: 27px;
		padding-bottom: 20px;
	}
	.content-title__subtext__resource-info__item--right {
		margin-left: auto;
	}
	.content-title__subtext__resource-info {
		flex-wrap: nowrap;
	}
	.content-title__subtext__resource-info {
		display: flex;
		align-items: center;
	}
	.content-title__subtext__resource-info__item {
		flex: 0 0 auto;
		margin-right: 28px;
	}
	.content-title__subtext__resource-info__item:before {
		content: " ";
		display: inline-block;
		left: -14px;
		position: absolute;
		top: 50%;
		transform: translate(0, -50%);
		border-right: 1px solid #a5a5a5;
		height: 12px;
	}
	.content-title__subtext__resource-info__item {
		margin-bottom: 0;
	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {
	.section--content-title {
		padding-top: 39px;
		padding-bottom: 31px;
	}
}

/* ---- Course Progress ---- */
:root {
	--progress-border-thickness: 1px;
	--progress-dot-diameter: 72px;
}
.course-progress {
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
}
.course-progress__bar {
	position: relative;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(111px, 1fr));
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
}
.course-progress__title {
	margin-bottom: 0.5em;
}
.course-progress__item {
	display: inline-grid;
	grid-template-columns: 1em 1fr;
	align-items: center;
	justify-content: start;
	gap: 4px;
	background-color: white;
	border-radius: var(--progress-dot-diameter);
	box-shadow: 0 0 4px 1px rgba(0,0,0,0.08);
	border: 2px solid transparent;
	padding: 4px;
}
.course-progress__item__indicator {
	display: inline-block;
	border-radius: 1em;
	width: 1em;
	height: 1em;
	background-color: #515e7c;
}
.course-progress__item.complete {
	background-color: #75d450;
	color: white;
	box-shadow: none;
}
.complete .course-progress__item__indicator {
	background-color: currentColor;
}
.course-progress__item.active {
	background-color: #ffb700;
	color: white;
	box-shadow: none;
}
.active .course-progress__item__indicator {
	background-color: currentColor;
}
.course-progress__item__label {
	font-weight: bold;
	text-align: center;
	margin-left: -0.5em;
	margin-bottom: 0;
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
}

@media screen and (min-width: 769px) {
	.course-progress__item__label {
		font-size: 1.4rem;
	}
}

@media screen and (min-width: 960px) {
	.course-progress {
		display: grid;
		grid-template-columns: 160px auto;
		align-items: center;
	}
	.course-progress__bar {
		display: flex;
		gap: 0;
		justify-content: space-between;
		overflow-x: clip;
		overflow-y: visible;
	}
	.course-progress__title {
		margin-bottom: 0;
	}
	.course-progress__item {
		flex: 0 0 var(--progress-dot-diameter);
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0;
		text-align: center;
		aspect-ratio: 1;
	}
	.course-progress__item__indicator {
		display: none;
	}
	.course-progress__item.active::after,
	.course-progress__item.active::before {
		content: "";
		position: absolute;
		top: calc(50% - (var(--progress-border-thickness) / 2));
		border: var(--progress-border-thickness) solid #757575;
		width: 100vw;
		z-index: -2;
	}
	.course-progress__item.active::before {
		right: 100%;
	}
	.course-progress__item.active::after {
		left: 100%;
		border-style: dashed;
		border-color: rgba(117, 117, 117, 0.75);
	}
	.course-progress__item__label {
		font-size: 1.1rem;
		margin-left: 0;
		line-height: 1;
	}
	.course-progress__item__label .number {
		font-size: 2.1rem;
		display: block;
	}
}

/* ---- Course chapter ---- */
.course-chapter-progress {
	list-style-type: none;
	padding: 0;
}
.course-chapter-progress__item {
	display: grid;
	grid-auto-flow: column;
	align-items: center;
	justify-content: start;
	gap: 0.25em;
	padding: 0.2em 0;
}
.course-chapter-progress__item::before {
	content: "";
	border-radius: 1em;
	width: 1em;
	height: 1em;
	background-color: #515e7c;
}
.complete.course-chapter-progress__item:before {
	background-color: #75d450;
}
.active.course-chapter-progress__item:before {
	background-color: #ffb700;
}
/* ---- Dropdown tabs ---- */
.section--dropdown-tabs {
	padding-top: 20px;
	padding-bottom: 0;
	z-index: 2;
	border-bottom: 2px solid #e8ebf7;
}

.dropdown-tab {
	display: inline-block;
	margin-right: 2px;
	position: relative;
}
.dropdown-tab:last-child {
	margin-right: 0;
}
.dropdown-tab__title {
	position: relative;
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1.3rem;
	line-height: 1.3;
	letter-spacing: 0.15rem;
	color: #515e7c;
	margin: 0;
	padding: 8px 25px 6px 14px;
	border: none;
	background-color: transparent;
	outline: none;
	border-radius: 12px 12px 0 0;
	width: 100%;
	text-align: left;
	z-index: 5;
}
.dropdown-tab__title:after {
	content: "\e90e";
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	font-size: 1.6rem;
	position: absolute;
	top: 8px;
	right: 6px;
}

.dropdown-tab__content {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #FFF;
	padding: 34px 14px 12px;
	border-radius: 12px;
	min-width: 100%;
}
.dropdown-tab__content.dropdown-tab__content--cta {
	border-radius: 12px 12px 0 0;
}
.dropdown-tab__content .field-element:last-child {
	margin-bottom: 0;
}

/* Bg */
.dropdown-tab__bg {
	background: rgba(0, 0, 0, 0.4);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	display: none;
}

/* Hover */
.dropdown-tab:hover .dropdown-tab__title {
	background-color: rgba(0,0,0,0.05);
}
/* Active */
.dropdown-tab.dropdown-tab--active .dropdown-tab__title {
	background-color: #FFF;
}
/* Open */
.dropdown-tab.dropdown-tab--open {
	animation: fadeIn 400ms ease;
	animation-fill-mode: forwards;
	z-index: 20;
}
.dropdown-tab.dropdown-tab--open .dropdown-tab__title {
	background-color: #FFF;
}
.dropdown-tab.dropdown-tab--open .dropdown-tab__content {
	display: block;
}
.dropdown-tab.dropdown-tab--open .dropdown-tab__bg {
	display: block;
}
.dropdown-tab.dropdown-tab--open .dropdown-tab__title {
	z-index: 1001;
}

.dropdown-tab.dropdown-tab--open .dropdown-tab__content {
	z-index: 1000;
}


/* Links list */
.dropdown-tab__content__links-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.dropdown-tab__content__links-list__item a {
	text-decoration: none;
	text-transform: uppercase;
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
	font-size: 1.4rem;
	line-height: 1.3;
	letter-spacing: 0.15rem;
	color: #515e7c;
	display: block;
	white-space: nowrap;
	padding: 5px 20px 5px 0;
	position: relative;
}

.dropdown-tab__content__links-list__item a:after {
	content: "\e902";
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	position: absolute;
	right: -6px;
	top: 6px;
	font-size: 1.6rem;
}

/* Button */
.dropdown-tab__cta {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
}
.dropdown-tab__cta__button {
	-webkit-appearance: none;
	outline: none;
	border: none;
	background: #63adf2;
	color: #FFF;
	font-size: 1.2rem;
	padding: 8px 9px;
	text-transform: uppercase;
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
	font-weight: bold;
	position: relative;
	letter-spacing: 0.15rem;
	display: block;
	width: 100%;
	border-radius: 0 0 12px 12px;
}
.dropdown-tab__cta__button:hover {
	background-color: #73b7f7;
}
.dropdown-tab__cta__button:after {
	font-size: 1.8rem;
	display: inline-block;
	vertical-align: top;
	margin-left: 6px;
}

/* Active */
.dropdown-tab__content__links-list__item.dropdown-tab__content__links-list__item--active a {
	color: #63adf2;
}

/* Hover */
.dropdown-tab__content__links-list__item a:hover {
	color: #63adf2;
}

/* Subnav */
.dropdown-tabs__subnav {
	padding: 16px 0;
}


/* BP 5 */
@media screen and (min-width: 500px) {
	.dropdown-tab__title {
		font-size: 1.4rem;
		padding: 9px 31px 8px 16px;
	}
	.dropdown-tab__title:after {
		font-size: 1.8rem;
		top: 9px;
		right: 9px;
	}
	.dropdown-tab__title {
		border-radius: 16px 16px 0 0;
	}
	.dropdown-tab__content {
		padding: 38px 16px 14px;
		border-radius: 16px;
	}
	.dropdown-tab__cta__button {
		border-radius: 0 0 16px 16px;
	}
	.dropdown-tab__content.dropdown-tab__content--cta {
		border-radius: 16px 16px 0 0;
	}
}

/* BP 4 */
@media screen and (min-width: 600px) {
	.dropdown-tab__title {
		font-size: 1.5rem;
		padding: 16px 36px 10px 20px;
	}
	.dropdown-tab__title:after {
		font-size: 2rem;
		top: 15px;
		right: 12px;
	}
	.dropdown-tab {
		margin-right: 5px;
	}
	.dropdown-tab__content {
		padding: 44px 20px 14px;
	}
	.dropdown-tab__cta__button {
		font-size: 1.3rem;
		padding: 11px 13px;
	}
}

/* BP 3 */
@media screen and (min-width: 769px) {

}

/* BP 2 */
@media screen and (min-width: 960px) {
	.dropdown-tab__title {
		font-size: 1.7rem;
		padding: 20px 42px 18px 24px;
		border-radius: 25px 25px 0 0;
	}
	.dropdown-tab__title:after {
		font-size: 2.4rem;
		top: 20px;
		right: 14px;
	}
	.section--dropdown-tabs {
		padding-top: 30px;
	}
	.dropdown-tabs__subnav {
		padding: 20px 0;
	}
	.dropdown-tab__content {
		padding: 60px 24px 20px;
	}
	.dropdown-tab__cta__button {
		font-size: 1.4rem;
		padding: 15px 14px;
	}
	.dropdown-tab__content {
		border-radius: 25px;
	}
	.dropdown-tab__cta__button {
		border-radius: 0 0 25px 25px;
	}
	.dropdown-tab__content.dropdown-tab__content--cta {
		border-radius: 25px 25px 0 0;
	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {

}


/* ---- Tags list ---- */
.tag-list {
	list-style: none;
	padding: 0;
	margin: 0 0 -4px;
}
.tag-list__item {
	display: inline-block;
	margin: 0 3px;
}
.tag-list__item a {
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	font-size: 1.3rem;
	letter-spacing: 0.15rem;
	text-decoration: none;
	color: #414042;
	padding: 2px 10px 3px;
	border-radius: 25px;
	margin: 0 0 4px;
	display: block;
}

/* Hover */
.tag-list__item a:hover {
	background-color: #f6f6f6;
}

/* All */
.tag-list__item.tag-list__item--all {
	font-weight: bold;
}

/* Active */
.tag-list__item.tag-list__item--active a {
	background-color: #63adf2;
	color: #FFF;
}

/* BP 5 */
@media screen and (min-width: 500px) {

}

/* BP 4 */
@media screen and (min-width: 600px) {

}

/* BP 3 */
@media screen and (min-width: 769px) {

}

/* BP 2 */
@media screen and (min-width: 960px) {
	.tag-list__item a {
		font-size: 1.4rem;
		padding: 4px 15px 5px;
	}
	.tag-list__item a {
		margin: 0 0 6px;
	}
	.tag-list {
		margin: 0 0 -8px;
	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {

}

/* ---- Icon link ---- */
.icon-link {
	color: #515e7c;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 1.3rem;
	letter-spacing: 0.05rem;
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
}
.icon-link:hover {
	color: #65718e;
}
.icon-link.icon-before:before,
.icon-link.icon-after:after {
	font-size: 1.9rem;
	vertical-align: top;
	display: inline-block;
	margin-top: 1px;
}
.icon-link.icon-before:before {
	margin-right: 2px;
}
.icon-link.icon-after:after {
	margin-left: 2px;
}

/* No icon */
.button-no-icon:after {
	content: none;
}

/* BP 3 */
@media screen and (min-width: 769px) {
	.icon-link {
		font-size: 1.5rem;
	}
}

.spread-items {
	display: flex;
	justify-content: space-between;
}

/* ---- Line list ---- */
.line-list {
	font-size: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.05rem;
	color: #545e75;
	margin: 25px 0;
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
}
.line-list__title {
	display: block;
}
.line-list__item {
	margin-right: 21px;
	position: relative;
}
.line-list__item:before {
	content: " ";
	display: inline-block;
	left: -14px;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	border-right: 1px solid #545e75;
	height: 11px;
}

.line-list__item:last-child {
	margin-right: 0;
}
.line-list__item:first-child:before,
.line-list__title + .line-list__item:before{
	content: none;
}


/* ---- Search section ---- */
.section--search {
	padding: 39px 0 116px;
	max-height: 707px;
	background-image: url(../images/search-banner/search-banner-mob.jpg);
	background-size: cover;
	background-position: bottom 20% center;
}
.search__content {
	position: relative;
	z-index: 1;
	text-align: center;
}
.search__content__title {
	text-transform: lowercase;
	font-size: 2.4rem;
	margin: 6px 0 0;
	color: #FFF;
}
.search__form {
	margin: 18px 0;
}
.search__form .field-element--button {
	text-align: right;
}



/* BP 5 */
@media screen and (min-width: 500px) {
	.section--search {
		padding: 39px 0 56px;
	}
	.search__form {
		margin: 18px 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.search__form .field-element {
		flex: 1 0 47.5%;
		margin: 0 1% 14px;
	}

	.section--search {
		background-image: url(../images/search-banner/search-banner-1400.jpg);
		background-position: bottom 36% center;
	}
}


/* BP 4 */
@media screen and (min-width: 600px) {
	.section--search {
		padding: 55px 0 96px;
	}
	.search__content__title {
		font-size: 3rem;
	}
}

/* BP 3 */
@media screen and (min-width: 769px) {
	.search__content__title {
		font-size: 3.5rem;
	}
}

/* BP 2 */
@media screen and (min-width: 960px) {
	.section--search {
		height: calc(100% - 60px);
		padding: 190px 0 50px;
	}
	.search__content__title {
		font-size: 4.5rem;
		margin: 8px 0 0;
	}
	.search__form .field-element {
		flex: 1 0 20%;
		margin: 0 5px;
	}
	.search__form {
		flex-wrap: nowrap;
		margin: 30px 0;
	}
	.search__form .field-element.field-element--button {
		flex: 0 0 auto;
	}
}

/* Above iPad */
@media screen and (min-width: 1025px) {
	.section--search {

	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {
	.search__content__title {
		font-size: 5.2rem;
	}
	.search__form {
		padding: 0 110px;
	}
	.search__form .field-element {
		flex: 1 0 24%;
	}

	.section--search {
		background-image: url(../images/search-banner/search-banner-1600+.jpg);
	}
}

/* ---- Search bar ---- */
.section--resource-search {
	padding-top: 20px;
	padding-bottom: 20px;
}
.resource-search__title {
	margin: 0;
	padding: 0 30px 17px 0;
	font-size: 2.7rem;
}
.resource-search__form .field-element.field-element--button {
	text-align: right;
}

/* BP 5 */
@media screen and (min-width: 500px) {
	.resource-search__form {
		display: flex;
		flex-wrap: wrap;
	}
	.resource-search__form .field-element {
		flex: 0 0 calc(50% - 4px);
		margin: 0 0.5% 12px;
	}
	.resource-search__form .field-element:nth-last-child(2) {
		flex: 0 0 calc(50% - 42px);
	}
	@supports(gap: 4px) {
		.resource-search__form {
			gap: 4px;
		}

		.resource-search__form .field-element {
			margin: 0 0 8px;
		}
	}
}
.js-course-hiddentypes {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* BP 5 */
@media screen and (max-width: 499px) {
	.resource-search__form .button--circle {
		display: block;
		width: 100%;
		border-radius: 38px;
	}
}

/* BP 4 */
@media screen and (min-width: 600px) {

}

/* BP 3 */
@media screen and (min-width: 769px) {

}

/* Min BP 2 */
@media screen and (max-width: 959px) {
	.resource-search__form .field-element.field-element--button {
		margin-bottom: 0;
	}
	.resource-search__form .field-element:nth-child(2),
	.resource-search__form .field-element:nth-child(4) {
		margin-right: 0;
	}
	.resource-search__form .field-element:nth-child(1),
	.resource-search__form .field-element:nth-child(3) {
		margin-left: 0;
	}
}

/* BP 2 */
@media screen and (min-width: 960px) {
	.resource-search__form .field-element {
		flex: 1 0 20%;
		margin: 0 0.5%;
	}
	.resource-search__form .field-element.field-element--button {
		flex: 0 0 auto;
		margin-right: 0;
	}
	@supports(gap: 4px) {
		.resource-search__form {
			gap: 4px;
		}
		.resource-search__form .field-element {
			margin: 0;
		}
		.resource-search__form .field-element:nth-last-child(2) {
			flex: inherit;
		}
	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {
	.resource-search {
		display: flex;
		flex-wrap: nowrap;
	}
	.resource-search__title {
		padding: 8px 30px 0 0;
		font-size: 3rem;
	}
	.resource-search__form {
		flex-wrap: nowrap;
	}
	.resource-search__title-wrap {
		flex: 0 0 22%;
	}
	.resource-search__search-wrap {
		flex: 0 0 78%;
	}
}

/* ---- Subtitle ---- */
.subtitle,
.testimonial__cite {
	text-transform: uppercase;
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
	letter-spacing: 0.1rem;
	margin: 7px 0 23px;
	font-size: 1.4rem;
	font-weight: 700;
}

/* BP 4 */
@media screen and (min-width: 600px) {

}

/* BP 3 */
@media screen and (min-width: 769px) {

}

/* BP 2 */
@media screen and (min-width: 960px) {
	.subtitle,
	.testimonial__cite {
		margin: 7px 0 23px;
		font-size: 1.5rem;
		letter-spacing: 0.15rem;
	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {

}

/* ---- Counter ---- */
.counter {
	margin: 0;

}
.counter__character {
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
	font-weight: 200;
	padding: 6px 5px 8px;
	font-size: 2.1rem;
	color: #FFF;
	background-color: rgba(12, 36, 42, 0.6);
	width: 36px;
	display: inline-block;
	border-radius: 8px;
	line-height: 1;
	margin: 0;
}
.counter__sep {
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
	font-weight: 700;
	font-size: 3rem;
	margin: 0 1px;
	vertical-align: top;
}

/* BP 4 */
@media screen and (min-width: 600px) {
	.counter__character {
		padding: 8px 8px 9px;
		font-size: 2.8rem;
		width: 47px;
		border-radius: 12px;
	}
	.counter__sep {
		font-size: 4rem;
		margin: 0 2px;
	}
}

/* BP 3 */
@media screen and (min-width: 769px) {

}

/* BP 2 */
@media screen and (min-width: 960px) {
	.counter__character {
		padding: 11px 8px 13px;
		font-size: 3.2rem;
		width: 56px;
		margin: 0 1px;
	}
	.counter__sep {
		margin: 0 1px;
		font-size: 4.5rem;
	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {
	.counter__character {
		padding: 11px 10px 13px;
		font-size: 3.8rem;
		width: 62px;
		margin: 0 3px;
	}
	.counter__sep {
		font-size: 5rem;
		margin: 0 4px;
	}
}

/* ---- Stats ---- */
.section--stats {
	border-top: 5px solid #a7cced;
}
.section--stats:before {
	content: " ";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	margin: 0 auto;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 11px 9px 0 9px;
	border-color: #a7cced transparent transparent transparent;
}

.stat {
	text-align: center;
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
	font-weight: 200;
	line-height: 1.2;
	margin-top: 5px;
	margin-bottom: 5px;
}
.stat__text {
	margin: 0;
}
.stat span {
	display: block;
}
.stat__text__title {
	font-size: 1.7rem;
}
.stat__text__figure {
	font-size: 2.9rem;
	color: #ffb700;
}

/* BP 5 */
@media screen and (min-width: 500px) {
	.section--stats {
		border-top-width: 8px;
	}
	.section--stats:before {
		border-width: 14px 12px 0 12px;
	}
}

/* BP 4 */
@media screen and (min-width: 600px) {
	.stat {
		margin: 0;
	}
}

/* BP 3 */
@media screen and (min-width: 769px) {

	.stat__text__title {
		font-size: 2rem;
	}
	.stat__text__figure {
		font-size: 3.4rem;
	}
}

/* BP 2 */
@media screen and (min-width: 960px) {
	.stat__text__title {
		font-size: 2.4rem;
	}
	.stat__text__figure {
		font-size: 4.4rem;
	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {
	.stat__text__title {
		font-size: 3rem;
	}
	.stat__text__figure {
		font-size: 5.5rem;
	}
}

/* ---- Resources ---- */
.resources {
	list-style: none;
	padding: 0;
	margin-top: 30px;
	margin-bottom: 0;
}
.resource {
	text-align: center;
	margin-bottom: 30px;
}
.resource a {
	text-decoration: none;
	display: block;
}
.resource__inner {
	width: 100%;
	padding-bottom: 100%;
	border-radius: 50%;
	background-position: center center;
	background-size: cover;
	position: relative;
}
.resource__inner:before {
	content: " ";
	width: 0;
	height: 0;
	width: calc(100% + 16px);
	height: calc(100% + 16px);
	background-color: #a7cced;
	position: absolute;
	top: -8px;
	left: -8px;
	z-index: -1;
	border-radius: 50%;
	clip: rect(0px, 60px, 60px, 0px);
	transition: transform 320ms cubic-bezier(0.26, 0.2, 0.24, 1.18);
}
.resource__type-tag-wrapper {
	position: absolute;
	top: 3%;
	left: 0;
	right: 0;
	z-index: 2;
}

.resource__preview {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.resource__hover {
	display: none;
}



.resource__title {
	font-size: 1.6rem;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	margin: 0 0 6px;
}

/* PDF */
.resource--pdf .resource__inner {
	background-image: url(../images/resource-backgrounds/pdf.jpg);
}
.resource--pdf .resource__preview {
	top: 22.7%;
	width: 42%;
}

/* PPT */
.resource--ppt .resource__inner {
	background-image: url(../images/resource-backgrounds/ppt.jpg);
}
.resource--ppt .resource__preview {
	top: 24%;
	width: 51%;
}

/* DOC */
.resource--doc .resource__inner {
	background-image: url(../images/resource-backgrounds/doc.jpg);
}
.resource--doc .resource__preview {
	top: 23%;
	width: 44%;
}

@media screen and (min-width: 400px) {

	.resource__inner:before {
		clip: rect(0px, 90px, 90px, 0px);
	}

	.resource__type-tag-wrapper {
		top: 5%;
	}

}

/* BP 5 */
@media screen and (min-width: 500px) {
	.resource {
		margin-bottom: 46px;
	}
	.resource__inner:before {
		clip: rect(0px, 125px, 125px, 0px);
	}
}

/* BP 4 */
@media screen and (min-width: 600px) {
	.resource__inner:before {
		clip: rect(0px, 139px, 139px, 0px);
		width: calc(100% + 24px);
		height: calc(100% + 24px);
		top: -12px;
		left: -12px;
	}
}

/* BP 3 */
@media screen and (min-width: 769px) {
	.resource__inner:before {
		clip: rect(0px, 177px, 177px, 0px);
	}
}

/* BP 2 */
@media screen and (min-width: 960px) {
	.resources {
		margin-top: 50px;
		margin-bottom: 45px;
	}
	.resource {
		margin-bottom: 0;
	}
	.resource__inner:before {
		clip: rect(0px, 109px, 109px, 0px);
	}
}

/* Above iPad */
@media screen and (min-width: 1025px) {
	.resource__hover {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: rgba(12, 36, 42, 0.9);
		color: #FFF;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: nowrap;
		transition: all 300ms ease;
		opacity: 0;
		border-radius: 50%;
	}
	.resource__hover__details {
		text-transform: uppercase;
		font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
		font-weight: 200;
		letter-spacing: 0.05rem;
		font-size: 1.3rem;
		margin: 0 0 12px;
	}
	.resource__hover__details p {
		margin: 0;
	}
	.resource__hover__inner {
		width: 80%;
		animation-duration: 300ms;
		animation-name: shrinkOutFade;
		animation-fill-mode: forwards;
		padding-top: 22px;
	}
	.resource a:hover .resource__hover {
		opacity: 1;
	}
	.resource a:hover .resource__hover__inner {
		animation-name: growInFade;
		animation-fill-mode: forwards;
	}
	.resource a:hover .resource__inner:before {
		transform: rotate(90deg);
	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {
	.resources {
		margin-bottom: 65px;
	}
	.resource__inner:before {
		clip: rect(0px, 142px, 142px, 0px);
	}
	.resource__title {
		font-size: 2rem;
	}
	.resource__hover__details {
		font-size: 1.4rem;
		margin: 0 0 15px;
	}
}



/* ---- Resource type tag ---- */
.resource-type-tag {
	border-radius: 15px;
	background-color: #333;
	color: #FFF;
	font-size: 1rem;
	display: inline-block;
	padding: 0 6px;
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
	font-weight: 200;
	letter-spacing: 0.05rem;
	margin: 0 auto;
}

/* PDF */
.resource-type-tag-wrapper.resource-type-tag-wrapper--pdf .resource-type-tag {
	background-color: #e03a3a;
}

/* PPT */
.resource-type-tag-wrapper.resource-type-tag-wrapper--ppt .resource-type-tag {
	background-color: #fd7d00;
}

/* DOC */
.resource-type-tag-wrapper.resource-type-tag-wrapper--doc .resource-type-tag {
	background-color: #638bf2;
}

/* JPG */
.resource-type-tag-wrapper.resource-type-tag-wrapper--jpg .resource-type-tag {
	background-color: #75d450;
}

/* Extra BP */
@media screen and (min-width: 400px) {
	.resource-type-tag {
		font-size: 1.1rem;
		padding: 0 7px 1px;
	}
}

/* BP 5 */
@media screen and (min-width: 500px) {
	.resource-type-tag {
		font-size: 1.3rem;
		padding: 1px 9px;
	}
}

/* BP 4 */
@media screen and (min-width: 600px) {

}

/* BP 3 */
@media screen and (min-width: 769px) {

}

/* BP 2 */
@media screen and (min-width: 960px) {

}

/* BP 1 */
@media screen and (min-width: 1240px) {
	.resource-type-tag {
		font-size: 1.4rem;
		padding: 3px 12px;
	}
}



/* ---- Testimonial ---- */
.section--testimonial {
	overflow: hidden;
}
.section--testimonial:before {
	content: " ";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 130px 400px 0 400px;
	border-color: #e8ebf7 transparent transparent transparent;
	z-index: 0;
	position: absolute;
	top: 0;
	left: 50%;
	margin-right: -50%;
	transform: translateX(-50%);
}
.section--testimonial .container {
	position: relative;
	z-index: 1;
}
.testimonial__avatar__img {
	border-radius: 50%;
}


.testimonial__quote {
	padding: 13px 24px;
	background: none;
	font-style: normal;
	margin: 0;
}
.testimonial__quote:before,
.testimonial__quote:after {
	content: none;
}

.testimonial__content:before,
.testimonial__content:after {
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	color: #a7cced;
	font-size: 2.5rem;
	position: absolute;
}

.testimonial__content:before {
	content: "\e908";
	top: -15px;
	left: -28px;
}

.testimonial__content:after {
	content: "\e907";
	bottom: -8px;
	right: -28px;
}

.testimonial__avatar {
	text-align: center;
}
.testimonial__avatar img {
	width: 80px;
}

.testimonial__content {
	font-style: italic;
	position: relative;
}
.testimonial__cite {
	font-style: normal;
	color: #515e7c;
	display: block;
}
.testimonial__cite:before {
	content: "\2013\00a0";
}

/* BP 5 */
@media screen and (min-width: 500px) {

}

/* BP 4 */
@media screen and (min-width: 600px) {
	.testimonial__quote {
		padding: 16px 30px;
	}
	.testimonial__content:before,
	.testimonial__content:after {
		font-size: 3.2rem;
	}
	.testimonial__content:before {
		top: -23px;
		left: -35px;
	}

	.testimonial__content:after {
		bottom: -20px;
		right: -35px;
	}
}

/* BP 3 */
@media screen and (min-width: 769px) {
	.section--testimonial:before {
		border-width: 150px 0 150px 220px;
		border-color: transparent transparent transparent #e8ebf7;
		transform: translateY(-50%);
		left: 0;
		top: 50%;
	}
	.testimonial__avatar img {
		width: auto;
	}
}

/* BP 2 */
@media screen and (min-width: 960px) {
	.section--testimonial:before {
		border-width: 170px 0 170px 300px;
	}
	.testimonial__quote {
		padding: 22px 50px;
	}
	.testimonial__content:before,
	.testimonial__content:after {
		font-size: 4rem;
	}
	.testimonial__content:before {
		top: -24px;
		left: -55px;
	}
	.testimonial__content:after {
		bottom: -15px;
		right: -56px;
	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {
	.section--testimonial:before {
		border-width: 200px 0 200px 400px;
	}
}

/* ---- Contributor ---- */
.section--contributor {
	background: url(../images/contributor-banner/contributor-banner-1400.jpg) no-repeat center center;
	background-size: cover;
}
.contributor__content {
	position: relative;
	z-index: 2;
}
.section--contributor:after {
	content: " ";
	background-color: rgba(0,0,0,0.4);
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

/* BP 5 */
@media screen and (min-width: 500px) {

}

/* BP 4 */
@media screen and (min-width: 600px) {

}

/* BP 3 */
@media screen and (min-width: 769px) {
	.contributor__content {
		width: 40%;
	}
	.section--contributor:after {
		content: none;
	}
}

/* BP 2 */
@media screen and (min-width: 960px) {

}

/* Above iPad */
@media screen and (min-width: 1025px) {
	.section.section--contributor {
		background: none;
	}

}

/* BP 1 */
@media screen and (min-width: 1240px) {

}


/* ---- Feature boxes ---- */
.section--feature-boxes {
	padding-top: 0;
	padding-bottom: 0;
}
.feature-boxes {
	list-style: none;
	padding: 0;
	margin: 0;
}
.feature-box {
	text-align: center;
}
.feature-box__text {
	padding: 30px 25px 40px;
}
.feature-box__text__description {
	margin: 0 0 30px;
}
.feature-box__image {
	overflow: hidden;
}
.feature-box__image a {
	display: block;
}
.feature-box__image img {
	width: 100%;
	transition: transform 400ms ease;
}
.feature-box__image a:hover img {
	transform: scale(1.1);
}


/* BP 5 */
@media screen and (min-width: 500px) {

}

/* BP 4 */
@media screen and (min-width: 600px) {
	.feature-boxes--3cols {
		display: flex;
	}
	.feature-boxes--3cols .feature-box {
		flex: 1 0 33.333333%;
		width: 33.333333%;
	}
}

/* BP 3 */
@media screen and (min-width: 769px) {

}

/* BP 2 */
@media screen and (min-width: 960px) {
	.feature-box__text {
		padding: 35px 35px 50px;
	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {
	.feature-box__text {
		padding: 50px 35px 90px;
	}
	.feature-box__text__description {
		margin-bottom: 40px;
	}
}


/* ---- Social lists ---- */

.social-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-flow: column nowrap;
	align-items: flex-start;
	gap: 8px;
}
.social-list__item {
	flex: 0 0 auto;
	margin-right: 9px;
}
.social-list__item:last-child {
	margin-right: 0;
}
.social-list__item a {
	min-height: 40px;
	border-radius: 40px;
	display: grid;
	grid-auto-flow: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	padding-right: 20px;
	transition: all 300ms ease-in-out;
}
.social-list__item a,
.social-list__item a:hover,
.social-list__item a:focus,
.social-list__item a:active {
	text-decoration: none !important;
}
.social-list__item a:before {
	color: #FFF;
	font-size: 3.2rem;
	display: block;
	display: grid;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 40px;
}
.social-list__item.social-list__item--facebook a:before {
	background-color: #3e5b98;
}
.social-list__item.social-list__item--facebook a:hover {
	background-color: #4b67a2;
	color: #fff;
}
.social-list__item.social-list__item--twitter a {
	background-color: #4da7de;
}
.social-list__item.social-list__item--twitter a:hover {
	background-color: #5bb1e6;
}
.social-list__item.social-list__item--youtube a:before {
	background-color: rgb(255,0,0);
}
.social-list__item.social-list__item--youtube a:hover {
	background-color: #a81d1e;
	color: #ffffff;
}


/* BP 2 */
@media screen and (min-width: 960px) {
	.social-list__item a {
		min-height: 48px;
	}
	.social-list__item a:before {
		width: 48px;
		border-radius: 48px;
		height: 48px;
	}

	.social-list__item a:before {
		font-size: 3.9rem;
	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {

}

/* ---- Review list ---- */
.review-list {
	list-style: none;
	padding: 0;
	margin: 30px 0;
}
.review-list__item {
	background-color: #FFF;
	border-bottom: 2px solid #e8ebf7;
	padding: 14px 22px;
	margin: 0 0 18px;
}
.review-list__item .star-rating {
	margin: 0 0 6px;
}
.review-list__item__title {
	margin: 0 0 6px;
}
.review-list__item__timestamp {
	color: #757575;
	text-transform: uppercase;
	font-size: 1.2rem;
	letter-spacing: 0.05rem;
}
.review-list__item__content {
	color: #545e75;
	font-size: 1.5rem;
	font-style: italic;
}
.review-list__item__content p:last-child {
	margin-bottom: 0;
}
.reviews__title-content__side {
	letter-spacing: 0.05rem;
	text-transform: uppercase;
	color: #757575;
	font-size: 1.3rem;
	margin-top: 10px;
}


/* BP 5 */
@media screen and (min-width: 500px) {
	.reviews__title-content__side {
		text-align: right;
	}
}

/* BP 4 */
@media screen and (min-width: 600px) {

}

/* BP 3 */
@media screen and (min-width: 769px) {
	.review-list__item {
		padding: 20px 25px;
	}
	.review-list__item .star-rating {
		float: right;
		margin: 0 0 15px 20px;
	}
	.review-list__item__timestamp {
		font-size: 1.4rem;
	}
	.review-list__item__content {
		font-size: 1.6rem;
	}
	.reviews__title-content__side {
		font-size: 1.4rem;
		margin-top: 0;
	}
}

/* BP 2 */
@media screen and (min-width: 960px) {

}

/* BP 1 */
@media screen and (min-width: 1240px) {
	.review-list__item {
		padding: 25px 35px;
	}
}


/* ---- Image popup gallery ---- */
.image-popup-gallery__list {
	list-style: none;
	padding: 0;
	margin-top: 0;
	margin-bottom: -25px;
}
.image-popup-gallery__list__item {
	margin-bottom: 25px;
}
.image-popup-gallery__list__item a {
	display: block;
}
.image-popup-gallery__list__item a:hover .image-popup-gallery__list__item__img {
	opacity: 0.9;
}

/* ---- Preview gallery ---- */
.preview-gallery__item {
	background: #000;
}
.preview-gallery__item:hover img {
	opacity: 0.9;
}
.preview-gallery__item--main {
	display: block;
	margin-bottom: 25px;
}
.preview-gallery__item--main img {
	width: 100%;
}
.preview-gallery__item--small {
	margin-right: 6%;
	width: 47%;
	float: left;
	display: block;
}
.preview-gallery__item--small:last-child {
	margin-right: 0;
}

/* ---- Star rating ---- */
.star-rating {
	margin: 0 0 4px;
}
.star-rating__stars {
	display: inline-block;
	position: relative;
}
.star-rating__stars:before,
.star-rating__stars:after {
	display: block;
	content: "\e90b\e90b\e90b\e90b\e90b";
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	font-size: 2.3rem;
}
.star-rating__stars:before {
	color: #e5e6ec;
}
.star-rating__stars:after {
	color: #ffb700;
	position: absolute;
	top: 0;
	left: 0;
}

/* Value variations */
.star-rating[data-rating="0.5"] .star-rating__stars:after {
	content: "\e90a";
}
.star-rating[data-rating="1"] .star-rating__stars:after {
	content: "\e90b";
}
.star-rating[data-rating="1.5"] .star-rating__stars:after {
	content: "\e90b\e90a";
}
.star-rating[data-rating="2"] .star-rating__stars:after {
	content: "\e90b\e90b";
}
.star-rating[data-rating="2.5"] .star-rating__stars:after {
	content: "\e90b\e90b\e90a";
}
.star-rating[data-rating="3"] .star-rating__stars:after {
	content: "\e90b\e90b\e90b";
}
.star-rating[data-rating="3.5"] .star-rating__stars:after {
	content: "\e90b\e90b\e90b\e90a";
}
.star-rating[data-rating="4"] .star-rating__stars:after {
	content: "\e90b\e90b\e90b\e90b";
}
.star-rating[data-rating="4.5"] .star-rating__stars:after {
	content: "\e90b\e90b\e90b\e90b\e90a";
}
.star-rating[data-rating="5"] .star-rating__stars:after {
	content: "\e90b\e90b\e90b\e90b\e90b";
}

/* Small */
.star-rating.star-rating--small .star-rating__stars:before,
.star-rating.star-rating--small .star-rating__stars:after {
	font-size: 1.9rem;
}

/* BP 5 */
@media screen and (min-width: 500px) {

}

/* BP 4 */
@media screen and (min-width: 600px) {

}

/* BP 3 */
@media screen and (min-width: 769px) {
	.star-rating__stars:before,
	.star-rating__stars:after {
		font-size: 3.1rem;
	}
	.star-rating.star-rating--small .star-rating__stars:before,
	.star-rating.star-rating--small .star-rating__stars:after {
		font-size: 2.3rem;
	}
}

/* BP 2 */
@media screen and (min-width: 960px) {

}

/* BP 1 */
@media screen and (min-width: 1240px) {

}

/* ---- amazon related books ---- */
.resource-amazon-gallery__list {
	margin: 0 0 -25px 0;
	padding: 0;
	list-style: none;
}

.resource-amazon-gallery__list__item {
	margin-bottom: 25px;
}


/* ---- Result boxes ---- */
.result-boxes {
	list-style: none;
	padding: 0;
	margin-top: 20px;
	margin-bottom: 0;
}

.result-boxes:first-child {
	margin-top: 0;
}
.result-box {
	height: 100%;
	padding-bottom: 28px;
}
.result-box .result-box__inner {
	text-decoration: none;
	display: flex;
	flex-flow: column nowrap;
	border: 1px solid #e8ebf7;
	position: relative;
	height: 100%;
	background-color: #e8ebf7;
}
.result-box__img {
	position: relative;
	background-color: #fff;
	overflow: hidden;
	display: flex;
	align-items: start;
	justify-content: center;
	max-height: 300px;
	flex: 1 1 auto;
}
.result-box__img__img {
	width: 100%;
}
.result-box__info {
	position: relative;
	border-top: 1px solid #e8ebf7;
}
.result-box__info .resource-type-tag-wrapper {
	position: absolute;
	top: -32px;
	right: 10px;
	z-index: 1;
}
.result-box__title-wrap {
	background-color: #f9fafd;
	padding: 16px 20px;
}
.result-box__prices {
	-ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
}
.result-box__title {
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 1.5rem;
	line-height: 1.125;
	letter-spacing: 0.15rem;
	margin: 0;
	color: #414042;
}
.result-box__details {
	background-color: #e8ebf7;
	padding: 5px 20px 7px;
	color: #515e7c;
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
	font-size: 1.4rem;
	display: flex;
	text-transform: uppercase;
}
.result-box__details__text {
	flex: 0 0 auto;
	margin: 0;
}
.result-box__details__text--right {
	margin: 0 0 0 auto;
}

/* New */
.result-box__img__new {
	position: absolute;
	top: 31px;
	right: -45px;
	background-color: #ffb700;
	color: #515e7c;
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
	font-size: 1.1rem;
	text-transform: uppercase;
	font-weight: bold;
	padding: 26px 40px 3px;
	text-align: center;
	transform: rotate(45deg);
	transform-origin: top right;
}
.result-box__img__new p {
	margin: 0;
}
.result-box__img.result-box__video:after {
	content: "\e913";
	text-transform: none;
	line-height: 1;
	speak: none;
	position: absolute;
	text-align: center;
	font-family: 'icomoon' !important;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	font-size: 10rem;
	color: #fff;
	top: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-shadow: 0 0 24px rgba(0,0,0,.5);
}

/* Free */

.result-box__img__free {
	position: absolute;
	top: 31px;
	left: -45px;
	background-color: #414042;
	color: #ffb700;
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
	font-size: 1.1rem;
	text-transform: uppercase;
	font-weight: bold;
	padding: 26px 40px 3px;
	text-align: center;
	transform: rotate(-45deg);
	transform-origin: top left
}

.result-box__img__free.pad-1 {
	padding-left: 45px;
}

.result-box__img__free.pad-2 {
	padding-left: 50px;
}

.result-box__img__free p {
	margin: 0;
}

/* Hover */
.result-box a:hover .result-box__img {
	opacity: 0.8;
}

/* Video */
.result-box--video .result-box__inner,
.result-box--course .result-box__inner {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}
.result-box--video .result-box__info,
.result-box--course .result-box__info {
	position: static;
	flex: 1 1 auto;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}
.result-box--video .result-box__video,
.result-box--course .result-box__video {
	max-height: unset;
	padding-bottom: 0;
	position: relative;
}
.result-box--video .result-box__title-wrap,
.result-box--course .result-box__title-wrap {
	-ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
}
.result-box--video .result-box__details,
.result-box--course .result-box__details {
	-ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
}

/* Courses */
.result-box__prices {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding-left: 20px;
	padding-right: 20px;
	border-bottom: 1px solid rgba(255,255,255,1);

}

.result-box__prices__item {
	background-color: #e8ebf7;
    color: #515e7c;
	-ms-flex: 0 1 50%;
    -webkit-box-flex: 0;
    flex: 0 1 50%;
	line-height: normal;
	padding: 6px 0;
	border-right: 1px solid rgba(255,255,255,1);
	margin-bottom: 0;
}

.result-box__prices__item:first-child {
	padding: 9px 12px 9px 0;
}

.result-box__prices__item:last-child {
	border-right: none;
	padding: 9px 0 9px 12px;
}

.result-box__prices__item__title {
	display: block;
	font-size: 1.3rem;
	line-height: normal;
}

.result-box__prices__item__value {
	display: block;
	font-size: 1.8rem;
	font-weight: bold;
	color: #414042;
	text-transform: uppercase;
}

.result-box__prices__item__text-wrapper--member,
.result-box__prices__item__text-wrapper--member .result-box__prices__item__value {
	color: #e03a3a;
}

.result-box__prices__item__title__price {
	display: none;
}

.result-box__cta {
	background-color: #ffb700;
    color: #fff;
	border-radius: 0;
	margin: 0 -1px -1px;
	border-top: 1px solid rgba(255,255,255,1);
}

.result-box__prices__item.member {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 2px;
	flex: 1 1 auto;
}

.result-box__prices__item__text-wrapper {
	-ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
}

.info-circle-link {
	color: #63adf2;
	display: block;
	-ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
}

.info-circle-link__label {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.info-circle-link svg {
	width: 1.25em;
	height: 1.25em;
}


/* BP 5 */
@media screen and (min-width: 500px) {
	/* Result box grid */
	.result-boxes--grid {
		column-count: 2;
		column-gap: 4rem;
	}
	.result-boxes--grid .result-box {
		-webkit-column-break-inside: avoid;
		page-break-inside: avoid;
		break-inside: avoid;
	}
	.result-boxes {
		margin-bottom: 17px;
	}
}


/* BP 4 */
@media screen and (min-width: 600px) {

}

/* BP 3 */
@media screen and (min-width: 769px) {
	.result-box {
		padding-bottom: 36px;
	}
	/* Result box grid */
	.result-boxes--grid {
		column-count: 3;
	}
	.result-box__img {
		max-height: 360px;
	}
}

/* BP 2 */
@media screen and (min-width: 960px) {
	.result-boxes {
		margin-top: 50px;
	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {
	.result-boxes {
		margin-bottom: -20px;
	}

	.result-box__img__new {
		top: 35px;
		right: -46px;
		font-size: 1.4rem;
		padding: 30px 40px 10px;
	}
	.result-box__img__new {
		top: 35px;
		right: -46px;
		font-size: 1.4rem;
		padding: 30px 40px 10px;
	}
	.result-box__img__free {
		top: 35px;
		left: -46px;
		font-size: 1.4rem;
		padding: 30px 40px 10px;
	}
	.result-box__title {
		font-size: 1.7rem;
	}
	.result-box__title-wrap {
		padding: 12px 20px 14px;
	}
	.result-box {
		padding-bottom: 38px;
	}
	.result-box__details {
		padding: 7px 20px 9px;
		font-size: 1.5rem;
	}
}

/* ---- Plan section ---- */
.plan-list {
	list-style: none;
	padding: 0;
	margin-top: 22px;
	margin-bottom: 20px;
}
.plan-item {
	text-align: center;
	margin-bottom: 23px;
}
.plan-item:last-child {
	margin-bottom: 0;
}
.plan-item__title {
	font-size: 1.9rem;
	margin: 0 0 15px;
}
.plan-item__circle {
	background-color: #FFF;
	position: relative;
	color: #515e7c;
}
.plan-item__circle a {
	color: inherit;
}

.plan-item__circle__inner .button {
	margin-top: 10px;
}
.plan-item__circle__price {
	font-family: 'Proxima Nova W01', Helvetica, Arial, sans-serif;
	font-weight: bold;
	margin: 0;
	line-height: 1;
}
.plan-item__circle__price__currency {
	font-size: 2rem;
	display: inline-block;
	vertical-align: top;
	padding-top: 6px;
}
.plan-item__circle__price__number {
	font-size: 4rem;
	display: inline-block;
}
.plan-item__circle__price__text {
	text-transform: uppercase;
	display: inline-block;
	margin-left: 5px;
	text-align: left;
	vertical-align: top;
	padding-top: 6px;
	line-height: 1;
	font-size: 1.1rem;
}

.plan-item__circle a {
	display: block;
	text-decoration: none;
	padding: 12px 20px 19px;
	border-top: 5px solid #000;
}

/* Lightblue */
.plan-item--lightblue .plan-item__circle a {
	border-top-color: #a7cced;
}

/* Blue */
.plan-item--blue .plan-item__circle a {
	border-top-color: #63adf2;
}

/* Yellow */
.plan-item--yellow .plan-item__circle a {
	border-top-color: #ffb700;
}


/* BP 5 */
@media screen and (min-width: 500px) {

}

/* BP 4 */
@media screen and (min-width: 600px) {
	.plan-item__title {
		font-size: 2.3rem;
	}
	.plan-list {
		margin-top: 30px;
		margin-bottom: 20px;
	}
	.plan-item__circle__price__currency {
		font-size: 2.2rem;
	}
	.plan-item__circle__price__number {
		font-size: 4.6rem;
	}
}

/* BP 3 */
@media screen and (min-width: 769px) {

	.section--plans {
		padding-bottom: 0;
	}
	.plan-list {
		margin: 35px 0 -40px;
	}
	.plan-item__circle {
		border-radius: 100%;
		padding-bottom: 100%;
	}
	.plan-item__circle a {
		padding: 0;
	}
	.plan-item__circle a:before {
		content: " ";
		width: 0;
		height: 0;
		width: calc(100% + 18px);
		height: calc(100% + 18px);
		background-color: #a7cced;
		position: absolute;
		top: -9px;
		left: -9px;
		z-index: -1;
		border-radius: 50%;
		clip: rect(0px, 105px, 105px, 0px);
		transition: transform 320ms cubic-bezier(0.26, 0.2, 0.24, 1.18);
	}
	.plan-item__title {
		margin: 0 0 30px;
		font-size: 2.6rem;
	}
	.plan-item__circle__inner {
		flex: 0 0 auto;
		position: absolute;
		top: 50%;
		left: 50%;
		margin-right: -50%;
		transform: translate(-50%, -50%);
		padding-bottom: 35px;
	}
	.plan-item__circle a {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		border-top: none;
	}
	.plan-item {
		margin-bottom: 0;
	}
	.plan-item__circle__price__text {
		padding-top: 10px;
		font-size: 1.2rem;
	}


	/* Lightblue */
	.plan-item--lightblue .plan-item__circle a:before {
		background-color: #a7cced;
	}

	/* Blue */
	.plan-item--blue .plan-item__circle a:before {
		background-color: #63adf2;
	}

	/* Yellow */
	.plan-item--yellow .plan-item__circle a:before {
		background-color: #ffb700;
	}
}

/* BP 2 */
@media screen and (min-width: 960px) {
	.plan-item__circle__inner {
		padding-bottom: 45px;
	}
	.plan-item__title {
		font-size: 2.4rem;
		margin: 0 0 44px;
	}
	.plan-item__circle__price__currency {
		font-size: 3.6rem;
	}
	.plan-item__circle__price__number {
		font-size: 6.2rem;
	}
	.plan-item__circle__price__text {
		margin-left: 5px;
		padding-top: 10px;
		font-size: 1.4rem;
	}
	.plan-list {
		margin: 45px 0 -65px;
	}
	.plan-item__circle__inner .button {
		margin-top: 15px;
	}
	.plan-item__circle a:before {
		clip: rect(0px, 139px, 139px, 0px);
	}

}

/* Above iPad */
@media screen and (min-width: 1025px) {
	.plan-item__circle a:hover:before {
		transform: rotate(90deg);
	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {
	.plan-item__title {
		font-size: 3rem;
		margin: 0 0 50px;
	}
	.plan-item__circle__price__currency {
		font-size: 5.2rem;
		padding-top: 6px;
	}
	.plan-item__circle__price__number {
		font-size: 10rem;
	}
	.plan-item__circle__price__text {
		margin-left: 10px;
		padding-top: 14px;
	}
	.plan-item__circle__price__text {
		font-size: 1.6rem;
		margin-left: 10px;
		padding-top: 14px;
	}
	.plan-item__circle a:before {
		width: calc(100% + 32px);
		height: calc(100% + 32px);
		top: -16px;
		left: -16px;
		clip: rect(0px, 189px, 189px, 0px);
	}
	.plan-item__circle__inner {
		padding-bottom: 34px;
	}

}


/* ---- Footer ---- */
.section--footer a {
	text-decoration: none;
}
.section--footer a:hover {
	text-decoration: underline;
}


/* Links list */

.links-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.links-list a {
	padding: 5px 0;
	display: block;
}
.links-list a:before {
	content: "\003e\00a0";
}

.footer__enews {
	margin-bottom: 25px;
}

/* Footer bottom */
.footer__bottom {
	margin-top: 16px;
}


/* Copyright */
.footer__copyright {
	margin: 15px 0 0;
	text-transform: uppercase;
	font-size: 1.2rem;
}
.footer__copyright__logo {
	margin-right: 20px;
	width: 95px;
}

/* BP 4 */
@media screen and (min-width: 600px) {
	.footer__bottom {
		margin-top: 25px;
	}
}

/* BP 3 */
@media screen and (min-width: 769px) {
	.footer__bottom {
		margin-top: 30px;
	}
	.footer__copyright {
		margin: 13px 0 0;
		font-size: 1.3rem;
	}
}

/* BP 2 */
@media screen and (min-width: 960px) {
	.footer__bottom {
		margin-top: 60px;
	}
	.footer__copyright__logo {
		width: 115px;
	}
	.footer__copyright {
		margin: 0;
	}
	.footer__enews {
		margin-bottom: 0;
	}
}

/* BP 1 */
@media screen and (min-width: 1240px) {

}

/* ---- Magnific Popup ---- */
.mfp-image-holder .mfp-content {
	max-width: 1000px;
}

.mfp-ajax-holder .mfp-content {
	background-color: #fff;
	margin: 0 auto;
	padding: 50px;
	max-width: 700px;
}



/* Generic style for all widgets */

.widget h3.widget-title {

}


/* ------------------------------------------------------
**** Widgets

Widgets & Modules that ship with sprout.
If they don't they belong in seperate partial file

------------------------------------------------------ */

.widget-hasinfobox {
	position: relative;
}

.widget-hasinfobox:hover {
	outline: 1px #999 dotted;
}

.widget-infobox {
	display: none;
	position: absolute;
	top: 0; right: 0;
	padding: 5px 10px;
	background: #CCC;
	color: #000;
	font-size: 12px;
	font-family: sans-serif;
}

.widget-hasinfobox:hover > .widget-infobox {
	display: block;
}


/* ---- Catch all ---- */
.sidebar .widget {
	margin-bottom: 25px;
}

/* ---- Related Links ---- */
.widget-RelatedLinks {
	margin-bottom: 25px;
}


.widget-RelatedLinks ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.widget-RelatedLinks a {
	text-decoration: none;
	display: block;
	text-transform: uppercase;
	font-size: 1.4rem;
	color: #545e75;
	position: relative;
}
.widget-RelatedLinks a:after {
	content: "\e902";
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	position: absolute;
	right: 0;
	top: 8px;
	font-size: 2.1rem;
}



/* Depth 1 */
.widget-RelatedLinks li.depth1 {
	border-bottom: 1px solid #e8ebf7;
	position: relative;
}
.widget-RelatedLinks li.depth1:first-child {
	border-top: 1px solid #e8ebf7;
}
.widget-RelatedLinks li.depth1 > a {
	padding: 9px 25px 9px 0;
	transition: all 150ms ease-out;
}

/* Hover */
.widget-RelatedLinks li.depth1 > a:hover {
	background-color: rgba(0,0,0,0.02);
}



/* Depth 2 */
.widget-RelatedLinks li.depth2 a:before {
	content: "- ";
}
.widget-RelatedLinks li.depth2 {
	border-top: 1px solid #e8ebf7;
}
.widget-RelatedLinks li.depth2 a {
	padding: 7px 25px;
}
/* On */
.widget-RelatedLinks li.depth2.on > a {
	padding-left: 25px;
}



/* On */
.widget-RelatedLinks li.on > a {
	border-left: 4px solid #414042;
	padding-left: 12px;
	background-color: rgba(0,0,0,0.02);
}







/* ---- Simple Image Gallery ---- */
.widget-GallerySimple {
	margin: 15px -10px;
}

.widget-GallerySimple h3 {
	padding: 10px;
}

.widget-GallerySimple .gallery-simple-thumb {
	width: 33.333%;
	padding: 10px;
	float: left;
}
.widget-GallerySimple .gallery-simple-thumb img {
	width: 100%;
}

/* ---- Children Page Gallery ---- */
.children-gallery-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget-ChildrenGallery .children-gallery-list-item {
	width: 48%;
	float: left;
	margin: 0 0 20px 4%;
	position: relative;
}

.widget-ChildrenGallery .children-gallery-list-item-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.widget-ChildrenGallery .children-gallery-list-item-link:hover {
	text-decoration: underline;
}

.widget-ChildrenGallery .children-gallery-list-item-image {
	margin-bottom: 9px;
}

.widget-ChildrenGallery .children-gallery-list-item-link:hover .children-gallery-list-item-image {
	opacity: 0.9;
}

.widget-ChildrenGallery .children-gallery-list-item-title {
	margin: 0;
}

.widget-ChildrenGallery .children-gallery-list-item-anchor {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.widget-ChildrenGallery .children-gallery-list-item:nth-child(2n+1) {
	margin-left: 0;
	clear: left;
}

@media screen and (min-width: 600px) and (max-width: 768px) {
	.widget-ChildrenGallery .children-gallery-list-item {
		width: 30.666666%;
	}
	.widget-ChildrenGallery .children-gallery-list-item:nth-child(3n+1) {
		margin-left: 0;
		clear: left;
	}
}

@media screen and (min-width: 769px) {
	.widget-ChildrenGallery .children-gallery-list-item {
		width: 22%;
	}
	.widget-ChildrenGallery .children-gallery-list-item:nth-child(4n+1) {
		margin-left: 0;
		clear: left;
	}
}



/* ---- Sponsors module ---- */

.sponsors-list__item-link {
	text-decoration: none;
}

.sponsors-list__img-wrap {
	width: 100%;
	border: 1px solid #ccc;
	padding: 8px;
	position: relative;
	margin-bottom: 8px;
	transition: border-color 250ms ease-in-out;
}

.sponsors-list__item-link:hover .sponsors-list__img-wrap {
	border: 1px solid #444;
}

.sponsors-list__img-wrap:before {
	content: "";
	display: block;
	padding-top: 100%; 	/* initial ratio of 1:1*/
}

.sponsors-list__img-wrap__vert-center {
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 10px;
	right: 10px;
	text-align: center;
	align-items: center;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
}

.sponsors-list-item__image {
	display: inline-block;
	margin: 0 auto;
	max-height: 100%;
}




/* ---- Order Form ---- */
.widget-OrderForm .product {
	width: 30%;
	margin-right: 5%;
	float: left;
}
.widget-OrderForm .product:nth-child(3n+3) {
	margin-right: 0;
}

/* ---- Videos ---- */
.widget-Video {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px; height: 0; overflow: hidden;
}

.widget-Video iframe,
.widget-Video object,
.widget-Video embed,
.widget-Video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* ---- File list ---- */
.file-list {
	list-style: none;
    padding: 0;
	margin: 0 0 1.25em;
}

.file-list li {
    margin-bottom: 8px;
}

.file-list li:last-child {
    margin-bottom: 0;
}

.file-list a {
    display: inline-block;
    text-decoration: none;
    color: #515e7c;
	padding-left: 28px;
	transform: translateX(0);
    transition:
		color 200ms ease-in-out,
		transform 200ms ease-in-out;
}

.file-list a:hover,
.file-list a:focus,
.file-list a:active {
    text-decoration: none;
	transform: translateX(10px);
	color: #414042;
}

.file-list .document {
    background: url(../images/icon-system/icon_document.svg) no-repeat;
}

.file-list .document-pdf {
    background-image: url(../images/icon-system/icon_pdf.svg);
}

.file-list .document-png,
.file-list .document-gif,
.file-list .document-jpeg,
.file-list .document-jpg {
    background-image: url(../images/icon-system/icon_image.svg);
}

.file-list .document-rtf,
.file-list .document-txt,
.file-list .document-doc,
.file-list .document-docx {
    background-image: url(../images/icon-system/icon_word-doc.svg);
}

.file-list .document-csv,
.file-list .document-xls,
.file-list .document-xlsx {
    background-image: url(../images/icon-system/icon_spreadsheet.svg);
}

.file-list .document-mp3,
.file-list .document-aac,
.file-list .document-oga {
    background-image: url(../images/icon-system/icon_sound.svg);
}

.file-list .document-mp4,
.file-list .document-mpeg,
.file-list .document-mpg,
.file-list .document-webm,
.file-list .document-ogv,
.file-list .document-aac,
.file-list .document-avi,
.file-list .document-mov,
.file-list .document-wmv {
    background-image: url(../images/icon-system/icon_video.svg);
}


/* ---- reCAPTCHA ---- */
.g-recaptcha {
	padding-bottom: 15px;
}

/* ---- Blog styles ---- */
.button.blog-refine-bar__button.on {
	background-color: #515e7c;
	color: #e8ebf7;
}

.blog-refine-bar p + .button {
	margin-top: 0;
}


/* ---- Subscription list ---- */
.subscription__list {
	list-style: none;
	margin-top: 30px;
	margin-bottom: 20px;
	padding: 0;
}

.subscription__item {
	margin: 0 0 20px;
}
.subscription__item__inner {
	border-radius: 25px;
	overflow: hidden;
	padding: 0 20px 18px;
	height: 100%;
}


/* Header */
.subscription__item__header {
	text-align: center;
	padding: 15px 0 18px;
}
.subscription-type__icon {
	font-size: 5rem;
	color: #aab6d4;
	margin: 0 0 6px;
}
.subscription-type__icon:before {
	display: block;
}
.subscription__item__title {
	font-size: 1.7rem;
	margin: 0 0 4px;
}
.subscription__item__subtitle {

	margin: 0;
}


/* Description */
.subscription__item__description {
	border-top: 1px solid #6e7da0;
	padding: 12px 0;
	text-align: center;
	font-size: 1.4rem;
}
.subscription__item__description p:last-child {
	margin-bottom: 0;
}
.subscription__item__description ul {
	list-style: none;
	text-align: left;
	padding: 0;
	margin-bottom: 20px;
}
.subscription__item__description ul li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 9px;
}
.subscription__item__description ul li:before {
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	content: "\e914";
	font-size: 2.8rem;
	margin: -4px 5px 0 -4px;
	color: #75d450;
}

/* Price */
.subscription__item__price {
	border-top: 1px solid #6e7da0;
	padding: 12px 0;
	text-align: center;
}
.subscription__item__price .plan-item__circle__price__currency {
	font-size: 2rem;
}
.subscription__item__price .plan-item__circle__price__number {
	font-size: 3.7rem;
}
.subscription__item__price .plan-item__circle__price__text {
	font-size: 1.1rem;
}


/* Button */
.subscription__item__button {
	border-top: 1px solid #6e7da0;
	padding-top: 25px;
	text-align: center;
}

/* BP 5 */
@media screen and (min-width: 500px) {

}

/* BP 4 */
@media screen and (min-width: 600px) {
	.subscription__item__price .plan-item__circle__price__currency {
		font-size: 2.3rem;
	}
	.subscription__item__price .plan-item__circle__price__number {
		font-size: 5.2rem;
	}
	.subscription__item__price .plan-item__circle__price__text {
		font-size: 1.3rem;
	}
}

/* BP 3 */
@media screen and (min-width: 769px) {
	.subscription__item {
		margin-bottom: 30px;
	}
}

/* BP 2 */
@media screen and (min-width: 960px) {

}

/* BP 1 */
@media screen and (min-width: 1240px) {
	.subscription__item__inner {
		padding: 0 30px 25px;
	}
	.subscription-type__icon {
		font-size: 9rem;
	}
	.subscription__item__header {
		padding: 20px 0 25px;
	}
	.subscription__item__title {
		font-size: 3.2rem;
	}
	.subscription__item__description {
		padding: 14px 0;
		font-size: 1.5rem;
	}


	.subscription__item__price .plan-item__circle__price__currency {
		font-size: 3.9rem;
	}
	.subscription__item__price .plan-item__circle__price__number {
		font-size: 6.7rem;
	}
	.subscription__item__price .plan-item__circle__price__text {
		font-size: 1.4rem;
	}
}


/* ------------------------------------------------------
**** User Dashboard
------------------------------------------------------ */
.result-box .do-archive-btn {
    background: rgb(0,0,0,0);
    color: #ffffff;
    position: absolute;
    top: 0px;
    width: 100%;
    text-align: center;
    padding: 4px;
    max-height: 0px;
    overflow: hidden;
    -webkit-transition: background 0.3s linear, max-height 0.5s ease-in;
	-moz-transition: background 0.3s linear, max-height 0.5s ease-in
	transition: background 0.3s linear, max-height 0.5s ease-in;
}
.result-box:hover .do-archive-btn {
    background: rgb(0,0,0,0.3);
    max-height: 40px;
}
.result-box .do-archive-btn:hover {
    background: rgb(0,0,0,0.8)!important;
}
.result-box .do-archive-btn span.archive-link a {
    text-decoration: none;
}


/* Splide Theme over-rides */

.splide {
	padding-bottom: 40px;
	margin-bottom: 20px;
}

.splide__slide .result-box {
	padding-bottom: 0;
	height: 100%;
}

.splide__arrow--prev {
	left: -1em !important;
}

.splide__arrow--next {
	right: -1em !important;
}


@media screen and (min-width: 769px) {

	.splide__arrow--prev {
		left: -3em !important;
	}

	.splide__arrow--next {
		right: -3em !important;
	}
}


/* ------------------------------------------------------
**** Print styles
------------------------------------------------------ */

@media print {
	* {
		background: transparent !important;
		color: #000 !important; /* Black prints faster: h5bp.com/s */
		box-shadow: none !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]:after {
		content: " (" attr(href) ")";
	}

	abbr[title]:after {
		content: " (" attr(title) ")";
	}

	/* Don't show links for images, or javascript/internal links */

	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content: "";
	}

	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	thead {
		display: table-header-group; /* h5bp.com/t */
	}

	tr,
	img {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	h2,
	h3 {
		page-break: avoid;
	}
}
