/*
Theme Name: Plus Business
Author: inter.direct
Author URI: https://inter.direct/
Description: The Plus Business theme
Version: 1.0.3
Template: interdirect
Tags: foundation 
*/

/*BASICS*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* suggested font smoothing code, not seen it work yet but turn on if having issues - might work */
* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-shadow: none;
	text-rendering: optimizeLegibility;
}


/* =========  general classes =========  */
.hidden {
	display: none;
}

.clearBoth {
	clear: both;
}

html {
	min-height: 101%;
}

/* makes browser always have sidebar scroller area - so doesnt jump */

body {
	margin: 0px;
	padding: 0px;
	font-family: Roboto, Arial, Helvetica, sans-serif;
	font-size: 62.5%;
	height: 100%;
	width: 100%;
	z-index: 0;
	color: #000;
	background-color: #ffffff;
}

body.cke_show_borders {
	/* adds side spacing so easier to edit */
	margin: 0px 5px 0px 5px;
	padding: 0px 2px 0px 2px;
	width: auto;
}

html.CSS1Compat {
	_overflow-y: scroll;
	/* important for ckeditor display - not sure what, need to check */
}

.hide {
	display: none;
}

/* overall links */
a {
	display: inline-block;
}

a {
	color: #307fcf;
	text-decoration: none;
	outline: none;
}

a:hover {
	color: #307fcf;
	text-decoration: none;
	outline: none;
}

.cli-plugin-button, 
.cli-plugin-button:visited, 
.medium.cli-plugin-button, 
.medium.cli-plugin-button:visited {
	font-weight:bold!important;
	position: relative;
}

.cli-plugin-button::before,
.medium.cli-plugin-button::before {
	content:"";
	position: absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:none;
	border:1px solid #ccc;
	border-radius: 5px;
	opacity:0;
	transform: all ease-out 0.3s;
}
.cli-plugin-button:focus::before,
.medium.cli-plugin-button:focus::before {
	opacity:1;
}


/* ========= usercontent styles  ========= */
/* (frontend and in admin ckeditor)*/

blockquote, blockquote p {color:#333;}

div.userContent a,
body.cke_show_borders a {
	font-weight: bold;
}

div.userContent a {
	color: #307fcf;
}

/* scales images correctly */
div.userContent img {
	max-width: 100%;
}

/* possible image rendering improvement in IE for scalable images - need to test*/
img {
	-ms-interpolation-mode: bicubic !important;
}


h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: Roboto, Arial, Helvetica, sans-serif;
	color: #000;
	font-weight: 300;
	margin-bottom: 0.5rem;
	margin-top: 0.2rem;
	padding: 0px;
	display: inline-flex;
}

h1 {
	font-size: 36px;
}

p {
	font-size: 16px;
}

.hidden {
	display: none;
}

#cookie-law-info-again {
	right:0!important;
}

/*GLOBAL*/

.focus {position: relative;}

.focus::before {
	content:"";
	position: absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:none;
	border:1px solid #ccc;
	border-radius: 5px;
	opacity:0;
	transform: all ease-out 0.3s;
}

.focus:focus::before {
	opacity:1;
}

.light {
	border-color: #333;
}


.captchaContainer {
	display: inline-block;
	width: 100%;
	max-width: 100%;
}

.g-recaptcha {
	margin: 0 0 0.9375rem 0;
}

.section-container {
	display:flex;
	flex-wrap: wrap;
	width:100%;
	min-height: 65vh;
	justify-content: center;
}

.section-container h2 {
	font-size: 24px;
    font-weight: bold;
}

.sectionInner {
	display: inline-flex;
    flex-wrap: wrap;
    max-width: 1280px;
    width: 100%;
    padding: 0 1.875rem;
    z-index: 50;
    flex-direction: column;
}

.inner-wrap {
	min-height: calc(100vh - 65px);
}

#page-title {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	margin: 0.9375rem 0 1.875rem 0;

}

#page-title .page-title-inner {
	width: auto;
	padding: 0 1.875rem 0 18%;
}

#page-title .page-title-inner h1 {
	margin: 5px 0;
	line-height: 1.1em;
}

/* -- button ripple -- */

.btn {
	position: relative;
	display: inline-block;
	overflow: hidden;
	margin: auto;
	height: 100%;
}

.btn-md .btn-inside {
	padding: 20px;
}

.btn.lg .btn-inside {
	padding: 30px;
}

.btn-inside {
	/*Silly Mask Fix Border Radius Chrome lame*/
	-webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
	overflow: hidden;
	transition: all 0.25s;
	user-select: none;
	cursor: pointer;
	height: 100%;
	width: 100%;
}

.btn:active {
	box-shadow: 0px 0.5px 1px rgba(0, 0, 0, 0.5);
	;
}

.btn .ripple {
	width: 0px;
	height: 0px;
	position: absolute;
	transition: all 0.75s;
	display: inline-block;
	opacity: 1;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.btn .ripple.effect {
	width: 400px;
	height: 400px;
	color: #000;
	opacity: 0;
	background: black;
	border-radius: 100%;
}

.ripple-container {
	position: relative;
	width: 100%;
}


/* -------------------- colours ------------------- */

.co_main {
	color: #5f5f5f;
}

.co_second {
	color: #808080;
}

.co_third {
	color: #444444;
}

.co_fourth {
	color: #e7e7e7;
}

/* -------------------- backgrounds ------------------- */

.bg_main {
	background: #5f5f5f;
}

.bg_main_fade {
	background: rgba(95, 95, 95, 0.9);
}

.bg_main span,
.bg_main h1,
.bg_main h2,
.bg_main h3,
.bg_main h4,
.bg_main h5,
.bg_main h6,
.bg_main p,
.bg_main a,
.bg_main ul li,
.bg_main ol li,
input.bg_main,
.bg_main i,
.bg_main,
a.bg_main {
	color: #fff;
}



.bg_second {
	background: #808080;
}

.bg_second_fade {
	background: rgba(128, 128, 128, 0.9)
}

.bg_second span,
.bg_second h1,
.bg_second h2,
.bg_second h3,
.bg_second h4,
.bg_second h5,
.bg_second h6,
.bg_second p,
.bg_second a,
.bg_second ul li,
.bg_second ol li,
input.bg_second,
.bg_second i,
.bg_second,
a.bg_second {
	color: #fff;
}


.bg_third {
	background: #444444;
}

.bg_third_fade {
	background: rgba(68, 68, 68, 0.9)
}

.bg_third span,
.bg_third h1,
.bg_third h2,
.bg_third h3,
.bg_third h4,
.bg_third h5,
.bg_third h6,
.bg_third p,
.bg_third a,
.bg_third ul li,
.bg_third ol li,
input.bg_third,
.bg_third i,
.bg_third,
a.bg_third {
	color: #fff;
}

.bg_fourth {
	background: #e7e7e7;
}

.bg_fourth_fade {
	background: rgba(231, 231, 231, 0.9);
}

.bg_fourth span,
.bg_fourth h1,
.bg_fourth h2,
.bg_fourth h3,
.bg_fourth h4,
.bg_fourth h5,
.bg_fourth h6,
.bg_fourth p,
.bg_fourth a,
.bg_fourth ul li,
.bg_fourth ol li,
input.bg_fourth,
.bg_fourth i,
.bg_fourth,
a.bg_fourth {
	color: #000;
}

/* Header */

header {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	z-index: 100;
}

#mainLogo {
	width: 100%;
	max-width: 90px;
	margin: 5px 0;
}

.mainNav {
	position: relative;
	background: #fff;
	width: 100%;
	z-index: 99;
	justify-content: center;
	display: inline-flex;
	border-bottom: 1px solid #f2f2f2;
}

.homepage .mainNav {
	width: 100%;
	display: flex;
	justify-content: center;
	position: inherit;
	top: 0;
	z-index: 50;
	border: none;
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=0);
	/* IE6-9 */
}

.mainNav .sectionInner {
	flex-wrap: nowrap;
	position: relative;
}

/*nav */

nav {
	display: flex;
	justify-content: end;
	align-items: center;
	width: 100%;
	padding: 0 1.875rem;
	padding-right: calc(3.75rem + 60px);
	position: relative;
}

nav div {
	width: 100%;
}

nav ul.menu {
	margin: 0;
	display: inline-flex;
	justify-content: flex-end;
	width: 100%;
}

nav ul.menu li a {
	font-size: 16px;
	padding: 0.9375rem;
	font-weight: 400;
	color: #000;
	position: relative;
	align-items: center;
}

nav ul.menu li a::after {
	content: "";
	position: absolute;
	right: 0;
	height: calc(100% - 1.875rem);
	width: 1px;
	background: #3d404c;
}

nav ul.menu li a::before {
	content:"";
	position: absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:none;
	border:1px solid #ccc;
	border-radius: 5px;
	opacity:0;
	transform: all ease-out 0.3s;
}

nav ul.menu li a:focus::before {
	opacity:1;
}

nav ul.menu li:last-child a {
	padding-right: 0;
}

nav ul.menu li:last-child a::after {
	display: none;
}

.buttonContainer {
	position: absolute;
	right: 1.875rem;
	width: auto;
	align-self: center;
}

.searchButton,
.accountButton,
.basketButton {
	display: inline-block;
    z-index: 9;
    padding: 5px 0 5px 15px;
    margin: 0 2px;
    width: 40px;
    height: 30px;
    font-size: 21px;
    transition: all ease-out 0.3s;
}

.basketButton a {
	position: absolute;
    right: 10px;
    top: 0px;
    color: #3d404c;
}

.basketButton a::before {
	content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: none;
    border: 1px solid #ccc;
    border-radius: 5px;
    opacity: 0;
    transform: all ease-out 0.3s;
}

.basketButton a:focus::before {opacity:1;}

.basketButton a .basket-amount {
	position: absolute;
    font-size: 12px;
    font-weight: bold;
    border-radius: 100%;
    height: 20px;
    width: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: -10px;
    right: -10px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
}

.searchButton:hover,
.accountButton:hover,
.basketButton:hover {
	cursor: pointer;
}

.searchButton:focus,
.accountButton:focus,
.basketButton:focus {
	outline: none;
}

/* top nav */

.topNav {
	width: 100%;
	justify-content: center;
	display: inline-flex;
	position: relative;
	z-index: 110;
}

ul.navBlock {
	display: inline-flex;
	width: 100%;
	justify-content: space-between;
	padding: 0.9375rem 1.8575rem 0.9375rem 0;
	margin: 0;
}

ul.navBlock li {
	list-style: none;
}

ul.navBlock li a {
	display: inline-flex;
	padding: 0;
	width: 100%;
	align-items: center;
	transition: all ease-out 0.5s;
	font-size: 18px;
	font-weight: 300;
	font-family: Roboto, Arial, Helvetica, sans-serif;
}

ul.navBlock li a:hover {
	opacity: 1;
}

ul.navBlock li a i {
	font-size: 24px;
	margin: 0 0.9375rem 0 0;
}


/*mobile burger widget */

#nav-toggle {
	cursor: pointer;
	padding: 0;
	cursor: pointer;
	display: inline-flex;
	height: 25px;
	margin-left: 10px;
	align-items: center;
	top: 2px;
	width: 20px;
	position: relative;
	transition: all ease-out 0.4s;
	-webkit-transition: all ease-out 0.4s;
	-moz-transition: all ease-out 0.4s;
	-ms-transition: all ease-out 0.4s;
	-o-transition: all ease-out 0.4s;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
	cursor: pointer;
	height: 2px;
	width: 20px;
	background: #333;
	position: absolute;
	display: block;
	content: '';
}

#nav-toggle span,
#nav-toggle span::before,
#nav-toggle span::after {
	transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
}

#nav-toggle span:before {
	top: -6px;
}

#nav-toggle span:after {
	bottom: -6px;
}

#nav-toggle:hover span::before {
	top: -8px;
}

#nav-toggle:hover span::after {
	bottom: -8px;
}

/* active */

#nav-toggle.active {
	transform: rotate(90deg);
}

#nav-toggle.active span {
	background-color: transparent;
}

#nav-toggle.active span:before {
	top: 0;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
}

#nav-toggle.active span:after {
	bottom: 0;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
}

.left-small:hover #nav-toggle.active span:before {
	top: 0;
}

.left-small:hover #nav-toggle.active span:after {
	top: 0;
}

/* search */

.search_wrapper {
	position: absolute;
	width: 100%;
	max-width: 500px;
	top: 0;
	right: 1.875rem;
	opacity: 0;
	z-index: -1;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
	transition: all ease-out 0.3s;
}

.search_wrapper.open {
	top: 100%;
	opacity: 1;
}

.search_wrapper label {
	visibility: hidden;
    position: absolute;
    top: -300px;
}

.searchButton img {
	width: 24px;
	height: 30px;
}

#headerContainer.internal .searchButton i {
	color: #252525;
}

#headerContainer.stuck {
	z-index: 9998;
	top: 0;
}

.search_wrapper .SiteSearch {
	width: calc(100% - 90px);
	margin: 0.9375rem;
	height: 40px;
	box-shadow: none;
	font-size: 13px;
	font-weight: bold;
	border: 0;
}

.search_wrapper .SiteSearchSubmit {
	display: inline-block;
	margin-right: 0.9375rem;
	padding: 12px;
	border: 0;
	font-size: 18px;
	height: 40px;
	float: right;
	font-weight: bold;
}

.search_wrapper .SiteSearchSubmit:focus {
	outline: none;
}

.searchTitle {
	text-align: center;
	font-size: 28px;
	margin: 1.875rem 0 0.9375rem 0;
}

.searchClose {
	position: absolute;
	opacity: 0;
	right: 0;
	padding: 5px 10px;
	background: rgba(0, 0, 0, 0.7);
	transition: all ease-out 0.3s;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.searchClose:hover {
	cursor: pointer;
}

.searchClose i {
	color: #fff;
	font-size: 16px;
}

.search_wrapper.open .searchClose {
	opacity: 1;
}

.searchButton .magGlass {
	fill: #1e2a39;
}

/* searchResults */

#searchResults {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 1.875rem 0;
}

#searchResults ul {
	width: 100%;
	margin: 0 0 0.9378rem 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#searchResults ul li {
	list-style: none;
	display: inline-flex;
	flex-wrap: wrap;
	width: 33.333%;
	padding: 0.9375rem;
	border: 1px solid #fff;
	background: #f2f2f2;
}

#searchResults ul li .searchBlock {
	padding: 0.9375rem;
	border: 1px solid #ccc;
	box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
}

#searchResults ul li a {
	font-size: 16px;
	float: right;
	margin: 0;
	padding: 5px;
	display: inline-flex;
	height: auto;
	font-weight: 600;
}

#searchResults ul li h3 {
	width: 100%;
	line-height: 1em;
	margin: 0;
}

#searchResults ul li h3 a {
	font-size: 18px;
	line-height: 1.3em;
	font-weight: bold;
	width: 100%;
	float: left;
	padding: 0;
	color: #383838;
	margin: 0 0 0.9375rem 0;
}

#searchResults ul li p {
	font-size: 16px;
	width: 100%;
}

#searchResults ul li .searchButton {
	width: auto;
	padding: 5px 10px;
	font-size: 14px;
	font-weight: normal;
	align-self: flex-end;
}

/* breadcrumbs */

#breadBin {
	padding: 0.9375rem 3.75rem;
	background: #f2f2f2;
	display: flex;
	align-items: center;
	justify-content: center;
}

#breadBin .breadcrumbs {
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 1280px;
	padding: 0 1.875rem;
}

#breadBin .breadcrumbs li {
	color: #1e2a39;
	font-size: 12px;
}

#breadBin .breadcrumbs li a {
	color: #1e2a39;
	font-weight: bold;
}

#breadBin .breadcrumbs li a {position: relative;}
#breadBin .breadcrumbs li a::before {
	content:"";
	position: absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:none;
	border:1px solid #ccc;
	border-radius: 5px;
	opacity:0;
	transform: all ease-out 0.3s;
}

#breadBin .breadcrumbs li a:focus::before {
	opacity:1;
}

#default {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
}

ul li,
ol li {
	font-size: 16px;
}

img.alignleft {
	margin: 0 5px 5px 0;
	float: left;
}

.alignright {
	margin: 0 0 5px 5px;
	float: right;
}

.aligncenter {}

.userContent p,
.userContent a,
.userContent div {
	font-size: 16px;
}

/* ============================ Homepage ==================================== */

#homepage {
	overflow: hidden;
}

/* slideshow */

#homeImage {
	display: flex;
	flex-wrap: wrap;
	height: 500px;
	position: relative;
	z-index: 10;
	width: 110%;
	left: -5%;
	justify-content: center;
	align-items: center;
}

.homeImage-inner {
	position: absolute;
	padding: 1.875rem 3.75rem;
	z-index: 30;
	width: 100%;
	max-width: 1280px;
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}

#homeImage .homeImage-title {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	top: 80px;
	position: relative;
	align-items: center;
	justify-content: flex-start;
}

#homeImage .homeTitle-block {
	display: inline-block;
	width: 100%;
	left: -65%;
	visibility: hidden;
	position: relative;
}

#homeImage .homeTitle-top {
	font-size: 45px;
	font-weight: 300;
	background: #fff;
	width: 100%;
	display: inline-flex;
	padding: 0.9375rem;
	justify-content: flex-end;
	margin: 0 0 10px 0;
}

#homeImage .homeTitle-bottom {
	font-size: 45px;
	width: 100%;
	display: inline-flex;
	padding: 0.9375rem;
	justify-content: flex-end;
}

#homeImage .homeImage-text {
	padding: 0.9375rem;
	background: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	width: 50%;
	margin: 10px 0;
	visibility: hidden;
}

#homeImage .homeImage-image {
	height: 100%;
	width: 100%;
	padding: 0;
	margin: 0;
	top: -5%;
}

#homeImage .homeImage-image::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 300px;
	bottom: -28vh;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+34&0+1,0.86+47,1+77 */
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 0.62) 34%, rgba(255, 255, 255, 0.86) 47%, rgba(255, 255, 255, 1) 77%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 0.62) 34%, rgba(255, 255, 255, 0.86) 47%, rgba(255, 255, 255, 1) 77%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 0.62) 34%, rgba(255, 255, 255, 0.86) 47%, rgba(255, 255, 255, 1) 77%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
	/* IE6-9 */
}

#homeImage .homeImage-image .layer {
	height: 75vh;
	overflow: hidden;
}

#homeImage .homeImage-image .layer .main_image {
	position: absolute;
	width: 110%;
	height: 110%;
	left: -5%;
	top: -5%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}


/* feature boxes */

#feature {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
}

#feature .sectionInner {
	justify-content: center;
}

#feature ul {
	display: inline-flex;
	width: 100%;
	max-width: 1024px;
	padding: 0 1.875rem;
	margin: 1.875rem;
	align-items: center;
}

#feature ul li {
	list-style: none;
	width: 100%;
	height: 100%;
	margin: 0 5px;
}

#feature ul li a {
	padding: 0.9375rem 1.875rem;
	width: 100%;
	height: 100%;
	position: relative;
}

#feature ul li a .feature-content {
	position: relative;
	z-index: 20;
	margin: 1.875rem 0;
}

#feature ul li a .feature-content img {
	position: absolute;
	width: 30px;
	top: -10px;
	right: -0.9375rem;
	z-index: 20;
}

#feature ul li a .feature-content .feature-heading {
	color: #fff;
	font-size: 28px;
	line-height: 1.1em;
	margin: 0;
	font-weight: 500;
	width: 85%;
}

#feature ul li a .feature-content p {
	color: #fff;
	font-size: 16px;
}

#feature ul li a .overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
}

/* footer */

#footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0 1.875rem 1.875rem;
}

#footer .sectionInner {
	justify-content: center;
	padding: 0.9375rem 1.875rem;
	flex-wrap: wrap;
}

#footer .footerNav {
	width: 100%;
	justify-content: center;
	display: inline-flex;
}

#footer .footerNav .menu {
	width:100%;
}

#footer .footerNav .menu li a {position: relative;}
#footer .footerNav .menu li a::before {
	content:"";
	position: absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:none;
	border:1px solid #ccc;
	border-radius: 5px;
	opacity:0;
	transform: all ease-out 0.3s;
}

#footer .footerNav .menu li a:focus::before {
	opacity:1;
}

#footer p {
	font-size: 14px;
	width: 100%;
	margin: 0;
	justify-content: center;
	display: inline-flex;
}



/* listing page - standard */

/* Blog */


/* Blog inner page */



/* accordion */


/* course search */

#course-search {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	position: relative;
	z-index: 99;
}

.course-search-header {
	display: flex;
	width: 100%;
	padding: 0 1.875rem;
	margin: 0 0 5px 0;
}

.box-title {
	align-items: center;
	display: inline-flex;
	padding: 1.875rem;
	min-width: calc(25% - 8px);
	min-height: 200px;
	background: #3e3e41;
}

.box-title h1 {
	width: 100%;
	display: inline-flex;
	flex-wrap: wrap;
	font-size: 20px;
	line-height: 1em;
	color: #fff;
}

.box-title h1 span {
	width: 100%;
	display: inline-flex;
	font-weight: bold;
	font-size: 28px;
}

.course-search-block {
	background: rgba(0, 0, 0, 0.1);
	margin: 0 0 0 10px;
	width: 100%;
	padding: 1.875rem;
	align-items: center;
	display: inline-flex;
	flex-wrap: Wrap;
}

.course-search-block ul {
	margin: 0;
	display: flex;
}

.course-search-block ul li {
	list-style: none;
}

.course-search-input,
.course-search-input form {
	display: flex;
	width: 100%;
	flex-wrap: nowrap;
	position: relative;
}

.course-search-input {
	margin: 0 0 5px 0;
}

.course-search-input input {
	border: 0;
	box-shadow: none;
	width: 100%;
	margin: 0;
	padding: 0.9375rem;
	height: auto;
	background: rgba(255, 255, 255, 0.9);
}

.course-search-input input:focus {
	border: 0;
}

.course-search-input input::placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #000;
	opacity: 1;
	/* Firefox */
}

.course-search-input input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #000;
}

.course-search-input input::-ms-input-placeholder {
	/* Microsoft Edge */
	color: #000;
}

.course-search-input button {
	width: 50px;
	font-size: 16px;
	margin: 0 0 0 5px;
	align-items: center;
	display: inline-flex;
}

.course-search-input button .btn-inside {
	display: inline-flex;
	position: relative;
}

.course-search-input button img {
	margin: 10px;
	max-width: 100%;
	width: 30px;
}

.course-search-input button:hover,
.course-search-buttons li button:hover {
	cursor: pointer;
}

.course-search-input button:focus,
.course-search-buttons li button:focus {
	outline: none;
}

.course-search-buttons li {
	display: inline-flex;
	flex-wrap: Wrap;
	margin: 0 5px 0 0;
}

.course-search-buttons li button,
.course-search-buttons li a {
	font-size: 16px;
	justify-content: flex-start;
	text-align: left;
	padding: 0.9375rem;
	background: rgba(255, 255, 255, 0.95);
	font-weight: 300;
	color: #0a0a0a;
	line-height: 18px;
}

.course-search-buttons li button span,
.course-search-buttons li a span {
	width: 100%;
	display: inline-flex;
	font-weight: bold;
}

/* course search inner page */

.course-search-page {
	padding: 0;
	margin: 0 0 1.875rem 0;
	flex-wrap: wrap;
}

.course-search-page .course-search-block {
	background: rgba(255, 255, 255, 0.8);
}

.course-search_bg {
	width: 100%;
	height: 350px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.course-search-page .course-search-container {
	display: inline-flex;
	flex-wrap: Wrap;
	width: 100%;
	padding: 0 3.75rem;
	justify-content: center;
}

.course-search-page .course-search-content {
	display: inline-flex;
	flex-wrap: wrap;
	width: 100%;
	min-height: 100vh;
	max-width: 1280px;
	justify-content: center;
	align-items: flex-start;
	padding: 0 calc(3.75rem - 20px);
}

.course-search-page .course-search-content form {
	display: inline-flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
}

.course-search-page .course-search-content .search-block {
	width: 75%;
	max-width: 1280px;
	display: inline-flex;
	justify-content: flex-start;
	flex-wrap: Wrap;
	flex-direction: column;
}

.course-search-page .course-search-content ul {
	display: inline-flex;
	justify-content: flex-start;
	flex-wrap: Wrap;
	margin: 0;
	width: 100%;
	height: fit-content;
}

.course-search-page .course-search-content ul li {
	width: 33.333%;
	padding: 10px;
	list-style: none;
}

.course-search-page .course-search-content ul li a {
	padding: 1.875rem;
	width: 100%;
	height: 100%;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	position: relative;
}

.course-search-page .course-search-content ul li a::after {
	content: "\f105";
	font-family: fontawesome;
	position: absolute;
	right: 0.9375rem;
	bottom: 0.9375rem;
	color: #fff;
	font-size: 50px;
	opacity: 0;
	transition: all ease-out 0.5s;
}

.course-search-page .course-search-content ul li a:hover::after {
	opacity: 1;
	right: 1.875rem;
}

.course-search-page .course-search-content ul li a h4 {
	font-weight: 600;
	width: 100%;
	max-width: 75%;
	text-transform: uppercase;
}

.course-search-page .course-search-content ul li a h6 {
	width: 100%;
	max-width: 75%;
	font-weight: 600;
	margin: 0 0 0.9375rem 0;
}

.course-search-page .course-search-content ul li a span {
	color: #fff;
	font-size: 16px;
	width: 100%;
	margin: 0 0 5px 0;
	line-height: 1em;
}

.course-search-page .course-search-content ul li a span.price {
	align-self: flex-end;
	margin-top: 1.375rem;
	font-weight: 600;
	font-size: 20px;
}


div.search-block li:nth-child(1n)>div {
	background: #333;
}

div.search-block li:nth-child(2n)>div {
	background: #444;
}

div.search-block li:nth-child(3n)>div {
	background: #555;
}

div.search-block li:nth-child(4n)>div {
	background: #666;
}

#course-search-filter {
	width: 25%;
	display: inline-block;
	position: relative;
	z-index: 10;
	float: left;
}

#course-search-filter ul {
	width: 100%;
	padding: 10px;
	background: none;
	height: 100%;
	flex-direction: column;
}

#course-search-filter ul li {
	width: 100%;
	background: #fff;
	border: 0;
	padding: 0;
}

#course-search-filter ul li a::before {
	font-size: 24px;
	transform: translateY(-50%);
	margin-top: 0;
}

#course-search-filter ul li a {
	width: 100%;
	height: auto;
	font-size: 16px;
	font-weight: 600;
	color: #3d404c;
	background: #fff;
	border: none;
	padding: 0.9375rem;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
	transition: all ease-out 0.3s;
}

#course-search-filter ul li.is-active a {
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

#course-search-filter ul li a::after {
	content:"";
	position: absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:none;
	border:1px solid #ccc;
	border-radius: 5px;
	opacity:0;
	transform: all ease-out 0.3s;
}
	
#course-search-filter ul li a:focus::after {
	opacity:1;
}


#course-search-filter .acc-content {
	border: none;
	font-size: 16px;
}

#course-search-filter .acc-content a {
	padding: 0;
	box-shadow: none;
}

#course-search-filter .is-active .acc-content a {
	box-shadow: none;
}

#course-search-filter .acc-content button {
	width: 100%;
	text-align: left;
	margin: 0 0 10px 0;
	padding: 0 0 0 1.875rem;
	position: relative;
	display: inline-flex;
	align-items: center;
}

#course-search-filter .acc-content button:hover {
	cursor: pointer;
}

#course-search-filter .acc-content button:focus {
	outline: none;
}

#course-search-filter .acc-content button::after {
	content: "";
	position: absolute;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 20px;
	border: 2px solid #3d404c;
	background: rgba(31, 64, 76, 0);
	transition: all ease-out 0.5s;
}

#course-search-filter .acc-content button.mixitup-control-active::after {
	background: rgba(31, 64, 76, 1);
}

#course-search-filter .acc-content button.disabled {
	color: rgba(0, 0, 0, 0.2);
}

#course-search-filter .acc-content button.disabled::after {
	border-color: rgba(0, 0, 0, 0.2);
}

.filter-header {
	display: flex;
	position: relative;
	align-items: center;
	width: calc(100% - 20px);
	padding: 0.9375rem 0;
	margin: 1.875rem 0 0 0;
	border-bottom: 1px solid #3d404c;
}

.filter-header h6:first-child {
	width: 25%;
}

.filter-header h6 {
	font-size: 16px;
	font-weight: 300;
	line-height: 1em;
	flex-wrap: wrap;
}

#course-search .filter-header .searchH6 {
	display: inline-flex;
}

.course-search-page .course-search-content .search-block .filter-header {
	display: none;
}

.filter-header h6 span {
	font-size: 20px;
	font-weight: 600;
	width: 100%;
	display: inline-flex;
	line-height: 1em;
}

.filter-header button {
	font-size: 16px;
	font-weight: 300;
	width: auto;
	line-height: 1em;
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	right: 0;
	justify-content: flex-end;
}

.filter-header button#viewall {
	padding: 10px;
}

.filter-header button:hover {
	cursor: pointer;
}

.filter-header button:focus {
	outline: none;
}

.filter-header button span {
	font-size: 20px;
	font-weight: 600;
	width: 100%;
	display: inline-flex;
	line-height: 1em;
	justify-content: flex-end;
}

/* course detail page */

#gridBlock {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 1.875rem;
}

#gridBlock ul {
	margin: 0 0 0.9375rem 0;
	display: inline-flex;
	width: 100%;
	flex-wrap: Wrap;
	padding: 0;
}

#gridBlock ul li {
	list-style: none;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	min-height: 250px;
}

#gridBlock ul li a {
	width: 66.666%;
	height: 100%;
}

#gridBlock ul li button {
	background: #fff;
	color: #000;
	display: inline-flex;
	font-size: 16px;
	line-height: 1.4em;
	font-weight: bold;
	padding: 10px 1.875rem;
	font-weight: bold;
	align-items: center;
}

#gridBlock ul li button:hover {
	cursor: pointer;
}

#gridBlock ul li button:focus {
	outline: none;
}

#gridBlock ul li button i {
	color: #000;
	font-weight: bold;
	margin: 0 5px;
}

#gridBlock ul li h4 {
	display: flex;
	font-size: 20px;
	flex-wrap: wrap;
	line-height: 1.2em;
	width: 100%;
	padding: 0 1.875rem;
}

#gridBlock ul li h4 span {
	font-weight: 600;
	display: inline-flex;
	width: 100%;
	font-size: 28px;
	line-height: 1em;
}


.square-one {
	width: 25%;
	visibility: hidden;
}

.square-two {
	width: 50%;
	visibility: hidden;
}

.square-three {
	width: 75%;
	visibility: hidden;
}

.square-four {
	width: 100%;
	visibility: hidden
}

.square-left {
	padding: 0.9375rem;
	width: 100%;
	height: 100%;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
}

.square-three .square-left {
	width: 33.333%;
}

.square-four .square-left {
	width: 25%;
}

#gridBlock ul li.square-four a {
	width: 75%;
}

.square-left .btn-inside,
.square-right .btn-inside {
	width: auto;
}

.square-right {
	padding: 0.9375rem;
	width: 100%;
	height: 100%;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
}

#gridBlock .square-right ul,
#gridBlock .square-left ul {
	margin: 0;
	display: inline-flex;
	align-items: flex-start;
	flex-wrap: wrap;
	padding: 0 1.875rem;
}

#gridBlock .square-right ul li {
	font-size: 14px;
	width: 100%;
	min-height: auto;
	justify-content: flex-start;
}

#gridBlock .square-right ul li.ripple-container {
	width: auto;
	margin: 0;
}

#gridBlock .square-right ul li a,
#gridBlock .square-left ul li a {
	display: inline-flex;
    font-size: 16px;
    padding: 0.9375rem;
    font-weight: bold;
    margin: 5px 0 0 0;
    width: auto;
    height: auto;
}

#gridBlock .square-right ul li span,
#gridBlock .square-left ul li span {
	font-weight: 600;
	margin: 0 5px 0 0;
}

#gridBlock .square-left ul li {
	font-size: 14px;
	width: 100%;
	min-height: auto;
	justify-content: flex-start;
}

.square-map {
	width: 100%;
	height: 100%;
	padding: 0;
	background: #f2f2f2;
}


.dept-list {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	position: relative;
	z-index: 20;
}

.dept-list ul {
	margin: 0;
	width: 100%;
	display: inline-flex;
	flex-wrap: wrap;
	padding-left: calc(1.875rem - 5px);
	padding-right: calc(1.875rem - 5px);
}

.dept-list ul li {
	padding: 0 5px;
	margin: 5px 0;
	list-style: none;
	width: 25%;
	visibility: hidden;
}

.dept-list ul li a::before {
	content:"";
	position: absolute;
	width:100%;
	height:100%;
	opacity:0;
	top: 0;
    left: 0;
	border:3px solid #000;
	transition:all ease-out 0.2s;
}

.dept-list ul li a {
	padding: 3.75rem 1.875rem;
	width: 100%;
	height: 100%;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	position: relative;
}

.dept-list ul li a::after {
	content: "\f105";
	font-family: fontawesome;
	position: absolute;
	right: 0.9375rem;
	bottom: 0.9375rem;
	color: #fff;
	font-size: 50px;
	opacity: 0;
	transition: all ease-out 0.5s;
}

.dept-list ul li a:hover::after {
	opacity: 1;
	right: 1.875rem;
}

.dept-list ul li a:focus::before {opacity:1;}

.dept-list ul li a img {
	width: 40px;
	display: inline-flex;
	position: absolute;
	right: 1.875rem;
	top: 0.9375rem;
}

.dept-list ul li a h2 {
	width: 100%;
	font-size: 22px;
	line-height: 1em;
	display: inline-flex;
	flex-wrap: wrap;
}

.dept-list ul li a h2 span {
	width: 100%;
	font-size: 25px;
	font-weight: 500;
	display: inline-flex;
	flex-wrap: wrap;
	line-height: 1em;
	word-break: break-word;
}

.load-more-button {
	display: flex;
	flex-wrap: Wrap;
	width: 100%;
	justify-content: center;
	align-items: center;
	padding: 0.9375rem;
	margin: 1.875rem 0;
}

.load-more-button button {
	font-size: 16px;
	font-weight: bold;
	padding: 0.9375rem 1.875rem;
}

.load-more-button button:hover {
	cursor: pointer;
}

.load-more-button button:focus {
	outline: none;
}

.load-more-button button i {
	font-size: 18px;
	margin: 0 5px;
}

.load-more-button p {
	width: 100%;
	justify-content: center;
	display: inline-flex;
	font-size: 14px;
}

/* listing - dept */

#listing-dept {
	display: flex;
	justify-content: center;
}

.listing .woocommerce {
	width: 100%;
}

.woocommerce .woocommerce-result-count {
	font-size: 16px;
}


.listing .woocommerce ul.products {
	display: flex;
	flex-wrap: wrap;
	padding: 0.9375rem 0;
}

.listing .woocommerce ul.products li.product {
	visibility: hidden;
	padding: 0;
	width: 100%;
	max-width: 25%;
	min-height: 200px;
	transition: all ease-out 0.4s;
	border: 1px solid #f8f8f8;
	margin: 0 0 1px 0 !important;
}

#listing-dept .woocommerce ul.products li.product a {
	padding: 0.9375rem 0.9375rem 5rem;
    width: 100%;
    height: 100%;
}

.listing .woocommerce ul.products li.product:nth-child(1n) {
	background: #333;
}

.listing .woocommerce ul.products li.product:nth-child(2n) {
	background: #444;
}

.listing .woocommerce ul.products li.product:nth-child(3n) {
	background: #555;
}

.listing .woocommerce ul.products li.product:nth-child(4n) {
	background: #666;
}

.listing .woocommerce ul.products li:hover {
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	cursor: pointer;
}

.listing .woocommerce ul.products li.product .woocommerce-loop-category__title,
.listing .woocommerce ul.products li.product .woocommerce-loop-product__title,
.listing .woocommerce ul.products li.product h3 {
	font-size: 22px;
	line-height: 1.2em;
	font-weight: 600;
	color: #fff;
}

.listing .woocommerce ul.products li.product img {
	display: none;
}

.listing .woocommerce ul.products li.product mark {
	background-color: #f2f2f2;
	color: #000;
	padding: 5px;
	border-radius: 100%;
	font-size: 12px;
	width: 30px;
	height: 30px;
	display: none;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 0.9375rem;
	top: 0.9375rem;
}

.listing .woocommerce ul.products li.product .price {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	color: #fff;
}

.listing .woocommerce ul.products li.product .button {
	font-size: 16px;
	font-weight: 400;
	border-radius: 0;
	padding: 0.9375rem 1.875rem;
	align-self: flex-end;
	position: absolute;
	bottom: 0.9375rem;
	width: calc(100% - 1.875rem);
	height:auto;
	left: 0.9375rem;
	color: #fff;
	background: #5f5f5f;
}

#listing-dept .woocommerce ul.products li.product .button {
	height: auto;
    padding: 0.9375rem 1.875rem;
    width: calc(100% - 1.875rem);
}

.related {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	position: relative;
	z-index: 20;
	padding: 0 1.875rem;
}

.woocommerce .related ul.products {
	margin: 0;
	width: 100%;
	display: inline-flex;
	flex-wrap: wrap;
	padding-left: calc(1.875rem - 5px);
	padding-right: calc(1.875rem - 5px);
}

.woocommerce .related ul.products li {
	padding: 0 5px;
	margin: 5px 0;
	list-style: none;
	width: 25%;
	visibility: hidden;
}

.woocommerce .related ul.products li.product .woocommerce-loop-category__title,
.woocommerce .related ul.products li.product .woocommerce-loop-product__title,
.woocommerce .related ul.products li.product h2 {
	font-size: 16px;
	line-height: 1.2em;
	font-weight: 500;
	text-transform: capitalize;
}

.woocommerce .related ul.products li.product .price {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
}

.woocommerce .related ul.products li.product {
	padding-bottom: 3.75rem;
	position: relative;
}

.woocommerce .related ul.products li.product .button {
	font-size: 16px;
	font-weight: 400;
	border-radius: 0;
	padding: 0.9375rem 1.875rem;
	position: absolute;
	bottom: 0;
	left: 0;
}

.woocommerce #content table.cart img, 
.woocommerce table.cart img, 
.woocommerce-page #content table.cart img, 
.woocommerce-page table.cart img {
	max-width:100px;
}

#userContent .woocommerce a.remove {
	display: inline-flex;
    font-size: 18px;
    height: 25px;
    width: 25px;
    text-align: center;
    justify-content: center;
    align-items: center;
    line-height: 1;
    border-radius: 100%;
    color: red!important;
    text-decoration: none;
    font-weight: 700;
    border: 0;
    padding: 0;
}

#userContent .woocommerce a.remove:hover {
    color: #fff!important;
    background: red;
}

.woocommerce .cart-collaterals, 
.woocommerce-page .cart-collaterals {margin:0.9375rem 0; }

#course-overview {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0 1.875rem;
}

#course-overview .box-title {
	min-width: 25%;
}

/* download button */

.download-button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0.937rem;
	margin: 1.875rem 0;
}

.download-button a::before {
	content: "";
	position: absolute;
	width: 0;
	height: 1px;
	background: #fff;
	left: 0.9375rem;
	bottom: 0.9375rem;
	transition: all ease-out 0.5s;
}

.download-button a {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0.9375rem 1.875rem 0.9375rem 0.9375rem;
	font-size: 20px;
	position: relative;
	width: auto;
	line-height: 1em;
}

.download-button a span {
	width: 100%;
	font-weight: 600;
	font-size: 28px;
	line-height: 1em;
}

.download-button a::after {
	content: "\f019";
	position: absolute;
	font-family: fontawesome;
	right: 0.9375rem;
	font-size: 30px;
	font-weight: bold;
}

.download-button a:hover::before {
	width: calc(100% - 1.875rem);
}

/* cta button */

.cta-button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0.937rem;
	margin: 1.875rem 0;
}

.cta-button a::before {
	content: "";
	position: absolute;
	width: 0;
	height: 1px;
	background: #fff;
	left: 0.9375rem;
	bottom: 0.9375rem;
	transition: all ease-out 0.5s;
}

.cta-button a {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0.9375rem 1.875rem 0.9375rem 0.9375rem;
	font-size: 20px;
	position: relative;
	width: auto;
	line-height: 1em;
}

.cta-button a span {
	width: 100%;
	font-weight: 600;
	font-size: 28px;
	line-height: 1em;
}

.cta-button a::after {
	content: "\f105";
	position: absolute;
	font-family: fontawesome;
	right: 0.9375rem;
	font-size: 30px;
	font-weight: bold;
}

.cta-button a:hover::before {
	width: calc(100% - 1.875rem);
}


/* course overview */

.overview-block {
	display: flex;
	margin: 0 0 1.875rem 0;
	width: 100%;
}

.overview-block .text {
	font-size: 16px;
	padding: 1.875rem;
	height: 100%;
	width: 100%;
	margin: 0 0 0.9375rem 0;
	background: #f8f8f8;
	display: inline-block;
	align-items: center;
}

.overview-block .text p {
	width: 100%;
}

.details_block {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	background: #f8f8f8;
}

.details_block .day_block {
	width: 100%;
	display: inline-flex;
	align-items: center;
	padding: 1.875rem;
}

.details_block .time_block {
	width: 100%;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0 1.875rem;
	margin-top: 1.875rem;
}

.details_block .date_block {
	width: 100%;
	display: inline-flex;
	align-items: center;
	padding: 0 1.875rem;
}

.details_block .price_block {
	width: 100%;
	display: inline-flex;
	flex-wrap: Wrap;
	align-items: center;
	padding: 0 1.875rem;
}

.details_block .price_block h6,
.details_block .date_block h6,
.details_block .time_block h6 {
	font-weight: 600;
	width: 100%;
	text-transform: capitalize;
}

.details_block .price_block h6 span,
.details_block .date_block h6 span,
.details_block .time_block h6 span {
	font-weight: normal;
	margin: 0 5px;
}

.details_block .price_block p,
.details_block .date_block p {
	width: 100%;
	margin: 0;
	font-size: 14px;
}

.details_block ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0;
}

.details_block ul li {
	list-style: none;
	display: inline-flex;
	flex-wrap: wrap;
	margin: 0 0 0.9375rem;
	position: relative;
}

.details_block ul li::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background: #f2f2f2;
	bottom: -0.9375rem;
}

.details_block ul li h6 {
	width: 100%;
	font-weight: 600;
	text-transform: uppercase;
}

.details_block ul li ul {
	flex-wrap: nowrap;
	margin: 0;
}

.details_block ul li ul li {
	padding: 5px 0.9375rem;
	font-weight: 600;
	background: #fff;
	margin: 1px;
	flex-wrap: wrap;
}

.details_block ul li ul li::after {
	display: none;
}

.details_block ul li ul li span {
	margin: 5px;
	font-weight: normal;
	width: 100%;
}

/* auto complete overwrite */

#course-search #autoComplete_list {
	display: inline-flex;
	flex-wrap: wrap;
	background: #fff;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
	justify-content: center;
	margin: 0;
	margin-top: 53px;
	position: absolute;
	left: 0;
	width: calc(100% - 52px);
}

#course-search li.no_result,
#course-search li.autoComplete_result {
	border: 0;
	margin: 0;
	width: 100%;
	font-size: 16px;
	max-width: 100%;

}

#course-search li.no_result {
	text-align: center;
}

#course-search li.no_result,
#course-search li.autoComplete_result:hover {
	background: none;
}

#course-search li.no_result,
#course-search li.autoComplete_result .autoComplete_highlighted {
	color: #7b7b7b;
}

/* FAQ */

.acc-block {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
}

.acc-block .acc {
	display: inline-flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1024px;
}

.acc-block .acc li,
.acc-block .acc li a {
	font-size: 16px;
	width: 100%;
	list-style: none;
	
}

.acc-title {
	position: relative;
    display: block;
    padding: 1.25rem 1rem;
    border: 1px solid #e6e6e6;
    border-bottom: 0;
	font-weight: bold;
}

.acc-block .acc li a:hover,
.acc-block .acc li a:focus {
	color: #0a0a0a;
}

.acc-block  .acc-content {
	padding: 1rem;
    border: 1px solid #e6e6e6;
    border-bottom: 0;
    background-color: #fefefe;
}

.acc-block  .acc-content ul li {
	list-style-type: disc;
}


/* registration form */

#student_reg_form {
	width:100%;
	padding: 0 1.875rem;
	margin: 1.875rem 0;
}

#student_reg_form h3 {
    width: 100%;
    margin-top: 1.875rem;
    border-bottom: 1px solid #ccc;
}

#student_reg_form .acf-fields {
	display: inline-flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

#student_reg_form .acf-fields>.acf-field {
	padding:0.9375rem 0;
	border: 0;
	width:100%;
}

#student_reg_form  button.woocommerce-form-register__submit {
	font-size: 16px;
    font-weight: 300;
    width: auto;
    line-height: 1em;
    display: flex;
	flex-wrap: wrap;
	font-weight:bold;
	float: right;
}

#student_reg_form .blockContainer {
	display: inline-flex;
	width:100%;
}

#student_reg_form .blockContainer_wrap {
	display:inline-flex;
	flex-wrap:wrap;
	width:100%;
	justify-content: space-between;
}

#student_reg_form .form_block {
	display:inline-flex;
	width:100%;
	flex-wrap:wrap;
	justify-content: space-between;
}

#student_reg_form .acf-fields>.acf-field.postcodeLook {
	padding-left:0.9375rem;
}

#student_reg_form .postcodeLook .acf-label {
	width: 100%;
}

#student_reg_form .postcodeLook .acf-input-wrap {
	display: inline-flex;
    width: 100%;
}

#student_reg_form .postcodeLook .acf-input-wrap input {margin:0;}

#student_reg_form h3,
.edit-account h3 {width:100%;}

#postcode_lookup {
	display: inline-flex;
    align-items: center;
    padding: 8px 0.9375rem;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    max-width: 150px;
    text-align: center;
    justify-content: center;
    margin: 0 0 0 0.9375rem;
}

#postcode_lookup:hover {cursor:pointer;}

.acf-ui-datepicker .ui-datepicker {z-index:50!important;}

/* account */

.woocommerce-MyAccount-navigation {
	padding: 0;
    position: relative;
    opacity: 1;
}

.woocommerce-MyAccount-navigation ul {
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 1.875rem;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link {
    list-style: none;
    width: 100%;
    max-width: 24%;
	border: 1px solid #f2f2f2;
	transition: all ease-out 0.3s;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link:hover {
	background:#f2f2f2;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link.is-active,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link.is-active a {
	background: #ccc;
    color: #333;
}


.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link a {
	padding: 1.875rem;
    width: 100%;
    height: 100%;
    min-height: 200px;
    align-items: center;
    display: inline-flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: normal;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link a .account-icon {
	margin: 0 0 5px 0;
    display: inline-flex;
    width: auto;
    font-size: 30px;
    line-height: 1em;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a .account-icon::after {
	content:"\f291";
	font-family:fontawesome;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a .account-icon::after {
	content:"\f007";
	font-family:fontawesome;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a .account-icon::after {
	content:"\f023";
	font-family:fontawesome;
}


.woocommerce form .form-row {padding:0;}

.woocommerce-EditAccountForm .acf-fields>.acf-field {
	padding: 5px 0px;
    border: 0;
}

.woocommerce form .form-row label { font-weight: bold;}

/* acf overwrites */

.acf-notice.-error {
    background: #d94f4f;
    border-color: #c92c2c;
}

.acf-notice p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0.5em 0;
    text-shadow: none;
	color:inherit;
}

.acf-notice .acf-notice-dismiss {
    position: absolute;
    top: 9px;
    right: 12px;
    background: transparent !important;
    color: inherit !important;
    border-color: #fff !important;
    opacity: 0.75;
}

.acf-icon.small, .acf-icon.-small {
    width: 20px;
    height: 20px;
    line-height: 14px;
    font-size: 14px;
}

.acf-icon.-cancel:before {
    content: "\f335";
}
.acf-icon:before {
    font-family: dashicons;
    display: inline-block;
    line-height: 1;
    font-weight: 400;
    font-style: normal;
    speak: none;
    text-decoration: inherit;
    text-transform: none;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    text-align: center;
}

.acf-notice {
    position: relative;
    display: block;
    color: #fff;
    margin: 5px 0 15px;
    padding: 3px 12px;
    background: #2a9bd9;
    border-left: #1f7db1 solid 3px;
}

.acf-field .acf-notice.-error {
    background: #ffe6e6;
    color: #cc2727;
    border-color: #d12626;
}

/* ========================================= Media Queries ================================================= */

/* 1440 */
@media only screen and (max-width: 90.063em) {}

/* 1280 */
@media only screen and (max-width: 80.063em) {
	.dept-list ul li {
		width: 33.333%;
	}

	.box-title {
		min-width: calc(33.333% - 6px);
	}

	#gridBlock ul {
		padding: 0;
	}

	.square-two {
		width: 100%;
	}

	.homeImage-inner {
		max-width: 100%;
		padding: 1.875rem calc(3.75rem + 5%);
	}

	#homeImage .homeTitle-block {
		left: -60%;
	}

	#homeImage .homeTitle-top,
	#homeImage .homeTitle-bottom {
		font-size: 30px;
	}

	#feature ul {
		margin: 1.875rem 0;
		max-width: 100%;
		justify-content: space-between;
		padding-left: calc(1.875rem - 5px);
		padding-right: calc(1.875rem - 5px);
	}

	#feature ul li {
		margin: 0;
		padding: 0 5px;
	}

	.square-four .square-left {
		width: 50%;
	}

	#gridBlock ul li.square-four a {
		width: 50%;
	}

	.course-search-page .course-search-content {
		padding: 0;
	}

	.course-search-page .course-search-content ul li {
		width: 50%;
	}

	.listing .woocommerce ul.products li.product .woocommerce-loop-category__title,
	.listing .woocommerce ul.products li.product .woocommerce-loop-product__title,
	.listing .woocommerce ul.products li.product h3 {
		font-size: 20px;
	}

}

/* 1024 */
@media only screen and (max-width: 64.063em) {

	.dept-list ul li a {
		padding: 3.75rem 1.875rem;
	}

	.dept-list ul li a h2 {
		font-size: 18px;
	}

	.dept-list ul li a h2 span {
		font-size: 24px;
	}

	#gridBlock {
		display: inline-block;
	}

	.square-one,
	.square-two,
	.square-three {
		width: 100%;
		position: relative;
	}

	#gridBlock ul li.square-three {
		flex-wrap: Wrap;
	}

	.square-three .square-left {
		width: 50%;
	}

	#gridBlock ul li a {
		width: 50%;
	}

	#gridBlock ul li.square-three .square-map {
		display: inline-flex;
		height: 100%;
		width: 50%;
		min-height: 250px;
	}

	#gridBlock ul li.square-three .square-right {
		width: 100%;
	}

	#homeImage {
		align-items: flex-end;
	}

	#homeImage .homeImage-title {
		top: 0;
	}

	#homeImage .homeImage-text {
		width: 100%;
	}

	#homeImage .homeTitle-block {
		left: -50%;
	}

	ul.navBlock li a {
		font-size: 14px;
	}

	ul.navBlock li a i {
		font-size: 16px;
		margin: 0 5px;
	}

	ul.navBlock li.nav-basket a i {font-size: 14px;}

	#feature ul li a .feature-content .feature-heading {
		font-size: 20px;
	}

	#searchResults ul li {
		width: 50%;
	}

	.details_block ul li ul li {
		font-size: 12px;
		line-height: 1em;
	}

	#course-search li.no_result,
	#course-search li.autoComplete_result {
		font-size: 14px;
	}

	.course-search-input button img {
		width: 25px;
	}

	.course-search-page .course-search-container {
		padding: 0 1.875rem;
	}

	.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link {
		max-width:49%;
		margin: 0 0 2% 0;
	}
	.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link a {
		min-height: 100px;
		font-size: 20px;
	}

}

/* 1024 landscape */
@media only screen and (max-width: 64.063em) and (orientation: landscape) {}

/* 860 */
@media only screen and (max-width: 53.75em) {

	#mainLogo {
		max-width: 70px;
	}

	.buttonContainer {
		right: 0;
	}

	.mainNav .sectionInner {
		padding: 0 1.875rem;
	}

	.mainNav nav {
		padding-left: 0;
		padding-right: 6.75rem;
	}

	nav ul.menu li a {
		font-size: 14px;
	}

	.searchButton,
	.accountButton,
	.basketButton {
		padding: 5px;
		width: 30px;
		height: 30px;
	}

	nav ul.menu li a {
		padding: 10px;
	}

	nav ul.menu li a::after {
		height: 15px;
	}

	#course-search-filter {
		width: 33.333%;
	}

	.course-search-page .course-search-content ul {
		width: 100%;
	}

	.course-search-page .course-search-content ul li {
		width: 50%;
	}

	.filter-header h6:first-child {
		width: 33.333%;
	}

	.course-search-page .course-search-content .search-block {
		width: 100%;
	}

	.course-search-page .course-search-content .search-block .filter-header {
		padding: 0;
	}

	#course-search-filter,
	#course-search-filter ul {
		width: 100%;
	}

	#course-search .filter-header .searchH6 {
		display: none;
	}

	.course-search-page .course-search-content .search-block .filter-header {
		display: inline-flex;
	}

	.listing .woocommerce ul.products li.product {
		max-width: 50%;
		min-height: 100px;
	}

	.course-details {
		flex-wrap: Wrap;
	}

	.course-details .box-title {
		min-height: 0;
		height: auto;
		width: 100%;
	}

}

/* 640 */
@media only screen and (max-width: 40.063em) {

	h1 {
		font-size: 30px;
		line-height: 1.2em;
	}

	.box-title {
		min-height: 100px;
	}

	#page-title .page-title-inner {
		width: 100%;
		padding: 0 1.875rem;
	}

	.homepage .mainNav {
		top: 0px;
		z-index: 49;
	}

	.mainNav nav {
		padding: 0;
	}

	nav {
		padding: 0;
		position: absolute;
		left: 0;
		height: auto;
		overflow: hidden;
		flex-wrap: wrap;
		transition: all ease-out 0.3s;
		opacity: 0;
	}

	nav.open {
		top: 0px !important;
		box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
	}

	ul.navBlock {
		padding: 10px 1.875rem;
	}

	nav div.custom-menu-class {
		width: 100%;
		padding: 1.875rem 1.875rem 3.75rem 1.875rem;
		height: auto;
		position: relative;
		background: #fff;
		top: 0;
		box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
	}

	nav ul.menu li {
		width: 100%;
		text-align: center;
	}

	nav ul.menu li a::after {
		display: none;
	}

	.buttonContainer {
		position: absolute;
		bottom: 0;
		padding: 0.9375rem 0;
		right: 0;
		margin: auto;
		justify-content: center;
		display: inline-flex;
		width: 100%;
	}

	.searchButton,
	.accountButton,
	.basketButton {
		padding: 0 5px;
	}

	.course-search-header {
		flex-wrap: Wrap;
		padding: 0;
	}

	.box-title {
		width: 100%;
		margin: 0 0 5px 0;
	}

	.course-search-block {
		margin: 0;
	}

	.course-search-buttons li,
	.course-search-buttons li button {
		width: 100%;
	}

	.dept-list ul li {
		width: 50%;
		visibility: visible;
	}

	#gridBlock ul li {
		align-items: center;
		justify-content: center;
		min-height: auto;
		flex-wrap: wrap;
	}

	.square-left,
	.square-right {
		flex-wrap: wrap;
		align-items: flex-start;
		justify-content: center;
		flex-direction: column;
		height: 240px;
	}

	#gridBlock ul li.square-three .square-left,
	#gridBlock ul li.square-three .square-map {
		width: 100%;
	}

	#gridBlock ul li.square-four a {
		width: 100%;
	}

	div.search-block li:nth-child(1n)>div {
		background: #ee961a;
	}

	div.search-block li:nth-child(2n)>div {
		background: #f0a132;
	}

	div.search-block li:nth-child(3n)>div {
		background: #f2ac49;
	}

	div.search-block li:nth-child(4n)>div {
		background: #f3b761;
	}

	.overview-block {
		flex-wrap: wrap;
	}

	.overview-block .box-title {
		min-height: 0;
		height: auto;
		margin: 0;
	}

	.overview-block .text {
		display: inline-flex;
		align-items: flex-start;
		height: auto;
		flex-wrap: Wrap;
	}

	#homeImage .homeImage-text {
		font-size: 14px;
	}

	#homeImage .homeTitle-block {
		left: -30%;
	}

	#homeImage .homeTitle-top,
	#homeImage .homeTitle-bottom {
		font-size: 22px;
		padding: 10px;
	}

	#homeImage .homeTitle-block {
		visibility: visible;
	}

	#homeImage .homeImage-text {
		visibility: visible;
	}

	.homeImage-inner {
		padding: 1.875rem;
	}

	#mainLogo {
		max-width: 60px;
		z-index: 99;
	}

	ul.navBlock {
		justify-content: center;
	}

	ul.navBlock li {
		list-style: none;
	}

	ul.navBlock li a span {
		display: none;
	}

	ul.navBlock li a i {
		border: 1px solid #fff;
		border-radius: 100%;
		width: 30px;
		height: 30px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.mainNav .sectionInner {
		padding: 0 1.875rem;
	}

	#feature ul {
		flex-wrap: wrap;
	}

	#feature ul li {
		margin: 0 0 0.9375rem 0;
		height: auto;
	}

	#feature ul li a {
		height: 250px;
	}

	.course-search-page .course-search-content ul li {
		width: 100%;
	}

	.dept-list ul {
		padding: 0
	}

	#gridBlock ul li a {
		width: 100%;
	}

	#searchResults ul li {
		width: 100%;
	}

	#breadBin {
		padding: 0.9375rem 1.875em;
	}

	#breadBin .breadcrumbs {
		padding: 0;
	}

	#page-title .page-title-inner h1,
	.listing .woocommerce ul.products li.product {
		visibility: visible;
	}

	.listing .woocommerce ul.products li.product .woocommerce-loop-category__title,
	.listing .woocommerce ul.products li.product .woocommerce-loop-product__title,
	.listing .woocommerce ul.products li.product h3 {
		font-size: 18px;
	}

	.listing .woocommerce ul.products li.product .button {
		font-size: 12px;
		padding: 10px;
	}

	.course-search-input input {
		font-size: 12px;
	}

	.course-search_bg {
		height: 250px;
	}

	.box-title,
	.course-search-block {
		padding: 0.9375rem 1.875rem;
	}

	.filter-header {
		margin: 0;
	}

	.filter-header h6 span,
	.filter-header button span {
		font-size: 16px;
	}

	#course-search-filter ul li a {
		font-size: 14px;
		padding: 10px;
	}

	#course-search-filter ul li a::before {
		font-size: 16px;
	}

	.box-title h1 {
		font-size: 16px;
		margin: 0;
	}

	.box-title h1 span {
		font-size: 20px;
	}

	.details_block ul li ul {
		flex-wrap: wrap;
	}

	.details_block ul li ul li {
		font-size: 12px;
		line-height: 1em;
		width: 50%;
		margin: 0;
		border: 1px solid #fff;
		align-items: center;
	}

	.woocommerce .related ul.products {
		padding: 0;
	}

	.woocommerce .related ul.products li.product .button {
		font-size: 12px;
	}

	.woocommerce .related ul.products li.product .woocommerce-loop-category__title,
	.woocommerce .related ul.products li.product .woocommerce-loop-product__title,
	.woocommerce .related ul.products li.product h2 {
		font-size: 14px;
	}

	.details_block .price_block h6,
	.details_block .date_block h6 {
		flex-wrap: wrap;
	}

	.details_block .price_block h6 span,
	.details_block .date_block h6 span {
		width: 100%;
	}

	#gridBlock {
		padding: 0;
	}

	.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link {max-width:100%;}

	#footer .footerNav .menu li {
		width:100%;
		text-align:center;
	}

	#footer .footerNav .menu li:last-child {
		margin-bottom: 0.9375rem;
    border-bottom: 1px solid #666;
	}

	#footer p {text-align:center;}

	#student_reg_form .acf-fields>.acf-field.postcodeLook {
		width:100%!important;
		padding-left:0;
	}

}

/* 640 landscape */
@media only screen and (max-width: 40.063em) and (orientation: landscape) {}

/* 500 */
@media only screen and (max-width: 31.25em) {
	.dept-list ul li {
		width: 100%;
		padding: 0;
	}

	#feature ul li {
		padding: 0;
	}

	.listing .woocommerce ul.products li.product .woocommerce-loop-category__title,
	.listing .woocommerce ul.products li.product .woocommerce-loop-product__title,
	.listing .woocommerce ul.products li.product h3 {
		font-size: 14px;
	}

	.listing .woocommerce ul.products li.product {
		max-width: 100%;
		width: 100% !important;
	}

}

/* 375*/
@media only screen and (max-width: 23.25em) {
	.details_block ul li ul li {
		width: 100%;
	}
}


/* to make captcha slightly smaller to fit on small screens */
@media screen and (max-width: 1024px) {

	#rc-imageselect,
	g-recaptcha {
		transform: scale(0.77);
		-webkit-transform: scale(0.77);
		transform-origin: 0 0;
		-webkit-transform-origin: 0 0;
	}
}

.woocommerce nav.woocommerce-pagination {
    text-align: center;
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
    padding: 0 1.875rem;
    padding-right: calc(3.75rem + 60px);
    position: relative;
    opacity: 1;
}

.acc-content{
	display:block !important;
}

.is-active > .acc-title::before{
	content:"" !important;
}

/* overwrite cookie plugin*/
@media (max-width: 576px) {
    .cky-preference-center {
        overflow-y: scroll!important;
        max-width: 90vw!important;
    }

	.cky-preference-body-wrapper {overflow: unset!important;}
}