/**
 * Default styles used site-wide
 *
 * Site Colours
 * ---
 * 
 */

/** Font import  */


/* General **/
	body, select, input, textarea {
		font: 16px/1.4em Arial,sans-serif;
		color: #444;
		overflow-x: hidden;
	}
	.container {
		max-width: 1600px;
		margin: 0px auto;
		padding: 0 2%;
	}
	section {
		padding: 4em 0;
	}


/* Fonts **/
	h1 {
		font-size: 2em;
	}
	h2 {
		font-size: 1.8em;
	}
	h3 {
		font-size: 1.6em;
	}
	h4 {
		font-size: 1.4em;
	}
	h5 {
		font-size: 1.2em;
	}
	h6 {
		font-size: 1em;
	}
	h1, h2, h3, h4, h5, h6 {
		margin: .6em 0 .3em;
		line-height: 1.214;
		color: #010101;
	}
	h1 + p, h2 + p, h3 + p, h4 + p {
		margin-top: 0;
	}
	p {
		font-size: 1em;
		line-height: 1.8;
		margin: 1em 0;
	}
	a {
		color: #b43a8d;
		text-decoration: underline;
	}
		.primary-d13036 a {
			color: #b43a8d;
		}
		.primary-b43a8d a {
			color: #b43a8d;
		}
		.primary-575756 a {
			color: #575756;
		}
		.primary-935f88 a {
			color: #935f88;
		}
		.primary-577491 a {
			color: #577491;
		}
		.primary-175e55 a {
			color: #175e55;
		}
		.primary-d9a552 a {
			color: #d9a552;
		}
	a:hover {
		text-decoration: none;
	}
	pre {
		font-size: 1em;
		margin: 2.5rem 0;
		padding: 1.5em;
		background: #000;
		color: #008000;
		border-radius: 5px;
	}
	blockquote {
		border-color: #132a37;
		border-style: solid;
		border-width: 0 0 0 0.2rem;
		border-radius: 5px 0 0 5px;
		color: inherit;
		font-size: 1em;
		margin: 2em 0;
		padding: .1em 0 .1em 1em;
	}
	hr {
		width: 100%;
		margin: 3em 0;
		background: #CCCCCC;
		border: none;
		height: 5px;
		position: relative;
		border-radius: 5px;
	}
	acronym[title],
	abbr[title] {
		text-decoration: none;
		cursor: help;
		border-bottom: 2px dotted #b43a8d;
	}


/** Forms */
	button, input, textarea, select {
		vertical-align: middle;
	}
	section input[type=email], 
	section input[type=password], 
	section input[type=search], 
	section input[type=tel], 
	section input[type=text], 
	section input[type=url], 
	section textarea, 
	section textarea.input-text, 
	section select {
		padding: 0;
		border: none;
	}
	section textarea,
	section textarea.input-text {
		height: 150px;
		line-height: 1.5em;
		padding: 0;
	}
	input:hover, textarea:hover, select:hover {
		border: 1px solid #999;
	}
	input:focus, textarea:focus, select:focus {
		border: 1px solid #999;
	}
	.input-text:focus, input[type=email]:focus, input[type=password]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=url]:focus, textarea:focus {
		outline: none;
		background: #F6F6F6;
	}
	button:hover, button:focus, button:active {

	}
	input.checkbox, input.radio {
		width: auto !important;
		background: transparent; /* ie6 */
		border: none !important; /* ie6 */
		margin: 0 10px 0 0;
	}
	button, 
	input[type="button"], 
	input[type="reset"], 
	input[type="submit"], 
	.button {
		border: 2px solid #b43a8d;
		background: #b43a8d;
		color: #FFF;
		font-size: 16px;
		font-weight: 600;
		line-height: 1.3;
		box-shadow: none;
		text-decoration: none;
		max-width: 100%;
		padding: 10px 40px;
		border-radius: 35px;
		cursor: pointer;
		text-shadow: none;
		display: inline-block;
		margin-right: 1em;
		-webkit-transition: all .5s;
		   -moz-transition: all .5s;
		    -ms-transition: all .5s;
		     -o-transition: all .5s;
		        transition: all .5s;
	}

	.primary-d13036 .button {
		border: 2px solid #b43a8d;
		background: #b43a8d;
		color: #FFF;
	}
	.primary-b43a8d .button {
		border: 2px solid #b43a8d;
		background: #b43a8d;
		color: #FFF;
	}
	.primary-575756 .button {
		border: 2px solid #575756;
		background: #575756;
		color: #FFF;
	}
	.primary-935f88 .button {
		border: 2px solid #935f88;
		background: #935f88;
		color: #FFF;
	}
	.primary-577491 .button {
		border: 2px solid #577491;
		background: #577491;
		color: #FFF;
	}
	.primary-175e55 .button {
		border: 2px solid #175e55;
		background: #175e55;
		color: #FFF;
	}
	.primary-d9a552 .button {
		border: 2px solid #d9a552;
		background: #d9a552;
		color: #FFF;
	}

	button, 
	input[type="button"]:last-child, 
	input[type="reset"]:last-child, 
	input[type="submit"]:last-child, 
	.button:last-child {
		margin-right: 0;
	}
	button.outline,
	.button.outline {
		background: transparent;
		color: #b43a8d;
	}

	button:hover, 
	input[type="button"]:hover, 
	input[type="reset"]:hover, 
	input[type="submit"]:hover, 
	.button:hover {
		border: 2px solid #b43a8d;
		background: #fff;
		color: #b43a8d;
	}
		.primary-d13036 .button:hover {
			border-color: #b43a8d;
			background: #fff;
			color: #b43a8d;
		}
		.primary-b43a8d .button:hover {
			border-color: #b43a8d;
			background: #fff;
			color: #b43a8d;
		}
		.primary-575756 .button:hover {
			border-color: #575756;
			background: #fff;
			color: #575756;
		}
		.primary-935f88 .button:hover {
			border-color: #935f88;
			background: #fff;
			color: #935f88;
		}
		.primary-577491 .button:hover {
			border-color: #577491;
			background: #fff;
			color: #577491;
		}
		.primary-175e55 .button:hover {
			border-color: #175e55;
			background: #fff;
			color: #175e55;
		}
		.primary-d9a552 .button:hover {
			border-color: #d9a552;
			background: #fff;
			color: #d9a552;
		}
	.button.button-blank {
		border: 2px solid #FFF;
		background: transparent;
	}
	.button.button-blank:hover {
		border-color: #FFF;
		background: #FFF;
		color: #010101;
	}
	a:focus, button:focus, .button.alt:focus, input:focus, textarea:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus {
		outline: none;
	}




/** Owl Carousel Nav */
	.owl-carousel.include-nav {
		padding: 0 40px;
	}
	.owl-carousel .owl-nav {
		display: none;
	}
	.owl-carousel.include-nav .owl-nav {
		display: block;
		margin: 0;
		width: 100%;
		z-index: 100;
	}
	.owl-carousel.include-nav .owl-prev, 
	.owl-carousel.include-nav .owl-next {
		text-indent: -999em;
		width: 40px;
		height: 40px;
		position: absolute;
		top: calc(50% - 20px);
		z-index: 250;
		transition: all 0.5s;
		background-size: cover;
		background-repeat: no-repeat;
		opacity: .5;
	}
	.owl-carousel.include-nav:hover .owl-prev, 
	.owl-carousel.include-nav:hover .owl-next {
		opacity: .7;
	}

	.owl-carousel.include-nav .owl-prev {
		background-image: url('/images/icons/left-arrow-grey.svg');
		background-position: center;
		background-size: 16px auto;
		left: 0;
	}
	.owl-carousel.include-nav .owl-next {
		background-image: url('/images/icons/right-arrow-grey.svg');
		background-position: center;
		background-size: 16px auto;
		right: 0;
	}
	.owl-carousel.include-nav .owl-prev:hover, 
	.owl-carousel.include-nav .owl-next:hover {
		opacity: 1;
	}


/** Owl Carousel Pagination */
	.owl-carousel.include-pagination .owl-dots {
		text-align: center;
		height: 16px;
		margin: 1em 0;
	}
	.owl-carousel.include-pagination .owl-dot {
		border: 3px solid #b43a8d;
		background-color: #b43a8d;
		width: 12px;
		height: 12px;
		border-radius: 50%;
		display: inline-block;
		margin: 0 5px;
		opacity: .1;
		transition: all 0.5s;
	}
		.primary-d13036 .owl-carousel.include-pagination .owl-dot {
			border: 3px solid #b43a8d;
			background-color: #b43a8d;
		}
		.primary-b43a8d .owl-carousel.include-pagination .owl-dot {
			border: 3px solid #b43a8d;
			background-color: #b43a8d;
		}
		.primary-575756 .owl-carousel.include-pagination .owl-dot {
			border: 3px solid #575756;
			background-color: #575756;
		}
		.primary-935f88 .owl-carousel.include-pagination .owl-dot {
			border: 3px solid #935f88;
			background-color: #935f88;
		}
		.primary-577491 .owl-carousel.include-pagination .owl-dot {
			border: 3px solid #577491;
			background-color: #577491;
		}
		.primary-175e55 .owl-carousel.include-pagination .owl-dot {
			border: 3px solid #175e55;
			background-color: #175e55;
		}
		.primary-d9a552 .owl-carousel.include-pagination .owl-dot {
			border: 3px solid #d9a552;
			background-color: #d9a552;
		}
	.owl-carousel.include-pagination:hover .owl-dot {
		opacity: .7;
	}
	.owl-carousel.include-pagination .owl-dot:hover {
		opacity: 1;
	}
	.owl-carousel.include-pagination .owl-dot.active {
		border-color: #b43a8d;
		background-color: transparent;
	}
		.primary-d13036 .owl-carousel.include-pagination .owl-dot.active {
			border-color: #b43a8d;
			background-color: transparent;
		}
		.primary-b43a8d .owl-carousel.include-pagination .owl-dot.active {
			border-color: #b43a8d;
			background-color: transparent;
		}
		.primary-575756 .owl-carousel.include-pagination .owl-dot.active {
			border-color: #575756;
			background-color: transparent;
		}
		.primary-935f88 .owl-carousel.include-pagination .owl-dot.active {
			border-color: #935f88;
			background-color: transparent;
		}
		.primary-577491 .owl-carousel.include-pagination .owl-dot.active {
			border-color: #577491;
			background-color: transparent;
		}
		.primary-175e55 .owl-carousel.include-pagination .owl-dot.active {
			border-color: #175e55;
			background-color: transparent;
		}
		.primary-d9a552 .owl-carousel.include-pagination .owl-dot.active {
			border-color: #d9a552;
			background-color: transparent;
		}
	

/** Cookie Policy */
	#cookie-overlay {
		display: none;
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		height: 100%;
		background: rgba(33,41,52,.85);
		z-index: 999;
	}
	#cookie-overlay.ppp {
		top: inherit;
		height: auto;
	}

	#cookie-message {
		position: absolute;
		bottom: 0;
		padding: 4em 5em;
		background-color: #fff;
		width: 100%;
		margin: 0;
		z-index: 100;
		box-sizing: border-box;
	}

		#cookie-message .cookie-wrapper {
			display: flex;
		}

			#cookie-message .statement {
				width: 66.0%;
			}
				
				#cookie-message h2 {
					margin-top: 0;
				}
				
				#cookie-message p:last-of-type {
					margin-bottom: 0;
				}
			
			#cookie-message .accept {
				width: 32.0%;
				margin: 1em 0 0;
				text-align: right;
			}
		
	@media only screen and (max-width: 768px) {

		#cookie-message {
			text-align: center;
		}

			#cookie-message .cookie-wrapper {
				flex-flow: column nowrap;
			}

				#cookie-message .statement,
				#cookie-message .accept {
					width: 100%;
					text-align: center;
				}

	}

	@media only screen and (max-width: 560px) {

		#cookie-message {
			padding: 1em 2em;
		}

	}

	@media only screen and (max-width: 479px) {

		#cookie-message .accept .button {
			width: 100%;
		}

	}
