/* Font Awesome */
@font-face {
    font-family: 'bmn-icons';
  src: url('../font/bmn-icons.eot?36469610');
  src: url('../font/bmn-icons.eot?36469610#iefix') format('embedded-opentype'),
       url('../font/bmn-icons.woff2?36469610') format('woff2'),
       url('../font/bmn-icons.woff?36469610') format('woff'),
       url('../font/bmn-icons.ttf?36469610') format('truetype'),
       url('../font/bmn-icons.svg?36469610#bmn-icons') format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"]:before,
[class*=" icon-"]:before,
.search-bar #Search:after,
.header .primary > ul > li.has-child > a:after,
.sidebar-header:after,
.footer .left a:before,
.product-brief .read-more:before,
.product .back-btn:before,
.field.checkbox label:before,
#mobile-button:after, .search-dropdown-icon:before {
    font-family: "bmn-icons";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    vertical-align: middle;
    text-decoration: inherit;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    font-size: 26px;
    color: #FFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-decoration: none;
}
[class^="icon-"]:hover:before,
[class*=" icon-"]:hover:before {
    text-decoration: none;
}
.search-bar #Search:after {
    content: '\e804';
}
.header .primary > ul > li.has-child > a:after {
    content: '\e805';
}
.sidebar-header:after {
    content: '\e805';
}
.opened .sidebar-header:after {
    content: '\e800';
}
.footer .left a.newsletter-link:before {
    content: '\f1d8';
}
.footer .left a.fb-link:before {
    content: '\f230';
}
.footer .left a.in-link:before {
    content: '\f16d';
}
.footer .left a.yt-link:before {
    content: '\f16a';
}
.product-brief .read-more:before {
    content: '\e808';
}
.product .back-btn:before {
    content: '\e809';
}
.field.checkbox label:before {
   content: '\f096';
}
.field.checkbox input:checked + label:before {
   content: '\e801';
}
#mobile-button:after {
      content: '\f0c9';
}
#mobile-button.menu-opened:after {
    content: '\e800';
}
/*
.icon-up-open:before { content: '\e800'; }
.icon-check:before { content: '\e801'; }
.icon-cancel:before { content: '\e803'; }
.icon-search:before { content: '\e804'; }
.icon-down-open:before { content: '\e805'; }
.icon-right-open:before { content: '\e808'; }
.icon-left-open:before { content: '\e809'; }
.icon-check-empty:before { content: '\f096'; }
.icon-menu:before { content: '\f0c9'; }
.icon-angle-up:before { content: '\f106'; }
.icon-angle-down:before { content: '\f107'; }
.icon-youtube-play:before { content: '\f16a'; }
.icon-instagram:before { content: '\f16d'; }
.icon-paper-plane:before { content: '\f1d8'; }
.icon-facebook-official:before { content: '\f230'; }
*/

*, *:after, *:before {
        border-width: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/** ----------------------------------------------------------
 *
 * Contains the main layout of the page and the individual styles.
 * Acts as the main stylesheet for theme.
 *
 *		Include your notes or table of contents below....
 *		Include color hex's or values of your grid
 *
 *		1. OOCSS GRID
 *		2. MAIN LAYOUT
 *		3. HEADER
 *			- Brand
 *			- Search Form
 *		4. Navigation
 *			- Primary Navigation
 *			- tablet Navigation
 *			- Secondary Navigation
 *			- Secondary Nav 2-5 Levels deep
 *		5. Mixed
 *		6. Footer
 *		7. Page Specific Layout
 *			- Homepage
 *			- Search Results
 *		8. Device and Responsive Layout
 *			- Breakpoint 960px
 *			- Breakpoint 640px
 *				- Search Form
 *				- Main Content
 *		9. Print Styles
 *			- Simple Theme custom print styles
 *
 * @author Your Name <email@silverstripe.com>
 * ------------------------------------------------------- */

/* OOCSS Grid
* https://github.com/stubbornella/oocss/wiki/grids
*/

.line, /* line - Groups units on one horizontal line. Note: for mobile layout units may be stacked to avoid horizontal scrolling. */
.lastUnit {
	overflow:hidden;
	*overflow:visible;
	*zoom:1;
	padding:0 10px;
}
.unit { /* unit - Base class which divides a line into sections (columns). */
	float:left;
	padding:0px;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box; /* box-sizing:border-box; creates a box-model where
	padding and border are NOT added onto the width - they are included in the width,
	so a 200px wide element with 20px padding will be 200px, NOT 240px wide */
}
.unitRightv { /* Use this class if you want to offset a column eg: |--content(.unit)--|--content(.unit)--|--no-content--|--no-content--|--content(.unitRighttv)--| */
	float:right;
}

/* sizeXofY - Extends unit. Indicates the fractional width of the unit, for example size3of4 would take up three quarters, or 75%, of the horizontal space.
The following fractions are supported: 1, 1/2, 1/3, 2/3, 1/4, 3/4, 1/5, 2/5, 3/5, 4/5 */
/* It is possible to add more columns if you wish you will just have to add the fractions that are missing eg: .size1of6 {width:16.66666%;} */

.size1of1 {
	float:none;
}
.size1of2 {
	width:50%;
}
.size1of3 {
	width:33.33333%;
}
.size2of3 {
	width:66.66666%;
}
.size1of4 {
	width:25%;
}
.size3of4 {
	width:75%;
}
.size1of5 {
	width:20%;
}
.size2of5 {
	width:40%;
}
.size3of5 {
	width:60%;
}
.size4of5 {
	width:80%;
}
.lastUnit { /* lastUnit - Extends unit. Applied to the last child of every line. */
	float:none;
	width:auto;
	_position:relative; /* Bug fix for IE6 - Internet Explorer 6 and below wouldn't fail on properties that were prefixed with non-alphanumeric characters.
	meaning that anything prefixed with _ wouldn't be picked up by any other browsers */
	_left:-3px;
	_margin-right:-3px;
}

/* MAIN LAYOUT */
body {
    margin: 0;
    min-width: 240px;
    -webkit-text-size-adjust: none; /* The text size is not adjusted for Safari on iPhone */
}
	.ie7 body,
	.ie8 body {
	    min-width: 860px; /* media queries are not supported in ie7/8 without a polyfill */
	}
	.main {
	    background: #fff;
	    padding: 24px 0 40px;
	    min-height: 300px;
	}
	.inner {
        width: 100%;
	    max-width: 938px;
	    margin: 0 auto;
        padding: 0;
	}
	.ie6 .inner {
	    width: 960px;
	}
	.content-container, .product-category {
	    width: 100%;
	}
    .sidebar + .content-container,
    .sidebar + .product-category,
    .Product .sidebar + .product,
    .sidebar + #BlogContent,
.CartPage .sidebar + .cart,
.CheckoutPage .sidebar + .checkout,
.sidebar + .searchResults {
	    float: right;
	    width: calc(100% - 240px); /* makes content container full width when there is no sidebar */
	}
	.sidebar { /* this is the sidebar element */
		float: left;
		width: 225px;
	}


/* HEADER */
.header {
	position: relative;
	width: 100%;
}
	.header .inner {
	    position: relative;
        max-width: 957px;
	}

	/* Brand */
	header .brand, header .brand:hover {
	    float: left;
	    color: #fff;
	    display: inline-block;
	}
		.brand h1 {
		    margin: 0;
		    padding: 0;
		    font-size: 48px;
		    font-family: "proxima-nova", Helvetica, sans-serif;
		    color: #fff;
		    font-weight: 600;
		    font-stretch: normal; /* default value. No font stretching */
		    line-height: 1em;
		}
		.brand p {
		    color: #888;
		    margin-bottom: 22px;
		}

	/* Search form */

	.search-bar {
	    display: inline-block;
        vertical-align: middle;
        position: relative;
	}
    .search-bar form .message {
        position: absolute;
        top: 100%;
        right: 0;
    }
		.search-bar #Search {
			margin: 0;
			padding: 0;
            position: relative;
		}
        .search-bar #Search:after {
            width: 30px;
            text-align: center;
            z-index: 2;
            position: absolute;
            left: 0;
            color: #FFF;
            font-size: 17px;
            line-height: 30px;
            height: 30px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        }
		.search-bar form input.text {
		    width: 205px;
		    padding: 0 10px 0 30px;
		    color: #FFF;
		    margin: 0;
		    border: 1px solid #7b94ae;
            font-size: 14px;
            line-height: 35px;
            height: 35px;
		    background: transparent;
            font-family: "proxima-nova", Helvetica, sans-serif;
            font-weight: 400;
		}

		.search-bar form input.action { /* positions the search button icon over the top of the search input */
		    font-size: 14px;
		    position: absolute;
		    left: 0;
		    top: 0;
            height: 100%;
            width: 30px;
            z-index: 4;
		    cursor: pointer;
		    border: none;
		    background: none;
		    color: #FFF;
			border-radius: 0;
			margin: 0;
            font-size: 0;
            padding: 0;
            min-width: inherit;
		}
		.search-bar form input:focus,
		.header textarea:focus {
		    outline: none; /* removes default browser outlining on focus */
		}
		.search-dropdown-icon {
		    display: none; /* hides search-dropdown-icon when site is at full width - media queries set it to display:block when at mobile/tablet width */
		}



/* NAVIGATION */

	/* Primary navigation */
    .primary.navigation-top {
        max-width: 938px;
        margin: 0 auto;
    }
	.header .inner .unit {
		position: relative; /* used to position the main navigation */
	}
	.header .primary ul {
		margin: 0;
        font-size: 0;
        text-align: right;
	}
	.header .primary li {
	    display: inline-block;
        vertical-align: middle;
	    position: relative;
        text-align: left;
	}
.header .primary > ul > li:last-child > a {
    padding-right: 30px;
}
.header .primary > ul > li:first-child {
    float: left;
    width: 225px;
}

	.header .primary li a {
	    color: #164170;
	    font-size: 17px;
        line-height: 20px;
	    font-family: "proxima-nova", Helvetica, sans-serif;
	    padding: 20px 75px 15px 0;
	    font-weight: 700;
	    display: block;
        border-bottom: 1px solid #254d79;
	}
.header .primary > ul > li.has-child > a:after {
    font-size: 17px;
    line-height: 18px;
    margin-left: 5px;
    color: #164170;
}
.header .primary li a#shop-link {
    color: #62a731;
    border-bottom-color: #62a731;
    padding-left: 10px;
}
.header .primary > ul > li.has-child > a#shop-link:after {
    color: #62a731;
}
	.header .primary li a:hover, .header .primary > ul > li.has-child > a:hover:after {
	    color: #00a885;
	}
	.header .primary li.section a,
	.header .primary li.current a,
    .header .primary > ul > li.has-child.current > a:after,
.header .primary > ul > li.has-child > a#shop-link:hover:after,
.header .primary > ul > li.has-child > a#shop-link:hover {
	    color: #00a885;
	}
    .header .primary li ul {
        position: absolute;
        left: 0;
        top: 100%;
        min-width: 225px;
        background: #164170;
        padding: 20px;

        -webkit-box-shadow: 10px 13px 9px -4px rgba(0,0,0,0.18);
        -moz-box-shadow: 10px 13px 9px -4px rgba(0,0,0,0.18);
        box-shadow: 10px 13px 9px -4px rgba(0,0,0,0.18);
        opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
    -webkit-transform: rotateX(-50deg);
    -ms-transform: rotateX(-50deg);
    transform: rotateX(-50deg);
    -webkit-transform-origin: 50% -50px;
    -ms-transform-origin: 50% -50px;
    transform-origin: 50% -50px;
    will-change: transform, opacity;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;

    }
.header .primary li:hover ul {
    visibility: visible;
    z-index: 99;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    transform: rotateX(0deg);
}
.header .primary li ul li {
    display: block;
    margin-top: 20px;
}
.header .primary li ul li:first-child {
    margin: 0;
}
.header .primary li ul li a {
    padding: 0;
    border: 0;
    color: #FFF;
}



	/* Secondary navigation */
	.main .secondary h3 {
	    font-size: 20px;
	    color: #AAA;
	    margin: 0 0 8px 0;
	    font-family: "proxima-nova", Helvetica, sans-serif;
	    font-weight: normal;
	}
	.main .secondary {
	    border-bottom: 1px solid #e5e5e5;
	}
		.main .secondary ul {
		    padding: 0;
		    margin: 0;
		}
		.main .secondary li {
		    border-top: 1px solid #e5e5e5;
		    position: relative;
		    list-style-type: none;
		    margin-bottom: 0;
		}
			.main .secondary li .arrow {
			    color: #b80000;
			    padding-right: 5px;
			    display: block;
			    font-size: 15px;
			    line-height: 20px;
			    position: absolute;
			    left: 2px;
			    top: 7px;
			    -moz-transition: 0.2s; /* this transition moves the arrow from left:2px to left:6px */
			    -webkit-transition: 0.2s;
			    transition: 0.2s;
			}
		.main .secondary li a:hover .arrow {
		    left: 6px; /* this sets the final position for the arrow transition */
		}
		.main .secondary li a { /* side nav link styling */
		    padding: 10px 0;
		    display: block;
		    text-transform: uppercase;
		    letter-spacing: 2px;
		    font-size: 11px;
		    color: #333;
		    line-height: 17px;
		    border-bottom: none;
		    font-family: "proxima-nova", Helvetica, sans-serif;
		}
		.main .secondary li .text {
		    padding-left: 28px;
		    display: block;
		}
		.main .secondary li.current a.current {
			color: #b80000;
			background-color: #EDEDED;
		}
		.main .secondary li.section,
		.main .secondary li.current {
		    background-color: #F3F3F3;
		}
			.main .secondary li.section a,
			.main .secondary li.current a {
			    color: #000;
			}


		/* Secondary navigation 2-5 levels deep */
		.main .secondary ul ul {
			display: none;
		}
		.secondary ul li.current ul,
		.secondary ul li.section ul { /* Only show child pages from selected parent */
			display: block;
		}
		.secondary li.current ul ul {
			display: none;
		}
		.main .secondary ul ul li a { padding-left: 10px; } /* Indent all sidebar navigation levels*/
			.main .secondary ul ul li a .arrow { left: 12px; }
			.main .secondary ul ul li a:hover .arrow { left: 16px; }

		.main .secondary ul ul ul li a { padding-left: 20px; }
			.main .secondary ul ul ul li a .arrow { left: 22px; }
			.main .secondary ul ul ul li a:hover .arrow { left: 26px; }

		.main .secondary ul ul ul ul li a { padding-left: 30px; }
			.main .secondary ul ul ul ul li a .arrow { left: 32px; }
			.main .secondary ul ul ul ul li a:hover .arrow { left: 36px; }

		.main .secondary ul ul ul ul ul li a { padding-left: 40px; }
			.main .secondary ul ul ul ul ul li a .arrow { left: 32px; }
			.main .secondary ul ul ul ul ul li a:hover .arrow { left: 36px; }

		.main .secondary li a:hover,
		.main .secondary li.section a:hover,
		.main .secondary li.current a:hover {
			color: #b80000;
		}




/* MIXED */
header:after,
.main:after,
#Root:after,
.search-bar:after,
header .inner:after,
footer:after { /* clearfix */
    height: 0;
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
}
.search-bar form input.action,
.header .primary li a,
.footer a { /* adds color transition when links/inputs on hover */
    -moz-transition: color 0.2s;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}
.footer a.brand { color: #333; margin-left: 0; }
.footer a.brand:hover { color: #00A886; }
body h1 span.amp {
    font-family: "proxima-nova", Helvetica, sans-serif;
    font-style: italic;
}

.content p a {
    text-decoration: underline;
}
/* FOOTER */
.footer {
    color: #FFF;
    padding: 17px;
    background: #164170;
}
.footer .inner {
    overflow: hidden;
}
	.footer a {
	    color: #FFF;
	}
	.footer a:hover {
	    color: #dfefda;
	}
	.footer .left {
	    float: left;
	    color: #000;
	    display: block;
        font-size: 0;
	}
    .footer .left a {
        font-family: "proxima-nova", Helvetica, sans-serif;
        font-weight: 700;
        color: #FFF;
        font-size: 17px;
        line-height: 21px;
        display: inline-block;
        vertical-align: middle;
        padding-left: 35px;
    }
    .footer .left a:before {
        font-size: 17px;
        font-weight: 400;
        line-height: 21px;
        margin-right: 5px;
    }
    .footer .left a:hover, .footer .left a:hover:before, .footer .right p a:hover {
        color: #c6e1ff;
    }
    .footer .left a:first-child {
        padding-left: 0;
    }
	.footer .right {
	    float: right;
	    display: block;
	}
    .footer .right p {
        font-size: 13px;
        line-height: 21px;
        color: #FFF;
        font-weight: 400;
        margin: 0;
        text-align: right;
    }


/* PAGE SPECIFIC LAYOUT */

	/* Homepage */
		/* currently no Hompage specific styles - feel free to add your own */

	/* Search Results */
	.typography .searchResults h1 {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}
	.searchResults p.searchQuery {
	    margin-bottom: 10px;
	    font-size: 15px;
	    font-weight: bold;
	}
	.searchResults ul#SearchResults {
	    padding: 0;
	    border-bottom: 1px solid #e5e5e5;
	    margin:0;
	}
		.searchResults ul#SearchResults li {
		    border-top: 1px solid #e5e5e5;
		    padding: 20px 0;
		    list-style-type: none;
		}
		.searchResults ul#SearchResults p {
		    margin-bottom: 10px;
		}
		.searchResults #PageNumbers a {
		    padding: 0 5px;
		}
		.searchResults #PageNumbers .pagination {
		   	border-bottom: 1px solid #e5e5e5;
		    padding: 20px 0;
		    display:table; /* displays the pagination as a table so that elements stay inline and the middle column adjusts its size to accomodate and the right arrow stays to the right */
		    width:100%;
		}
		.searchResults #PageNumbers .pagination span{
			display:table-cell; /* each element in the pagination div displays as a table cell */
		}
		.searchResults #PageNumbers p {
		    text-align: center;
		    padding:20px 0;
		}
		.searchResults #PageNumbers .next,
		.searchResults #PageNumbers .prev {
		    font-size: 14px;
		    padding: 0 20px;
		    display:table-cell; /* each element in the pagination div displays as a table cell */
		    vertical-align: middle;
		    border-bottom:0 !important;
		}
		.searchResults #PageNumbers .next {
		    margin-left: 15px;
		}
		.searchResults #PageNumbers .prev {
		    margin-right: 15px;
		}

/* DEVICE & RESPONSIVE LAYOUT */
.header .nav-open-button {
    display: none; /* removes the nav toggle button for desktop site */
}
#media-query-trigger {
    /* instead of detecting the width of the window in simple/javascript/script.js it detects the visibility of this element (which is set using media queries)
    instead to trigger the hiding/showing of nav and search in mobile mode */
    display: none;
    visibility: hidden;
}

/* Print Styles */

/* Based on HTML5 boilerplate print styles */
@media print {
	* {
	    background: transparent !important;
	    color: black !important;
	    box-shadow: none !important;
	    text-shadow: none !important;
	    filter: none !important;
	    -ms-filter: 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: "";
    }

	thead {
	    display: table-header-group
	}
	tr,
	img {
	    page-break-inside: avoid
	}
	img {
	    max-width: 100% !important
	}
	pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    @page {
        margin: 0.5cm;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

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

    /* Simple theme custom print styles */
	.header,
	.footer,
    .nav-open-button,
    .search-bar,
    .search-dropdown-icon,
    nav.primary {
	    display: none;
	}
}

#wrapper {
	width: 100%;
}

.navigation-top {
	position: relative;
}

.navigation-top ul {
	margin-left: 10px;
}



#plants-sidebar .sidebar-content ul {
	list-style: none;
	margin: 15px 10px;
}

.sidebar-content ul li {
    font-size: 15px;
    line-height: 18px;
    color: #484848;
    display: block;
	margin: 0 0 10px;
}

.sidebar-content ul li a {
	color: #484848;
}
.sidebar-content ul li a:hover {
    color: #60ae46;
}
.sidebar img {
	display: block;
}

.checkout-button img {
	margin-left: 90px;
}

#cart-sidebar .sidebar-content {
    padding: 15px 10px;
    font-size: 15px;
    line-height: 18px;
    color: #484848;
    font-family: "proxima-nova", Helvetica, sans-serif;
    max-height: inherit;
}
#cart-sidebar .sidebar-content a {
    color: #164170;
    text-decoration: underline;
}
#cart-sidebar .sidebar-content a.product-link {
     margin: 10px 0;
    display: block;
    text-decoration: none;
}
#cart-sidebar .sidebar-content a.product-link p {
    margin: 0;
}
#cart-sidebar .sidebar-content .checkout-button {
    margin-top: 15px;
        font-weight: 700;
}
#cart-sidebar .sidebar-header {
    cursor: default;
}
#cart-sidebar .sidebar-header:after {
    display: none;
}
.sidebar p {
    color: #484848;
    text-transform: uppercase;
}


.product-brief, .product-category .product-row .product-brief {
    background-color: #dfefda;
    border-radius: 0px;
    display: inline-block;
    vertical-align: top;
    min-height: 430px;
    overflow: hidden;
    padding: 10px;
    padding-bottom: 155px;
    width: calc(25% - 14px);
    margin: 0 7px 14px;
    position: relative;
}


.blogSummary {
    background-color: #E2F2CC;
    float: left;
    margin-right: 15px;
    padding: 10px;
    width: 310px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	margin-top: 15px;
	min-height: 201px;
	overflow: hidden;
}

.blogSummary h2 a {
	color: #000;
}

.blogSummary .postTitle {
	margin-bottom: 0px;
}

p.authorDate {
	font-style: italic;
	font-size: 12px !important;
}


.typography p.short-product-content {
	font-size: 15px;
    line-height: 18px;
	font-weight: 400;
    color: #164170;
    margin: 0 0 4px;
}
.product-brief .read-more {
    font-size: 11px;
    line-height: 14px;
    text-transform: uppercase;
    color: #60ae46;
    display: block;
    position: relative;
}
.product-brief .read-more:before {
    color: #60ae46;
    font-size: 11px;
    line-height: 14px;
    margin-right: 3px;
}
.product-brief .read-more:hover, .product-brief .read-more:hover:before {
    color: #349414;
}
.product-brief .add-to-cart {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.product-brief .add-to-cart label {
    font-size: 15px;
    line-height: 19px;
    color: #60ae46;
    font-weight: 400;
}
.product-brief .add-to-cart .field.quantity {
    margin: 0 0 10px;
}
.product-brief .add-to-cart .Actions {
    margin: 0;
}
.product-brief .add-to-cart .Actions .action {
    width: 100%;
}
.product-brief .add-to-cart .Actions .action:hover {
    background: #00a885;
}
.typography p.product-brief-price {
	font-size: 17px;
    line-height: 20px;
	font-weight: 700;
    color: #164170;
    font-family: "proxima-nova", Helvetica, sans-serif;
    margin: 0 0 5px;
    display: block;
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 115px;
}
.product-category .pagination {
    overflow: hidden;
}
.product-category .pagination ul {
     margin: 0;
}
.product-category .pagination ul li {
    font-weight: 700;
    font-size: 17px;
    line-height: 20px;
    color: #164170;
}
.product-category .pagination ul li a {
    color: #164170;
    text-transform: uppercase;
}
.product-category .pagination ul li a:hover, .product-category .pagination ul li.active a {
    color: #00a885;
}


#Form_plantSelector {
	margin-left: 10px;
    margin: 15px 10px 25px;
}

#Form_plantSelector select {
	width: 100%;
	height: 35px;
    line-height: 35px;
    padding: 0 10px;
}
#Form_plantSelector .field {
    margin: 0 0 15px;
    position: relative;
}
#Form_plantSelector .field .helper {
    position: absolute;
    right: 14px;
    top: 0;
    width: 17px;
    height: 18px;
    cursor: pointer;
    background: url('../images/new/question-icon.png') no-repeat center center;
}
#Form_plantSelector #Hardiness .helper span {
	bottom: auto;
	top: 25px;
}
#Form_plantSelector .field .helper span {
	z-index: 5;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px;
    display: block;
    min-width: 100px;
    position: absolute;
    right: -16px;
    bottom: 21px;
    font-size: 13px;
    line-height: 16px;
    min-width: 150px;
    border: 1px solid #eee;
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
    -webkit-transform: rotateX(10deg);
    -ms-transform: rotateX(10deg);
    transform: rotateX(10deg);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    will-change: transform, opacity;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#Form_plantSelector .field .helper:hover span {
        visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    transform: rotateX(0deg);
}
#Form_plantSelector label {
	width: 100%;
    font-family: "proxima-nova", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #60ae46;
    margin-bottom: 5px;
    display: block;
}

.product-row {
    font-size: 0;
    margin: 0 -7px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}
.product-row:first-of-type {
    margin-top: 15px;
}
#Pagination {
	clear: both;
	padding-top: 10px;
}

#Pagination ul li {
	float: left;
	margin-right: 10px;
}
.product-category .product-row .product-brief .product-brief-image {
    margin-bottom: 10px;
}
.product-category .product-row .product-brief .product-brief-image img {
	border: none !important;
	box-shadow: none !important;
	height: 139px;
    width: 100%;
    object-fit: cover;
    display: block;
}
.typography .product-brief-title {
    font-weight: 700;
    color: #164170;
    font-size: 20px;
    line-height: 22px;
    text-transform: none;
    margin: 0 0 20px;
}
 #HeightMinimum label {
	width: 80px;
}

#HeightMaximum label {
	width: 80px;
}

#plant-height {
	height: 80px;
	clear: both;
	width: 200px;
}

#HeightMinimum, #HeightMaximum {
	width: calc(50% - 6px);
	float: left;
	margin-right: 12px;
}

#HeightMinimum select, #HeightMaximum select {
	width: 100%;
}

 #HeightMaximum {
	float: right;
}

#Form_plantSelector .Actions:after {
    display: none;
}
#FlowerColour {
	clear: both;
}


.wholesale-login {
	position: absolute;
	top: 0px;
	right: 0px;
}



.product-category .add-to-cart .Actions:after {
	content: "";
}

.product-category .add-to-cart  #ProductForm_ProductForm_error {
	display: none;
}

.product-category .add-to-cart #ProductForm_ProductForm #ProductForm_ProductForm_Quantity {
	width: 100%;
    height: 35px;
    line-height: 35px;
    border: 1px solid #d2d2d1;
    padding: 0 10px;
}

#shipping-rates {
	background-color: transparent;
	padding: 0 10px 10px;
	margin-top: 0px;
	border-radius: 0px
}

#shipping-rates a:hover {
	font-weight: normal;
}

#wholesale-login-form {
	clear: both;
}

#regular-login-form {
	clear: both;
}

#OrderForm_OrderForm {
	width: 60%;
}

#OrderForm_OrderForm input {
	margin-right: 5px;
	max-width: 165px;
}

.checkout .personal-details div .CompositeField p.alert {
	margin-top: 0px !important;
}



/* New css code */
img {
    max-width: 100%;
    height: auto;
}
.header .top-bar {
    background: #164170;
}
.header .top-bar .inner {
    max-width: 938px;
    text-align: right;
     padding: 10px 0;
}
.header .logo {
    position: absolute;
    top: -2px;
    left: -3px;
    display: inline-block;
    z-index: 5;
}
.header .logo img {
    display: block;
}
.header .right-links {
    text-align: right;
    display: inline-block;
    vertical-align: top;
    font-size: 0;
}
.header .right-links a {
    color: #FFF;
    font-weight: 700;
    font-family: "proxima-nova", Helvetica, sans-serif;
    display: inline-block;
    vertical-align: middle;
    margin-right: 40px;
    font-size: 16px;
    line-height: 20px;
}
.header .right-links a:hover, .header .right-links a.current {
    color: #00a885;
}
.header .right-links a.login-btn {
    padding-left: 30px;
    position: relative;
}
.header .right-links a.login-btn:after {
    content: ' ';
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    width: 30px;
    background: url('../images/new/white-icon.png') no-repeat left center;
}
.header .banner {
    position: relative;
    height: 251px;
    width: 100%;
    background: url('../images/new/banner1.jpg') no-repeat;
    background-size: cover;
}
.ProductCategory .header .banner, .Product .header .banner {
    background: url('../images/new/banner2.jpg') no-repeat;
    background-size: cover;
}
.knowledge .header .banner {
    background: url('../images/new/banner3.jpg') no-repeat;
    background-size: cover;
}
.page-3 .header .banner {
    background: url('../images/new/banner4.jpg') no-repeat;
    background-size: cover;
}
.header .banner .banner-txt {
    position: absolute;
    right: 25px;
    top: 0px;
    display: inline-block;
    vertical-align: top;
}
.sidebar {
    background: #dfefda;
}
.sidebar-content {
    max-height: 0px;
    overflow: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.opened .sidebar-content {
    max-height: 1500px;
}
.sidebar-header {
    background: #8cbe73;
    padding: 10px;
    position: relative;
    font-family: "proxima-nova", Helvetica, sans-serif;
    font-weight: 700;
    color: #FFF;
    font-size: 17px;
    line-height: 20px;
    cursor: pointer;
}
.sidebar-header:after {
     font-size: 17px;
    line-height: 20px;
    margin-left: 5px;
    color: #FFF;
}
.home-boxes {
    padding-top: 10px;
    overflow: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -webkit-box-pack: space-between;
    -moz-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
}
.home-boxes .box {
    float: left;
    width: calc(50% - 7px);
    margin: 0 0 14px;
    min-height: 220px;
    padding: 20px 20px 65px;
    position: relative;
}
.home-boxes .box.box1 {
    background: url('../images/new/box1-bg.jpg') no-repeat;
    background-size: cover;
}
.home-boxes .box.box2 {
    background: url('../images/new/box2-bg.jpg') no-repeat;
    background-size: cover;
}
.home-boxes .box.box3 {
    background: url('../images/new/box3-bg.jpg') no-repeat;
    background-size: cover;
}
.home-boxes .box.full-width {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
}
.home-boxes .box h4 {
    font-weight: 800;
    font-size: 30px;
    line-height: 31px;
    color: #FFF;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
}
.home-boxes .box h4 img {
    display: block;
}
.home-boxes .box p {
    font-weight: 500;
    color: #FFF;
    font-size: 15px;
    line-height: 20px;
    margin: 0;
    max-width: 272px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
}
.home-boxes .box .btn {
    position: absolute;
    bottom: 13px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.home-boxes .box.full-width p {
    margin-left: 55px;
}
.home-boxes .box.full-width .btn {
    left: 75px;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.typography .product h1 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
}
.typography .product .product-meta {
    margin-bottom: 30px;
    float: none;
    padding: 0;
}
.typography .product-meta p {
    margin: 0;
    line-height: 22px;
}
.product-meta p span {
    min-width: 147px;
    display: inline-block;
    vertical-align: top;
}
.product-meta p a {
    text-decoration: underline;
}
.product-images {
    font-size: 0;
    margin: 0 -8px;
}
.product .product-images .product-image {
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 16px);
    margin: 0 8px 16px;
    float: none;
    padding: 0;
}
.product .product-images .product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
    border: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.product .add-to-cart {
    background: #dfefda;
    padding: 10px;
    position: relative;
    font-size: 0;
    margin: 20px 0 35px;
}
.product .add-to-cart .product-price-js {
    display: inline-block;
    vertical-align: middle;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 17px;
    line-height: 20px;
    margin: 0;
    color: #164170;
    width: calc(100% - 360px);
}
.product .add-to-cart .product-form {
    display: inline-block;
    width: 360px;
    text-align: right;
    margin: 0;
}
.product .add-to-cart .product-form fieldset{
    display: inline-block;
    vertical-align: middle;
    font-synthesis: 0;
}
.product .add-to-cart .product-form .field.quantity {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}
.product .add-to-cart .product-form .field.quantity label {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    line-height: 19px;
    color: #60ae46;
    font-weight: 400;
    font-family: "proxima-nova", Helvetica, sans-serif;
    margin: 0;
}
.product .add-to-cart .product-form .field.quantity .middleColumn {
    display: inline-block;
    vertical-align: middle;
}
.product .add-to-cart .product-form .field.quantity .quantity {
    margin: 0 0 0 7px;
    display: inline-block;
    vertical-align: middle;
    height: 36px;
    line-height: 36px;
    padding: 0 15px;
    font-size: 15px;
    color: #484848;
    font-family: "proxima-nova", Helvetica, sans-serif;
    border: 1px solid #cccccb;
    background: #FFF;
    width: 140px;
}
.product .add-to-cart .product-form .Actions {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 10px;
}
.product .add-to-cart .product-form .Actions .action {
    min-width: 140px;
    margin: 0;
}
.product .add-to-cart .product-form .message  {
    font-size: 14px;
    line-height: 19px;
    width: 100%;
    display: block;
}

.product #related-products {
    margin-bottom: 50px;
}
.product #related-products h3 {
    font-size: 15px;
    line-height: 19px;
    font-weight: 700;
    color: #164170;
    margin: 0 0 5px;
}
.product #related-products .size-box {
    background: #e6e6e6;
    position: relative;
    padding: 10px;
    padding-right: 160px;
    margin-bottom: 14px;
}
.product #related-products .size-box p {
    margin: 0;
    line-height: 22px;
}
.product #related-products .size-box p span {
    width: 145px;
    display: inline-block;
    vertical-align: top;
}
body .product #related-products .size-box .view-btn {
    min-width: 140px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 8px;
}
.product .back-btn {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 17px;
    line-height: 21px;
    color: #164170;

}
.product .back-btn:before {
    font-size: 17px;
    line-height: 21px;
    color: #164170;
    margin-right: 5px;
}
.contact-content {
    overflow: hidden;
}
.contact-content .left-side, .contact-content .right-side {
    width: 260px;
    max-width: 40%;
    float: left;
}
.contact-content .right-side {
    float: right;
    margin-right: 10px;
}
.typography .contact-content h4, .typography .opening-hours h4, .typography .login-col h4 {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 19px;
    color: #164170;
    margin: 0 0 12px;
}
.contact-content .field {
    margin: 0 0 12px;
}

textarea.input-field {
    height: 150px;
    line-height: 19px;
    padding: 5px 10px;
}
.contact-content .field .input-field {
    width: 100%;
    display: block;
}
.contact-content form .btn {
    min-width: 140px;
    margin-top: 15px;
}
.contact-content .contact-details {
    margin-top: 45px;
}
.contact-content .contact-details p span {
    width: 70px;
    display: inline-block;
    vertical-align: top;
}

#map {
    margin: 50px 0 0;
}
#map iframe {
    margin-top: 10px;
}

.opening-hours {
    margin: 40px 0;
}
.opening-hours p {
    margin-bottom: 10px;
}
.opening-hours p span {
    width: 360px;
    display: inline-block;
    vertical-align: top;
}


.login-col {
    width: 50%;
    float: left;
    border-left: 1px solid #5f7d9d;
    padding-left: 70px;
    margin-top: 30px;
}
.typography .login-col p {
    margin-bottom: 0;
}
.typography .login-col p a {
    text-decoration: underline;
    color: #164170;
}
.wholesaler.login-col {
    border: 0;
    padding-left: 0;
    padding-right: 70px;
}
.login-col .field {
    margin: 0 0 10px;
}
.login-col .field input.text {
    display: block;
    width: 100%;
}
.wholesaler .field.password {
    margin-bottom: 40px;
}
.login-col .Actions {
    margin: 25px 0 35px;
    font-size: 0;
}
.login-col .Actions .action {
    width: 140px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.login-form.login-col #MemberLoginForm_LoginForm .Actions .action {
	width: auto;
}
.login-col .Actions .ForgotPassword {
    display: inline-block;
    vertical-align: middle;
}
.login-col .Actions .ForgotPassword a {
    text-decoration: underline;
    color: #164170;
}
.login-col .Actions .ForgotPassword a:hover {
     text-decoration: none;
}
.login-col #Remember {
    padding-top: 3px;
}
.field.checkbox label {
    font-family: "proxima-nova", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #164170;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    position: relative;
    text-align: left;
    float: none;
}
.field.checkbox {
    font-size: 0;
    position: relative;
    min-height: inherit;
    margin: 0;
}
.field.checkbox .checkbox {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    margin: 0;
}
.field.checkbox label:before {
    font-size: 19px;
    line-height: 22px;
    color: #b7c4d3;
    margin-right: 5px;
}
.field.checkbox input:checked + label:before {
    color: #164170;
}

.standard-page .content h4 {
    font-size: 15px;
    line-height: 19px;
    font-weight: 600;
    color: #164170;
    text-transform: none;
    margin: 0;
}
.standard-page .content p {
    margin-bottom: 20px;
}
.content .two-cols {
    overflow: hidden;
}
.content .two-cols p {
    width: 50%;
    padding-right: 20px;
    float: left;
}
.standard-page .image {
    margin-bottom: 20px;
}
.standard-page .image img {
    display: block;
}
.zonemap {
    font-size: 0;
    padding-bottom: 100px;
    padding-top: 20px;
}
.zonemap img {
    display: inline-block;
    vertical-align: bottom;
}
.typography .zonemap p {
    width: 208px;
    display: inline-block;
    vertical-align: bottom;
    font-size: 12px;
    line-height: 15px;
    color: #484848;
    margin: 0 0 0 25px;
}
#mobile-button, .search-bar #Search:before, .search-mobile-btn {
    display: none;
}
@media only screen and (max-width: 980px) {
     .header .inner, .inner, .header .top-bar .inner {
        max-width: 100%;
    }
    .header .logo {
        left: 5px;
    }
    .header .logo img {
        max-width: 205px;
    }
    .header .banner {
        height: 200px;
    }

    .primary.navigation-top, .header .top-bar .inner, .main .inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    .header .primary > ul > li:first-child {
        width: 180px;
    }
    .header .primary li a {
        padding-bottom: 10px;
        padding-right: 40px;
        font-size: 15px;
        line-height: 18px;
    }
    .header .primary > ul > li.has-child > a:after {
        font-size: 15px;
        line-height: 16px;
    }
    .header .primary > ul > li:last-child > a {
        padding-right: 0;
    }
    .zonemap img {
        max-width: calc(100% - 190px);
    }
    .typography .zonemap p {
        max-width: 160px;
    }
    .login-col {
        padding-left: 30px;
    }
    .wholesaler.login-col {
        padding-right: 30px;
    }
    .product-brief, .product-category .product-row .product-brief {
        width: calc(50% - 14px);
    }
    .contact-content .left-side, .contact-content .right-side {
        max-width: 47%;
    }
    .footer .right, .footer .left {
        float: none;
        width: 100%;
        display: block;
        text-align: center;
    }
    .footer .right p {
        margin-top: 20px;
        text-align: center;
    }
    .footer .left a, .footer .left a:before {
        font-size: 15px;
        line-height: 18px;
    }

}
@media only screen and (max-width: 850px) {
    .product .add-to-cart .product-price-js {
        display: block;
        text-align: center;
        width: 100%;
        margin: 0 0 20px;
    }
    .product .add-to-cart .product-form {
        width: 100%;
        text-align: center;
    }
    .product .add-to-cart {
        text-align: center;
    }
    .product .add-to-cart .product-form .field.quantity .quantity {
        width: 100px;
    }
    .product #related-products .size-box p span {
        width: 95px;
    }
    .home-boxes .box p {
        font-size: 13px;
        line-height: 17px;
    }
    .home-boxes .box h4 {
        font-size: 25px;
        line-height: 26px;
    }


}
@media only screen and (max-width: 750px) {
    .header .primary > ul > li:first-child {
        width: 100px;
    }
    .header .primary li a {
        padding-right: 20px;
    }
    .header .primary > ul > li:first-child a {
         padding-right: 10px;
    }
    .header .right-links a {
        margin-right: 20px;
    }
}

@media only screen and (max-width: 650px) {
    .footer .left a {
        display: block;
        padding: 0;
        text-align: center;
        margin-bottom: 20px;
    }
    .footer .left a, .footer .left a:before {
        font-size: 17px;
        line-height: 21px;
    }
    .header {
        z-index: 5;
    }
    .primary.navigation-top {
        padding: 0;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #164170;
        padding: 0;
        max-height: 0px;
        overflow: hidden;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .menu-opened .primary.navigation-top {
        max-height: 2000px;
    }
     .primary.navigation-top ul {
         padding: 10px 0 0;
    }
    .header .primary li, .header .primary > ul > li:first-child, .header .primary li ul li, .header .primary li ul li:first-child {
        width: 100%;
        display: block;
        padding: 0;
        float: none;
        color: #FFF;
        font-size: 17px;
        line-height: 21px;
        margin: 0;
        padding-bottom: 10px;
        margin-bottom: 10px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .header .primary li ul li, .header .primary li ul li:first-child {
        padding-bottom: 0;
    }
    .header .primary > ul > li:last-child {
        margin-bottom: 0;
        border: 0;
    }
    .header .primary li a, .header .primary li a#shop-link{
        color: #FFF;
        font-size: 17px;
        line-height: 21px;
        padding: 0;
        border: 0;
    }
    .header .primary > ul > li {
        border-bottom: 1px solid #90a5bb;
    }
    .header .primary > ul > li.has-child > a:after {
        display: none;
    }
    .header .primary li ul {
        position: relative;
        top: 0;
        width: 100%;
        margin-top: 10px;
        background: transparent;
        padding: 0;
        visibility: visible;
        z-index: 99;
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
        -moz-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
        box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
    }
    #mobile-button {
        display: block;
        height: 50px;
        line-height: 50px;
        text-align: center;
        width: 100%;
        border-bottom: 1px solid #335982;
        position: relative;
        cursor: pointer;
    }
    #mobile-button:after {
        font-size: 24px;
        line-height: 28px;
        color: #164170;
    }
    .header .banner .banner-txt {
        position: relative;
        right: 0;
        top: 0;
        display: block;
    }
    .header .banner {
        height: auto;
        padding: 103px 20px 20px 20px;
    }
    .header .logo img {
        max-width: 156px;
    }
    .header .search-bar {
        width: 100%;
        position: absolute;
        top: -80px;
        left: 0;
        width: 100%;
        z-index: 3;
        padding: 0 20px;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }
    .header .search-bar.search-opened {
        top: calc(100% + 45px);
    }
    .header .search-bar form input.text {
        background: #FFF;
        color: #164170;
        width: 100%;
    }
    .header .right-links a.login-btn {
        padding-left: 0;
    }
    .header .right-links a.login-btn:after {
        display: none;
    }

    .search-dropdown-icon {
        display: inline-block;
        vertical-align: middle;
    }
    .search-dropdown-icon:before {
        content: '\e804';
        width: auto;
        text-align: center;
        z-index: 2;
        cursor: pointer;
        display: inline-block;
        color: #FFF;
        font-size: 17px;
        line-height: 30px;
        height: 30px;
    }
    .search-bar #Search:after{
        color: #164170;
    }
    .search-bar form input.action {
        left: 20px;
    }
    .header .top-bar .inner {
        padding-right: 10px;
    }
    .header .right-links a {
        margin-right: 10px;
    }
    .sidebar {
        width: 100%;
        float: none;
        margin-bottom: 30px;
    }
    .sidebar + .content-container, .sidebar + .product-category, .Product .sidebar + .product, .sidebar + #BlogContent, .CartPage .sidebar + .cart, .CheckoutPage .sidebar + .checkout, .sidebar + .searchResults {
        float: none;
        width: 100%;
    }
    .home-boxes .box {
        width: 100%;
        margin: 0 0 20px;
    }
    .home-boxes .box.box1 {
        background: url(../images/new/box1-bg-mobile.jpg) no-repeat;
        background-size: cover;
        min-height: 380px;
    }
    .home-boxes .box.full-width .btn {
        position: relative;
        bottom: 0;
        left: 0;
    }
    .home-boxes .box.full-width p {
        margin-left: 0;
        margin-bottom: 20px;
    }
    .content .two-cols p, .contact-content .left-side, .contact-content .right-side, .login-col {
        width: 100%;
        max-width: 100%;
        float: none;
        padding: 0;
        margin: 0 0 20px;
    }
    .login-col {
        border: 0;
    }
    .contact-content .left-side {
        margin-bottom: 50px;
    }
    .login-col .Actions .ForgotPassword {
        display: block;
        margin-top: 10px;
    }
    .zonemap img {
        max-width: 100%;
        margin-bottom: 20px
    }
    .typography .zonemap p {
        margin: 0;
        max-width: 100%;
        width: 100%;
    }
    .wholesaler.login-col {
        padding: 0;
        padding-bottom: 40px;
        margin-bottom: 40px;
        border-bottom: 1px solid #5f7d9d;
    }
    .product .add-to-cart .product-form .Actions {
        display: block;
        margin: 10px 0 0;
    }
    body .product #related-products .size-box .view-btn {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
    }
    .product #related-products .size-box {
        padding-right: 10px;
    }
    .product-brief, .product-category .product-row .product-brief {
        width: 100%;
        margin: 0 0 20px;
    }
    .product-category .product-row .product-brief .product-brief-image img {
        height: auto;
    }
}
