/*!
 * styles-general.css
 * CSS file containing GENERAL styles
 * Issue 1.0 - 16-JUN-2015 - VSC
 */
 
 /*!
 * Body
 * Content areas
 * Buttons
 * Form buttons
 * Forms
 * Header image
 * Breadcrumbs
 * Page header
 * Pagination
 * Responsive images
 * Fontawesome icon
 * Follow icons
 * Lightbox
 * Product name & Price
 * Product image
 * Product label
 * Product carousel
 */


/* ------------------------------------------------------------- */
/* BODY														 	 */
/* ------------------------------------------------------------- */

/* Body */
html {
    position: relative;
    min-height: 100%;
}
body {
	overflow-x: hidden;
}

/* Wrapper */
#wrapper {
	padding: 138px 0 400px;
	overflow: auto;
}


/* ------------------------------------------------------------- */
/* COOKIES ALERT												 */
/* ------------------------------------------------------------- */

/* General */
.cookies-alert {
	position: fixed;
	z-index: 101;
	bottom: 0;
	left: 0;
	width: 100%;
	margin: 0;
	background-color: rgba(51,51,51,.9);
	border-top: 1px solid rgba(250,250,250,.5);
}
.cookies-alert .alert {
	width: 100%;
	margin: 0;
	color: #AAA;
	background: none;
}
.cookies-alert .alert p {
	font-size: 14px;
}

/* Link */
.cookies-alert .alert a {
	color: #AAA;
	text-decoration: underline;
}
.cookies-alert .alert a:hover {
	text-decoration: none;
}

/* Close button */
.cookies-alert .alert a.close {
	color: #AAA;
	text-shadow: none;
	opacity: 1;
	text-decoration: none;
}
.cookies-alert .alert a.close:hover {
	color: #FFF;
	opacity: 1;
}


/* ------------------------------------------------------------- */
/* CONTENT AREAS												 */
/* ------------------------------------------------------------- */

/* General */
#main-content,
#left-content,
#right-content {
	position: relative;
	float: left;
	min-height: 1px;
	padding: 0 15px;
}
#main-content {
	width: 100%;
}
#left-content {
	display: none;
}
#right-content {
	width: 100%;
}


/* ------------------------------------------------------------- */
/* BUTTONS														 */
/* ------------------------------------------------------------- */

/* Button focus */
button,
button:hover,
button:focus {
	border: none;
	box-shadow: none;
	-webkit-box-shadow: none;    
	outline: 0;
}

/* Default button */
.btn-default {
    padding: 16px 30px 12px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;    
	text-transform: uppercase;
	text-decoration: none;
    color: #FFF;
    border: 1px solid #96bd0d;
    background-color: #96bd0d;  
    opacity:1;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
    color: #FFF;
    border: 1px solid #8ca813;
    background-color: #8ca813;
}

/* Primary button */
.btn-primary {
    padding: 16px 30px 12px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
	text-transform: uppercase;
	text-decoration: none;
    color: #FFF;
    -webkit-border-radius: 0;
    border-radius: 0;
    background-color: #C6161E;
    border: 1px solid #C6161E; 
    opacity:1;
}
.btn-primary:hover,
.btn-primary:focus {
    color: #FFF;
    background-color: #DB1221;
    border: 1px solid #DB1221;
}


/* ------------------------------------------------------------- */
/* FORM	BUTTONS													 */
/* ------------------------------------------------------------- */

/* General */
.form-buttons {
	clear: both;
	float: right;
	margin-top: 50px;
	text-align: right;
}
.form-buttons:first-child {
	margin-top: 0;
	margin-bottom: 50px;
}

/* Buttons */
.form-buttons .btn-default,
.form-buttons .btn-primary {
	font-size: 12px;
	width: 200px;
    padding: 12px 0 10px;
}
.form-buttons .btn-primary {
	margin-left: 2px;
}


/* ------------------------------------------------------------- */
/* FORMS														 */
/* ------------------------------------------------------------- */

/* Form control */
.form-control {
	font-size: 14px;
	height: auto;
	padding: 9px 15px;
	border: 1px solid;
	box-shadow: none;
	-webkit-box-shadow: none;
  	-moz-box-shadow: none;
	-webkit-border-radius: 0;
	border-radius: 0;
	color: #7a7a7a;
	background: #FFF;
	border-color: #CCC;	
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;	
} 
.form-control:hover,
.form-control:focus {
	box-shadow: none;
	-webkit-box-shadow: none; 
  	-moz-box-shadow: none;
	outline: 0;
}

/* Input group */
.input-group {
	background: #f2f2f2;
}
.input-group .form-control {
	background: none;
	border: none;
}
.input-group .btn-default,
.input-group-addon {
	border: none;
	background: none;
	border-radius: 0; 
}

/* Required label */
.required .control-label:after {
	margin: 0;
	margin-left: 4px;
	font-size: 14px;
	content: '*';
}

/* Select */
select.form-control {
	width: auto;
	min-width: 50%;
	max-width: 100%;
	appearance: menulist;
	-webkit-appearance: menulist;
	-moz-appearance: menulist;	
}

/* Radio & Checkboxes */
input[type=radio],
input[type=checkbox] {
	margin-top: 4px;
}

/* Address form */
.form-postcode .form-control {
	width: 50%;
}

/* Forgot password */
.forgot-password {
	float: right;
	width: auto;
	color: #333;
	background: #f2f2f2;
	border-color: #f2f2f2;
}
.forgot-password:hover {
	color: #333;
	background: #DDD;
	border-color: #DDD;	
}

/* Address form */
.form-address .form-field-container>.form-control {
	margin-bottom: 5px;
}

/* Form error */
.has-error .form-control {
	color: #a94442;
	-webkit-box-shadow: none;
	box-shadow: none;	
}
.has-error .input-group-addon {
	background: none;
}

/* Form error message */
.localerror {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: #a94442;
}

/* Horizontal form */
.form-horizontal .control-label,
.form-horizontal .form-field-container,
.form-horizontal .checkbox,
.form-horizontal .radio,
.form-horizontal .form-button-container {
	position: relative;
	float: left;
	min-height: 1px;
	padding: 0 15px;	
}
.form-horizontal .control-label {
	width: 33.33333333%;
	padding-top: 7px;
}
.form-horizontal .form-field-container {
	width: 66.66666667%;
}
.form-horizontal .checkbox,
.form-horizontal .radio,
.form-horizontal .form-button-container {
	width: 66.66666667%;
	margin-left: 33.33333333%; 
}
.form-horizontal .form-address .form-control {
	margin-bottom: 15px;
}
.form-horizontal .form-address .form-control:last-child {
	margin-bottom: 0;
}

/* Form spam */
.confirm-email-check {
	display: none;
}

/* Form help text */
.help-block {
	font-size: 12px;
}

/* Help text */
.help-text {
	margin-bottom: 30px;
}
.help-text.inner {
	margin: 45px 0 15px;
}

/* Placeholder */
.form-control::-webkit-input-placeholder {
	color: #7a7a7a;
	opacity: 1;
}
.form-control:-moz-placeholder {
	color: #7a7a7a;
	opacity: 1;
}
.form-control::-moz-placeholder {
	color: #7a7a7a;
	opacity: 1;
}
.form-control:-ms-input-placeholder {
	color: #7a7a7a;
	opacity: 1;
}

/* Disable */
.form-title {
	display: none;
}


/* ------------------------------------------------------------- */
/* ADDRESS														 */
/* ------------------------------------------------------------- */

/* General */
.address {
	margin: 0;
	padding: 0;
	list-style: none;
}
.address li {
	margin: 0;
	line-height: 1.3;
}
.address li label {

}
.address li.address-name {
	font-size: 16px;
	margin-bottom: 10px;
	font-weight: 700;
}
.address li.name,
.address li.company-name {
	margin-bottom: 5px;
	font-weight: 700;
}
.address li.telephone {
	margin-top: 5px;
}
.address li.actions {
	margin-top: 10px;
}
.address li.actions a {
	display: inline;
	margin-right: 5px;
	text-decoration: underline;
}


/* ------------------------------------------------------------- */
/* HEADER IMAGE													 */
/* ------------------------------------------------------------- */

/* General */
#header-image {
	display: none;
	width: 100%;
	height: auto;	
}
.header-image #header-image {
	display: block;
}

/* Image */
#header-image .large-image {
	display: block;
	width: 100%;
	height: 420px;
	margin: 0;
	background: no-repeat center center; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;	
}
#header-image .small-image {
	display: none;
	width: 100%;
	margin: 0;
	border: none;
	outline: none;
}


/* ------------------------------------------------------------- */
/* BREADCRUMBS													 */
/* ------------------------------------------------------------- */

/* General */
.breadcrumbs {
	display: block;
	position: relative;
	clear: both;
	float: none;	
	width: 1140px;
	margin: 30px auto;
	padding: 0;	
}
.breadcrumbs li {
	display: inline-block;
	font-size: 12px;
	line-height: 32px;
	list-style: none;
}
.breadcrumbs li a {
	text-decoration: none;
	color: #7a7a7a;
}
.breadcrumbs li a:hover {
	text-decoration: underline;
}

/* Breadcrumbs */
.breadcrumb {
	position: relative;
	float: none;
	width: 100%;
	height: 32px;
	margin: 0;
	padding: 0;
	text-align: center;
	border-radius: 0;
	background: none;
}

.breadcrumb>li+li:before {
	color: #CCC;
}
.breadcrumb>.active {
	color: #7a7a7a;
	font-weight: 700;
}

/* With header image */
.header-image .breadcrumbs {
	margin: -32px auto 60px;	
}
.header-image .breadcrumb {
	padding: 0;
}
.header-image .breadcrumb li {
	color: #FFF;
}
.header-image .breadcrumb li a {
	color: #FFF;
}
.header-image  .breadcrumb>.active {
	color: rgba(255,255,255,.7);
}

/* Next / Previous links */
.next-previous-links {
	position: relative;
	float: right;
	width: auto;
	height: 32px;
	margin: 0;
	padding: 0;
}
.next-previous-links li {
	margin-left: 10px;
}
.next-previous-links li.next a:after,
.next-previous-links li.previous a:before {
	display: inline-block;
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	font-size: 12px;
}
.next-previous-links li.next a:after {
	margin-left: 5px;
	content: '\f105';
}
.next-previous-links li.previous a:before {
	margin-right: 5px;
	content: '\f104';
}


/* ------------------------------------------------------------- */
/* PAGE HEADER													 */
/* ------------------------------------------------------------- */

/* General */
header.page-header {
	display: block;
	clear: both;
	width: 970px;
	margin: 0 auto;
	margin-bottom: 60px;
	padding: 0;
	text-align: center;	
	border-bottom: none;
}
header.page-header h1 {
	margin: 0;
	font-weight: 700;
	text-transform: uppercase;
}
header.page-header p {
	margin-top: 5px;
	font-size: 18px;
	color: #7a7a7a;
}
header.page-header hr {
	display: none;
	width: 90px;
	margin: 0 auto;
	margin-top: 45px;
	border-top: 3px solid #DDD;
}
header.page-header a {
	text-decoration: none;
}
header.page-header a:hover {
	text-decoration: underline;
}
header.page-header .date,
header.page-header .source,
header.page-header .location {
	margin: 0;
	font-size: 15px;
}
header.page-header .date .time {
	margin-left: 15px;
}
header.page-header .location {
	margin-top: 5px;
}

/* With header image */
.header-image header.page-header {
	margin-top: 45px;
}

/* News Header */
#news.freetext header.page-header h1 {
	margin-bottom: 15px;
}


/* ------------------------------------------------------------- */
/* PAGINATION													 */
/* ------------------------------------------------------------- */

/* General */
.pagination {
	display: block;
	width: 100%;
	height: 40px;
	margin: 0;
	padding: 0;
	border-radius: 0;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
}
.pagination:first-child {

}
.pagination .paging,
.pagination .viewing,
.pagination .showing {
	position: relative;
	float: left;
	width: 25%;
	min-height: 1px;
	padding: 0;
}

/* Paging */
.pagination .paging {
	width: 100%;
	padding: 0;
	text-align: center;
}
.pagination:first-child .paging {
	width: 50%;
}
.pagination .paging ul {
	display: inline-block;
	margin: 0;
	padding: 0;
}
.pagination .paging li {
	display: inline-block;
	margin: 0;
	font-size: 13px;
	line-height: 1;
	list-style: none;
}
.pagination .paging li a {
	display: block;
	position: relative;
	float: left;
	width: 30px;
	height: 38px;
	margin: 0;
	padding: 13px 0;
	color: #7a7a7a;
	text-align: center;
	text-decoration: none;
}
.pagination .paging li a:hover {
	text-decoration: none;
	background: #F2F2F2;
}

/* Next / previous links */
.pagination .paging li.previous a,
.pagination .paging li.next a {
	padding: 11px 0;
}
.pagination .paging li.previous span,
.pagination .paging li.next span {
	display: none;
}
.pagination .paging li.previous .icon,
.pagination .paging li.next .icon {
	display: block;
	margin: 0;
	line-height: 1;
}
.pagination .paging li.previous .icon:before,
.pagination .paging li.next .icon:before {
	font-size: 15px;
	content: '\f104';
}
.pagination .paging li.next .icon:before {
	content: '\f105';
}

/* Showing */
.pagination .showing {
	display: none;
	float: right;
	width: auto;	
}
.pagination:first-child .showing {
	display: block;
}
.pagination .showing label {
	float: left;
	margin: 0;
	padding: 13px 0;
	font-size: 13px;
	line-height: 1;
	color: #7a7a7a;
}
.pagination .showing .btn-default {
	height: 37px;
	padding-right: 0;
	color: #333;
	font-size: 13px;
	font-weight: 400;
	color: #7a7a7a;
	text-transform: none;
	border-radius: 0;
	border: none;
	background: none;
	box-shadow: none;
}
.pagination .showing .btn-default:hover {
	background: none;
}
.pagination .showing .btn-group.open .dropdown-toggle {
	box-shadow: none;
	-webkit-box-shadow: none;
}
.pagination .showing .dropdown-toggle:after {
	margin-left: 5px;
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
	content: '\f107';
}
.pagination .showing .btn-group.open .dropdown-toggle:after {
	content: '\f106';
}
.pagination .showing .dropdown-menu {
	left: auto;
	right: 0;
	margin: 0;
	border-radius: 0;
}
.pagination .showing .dropdown-menu li {
	font-size: 13px;
}
.pagination .showing .dropdown-menu li a{
	color: #7a7a7a;
	text-decoration: none;
}

/* Viewing */
.pagination .viewing {
	display: none;
}
.pagination:first-child .viewing {
	display: block;
}
.pagination .viewing p {
	margin: 0;
	padding: 13px 0;
	font-size: 13px;
	line-height: 1;
	color: #7a7a7a;
}
.pagination .viewing a {
	padding: 0 10px;
	color: #7a7a7a;
}


/* ------------------------------------------------------------- */
/* GENERIC ITEM LISTING										 	 */
/* ------------------------------------------------------------- */

/* General */
.item-listing {
	margin: 15px 0;
}

/* Article */
.item-listing .item {
	position: relative;
	float: left;
	min-height: 1px;
	padding: 0 15px;
	overflow: hidden;
	zoom: 1;
	border-bottom: 1px solid #CCC;	
}

/* Link */
.item-listing .item a {
	display: block;
	text-decoration: none;
}

/* Image */
.item-listing img {
	display: block;
	float: left;
}

/* Item body */
.item-listing .item-body {
	padding: 20px;
	padding-bottom: 10px;
	overflow: hidden;
	zoom: 1;
}

/* Header */
.item-listing header {
	margin-bottom: 10px;
}
.item-listing header h2{
	margin: 0;
	margin-bottom: 5px;
}
.item-listing header p{
	margin: 0;
	font-style: normal;
	font-size: 12px;
	color: #7a7a7a;
}
.item-listing header i {
	margin-right: 10px;
}


/* ------------------------------------------------------------- */
/* VIDEO LISTING											 	 */
/* ------------------------------------------------------------- */

/* General */
#video .item-listing {
	margin-left: -15px;
	margin-right: -15px;
}

/* Article */
#video .item-listing .item {
	width: 33.33333333%;
	margin-bottom: 30px;
	text-align: left;
	border-bottom: none;	
}
#video .item-listing .item:nth-child(3n+1) {
	clear: left;
}

/* Image */
#video .item-listing .item img {
	display: block;
	width: 100%;
	margin: 0;
	margin-bottom: 10px;
}

/* Typography */
#video h2 {
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 1px solid #DDD;
}
#video h3 {
	font-size: 14px;
	color: #555;
}

/* Main video */
#video .main-video {
	width: 100%;
	height: auto;
	margin: 30px auto;
	margin-bottom: 90px;
}
#video .main-video .embed-responsive {
	margin-bottom: 10px;
}


/* ------------------------------------------------------------- */
/* FONTAWESOME ICON	 									 	 	 */
/* ------------------------------------------------------------- */

/* General */
.icon:before {
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
}


/* ------------------------------------------------------------- */
/* FOLLOW ICONS			 									 	 */
/* ------------------------------------------------------------- */

/* General */
.addthis_default_style a {
	display: block;
	width: 32px;
	height: 32px;
	margin: 0 1px;
	padding: 0 !important;
	color: #FFF;
	text-decoration: none;
	border: none;
	background: none;
}
.addthis_default_style a:hover {
	text-decoration: none;
}
.addthis_default_style a .icon {
	display: block;
	width: 32px;
	height: 32px;
	margin: 0;
	text-align: center;
}
.addthis_default_style a .icon:before {
	height: 32px;
	font-size: 20px;
	line-height: 32px;
	color: #FFF;
}
.addthis_default_style a.addthis_button_facebook_follow {

}
.addthis_default_style .addthis_button_facebook_follow .icon:before {
	content: "\f09a"
}
.addthis_default_style a.addthis_button_twitter_follow {
}
.addthis_default_style .addthis_button_twitter_follow .icon:before {
	content: "\f099"
}
.addthis_default_style a.addthis_button_linkedin_follow {
}
.addthis_default_style .addthis_button_linkedin_follow .icon:before {
	content: "\f0e1"
}


/* ------------------------------------------------------------- */
/* SOCIAL ICONS						 							 */
/* ------------------------------------------------------------- */

/* Share icons */
.share label {
	display: none;
}
.share .addthis_default_style {
	float: none;
	margin: 0;
}
.share .addthis_default_style a {
	margin: 0 1px;
	padding: 0;
	color: #FFF;
	text-decoration: none;
	background: #7a7a7a;
}
.share .addthis_default_style .addthis_default_style a:hover {
}
.share .addthis_default_style .addthis_default_style a .icon:before {
	display: block;
	width: 32px;
	height: 32px;
	margin: 0;
	font-size: 18px;
	text-align: center;
}
.share .addthis_default_style a.addthis_button_facebook {
	background: #4c66a4;
}
.share .addthis_default_style .addthis_button_facebook .icon:before {
	content: "\f09a"
}
.share .addthis_default_style a.addthis_button_twitter {
	background: #4099FF;
}
.share .addthis_default_style .addthis_button_twitter .icon:before {
	content: "\f099"
}
.share .addthis_default_style a.addthis_button_google_plusone_share {
	background: #D34836;
}
.share .addthis_default_style .addthis_button_google_plusone_share .icon:before {
	content: "\f0d5"
}
.share .addthis_default_style .addthis_button_email .icon:before {
	content: "\f0e0"
}
.share .addthis_default_style a.addthis_button_compact {
	background: #ee6342;
}
.share .addthis_default_style .addthis_button_compact .icon:before {
	content: "\f067"
}


/* ------------------------------------------------------------- */
/* LIGHTBOX				 									 	 */
/* ------------------------------------------------------------- */

/* General */
.ekko-lightbox .glyphicon {
	margin-top: -15px;
	font-size: 30px;
}
.ekko-lightbox .glyphicon-chevron-left:before {
	content: '\f053';
}
.ekko-lightbox .glyphicon-chevron-right:before {
	content: '\f054';
}


/* ------------------------------------------------------------- */
/* PRODUCT NAME & PRICE											 */
/* ------------------------------------------------------------- */

/* General */
.name-price {
	text-align: center;
}
.name-price p {
	margin: 0;
	margin-bottom: 8px;
	font-size: 14px;
	line-height: 18px;
}

/* Product name */
.name-price .product-name {
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: normal;
	text-decoration: none;
}
a:hover .name-price .product-name {
	text-decoration: underline
}

/* Product price */
.product-price {
	color: #323232;
	font-weight: bold;
}
.product-price span {
	margin: 0 2px;
}
.product-price .price-label {
	margin: 0;
	margin-right: 4px;
	font-weight: normal;
	font-size: 12px;
}
.product-price .sale-price {
	color: #e0564c;
}
.product-price .old-price {
	font-weight: normal;
	text-decoration: line-through;
}
.product-price .vat {
	display: block;
	font-size: 12px;
	color: #7a7a7a;
	font-weight: normal;
}

/* Stock message */
.name-price .stock {
	color: #333;
	font-size: 12px;
}

/* Stock ID */
.stockid {
	color: #333;
}


/* ------------------------------------------------------------- */
/* PRODUCT IMAGE												 */
/* ------------------------------------------------------------- */

/* Product image */	
.product-image {
	width: 100%;
	height: 204px;
	margin: 0;
	padding: 10px;
	text-align: center;
	font: 0/0 a;
}
.product-image:before {
	content: ' ';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
.product-image img {
	display: inline-block;
	float: none;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle;
}


/* ------------------------------------------------------------- */
/* PRODUCT LABEL												 */
/* ------------------------------------------------------------- */

/* General */
.product-label {
	position: absolute;
	top: 0;
	left: 15px;
	z-index: 20;
	width: 90px;
	height: 90px;
	overflow: hidden;
}
.label-container {
	display: none;
	position: relative;
	width: 130px;
	left: -30px;
	top: 24px;
	white-space: nowrap;
	overflow: hidden;
	background-color: #a00;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,.4);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,.4);
	box-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.product-label span {
	display: block;
	height: 24px;
	margin: 0;
	padding: 8px 0;
	font-size: 10px;
	line-height: 1;
	color: #FFF;
	font-weight: 700;	
	text-align: center;
	text-transform: uppercase;
	text-shadow: 0 0 5px #444;
	border: 1px solid rgba(255,255,255,.5);
	border: none;
}

/* New */
.new-product .label-container {
	display: block;
	background: #204d02;
}

/* Sale */
.sale-product .label-container {
	display: block;
	background: #e0564c;
}

/* No stock */
.nostock-product .label-container {
	display: block;
	background: #000;
}

/* Low stock */
.lowstock-product .label-container {
	display: block;
	background: #000;
}


/* ------------------------------------------------------------- */
/* PROGRESS INDICATOR				 							 */
/* ------------------------------------------------------------- */

#progress-indicator {
	display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    text-align: center;
    background: rgba(255,255,255,.6)
}
#progress-indicator:before {
    content: ' ';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
#progress-indicator img {
    display: inline-block;
    float: none;
    width: 42px;
    height: 42px;
    vertical-align: middle;
}


/* ------------------------------------------------------------- */
/* 404								 							 */
/* ------------------------------------------------------------- */

/* General */
#maintenance-page #main-content,
#page-not-found #main-content {
	text-align: center;
}
#maintenance-page #right-content,
#page-not-found #right-content {
	display: none;
}









/* ----------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------- */

/* Media Query - LARGE																   */

/* ----------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------- */
 
/*!
 * 
 */

@media (min-width: 992px) and (max-width: 1199px) {


/* ------------------------------------------------------------- */
/* HEADER IMAGE													 */
/* ------------------------------------------------------------- */

/* Image */
#header-image .large-image {
	height: 320px;
}


/* ------------------------------------------------------------- */
/* BREADCRUMBS													 */
/* ------------------------------------------------------------- */

/* General */
.breadcrumbs {	
	width: 970px;
}





}





/* ----------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------- */

/* Media Query - MEDIUM																   */

/* ----------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------- */

/*!
 * Body
 * Forms
 * Header image
 * Breadcrumbs
 * Page header
 * Page image
 */

@media (max-width: 991px) {


/* ------------------------------------------------------------- */
/* BODY															 */
/* ------------------------------------------------------------- */
		
/* Wrapper */
#wrapper {
	padding: 89px 0 280px;
}

/* Container */
.container {
	width: 750px;
	padding: 0 15px;
}
#wrapper>.container:first-child {
	width: 100%;
	margin-bottom: 30px;
	background: #8ca813;
	background: #f2f2f2;
}
.header-image #wrapper>.container:first-child {
	background: none;
}


/* ------------------------------------------------------------- */
/* BUTTONS														 */
/* ------------------------------------------------------------- */

/* Default button */
.btn-default {
    padding: 12px 20px 10px;
    font-size: 12px;
}

/* Primary button */
.btn-primary {
    padding: 12px 20px 10px;
    font-size: 12px;
}


/* ------------------------------------------------------------- */
/* FORMS														 */
/* ------------------------------------------------------------- */

/* Form control */
.form-control {
} 


/* ------------------------------------------------------------- */
/* HEADER IMAGE													 */
/* ------------------------------------------------------------- */

/* Container */
.header-image #wrapper>.container:first-child {
	width: 100%;
	padding: 0;
}

/* General */
.header-image #header-image {
	margin-bottom: 0;
}

/* Image */
#header-image .large-image {
	height: 320px;
}



/* ------------------------------------------------------------- */
/* BREADCRUMBS													 */
/* ------------------------------------------------------------- */

/* General */
.breadcrumbs {
	display: none;
}


/* ------------------------------------------------------------- */
/* PAGE HEADER													 */
/* ------------------------------------------------------------- */

/* General */
header.page-header {
	width: 720px;
	margin: 45px auto 30px;
	padding: 0;
	text-align: left;
}
.header-image header.page-header {
	margin-top: 60px;
	margin-bottom: 0;
}



/* ------------------------------------------------------------- */
/* PAGINATION													 */
/* ------------------------------------------------------------- */

/* General */
.pagination .paging,
.pagination:first-child .paging,
.pagination .viewing,
.pagination:first-child .viewing,
.pagination .showing,
.pagination:first-child .showing {
	display: none;
	width: 33.33333333%;
}

/* Paging */
.pagination .paging,
.pagination:first-child .paging {
	display: block;
	width: 100%;
}


/* ------------------------------------------------------------- */
/* PRODUCT IMAGE												 */
/* ------------------------------------------------------------- */

/* Product image */	
.product-image {
	height: 220px;
}


/* ------------------------------------------------------------- */
/* FOLLOW ICONS			 									 	 */
/* ------------------------------------------------------------- */

/* General */
.addthis_default_style a {
	width: 42px;
	height: 42px;
}
.addthis_default_style a .icon {
	width: 42px;
	height: 42px;
}
.addthis_default_style a .icon:before {
	height: 42px;
	font-size: 24px;
	line-height: 42px;
}







}





/* ----------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------- */

/* Media Query - SMALL																   */

/* ----------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------- */

/*!
 * Body
 * Form buttons
 * Header image
 * Page header
 * Pagination
 * Responsive images
 * Product image
 * Product label
 */

@media (max-width: 767px) {


/* ------------------------------------------------------------- */
/* BODY														 	 */
/* ------------------------------------------------------------- */
	
/* Wrapper */
#wrapper {
	padding: 69px 0 570px;
}
	
/* Container */
.container {
	width: 460px;
	margin: 0 auto;
	padding: 0;
}
#wrapper>.container:first-child {
	margin-bottom: 0;
}


/* ------------------------------------------------------------- */
/* COOKIES ALERT												 */
/* ------------------------------------------------------------- */

/* General */
.cookies-alert .alert p {
	font-size: 12px;
}


/* ------------------------------------------------------------- */
/* BUTTONS														 */
/* ------------------------------------------------------------- */

/* Button focus */
button,
button:hover,
button:focus {
	border: none;
	box-shadow: none;
	-webkit-box-shadow: none;    
	outline: 0;
}

/* Default button */
.btn-default {
    padding: 12px 20px 10px;
    font-size: 12px;
}

/* Primary button */
.btn-primary {
    padding: 12px 20px 10px;
    font-size: 12px;
}


/* ------------------------------------------------------------- */
/* FORM	BUTTONS													 */
/* ------------------------------------------------------------- */

/* General */
.form-buttons {
	margin-top: 30px;
}
.form-buttons:first-child {
	margin-bottom: 30px;
}

/* Buttons */
.form-buttons .btn-default,
.form-buttons .btn-primary {
	width: 228px;
}


/* ------------------------------------------------------------- */
/* HEADER IMAGE													 */
/* ------------------------------------------------------------- */

/* Image */
#header-image .large-image {
	display: none;
	visibility: hidden;
	background: none !important;
}
#header-image .small-image {
	display: block;
}


/* ------------------------------------------------------------- */
/* PAGE HEADER													 */
/* ------------------------------------------------------------- */

/* General */
header.page-header {
	width: 450px;
}


/* ------------------------------------------------------------- */
/* VIDEO LISTING											 	 */
/* ------------------------------------------------------------- */

/* General */
#video .item-listing {
	margin-left: -15px;
	margin-right: -15px;
}

/* Article */
#video .item-listing .item {
	width: 50%;
	margin-bottom: 30px;
}
#video .item-listing .item:nth-child(3n+1) {
	clear: none;
}
#video .item-listing .item:nth-child(2n+1) {
	clear: left;
}

/* Typography */
#video h2 {
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 1px solid #DDD;
}

/* Main video */
#video .main-video {
	margin-bottom: 75px;
}
#video .main-video .embed-responsive {
	margin-bottom: 10px;
}









}





/* ----------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------- */

/* Media Query - X SMALL															   */

/* ----------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------- */

/*!
 * Body
 * Form buttons
 * Page header
 * Product image
 * Product carousel
 */

@media (max-width: 480px) {


/* ------------------------------------------------------------- */
/* BODY															 */
/* ------------------------------------------------------------- */

/* Container */
.container {
	width: 300px;
}


/* ------------------------------------------------------------- */
/* FORM	BUTTONS													 */
/* ------------------------------------------------------------- */

/* General */
.form-buttons {
	margin-top: 30px;
}
.form-buttons:first-child {
	margin-bottom: 30px;
}

/* Buttons */
.form-buttons .btn-default,
.form-buttons .btn-primary {
	font-size: 10px;
	width: 148px;
}


/* ------------------------------------------------------------- */
/* PAGE HEADER													 */
/* ------------------------------------------------------------- */

/* General */
header.page-header {
	width: 300px;
}


/* ------------------------------------------------------------- */
/* VIDEO LISTING											 	 */
/* ------------------------------------------------------------- */

/* General */
#video .item-listing {
	margin-left: -5px;
	margin-right: -5px;
}

/* Article */
#video .item-listing .item {
	padding: 0 5px;
}

/* Typography */
#video h2 {
	font-size: 18px;
}
#video h3 {
	font-size: 12px;
}

/* Main video */
#video .main-video {
	margin-bottom: 60px;
}






}