@charset "utf-8";

/* CSS Document */

* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	min-height: 100%;
	width: 100%;
}


/* --- Flex Layouts --- */

.flex {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flex.column {
	-ms-flex-direction: column;
	flex-direction: column;
}

.flex.nowrap {
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.flex.reverse {
	-webkit-flex-direction: row-reverse !important;
	-ms-flex-direction: row-reverse !important;
	flex-direction: row-reverse !important;
}

.flex.space-between {
	justify-content:space-between;
}

.flex-0 {

}

.flex-1 {
	flex: 1;
}

.flex-2 {
	flex: 2;
}

.flex-3 {
	flex: 3;
}

.flex-4 {
	flex: 4;
}


/* --- Flex Grid --- */

.flex.grid {
	margin-left:-2rem;
	margin-right:-2rem;
}

.flex.grid .flex.grid {
	margin-left:-1rem;
	margin-right:-1rem;
}

.flex.grid > *[class*="flex"] {
	padding-left:2rem;
	padding-right:2rem;
}

.flex.grid > *[class*="flex"] .flex.grid > *[class*="flex"] {
	padding-left:1rem;
	padding-right:1rem;
}

@media(max-width:850px) {
	.flex.grid > *[class*="flex"] {
		flex-basis:100%;
	}
	
	.commercialItem {		
        flex-basis: 98% !important;
        max-width: 98% !important;
	}
	.commercialslider
    {
        max-width: 200px;
    }
}


/* --- Site Layout --- */

.container {
	width: 90%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

@media(min-width:768px) {

    .sidebar {
	    flex-basis:200px;
	    flex-shrink:0;
	    max-width:360px;
    }
    
	
	.commercialItem {		
        flex-basis: 48%;
        max-width: 48%;
	}
	.commercialslider
    {
        max-width: 600px;
    }
}


/* -- Flex Lists -- */

ul.flex {
	flex-wrap:nowrap;
	justify-content:space-between;
	list-style:none;
	margin:0;
	padding:0;
	align-items:center;
}


/* --- Typography --- */

h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	padding: 0;
}

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.uppercase, .uppercase * {
	text-transform: uppercase;
}


/* --- Links --- */

a {
	cursor: pointer;
	transition: 0.2s easeout;
	text-decoration: none;
	color:inherit;
}

p>a {
	text-decoration: underline;
}

.widget .multiSelectOptions {
	color:  black;
}

.commercialItem
{
    flex: 1;
    flex-basis: 48%;
    max-width: 48%;
    flex-shrink: 0;
    flex-grow: 0;
    background: white;
    padding: 16px;
    position: relative;
    margin: 0 1%;
    border: solid 1px rgba(0,0,0,0.2);
    box-sizing: border-box;
}
.latest-instructions .slider-nav {
    position: absolute;
    top: 48%;
    left: 10px;
    z-index: 5000;
}
.latest-instructions .slider-nav.right {
    right: 10px;
    left: auto;
}
.latest-instructions .slider-nav>img {
    width: 40px;
}
.commercialslider
{
    flex-wrap: nowrap;
    overflow: hidden; 
    margin: 0px auto;
}
.latest-instructions .business-details
{
    box-sizing: border-box;
}
.cookies_message {
    z-index: 100000;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 30px 5%;
}
.cookies_message a{ text-decoration:underline; font-size:16px; }