html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%; box-sizing: border-box;}*,*:before,*:after{box-sizing:inherit;}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:black}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}


/* Hide arrows on iput fiels type number */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; 
}

input[type='number'] {
    -moz-appearance:textfield;
}
/*-----------------------------------*/
/*---------- BLOG ARTICLE -----------*/
/*-----------------------------------*/
.blogArticle {
  width: 100%;
  padding: 1em;
  margin: 0.5em 0;
  display: block;
}
.blogArticle h1, .blogArticle h2 {
  margin: 0;
  padding: 0;
  line-height: 1.0em;
}
.blogArticle h1 {
  margin: 0 0 0.5em;
}
.blogArticle .blogArticleWrap {
  font-size: 1.0em;
  line-height: 1.4em;
}
.blogArticle .blogArticleWrap p {
  margin: 0;
  padding: 0;
}
.blogArticle .blogArticleWrap .blogPostHero {
  float: right;
  margin: 0em 0em 1em 1em;
  width: 100%;
  max-width: 400px;
}
.blogArticle .blogArticleWrap .blogPostHero.noImage {
  display: none;
}
.blogArticle .blogSubHead {
  margin: 0 0 0.5em 0;
  font-size: 0.9em;
}
.blogArticle .blogArticlePublish {
  font-style: italic;
  font-size: 0.9em;
  margin: 0 0 1.0em 0;
}
.blogArticle .blogNavigation {
  margin-bottom: 1em;
  font-size: 0.8em;
}
.blogArticle .blogNavigation a {
  padding: 0.2em 1em;
}
.blogArticle .blogNavigation a:hover {
  padding: 0.2 1em;
}
.blogArticle .blogNavigation a:before {
  font-family: fontAwesome;
  font-size: 0.8em;
}
.blogArticle .blogNavigation a.next:before {
  content: '\f105';
  float: right;
  margin-left: .3em;
}
.blogArticle .blogNavigation a.previous:before {
  content: '\f104';
  margin-right: .3em;
}
.blogArticle .blogArticleImages {
  margin: 1em 0;
}
.blogArticle .blogArticleImages .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding: 0;
}
.blogArticle .blogArticleImages .container div {
  width: 24%;
}
.blogArticle .blogArticleImages .container div img {
  width: 100%;
}
.blogArticle .blogCategoryWrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  margin: 1em 0 0;
  font-size: 0.8em;
}
.blogArticle .blogCategoryWrap:before {
  content: 'Tags:';
  margin: 0 .5em 0 0;
}
.blogArticle .blogCategoryWrap .articleCategory {
  display: inline-block;
  padding: .05em 1.5em;
  margin: 0 .1em;
  background: #1a2632;
  color: white;
  font-style: italic;
  border-radius: 0.2em;
}

@media all and (max-width: 700px) {
  .blogNavigation {
    text-align: center;
  }

  .blogArticle .blogArticleWrap .blogPostHero {
    float: none;
    max-width: none;
    margin: 1em 0;
  }

  .blogArticle .blogArticleImages .container div {
    width: 49%;
  }

  .categorySection .container {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
}
/*-----------------------------------*/
/*------------ BLOG POST-------------*/
/*-----------------------------------*/
.blogPost {
  width: 100%;
  padding: 1em;
  margin: 0.5em 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px dashed #ccc;
}
.blogPost .blogPostHero {
  width: 200px;
  height: 200px;
  max-width: 350px;
}
.blogPost .blogPostHero .image {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: pink;
  display: block;
  width: 100%;
  height: 100%;
}
.blogPost .blogPostHero .image.noImage {
  background: #eee;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* Icon for the placeholder */
  /* add text to the placeholder, using the content attribute */
}
.blogPost .blogPostHero .image.noImage:before {
  content: '\f03e';
  font-family: fontAwesome;
  font-size: 5.0em;
  display: block;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  line-height: 1.0em;
  color: #ccc;
}
.blogPost .blogPostHero .image.noImage:after {
  content: '';
  color: #ccc;
  line-height: 1.0em;
  margin: -50px auto 0;
}
.blogPost .blogPostDetails {
  width: 65%;
  padding-left: 1em;
}
.blogPost .blogPostDetails .blogTitle {
  font-size: 1.5em;
  line-height: 1.0em;
  font-weight: bold;
  padding: 0;
  margin: 0;
}
.blogPost .blogPostDetails .blogPublsihInfo {
  display: -ms-flexbox;
  display: flex;
  line-height: 1.0em;
  padding: 0.5em 0 1em;
}
.blogPost .blogPostDetails .blogPostAuthor, .blogPost .blogPostDetails .blogPostDate {
  font-style: italic;
  color: #888;
  font-size: 0.8em;
  padding: 0;
}
.blogPost .blogPostDetails .blogPostText {
  font-size: 0.9em;
  line-height: 1.4em;
  padding: 0.5em 0 1em;
}
.blogPost .blogPostDetails .blogBtn {
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  font-size: 0.9em;
}
.blogPost .blogPostDetails .blogBtn button {
  display: block;
}

@media all and (max-width: 700px) {
  .blogPost .blogPostHero {
    width: 100%;
    max-width: none;
    max-height: none;
    min-height: 15em;
    margin: 0 0 1em;
  }

  .blogPost .blogPostDetails {
    width: 100%;
    padding: 0;
  }
}
/*-----------------------------------*/
/*----------- BLOG WIDGET------------*/
/*-----------------------------------*/
.blog-widget {
  width: 100%;
  max-width: 600px;
  background: #eee;
  padding: 1em;
  /**
   * Title of the blog
   */
  /**
   * A singular blog article
   */
}
.blog-widget .blog-widget-heading {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 1em;
}
.blog-widget .blog-widget-article {
  width: 100%;
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #ccc;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /**
   * Holder for the article image
   */
  /**
   * Blog Text Content
   */
}
.blog-widget .blog-widget-article:nth-last-child(1) {
  border-bottom: none;
}
.blog-widget .blog-widget-article .blog-widget-article-img {
  width: 100%;
  margin-right: 1em;
  border: 2px solid #222;
  margin-right: 1%;
  /**
   * Actual article image
   */
}
.blog-widget .blog-widget-article .blog-widget-article-img .blog-widget-article-imgFrame {
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  background-size: cover !important;
  background-position: center center !important;
}
.blog-widget .blog-widget-article .blog-widget-article-preview {
  width: 100%;
  /**
   * Title of article
   */
  /**
   * Sub Title Article
   */
  /**
   * Date time of article
   */
  /**
   * Article preview text
   */
  /**
   * Read more button
   */
}
.blog-widget .blog-widget-article .blog-widget-article-preview .blog-widget-article-preview-title {
  font-weight: bold;
  line-height: 1.2em;
  margin: 0.5em 0;
}
.blog-widget .blog-widget-article .blog-widget-article-preview .blog-widget-article-content-subheading {
  font-size: 0.9em;
  font-weight: bold;
  line-height: 1.2em;
  margin: 0.5em 0;
}
.blog-widget .blog-widget-article .blog-widget-article-preview .blog-widget-article-author {
  font-size: .8em;
  margin-bottom: .3em;
  font-style: italic;
  line-height: 1.0em;
}
.blog-widget .blog-widget-article .blog-widget-article-preview .blog-widget-article-date {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  font-size: .8em;
  line-height: 1.0em;
  font-style: italic;
}
.blog-widget .blog-widget-article .blog-widget-article-preview .blog-widget-article-date .blog-widget-article-date-date {
  margin-right: .2em;
}
.blog-widget .blog-widget-article .blog-widget-article-preview .blog-widget-article-content-text {
  padding: .7em 0;
  line-height: 1.3em;
  font-size: .9em;
}
.blog-widget .blog-widget-article .blog-widget-article-preview .blog-widget-article-content-button {
  padding: .5em 1em;
  display: block;
  margin: 1em auto;
  font-size: 0.8em;
  text-align: center;
  font-weight: normal;
  text-decoration: none;
  background: #222;
  color: white;
  text-transform: uppercase;
}

/*-----------------------------------*/
/*---------- BLOG SIDE MENU ---------*/
/*-----------------------------------*/
.blogArchive {
  margin: 1em auto 2em;
  padding: 0;
  line-height: 1.4em;
  font-size: 0.9em;
}
.blogArchive:before {
  content: 'Previous Posts';
  display: block;
  font-size: 1.5em;
  color: black;
  margin: 0 0 10px;
  font-weight: normal;
}
.blogArchive li {
  list-style-type: none;
  margin: .5em 0;
}
.blogArchive li a {
  display: block;
  text-decoration: none;
  font-weight: 500;
  padding: .1em;
}
.blogArchive li ul {
  margin: 0;
  padding: 0;
}
.blogArchive li ul li {
  display: -ms-flexbox;
  display: flex;
  font-size: 0.9em;
  padding: 0 0 0 .5em;
  margin: .2em 0;
}
.blogArchive li ul li:before {
  content: "\f101";
  font-family: fontAwesome;
  margin: 0 .5em 0 0;
  color: #999;
}
.blogArchive li ul li:hover {
  background: #1a2632;
  color: white;
}
.blogArchive li ul li:hover a {
  color: white;
}

/**
 * Category Side Menu
 */
.blogMenu .categoryMenu {
  margin: 1em auto;
  padding: 0;
  line-height: 1.4em;
  font-size: 0.9em;
  font-weight: 500;
  /**
   * Side bar heading
   */
}
.blogMenu .categoryMenu:before {
  content: "Categories";
  display: block;
  font-size: 1.5em;
  color: black;
  margin: 0 0 10px;
  font-weight: 500;
}
.blogMenu .categoryMenu li {
  width: 100%;
  list-style: none;
  margin: 0;
  font-size: .9em;
  font-weight: 500;
  padding: 0 0 0 .5em;
}
.blogMenu .categoryMenu li a {
  display: block;
  width: 100%;
  padding: .1em;
  margin: 1px 0;
  text-decoration: none;
  font-weight: 500;
  text-transform: initial;
}
.blogMenu .categoryMenu li a:before {
  content: "\f101";
  font-family: fontAwesome;
  margin: 0 .5em 0 0;
  color: #999;
}
.blogMenu .categoryMenu li:hover {
  background: #1a2632;
  color: white;
}
.blogMenu .categoryMenu li:hover a {
  color: white;
}
.blogMenu .categoryMenu li.current > a {
  background: #1a2632;
  color: white;
}

/* ---------------------------------- */
/* ---------- FONT AWESOME ---------- */
/* ---------------------------------- */
.fontAwesome {
  font-family: FontAwesome;
}

@font-face {
  font-family: 'FontAwesome';
  src: url("fonts/fontawesome-webfont.eot");
  src: url("fonts/fontawesome-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/fontawesome-webfont.woff") format("woff"), url("fonts/fontawesome-webfont.ttf") format("truetype"), url("fonts/fontawesome-webfont.svg#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
/**
 * Some FA styles for the social share
 */
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

/**
* Styles for the social share plugin
 */
.jssocials-shares {
  margin: 0.2em 0;
}

.jssocials-share {
  display: inline-block;
  vertical-align: top;
  margin: 0.3em 0.6em 0.3em 0;
}

.jssocials-share:last-child {
  margin-right: 0;
}

.jssocials-share-logo {
  width: 1em;
  vertical-align: middle;
  font-size: 1.5em;
}

img.jssocials-share-logo {
  width: auto;
  height: 1em;
}

.jssocials-share-link {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  line-height: 1;
}

.jssocials-share-link.jssocials-share-link-count {
  padding-top: .2em;
}

.jssocials-share-link.jssocials-share-link-count .jssocials-share-count {
  display: block;
  font-size: .6em;
  margin: 0 -.5em -.8em -.5em;
}

.jssocials-share-link.jssocials-share-no-count {
  padding-top: .5em;
}

.jssocials-share-link.jssocials-share-no-count .jssocials-share-count {
  height: 1em;
}

.jssocials-share-label {
  padding-left: 0.3em;
  vertical-align: middle;
}

.jssocials-share-count-box {
  display: inline-block;
  height: 1.5em;
  padding: 0 0.3em;
  line-height: 1;
  vertical-align: middle;
  cursor: default;
}

.jssocials-share-count-box.jssocials-share-no-count {
  display: none;
}

.jssocials-share-count {
  line-height: 1.5em;
  vertical-align: middle;
}

.jssocials-share-twitter .jssocials-share-link {
  background: #00aced;
}

.jssocials-share-twitter .jssocials-share-link:hover {
  background: #0087ba;
}

.jssocials-share-facebook .jssocials-share-link {
  background: #3b5998;
}

.jssocials-share-facebook .jssocials-share-link:hover {
  background: #2d4373;
}

.jssocials-share-googleplus .jssocials-share-link {
  background: #dd4b39;
}

.jssocials-share-googleplus .jssocials-share-link:hover {
  background: #c23321;
}

.jssocials-share-linkedin .jssocials-share-link {
  background: #007bb6;
}

.jssocials-share-linkedin .jssocials-share-link:hover {
  background: #005983;
}

.jssocials-share-pinterest .jssocials-share-link {
  background: #cb2027;
}

.jssocials-share-pinterest .jssocials-share-link:hover {
  background: #9f191f;
}

.jssocials-share-email .jssocials-share-link {
  background: #3490F3;
}

.jssocials-share-email .jssocials-share-link:hover {
  background: #0e76e6;
}

.jssocials-share-stumbleupon .jssocials-share-link {
  background: #eb4823;
}

.jssocials-share-stumbleupon .jssocials-share-link:hover {
  background: #c93412;
}

.jssocials-share-whatsapp .jssocials-share-link {
  background: #29a628;
}

.jssocials-share-whatsapp .jssocials-share-link:hover {
  background: #1f7d1e;
}

.jssocials-share-telegram .jssocials-share-link {
  background: #2ca5e0;
}

.jssocials-share-telegram .jssocials-share-link:hover {
  background: #1c88bd;
}

.jssocials-share-line .jssocials-share-link {
  background: #25af00;
}

.jssocials-share-line .jssocials-share-link:hover {
  background: #1a7c00;
}

.jssocials-share-viber .jssocials-share-link {
  background: #7b519d;
}

.jssocials-share-viber .jssocials-share-link:hover {
  background: #61407b;
}

.jssocials-share-pocket .jssocials-share-link {
  background: #ef4056;
}

.jssocials-share-pocket .jssocials-share-link:hover {
  background: #e9132e;
}

.jssocials-share-messenger .jssocials-share-link {
  background: #0084ff;
}

.jssocials-share-messenger .jssocials-share-link:hover {
  background: #006acc;
}

.jssocials-share-vkontakte .jssocials-share-link {
  background: #45668e;
}

.jssocials-share-vkontakte .jssocials-share-link:hover {
  background: #344d6c;
}

.jssocials-share-link {
  padding: .5em .6em;
  color: #fff;
  transition: background 200ms ease-in-out, border-color 200ms ease-in-out;
}

.jssocials-share-link:hover, .jssocials-share-link:focus, .jssocials-share-link:active {
  color: #fff;
}

.jssocials-share-count-box {
  position: relative;
  height: 2.5em;
  padding: 0 .3em;
  margin-left: 0.3em;
  background: #f5f5f5;
  transition: background 200ms ease-in-out, border-color 200ms ease-in-out;
}

.jssocials-share-count-box:hover {
  background: gainsboro;
}

.jssocials-share-count-box:hover:after {
  border-color: transparent gainsboro transparent transparent;
}

.jssocials-share-count-box:after {
  content: "";
  display: block;
  position: absolute;
  top: 0.85em;
  left: -0.3em;
  width: 0;
  height: 0;
  border-width: 0.4em 0.4em 0.4em 0;
  border-style: solid;
  border-color: transparent #f5f5f5 transparent transparent;
  transform: rotate(360deg);
  transition: background 200ms ease-in-out, border-color 200ms ease-in-out;
}

.jssocials-share-count-box .jssocials-share-count {
  line-height: 2.5em;
  color: #444;
}

/*! fancyBox 3.0.0 Beta 1 fancyapps.com | fancyapps.com/fancybox/#license */
#fancybox-loading,
#fancybox-lock,
.fancybox-wrap,
.fancybox-skin,
.fancybox-inner,
.fancybox-error,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-wrap embed,
a.fancybox-close,
a.fancybox-expand,
a.fancybox-nav,
a.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
  background-color: transparent;
  background-repeat: no-repeat;
  background-image: none;
  text-shadow: none;
}

#fancybox-lock {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8020;
  overflow-y: scroll;
  overflow-y: auto;
  overflow-x: auto;
  -webkit-transition: -webkit-transform 0.5s;
  -webkit-transform: translateX(0px);
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
  -webkit-transform: translate3d(0, 0, 0);
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-skin {
  /*border-style: solid;*/
  border-color: #fff;
  background: #fff;
  color: #222;
}

.fancybox-inner {
  position: relative;
  overflow: hidden !important;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.fancybox-spacer {
  position: absolute;
  top: 100%;
  left: 0;
  width: 1px;
}

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
  zoom: 1;
}

a.fancybox-close {
  position: absolute;
  top: 0;
  right: 4px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 8040;
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.1);
}

a.fancybox-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

a.fancybox-close:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 4px;
  width: 22px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
}

a.fancybox-close:before {
  content: "";
  position: absolute;
  top: 14px;
  left: 4px;
  width: 22px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(-45deg);
}

a.fancybox-close:hover:after, a.fancybox-close:hover:before {
  background: #fff;
}

a.fancybox-nav {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040;
  overflow: hidden;
  font: 2em FontAwesome;
  color: #fff;
}

.fancybox-type-iframe a.fancybox-nav,
.fancybox-type-inline a.fancybox-nav,
.fancybox-type-html a.fancybox-nav {
  width: 70px;
}

a.fancybox-prev {
  left: 0px;
}

a.fancybox-next {
  right: 0px;
}

a.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  margin-top: -23px;
  cursor: pointer;
  z-index: 8040;
  font-size: 1.1em;
}

a.fancybox-prev span {
  text-align: left;
  padding-left: 5px;
}

a.fancybox-next span {
  text-align: right;
  padding-right: 5px;
}

a.fancybox-next span:after {
  content: "\f105";
}

a.fancybox-prev span:after {
  content: "\f104";
}

a.fancybox-prev span {
  left: 0;
  background-position: 0 -50px;
}

a.fancybox-next span {
  right: 0;
  background-position: 0 -100px;
}

.fancybox-mobile a.fancybox-nav {
  max-width: 80px;
}

.fancybox-desktop a.fancybox-nav {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.fancybox-desktop a.fancybox-nav:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

a.fancybox-expand {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 46px;
  height: 46px;
  z-index: 8050;
  opacity: 0;
  filter: alpha(opacity=0);
  background-position: 0 -150px;
  zoom: 1;
  transition: opacity .5s ease;
}

.fancybox-wrap:hover a.fancybox-expand {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.fancybox-wrap a.fancybox-expand:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  width: 60px;
  height: 60px;
  background-color: #222;
  background-position: center center;
  opacity: 0.85;
  filter: alpha(opacity=85);
  cursor: pointer;
  z-index: 8060;
  border-radius: 8px;
}

.fancybox-tmp {
  position: absolute !important;
  top: -99999px;
  left: -99999px;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

.fancybox-title {
  font: normal 14px "Helvetica Neue",Helvetica,Arial,sans-serif;
  line-height: 1.5;
  position: relative;
  text-shadow: none;
  z-index: 8050;
  display: block;
  visibility: hidden;
}

.fancybox-title-float-wrap {
  position: relative;
  margin-top: 10px;
  text-align: center;
  zoom: 1;
  left: -9999px;
}

.fancybox-title-float-wrap > div {
  display: inline-block;
  padding: 7px 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 1px 2px #222;
  background: transparent;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
  text-shadow: 0 1px rgba(0, 0, 0, 0.5);
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 15px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
  max-height: 50%;
  overflow: auto;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 8010;
}

.fancybox-overlay-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Default theme */
.fancybox-default-skin {
  border-color: #f9f9f9;
  background: #f9f9f9;
}

.fancybox-default-skin-open {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-default-overlay {
  background: #222;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 2dppx) {
  .fancybox-default a.fancybox-close,
  .fancybox-default a.fancybox-expand,
  .fancybox-default a.fancybox-nav span {
    background-size: 46px auto;
  }
}
/* Dark theme */
.fancybox-dark-skin {
  background: #2A2A2A;
  border-color: #2A2A2A;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3) inset !important;
}

.fancybox-dark-overlay {
  background: #000;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .fancybox-dark a.fancybox-close,
  .fancybox-dark a.fancybox-expand,
  .fancybox-dark a.fancybox-nav span {
    background-size: 46px auto;
  }
}
/* Light theme */
.fancybox-light-skin-open {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 2dppx) {
  .fancybox-light a.fancybox-close,
  .fancybox-light a.fancybox-expand,
  .fancybox-light a.fancybox-nav span {
    background-size: 46px auto;
  }
}
.fancybox-light-overlay {
  opacity: 0.9;
  filter: alpha(opacity=90);
  background: #555555;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 12+ */
  /* IE10+ */
  background: radial-gradient(ellipse at center, #999999 0%, #555555 100%);
  /* W3C */
}

#fancybox-thumbs {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 8080;
  background: rgba(0, 0, 0, 0.3);
}

#fancybox-thumbs.bottom {
  bottom: 0px;
}

#fancybox-thumbs.top {
  top: 0px;
}

#fancybox-thumbs .outer {
  padding: 10px 34px 10px 30px;
}

#fancybox-thumbs .inner {
  width: 100%;
  overflow: hidden;
}

#fancybox-thumbs ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  left: 0;
  overflow: hidden;
}

#fancybox-thumbs ul li {
  float: left;
  padding: 3px;
  margin: 0 4px;
  list-style: none;
}

#fancybox-thumbs ul li a {
  display: block;
  overflow: hidden;
  outline: none;
  background: #222;
  box-shadow: 1px 1px 2px #000;
  zoom: 1;
}

#fancybox-thumbs ul li img {
  display: block;
  border: 0;
  margin: 0;
  padding: 0;
  border-radius: 2px;
  max-width: none;
}

#fancybox-thumbs ul li.fancybox-thumb-active {
  padding: 0;
}

#fancybox-thumbs ul li.fancybox-thumb-active a {
  opacity: 1;
  border-width: 6px;
  border-color: #fff;
}

.fancybox-thumb-prev, .fancybox-thumb-next {
  position: absolute;
  top: 10px;
  bottom: 10px;
  width: 20px;
  background: #222;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  display: none;
}

.fancybox-thumb-prev {
  left: 4px;
}

.fancybox-thumb-next {
  right: 4px;
}

.fancybox-thumb-prev:hover, .fancybox-thumb-next:hover {
  background: #111;
  background: rgba(0, 0, 0, 0.5);
}

.fancybox-thumb-prev span, .fancybox-thumb-next span {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 12px;
  margin-top: -6px;
  background-repeat: no-repeat;
}

.fancybox-thumb-prev span {
  left: 5px;
}

.fancybox-thumb-next span {
  right: 5px;
}

/* ---------------------------------- */
/* ----------- MODULE  CSS ---------- */
/* ---------------------------------- */
.moduleTable, .moduleTable * {
  box-sizing: border-box;
}

.moduleTable tr, .moduleTable td {
  height: auto !important;
}

.moduleTable > tbody > tr > td {
  vertical-align: top;
}

.twoColumn > tbody > tr > td {
  width: 50%;
}

.moduleTable img {
  width: 100% !important;
  height: auto !important;
}

.sidebarLeft > tbody > tr > td:first-child {
  width: 30%;
  padding-right: 3%;
}

.sidebarLeft > tbody > tr > td:last-child {
  width: 70%;
}

.sidebarRight > tbody > tr > td:first-child {
  width: 70%;
  padding-right: 3%;
}

.sidebarRight > tbody > tr > td:last-child {
  width: 30%;
}

.threeColumn > tbody > tr > td {
  width: 33%;
}

.twoColumn > tbody > tr > td:first-child, .threeColumn > tbody > tr > td:first-child {
  padding-right: 3%;
}

.twoColumn > tbody > tr > td:last-child, .threeColumn > tbody > tr > td:last-child {
  padding-left: 3%;
}

.menuTable > tbody > tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.06);
}

.menuTable > tbody > tr > td:last-child {
  width: 100px;
  vertical-align: bottom;
  text-align: right;
}

@media all and (max-width: 900px) and (min-width: 700px) {
  .moduleTable.threeColumn > tbody > tr > td {
    display: inline-block !important;
    width: 48% !important;
    box-sizing: border-box;
  }

  .moduleTable.threeColumn > tbody > tr > td:first-child {
    padding-right: 3%;
  }

  .moduleTable.threeColumn > tbody > tr > td:last-child {
    padding-left: 0;
  }

  .moduleTable.threeColumn > tbody > tr > td.thirdColumn {
    display: block !important;
    width: 98% !important;
  }
}
@media all and (max-width: 700px) {
  .moduleTable.twoColumn > tbody > tr > td, .moduleTable.threeColumn > tbody > tr > td, .moduleTable.sidebarLeft > tbody > tr > td, .moduleTable.sidebarRight > tbody > tr > td {
    display: block !important;
    width: 100% !important;
    padding: 10px 0;
  }

  .overflowTable td {
    white-space: nowrap;
    padding: 0 0.5em 0 0;
  }
}
@media all and (max-width: 980px) {
  .moduleTable .moduleTable.twoColumn > tbody > tr > td, .moduleTable .moduleTable.threeColumn > tbody > tr > td, .moduleTable .moduleTable.sidebarLeft > tbody > tr > td, .moduleTable .moduleTable.sidebarRight > tbody > tr > td {
    display: block !important;
    width: 100% !important;
    padding: 10px 0;
  }
}
.accordion * {
  transition: all 0.5s ease;
}

.accordion > tbody > tr {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.accordion > tbody > tr > td {
  display: block;
  width: 100%;
}

.accordion > tbody > tr > td:last-child {
  overflow: hidden;
  padding-top: 0;
}

.expand {
  display: block;
  margin-top: -200%;
  transition: all 2s ease-out;
}

.accordion > tbody > tr.on .expand {
  transition: all 0.7s ease-out;
  margin-top: 0;
  background: rgba(0, 0, 0, 0.06);
  padding: 0.8em 1.2em;
  border-radius: 1em;
}

.accordion > tbody > tr > td:first-child:before {
  content: "\f055";
  display: inline-block;
  font-family: FontAwesome;
  margin-right: 10px;
  font-size: 1.6em;
  transition: all 0.5s;
  color: #999;
}

.accordion > tbody > tr > td:first-child > *:first-child {
  display: inline-block;
}

.accordion > tbody > tr.on > td:first-child:before {
  content: "\f056";
}

.accordion > tbody > tr:hover > td:first-child:before {
  color: #333;
}

.accordion.readMoreAccordian > tbody > tr > td:first-child:after {
  content: "read more";
  display: block;
  margin-left: 3px;
  margin-top: 0;
  font-size: 0.9em;
  color: #999;
  transition: all 0.5s ease-out;
}

.accordion.readMoreAccordian > tbody > tr.on > td:first-child:after {
  margin-top: -10px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.accordion.readMoreAccordian > tbody > tr > td:hover:first-child:after {
  color: #333;
}

.accordion.readMoreAccordian > tbody > tr > td:first-child:before {
  display: none;
}

.responsiveTable th {
  text-align: left;
}

.responsiveTable tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 700px) {
  .responsiveTable tr {
    display: block;
    border-bottom: 4px solid rgba(0, 0, 0, 0.2);
  }

  .responsiveTable tr:first-of-type {
    display: none;
  }

  .responsiveTable td {
    display: block;
    border: none;
    line-height: 1.8em;
    width: 100%;
    padding-left: 90px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
  }

  .responsiveTable td:before {
    display: block;
    position: absolute;
    left: 0;
    width: 90px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .responsiveTable tr:nth-child(odd) {
    background: rgba(0, 0, 0, 0);
  }

  .responsiveTable td:nth-child(odd) {
    background: rgba(0, 0, 0, 0.05);
  }
}
/*
$darkTone:#1a2632;
$midTone:#22313F;
$lightTone:#34495E;
$highlightTone:#FFC35F;

$greyLightest:#eee;
$greyLight:#ccc;
$greyMid:#aaa;
$greyDark:#222;

$white:#fff;
$black:#000;
*/
/* ---------------------------------- */
/* ------ MAIN BODY OF WEBSITE ------ */
/* ---------------------------------- */
html {
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
}

body {
  background: #fff;
  font: 16px/1.6em BlinkMacSystemFont, "-apple-system", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #333;
  
}

.siteBottom a {
  color:;
}

.siteTop a {
  color:#fff;
}

 a{
   
   color:#500000;
 
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a:hover {
  color: ;
 
  
}

p {
  margin:0.3em 0;
}

icon {
  font-family: fontawesome;
}



/* ---------------------------------- */
/* ------------ HEADINGS ------------ */
/* ---------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 100;
  font-family: inherit;
  line-height: 1.1em;
  font-family: 'Lora', sans-serif;
  position: relative;
}

h1 {
  font-size: 2.7em;
  line-height: 1em;
  color:#500000;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight:300; 
  text-transform: ;  
  font-family: 'Abril Fatface', sans-serif;
}

h1 span {
  color:#500000;
  
}

/*
h1:after {
  content:"";
  height:3px;
  width:100px;
  margin:20px auto 0;
  display:block;
  background-color:#500000;

  
}

*/

h2 {
  font-size: 2em;
  line-height: 2em;
  color:#000;
  text-transform: uppercase;
  display: block;
}

h3 {
  font-size: 1.5em;
  line-height: 1.5em;
  color:#000;

  
}

h4 {
  font-size: 1.2em;
  line-height: 1.5em;
  color: #000;

}

h5 {
  font-size: 1.1em;
}

h6 {
  font-size: 1em;
  margin: .2em 0;
}

section {
  width: 100%;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  position: relative;
}

.textSection .siteContent, .categorySection .siteContent, .viewCart .siteContent {
  padding: 2em 20px;
}
.textSection .siteContent img, .categorySection .siteContent img, .viewCart .siteContent img {
  height: auto !important;
  max-width: 100%;
}

.contentWrap section:last-of-type > div:last-of-type .siteContent {
  padding-bottom: 2em;
}

/* ---------------------------------- */
/* ---------- CONTENT AREA ---------- */
/* ---------------------------------- */
.siteTop {
  background:#000;
}

.siteBottom {

  
}

.siteBottom .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: stretch;
      align-items: stretch;
  padding: 0 10px;
}

.siteContent, .searchContent {
  width: 100%;
  -ms-flex: 1 1 auto;
}

#subBannerHome img, #subBanner img {
  width: 100%;
  height: auto;
  display: block;
}

.buttonSection .siteContent, .buttonSection .container {
  padding: 0;
}

.desktop-hide, a.desktop-hide {
  display: none !important;
}

/* ---------------------------------- */
/* ------------ SIDEBAR ------------- */
/* ---------------------------------- */
.sidebar {
  width: 280px;
  padding: 2em 0.5em 15px;
  margin: 0px 15px 0 0;
  -ms-flex: 0,0,0;
      flex: 0,0,0;
  line-height: 1.5em;
  background: rgba(0, 0, 0, 0.1);
}

.textSection .sidebar, .photoSection .sidebar {
  display: none;
}

.sidebar .item, #outerSidebar .item {
  width: 100%;
  margin-top: 15px;
}
.sidebar .item .contentImg, #outerSidebar .item .contentImg {
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.sidebar .item .caption, #outerSidebar .item .caption {
  font-size: .9em;
}

#outerSidebar {
  display: none;
}

#cartContent .sidebar {
  display: none;
}

/*
@media (min-width:600px){
    .siteBottom {
      width: 100%;
      max-width: 1100px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      
    }

    .sidebar {
      display: none;
    }

    #outerSidebar {
      width: 200px;
      padding: 0 15px;
      flex-shrink: 0;
      background: rgba(0,0,0,0.1);
      display: inline-block;
    }

    .contentWrap {
      width: 100%;
      -ms-flex:0 1 auto;
    }
}

*/
/* ---------------------------------- */
/* -------- CONTACT DETAILS --------- */
/* ---------------------------------- */
.contact a:before, .contact div:before, .contact p:before {
  font-family: FontAwesome;
  display: inline-block;
  position: relative;
  margin-right: 1em;
  color: inherit;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.contact .mobileHide:before {  
  margin-right: 10px;
}

a.desktopHide, .desktopHide {
  display: none;
}

.phone:before {
  content: "\f095";
  /*phone*/
  content: "\f098";
  /*phone in square*/
}

.mobile:before {
  content: "\f10b";
  /*mobile*/
}

.email:before {
  content: "\f2b7";
  /*envelope open*/
  content: "\f2b6";
  /*envelope open solid*/
  content: "\f003";
  /*envelope in square*/
  content: "\f0e0";
  /*empty envelope*/
  content: "\f199";
  /*solid envelope*/
}

.fax:before {
  content: "\f1ac";
  /*fax*/
}

.address:before {
  content: "\f278";
  /*map*/
  content: "\f279";
  /*map solid*/
  content: "\f124";
  /*location arrow*/
  content: "\f041";
  /*map marker*/
}







#navToggleWrap{
  display:none!Important;
  
}



/* ---------------------------------- */
/* ---------- SOCIAL LINKS ---------- */
/* ---------------------------------- */

.socialLinks {
  width: 100%;
  position: relative;
  z-index: 2;
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*--- JUSTIFY CONTENT ---*/
  -webkit-box-pack: end;
          justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  /*--- END JUSTIFY CONTENT ---*/
  /*------ FLEX ALIGN -----*/
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  /*------ END FLEX ALIGN -----*/
  color: #f2f2f2;
  margin-top: 3px;
}

.socialLinks span {
  font-size: 1.1em;
  font-weight: 700;
  margin-right: 20px;
}

.socialLinks a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  vertical-align: top;
  margin: 0 2px;
}

.socialLinks a:hover:after {
  padding: 2px 0 0px 0;
  /* background:rgba(0,0,0,.3);*/
}

.socialLinks a:after {
  font-family: FontAwesome;
  width: 30px;
  height: 30px;
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*--- JUSTIFY CONTENT ---*/
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  /*--- END JUSTIFY CONTENT ---*/
  /*------ FLEX ALIGN -----*/
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  /*------ END FLEX ALIGN -----*/
  color: #fff;
  font-size: 1.6em;
  line-height: 1.5em;
  padding: 1px 0 1px 0;
}



/*-----social icons-----*/
.facebook:before {
  /*! content: "\f082"; */
  /*facebook square*/
  content: "\f09a";
  /*facebook f*/
}

#banner .instagram:before {
  content: "\f16d";
  /*instagram logo*/
  margin:0px!Important;
  
}

.instagram:before {
  content: "\f16d";
  /*instagram logo*/
  margin:;
  
}

.twitter:before {
  content: "\f081";
  /*twitter square*/
  content: "\f099";
  /*twitter bird*/
}

.googlePlus:before {
  content: "\f0d4";
  /*google plus square*/
  content: "\f0d5";
  /*google plus*/
}

.pinterest:before {
  content: "\f0d3";
  /*pinterest square*/
  content: "\f0d2";
  /*pinterest circle*/
}

.linkedIn:before {
  content: "\f08c";
  /*linkedIn square*/
  content: "\f0e1";
  /*linkedIn in*/
}

.youTube:before {
  content: "\f16a";
  /*youtube play*/
  content: "\f166";
  /*youtube square*/
  content: "\f167";
  /*youtube normal*/
}

.flickr:before {
  content: "\f16e";
  /*flicker dots*/
}

*/

/*-----social colours-----*/
.facebook {
  background: #49639E;
}

.instagram {
  background: ;
}

.twitter {
  background: ;
}

.googlePlus {
  background: #DD4B39;
}

.pinterest {
  background: #BD081C;
}

.linkedIn {
  background: #0177B5;
}

.youTube {
  background: #E22D24;
}

.flickr {
  background: #ff0084;
}

/* ---------------------------------- */
/* --Standard for HR line styling  -- */
/* ---------------------------------- */
hr {
  border: 0;
  height: 1px;
  color: #ccc;
  background-color: #ccc;
  width: 100%;
}

/* ---------------------------------- */
/* ----------- NAVIGATION ----------- */
/* ---------------------------------- */
#menu {
  position: fixed;
  z-index: 1000;
  right: 0;
  width: 100%;
  margin-top:140px;
  z-index: 101;
  box-sizing: border-box;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background-size:;
  
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%)  

}

.link0 #menu {
  background: ;
}

.sticky{
  position:fixed!important;

}


.shrink #menu {
  margin-top:0;
  background:#500000;
}




#menu nav {
  width: 100%;
  max-width:1200px;
  margin: 0 auto!important;
  box-sizing: border-box;
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*--- JUSTIFY CONTENT ---*/
  -webkit-box-pack: end;
          justify-content: space-around;
  -webkit-justify-content: space-around;
  -ms-flex-pack: end;
  /*--- END JUSTIFY CONTENT ---*/
  /*------ FLEX WRAP ------*/
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  /*------ END FLEX WRAP ------*/
}

#menu nav li {
  list-style: none;
  float: left;
  display: inline-block;
  margin: 0;
  text-align: center;
  position: relative;
}

#menu nav li a {
  display: inline-block;
  text-decoration: none;
  width: 100%;
  font-weight:400;
  padding: 10px 10px;
  color: rgba(255,255,255, 1);
  box-sizing: border-box;
  vertical-align: top;
  font-size: 0.9em;
  font-family: 'Lora', sans-serif; 
  text-transform: uppercase;
}

#menu nav li a:hover, .parent:hover > a  {
  color: #e4ab10;
}

#menu nav li.current a{
  color: #e4ab10;
}

#menu nav .parent > a:after {
  font-family: FontAwesome;
  margin-left: 8px;
  content: "\f107";
  line-height: 1em;
}



#menu nav .subContainer .current a {
  background: rgba(255, 255, 255, 0.1);
}

#mobileMenu {
  display: none;
}

/* ---------------------------------- */
/* ------------ SUB MENU ------------ */
/* ---------------------------------- */
#menu nav ul {
  position: absolute;
  width: 100%;
  min-width: 150px;
  margin: 0;
  padding: 0;
  display: none;
  font-size: .8em;
}

#menu .subContainer {
  background: rgba(0,0,0,0.8);
  margin-top: 10px;
  position: relative;
  display: inline-block;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

#menu .subContainer:after {
  position: absolute;
  top: -10px;
  left: 30px;
  width: 0px;
  height: 0px;
  
  content: "";
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid rgba(0,0,0,0.8);

}

#menu nav ul li {
  width: 100%;
  display: inline-block;
  line-height: 1.1em;
}
#menu nav ul li a {
  padding: 10px 10px;
  text-align: left;
}

/*-----------------------------------*/
/*------------ SIDE MENU ------------*/
/*-----------------------------------*/
.sideMenu li {
  width: 100%;
  list-style: none;
  margin-bottom: 5px;
  position: relative;
}
.sideMenu li a {
  width: 100%;
  display: inline-block;
  background: #333;
  text-decoration: none;
  color: #fff;
  padding: 10px;
  box-sizing: border-box;
}
.sideMenu li a:hover {
  background: #ccc;
  color: #333;
}
.sideMenu li ul {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 200px;
  width: 210px;
  margin: 0;
  padding: 0;
  display: none;
}
.sideMenu .subContainer {
  padding-left: 10px;
}
.sideMenu .current ul a {
  background: #666;
}
.sideMenu .current a, .sideMenu ul .current a {
  background: #222;
}

/* ---------------------------------- */
/* --------- PHOTO SECTION ---------- */
/* ---------------------------------- */
.contentImgRow .item {
  display: inline-block;
}
.contentImgRow .contentImg {
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  image-rendering: auto;
  margin: 0;
}
.contentImgRow .caption {
  font-size: .9em;
  margin-top: 5px;
}
.contentImgRow .caption:empty {
  display: none;
}

/*----------------------------------------------*/
/*--------------- ENQUIRY FORM -----------------*/
/*----------------------------------------------*/
#enquiry {
  width: 100%;
  max-width: 500px;
  background: rgba(0, 0, 0, 0.05);
  float: right;
  padding: 0;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: .8em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.enqHeader {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 12px 10px 12px;
  margin-bottom: 15px;
  font-size: 1.3em;
  font-family:'Abril Fatface';
  text-transform:;
}

.enqRow {
  width: 100%;
  overflow: hidden;
  padding: 3px 5px;
}

.enqRow.half {
  width: 50%;
  display: inline-block;
}

.enqLeft {
  padding: 0 5px;
  float: left;
  width: 25%;
  font-size: 1.2em;
}

.enqRight {
  width: 75%;
  float: left;
}

.enqRow.half .enqLeft, .enqRow.half .enqRight {
  width: 100%;
  font-size: 1em;
}

/*.enqLeft, .enqRight {
  width: 100%;
  font-size: 1em;
}
.enqLeft {
  line-height: 1.3em;
}
.enqRow {
  padding: 3px 10px;
}*/
#enquiry input,
#enquiry textarea,
#enquiry select {
  font-family: inherit;
}

#enquiry input, #enquiry textarea {
  width: 100%;
  border: none;
  padding: 7px 5px;
  background: #fff;
  -webkit-appearance: none;
  border-radius: 0;
  font-size: 16px;
}

input[type=text], input[type=tel], input[type=email], input[type=number], .select, textarea {
  transition: all 0.2s ease-in-out;
  background: #fff;
  color: #222;
  outline: 1px solid rgba(0, 0, 0, 0.05);
  border: none;
}
input[type=text]:hover, input[type=tel]:hover, input[type=email]:hover, input[type=number]:hover, .select:hover, textarea:hover {
  outline: 1px solid rgba(0, 0, 0, 0.2);
}
input[type=text]:focus, input[type=tel]:focus, input[type=email]:focus, input[type=number]:focus, .select:focus, textarea:focus {
  background: #eee;
  outline: 1px solid #FFC35F;
}

#enquiry textarea {
  height: 80px;
  padding: 0px 5px;
}

#enquiry input[type="radio"] {
  width: 15px;
  -webkit-appearance: radio;
  margin: 0;
  padding: 0;
}

#enquiry input[type="checkbox"] {
  -webkit-appearance: checkbox;
  width: 15px;
  margin: 0;
  padding: 0;
}

#enquiry input[type="submit"] {
  margin-bottom: 10px;
  border: 0;
  background:#500000!important;
  cursor: pointer;
}

#enquiry select {
  width: 100%;
}

/*-----Placeholder Styles-----*/
#enquiry ::-webkit-input-placeholder {
  color: #000;
  opacity: 0.6;
}

#enquiry :-moz-placeholder {
  color: #000;
  opacity: 0.6;
}

#enquiry ::-moz-placeholder {
  color: #000;
  opacity: 0.6;
}

#enquiry :-ms-input-placeholder {
  color: #000;
  opacity: 0.6;
}

/**
 * Custom styling for <select>s
 */
.select {
  position: relative;
}
.select:after {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 25px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  content: "\f078";
  border-left: 1px solid #ccc;
  font-family: fontawesome;
  pointer-events: none;
}
.select select {
  background: 0;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  width: 100%;
  padding: .5em;
  outline: 0;
}

/* ---------------------------------- */
/* ------------- FOOTER ------------- */
/* ---------------------------------- */

#footerTop{
  background:rgba(255,255,255,0.03);
  
}

footer {
  width: 100%;
  background: #500000;
  font-size: .8em;
  padding: 0px 0;
}
footer .container {
  overflow: hidden;
  display: -ms-flex;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}

/*-------- FOOTER TEXT STYLES ---------*/
footer {
  color: #fff;
}

#footerBottom a {
  color: inherit;
  opacity: 0.5;
  text-decoration: none;
}
#footerBottom a:hover {
  color: inherit;
  opacity: 1;
}

/*------------ FOOTER MENU ------------*/
footer nav {
  width: 60%;
  padding:20px 0;
  display: inline-block;
}
footer nav li {
  list-style: none;
  float: left;
  display: inline-block;
}
footer nav li a {
  text-decoration: none;
  padding: 5px 10px;
  display: inline-block;
}

.footerRight {
  text-align: right;
  margin-right: 10px;
}

/* ---------------------------------- */
/* ---------------------------------- */
/* ---------- CUSTOM FOOTER --------- */

.cfwrap {
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items:stretch;
      -ms-flex-align:stretch;
          align-items:stretch;
  -webkit-flex-flow:row wrap;
      -ms-flex-flow:row wrap;
          flex-flow:row wrap;
  padding:30px 0;
  width:100%;
  
}

.cfframe {
  width:22%;
  box-sizing:border-box;
  padding:0 10px;
}

.cfframe h2 {
  font-size:1.6em;
  color:#fff;
  margin:0 0 15px;
  font-family: 'Abril Fatface', sans-serif!important;
  font-weight:300;
  text-transform:capitalize;  

}

.cfframe h4{
  margin-bottom:0px;
  color:rgba(255,255,255,0.8);

  
}

.cfframe p,
.cfframe a {
  font-size:1em;
  color:rgba(255,255,255,0.7);
  text-decoration:none;
}

.cf3 p {
  margin-bottom:;
    color:#999;

}

.cf1 a:before,
.cf2 a:before,
.cf3 a:before,
.cf4 a:before {
  font-family:FontAwesome;
  margin-right:10px;
  width:15px;  
  font-size:1.2em;
  display:inline-block;
  color:#500000;
}

.cf2 span {
  display:block;
  box-sizing:border-box;
  padding-left:20px;
  
}

.cf4 .facebook:after{
  content: "\f230"; }

.twitter:after {
  /*! content: "\f099"; */ }

.instagram:after {
  content: ""; }



/* ----------------------------------------- */
/* -----------------TO TOP ----------------- */
/* ----------------------------------------- */
#toTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
}

#toTop:before {
  content: "\f077";
}

/* ---------------------------------- */
/* ---------  list styling  --------- */
/* ---------------------------------- */
.siteBottom .siteContent li {
  margin-bottom: 0.5em;
  position: relative;
}

.siteBottom .siteContent ul {
  list-style: none;
}
.siteBottom .siteContent ul li:before {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 0.8em;
  margin-right: 10px;
  color: #000;
  position: absolute;
  top: 0;
  left: -20px;
}

/*-----------------------------------*/
/*-------------- GRID ---------------*/
/*-----------------------------------*/
.grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.grid:after {
  /* Or @extend clearfix */
  content: "";
  display: table;
  clear: both;
}
.grid.justify {
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.grid.center {
  -ms-flex-pack: center;
      justify-content: center;
}

.grid [class*='col-'], .contentImgRow .item, .cartThumb {
  float: left;
  margin: 5px;
}

.col-1 {
  width: 100%;
  width: calc(100% - 10px);
}

.col-2 {
  width: 50%;
  width: calc(50% - 10px);
}

.col-3 {
  width: 33.33333%;
  width: calc(33.33333% - 10px);
}

.col-3x2 {
  width: 66.66%;
  width: calc(66.66% - 10px);
}

.col-4, .contentImgRow .item, .cartThumb {
  width: 25%;
  width: calc(25% - 10px);
}

.col-4x3 {
  width: 75%;
  width: calc(75% - 10px);
}

.col-5 {
  width: 20%;
  width: calc(20% - 10px);
}

.col-5x2 {
  width: 40%;
  width: calc(40% - 10px);
}

.col-5x3 {
  width: 60%;
  width: calc(60% - 10px);
}

.col-5x4 {
  width: 80%;
  width: calc(80% - 10px);
}

.col-6 {
  width: 16.666%;
  width: calc(16.666% - 10px);
}

.col-6x5 {
  width: 83.33%;
  width: calc(83.33% - 10px);
}

/* ---------------------------------- */
/* -------- BUTTONS ------- */
/* ---------------------------------- */
.button,
#enquiry input[type="submit"],
.basicFrame,
h6 a {
  display: inline-block;
  cursor: pointer;
  line-height: 1em;
  padding: 0.8em 1.6em;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  font-weight: normal;
}

* a.iconOnly {
  padding: 0.8em 0em;
  width: 2.8em;
}
* a.iconOnly:before {
  margin-right: 0;
}

/*primary button*/
.butS1,
a.basicFrame,
#enquiry input[type="submit"],
body .cartBtn.green,
body .cartBtn,
.cartItemAdd,
.checkoutNext,
.editDetails,
.saveDetails,
div button,
.blogBtn .button,
#toTop,
h6 a {
  color: #fff;
  background:#e4ab10;
  
  transition: all .2s ease;
}
.butS1:hover,
a.basicFrame:hover,
#enquiry input[type="submit"]:hover,
body .cartBtn.green:hover,
body .cartBtn:hover,
.cartItemAdd:hover,
.checkoutNext:hover,
.editDetails:hover,
.saveDetails:hover,
div button:hover,
.blogBtn .button:hover,
#toTop:hover,
h6 a:hover {
  color: #fff;
}
.butS1:active,
a.basicFrame:active,
#enquiry input[type="submit"]:active,
body .cartBtn.green:active,
body .cartBtn:active,
.cartItemAdd:active,
.checkoutNext:active,
.editDetails:active,
.saveDetails:active,
div button:active,
.blogBtn .button:active,
#toTop:active,
h6 a:active {
  color: #fff;
}

.select:after {
  color: #fff;
}

.select:hover:after {
  color: #fff;
}

.select:active:after {
  color: #fff;
}

/*secondary button*/
.butS2,
body .cartBtn.grey,
.cartItemPrev,
.checkoutPrev,
.cartBtnHL.resumeShopping,
.cartItemUpdate,
.openCheckout,
.blogNavigation a {
  background:#e4ab10;
  color:#fff;
  font-family: 'roboto';
  font-weight:;
  letter-spacing:2px;
}
.butS2:hover,
body .cartBtn.grey:hover,
.cartItemPrev:hover,
.checkoutPrev:hover,
.cartBtnHL.resumeShopping:hover,
.cartItemUpdate:hover,
.openCheckout:hover,
.blogNavigation a:hover {
  color: #fff;
  background:#500000;
}
.butS2:active,
body .cartBtn.grey:active,
.cartItemPrev:active,
.checkoutPrev:active,
.cartBtnHL.resumeShopping:active,
.cartItemUpdate:active,
.openCheckout:active,
.blogNavigation a:active {
  color: #fff;
  background: #000;
}

/*inverted button*/
.butS3 {
  background: none;
  border: 1px solid #fff;
  color: #fff;
}
.butS3:hover {
  color: #000;
  background: #fff;
  border: 1px solid #fff;
}
.butS3:active {
  color: #000;
  background: #FFC35F;
  border: 1px solid #FFC35F;
}

/*---- Graphic Button & Shop Category, Item----*/
.butFrame, .cartThumb {
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #fff;
  border: 1px solid #EAEAEA;
}
.butFrame:hover, .cartThumb:hover {
  color: #fff;
  background: ;
}

.butHeading {
  line-height: 1em;
  padding: 1.1em 0.4em;
}

.cartThumb.item {
  color: #222;
  background: #ccc;
}
.cartThumb.item:hover {
  background: #eee;
}

.imageFrame {
  background: #fff;
}

.butImage, .cartThumbs .image {
  width: 100%;
  height: 0;
  padding-bottom: 130%;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.cartThumbs .cartThumb .imageFrame .image {
  background-size: contain !important;
}

.cartThumb .banner {
  background: #4183d7;
  color: #eee;
}

/*---- Shop Side Menu Colour ----*/
.categoryMenu li.current > a {
  background: #999;
  color: white!important;
}

.categoryMenu li a{
  color:#333!important;
  
}

.categoryMenu li > a:hover {
  background: #999;
  color: white;
}

/*---- Shop Other ----*/
.viewCartRowHeader {
  background: #333;
  color: #fff;
}



/* ---------------------------------- */
/* -------- FOOTER BUTTONS ------- */
/* ---------------------------------- */
footer .contact > a,
.basicFrame,
#enquiry input[type="submit"],
body .cartBtn.green,
body .cartBtn,
#viewCart .viewCart,
.cartItemPrev,
.cartItemAdd,
.checkoutNext,
.cartItemMore,
h6 a  {
  margin: 3px 0;
  display: inline-block;
  cursor: pointer;
  line-height: 1em;
  padding: 0.8em 1.6em !important;
  text-decoration: none;
  text-align: center;
  font-weight:700;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-transform: uppercase;
}

footer .contact .iconOnly:before {
  margin-right: 0;
}

footer .contact .iconOnly {
  padding: 0.8em 0em !important;
  width: 2.8em;
}


/* ---------------------------------- */
/* -------- GRAPHICAL BUTTONS ------- */
/* ---------------------------------- */
footer .contact > a,
.basicFrame,
#enquiry input[type="submit"],
body .cartBtn.green,
body .cartBtn,
#viewCart .viewCart,
.cartItemPrev,
.cartItemAdd,
.checkoutNext,
.cartItemMore,
h6 a  {
  margin: 3px 0;
  display: inline-block;
  cursor: pointer;
  line-height: 1em;
  padding: 0.8em 1.6em !important;
  text-decoration: none;
  text-align: center;
  font-weight:700;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-transform: uppercase;
}

footer .contact .iconOnly:before {
  margin-right: 0;
}

footer .contact .iconOnly {
  padding: 0.8em 0em !important;
  width: 2.8em;
}


/* -------- GRAPHICAL BUTTONS ------- */


.buttons * {
  transition: all .5s ease;
}

.buttons {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  
}

.butFrame {
  width: 24%;
  position: relative;
  cursor: pointer;
  margin: 50px auto 20px;
  overflow: hidden;
  font-family: inherit;
  font-size: 1em;
  border:none;
  background:#000;

}

.butFrame *
{
  transition: .5s ease;
}

.butFrame img {
  width: 100%;
  display: block;
  opacity:0.7;
  vertical-align: bottom;
}

.butFrame .butHeading {
  position: absolute;
    opacity:1;
  font-family: 'Abril Fatface', sans-serif!important;
  font-size:1.5em;
  color:#fff; 
  font-weight:300;
  text-transform: ;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30%;
  padding-bottom:;
  top: auto;
  background: rgba(0, 0, 0, 0);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.butFrame .butText {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  opacity: 0;
  background: rgba(80,0,0,0.85);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  
}

.butFrame .butText p {
  width: 80%;
  padding: 0px 0;
  color: rgba(255,255,255, 0.9);
    font-family: 'roboto', sans-serif!important;
  letter-spacing:2px;
  text-transform:uppercase;
  font-family: inherit;
  font-weight: 300;
  font-size: 0.8em;
  line-height: 1.6em;
  text-align: center;
  border-top: 1px solid rgba(255,255,255, 0.1);
  border-bottom: 1px solid rgba(255,255,255, 0.1);
}


.butFrame:hover .butHeading {
  opacity:0;
}

.butFrame:hover .butText {
  opacity: 1;
}

.butFrame:hover .butText p {
  padding: 25px 0;
}

*/

/* MEDIA QUERIES */

@media all and (max-width: 950px) and (min-width: 701px){

  .butFrame .butText p {
  font-size: 0.85em;
  }
  
}

@media all and (max-width: 700px) and (min-width: 0px){
  
  .butFrame {
    display:block;
    width:100%;
  }
  
}


/* ---------------------------------- */
/* ---------- VIEW CART BTN --------- */
/* ---------------------------------- */
#banner #viewCart {
  position: absolute;
  top: ;
  right: 0;
  overflow: hidden;
  z-index: 1000; 

}

.viewCartSection a {
 color:#fff!important;
  
}

#viewCart:before {
  content: "\f290";
  /*bag*/
  content: "\f07a";
  /*cart*/
  font-family: fontawesome;
  margin-right: .5em;
  color:#e4ab10;
}



.viewCartSection {
    padding:0px!important;
    width: 100%;  
  font-family:'roboto'!important;
  text-transform: uppercase;
  text-align:right;
  position:absolute;  
  font-size:0.8em!important;
  z-index:120;
  margin-top:10px!important;
  margin-right:20px;
  box-sizing: border-box;
  background:!important;
}


.cartThumbs .cartThumb .info .name {
  color:#333!important;
  font-family:'Abril Fatface';
  text-transform: uppercase;
  
}
/* ---------------------------------- */
/* ------------- BANNER ------------- */
/* ---------------------------------- */
#banner {
    background: ;
    z-index:99;
  position:absolute;


}

#banner .container {
  max-width: 1200px !important;
  position:relative;
  width:100%;


}
#subBannerHome .container {
  max-width: 100% !important;
}

#subBannerHome p > img, #subBanner p > img {
  width: 100%;
  height: auto;
  display:block;
}

#subBanner{
  height:400px;
  background:url(files/sl4.jpg) center no-repeat;
  background-size:cover;
  opacity:0.5;
}


.link0 .subBannerTextContainer{
  display:none;
  
}

.subBannerTextContainer{
  position:absolute;
  display:block;
  width:100%;
  margin:0 auto;
  z-index:9;
  top:250px;
  
  
}

.subBannerText{
  color:#fff;
  font-weight:300;
  margin:20px 0;
  font-family: 'Abril Fatface', sans-serif;
  margin:0 auto;
  line-height:1.3em;
  font-size:2.5em;
  text-align:center;
  text-transform:;
  
}

.subBannerText span{
  color:#e4ab10;
  font-weight:bold;
 
}

.subBannerText .clickHere{
  display:none;
}

.topBar {
  /*background: #101010;
  padding: 2px 0;*/
}



 #banner .contact{
  left: 0px;
  top:15px;
  display: block;
  position: absolute;
  margin-left:20px;
   display:none;
}

#banner .phone{
  font-size:1.4em;
    font-weight:normal;
   color:#fff;

  
}

#banner .phone:before{
  display:none;
  
}

#banner .phone span{
  font-weight:bold;
  
}

#banner .enquire-trigger{
  text-transform:uppercase;
  font-family:'Abril Fatface';
  padding:10px 20px;
  color:#fff;
  font-size:0.9em!important;
  border-radius:30px;
  
}

  .enquire-trigger:before{

 color:#500000!important;
  display:none!important;
}

 #section1 .enquire-trigger:hover{

 background:rgba(228,171,16,0.7);

}



.logoMobile{
  display:none;
  
}


.logo, .contactContainer {  
  display: inline-block;
}

 .logo {
  position: relative !important;
  display:block!Important;
  z-index: 105;
  top: 0px; 
  margin:0 auto;
  width:200px;
  padding: 10px 10px 50px;

}



 #logo img{
  width:100%;
  max-width:;
  
}



.logo #logo, .logo img {
  width: 100%;
  height: auto;
}



a.logo:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

a.logo {
  position: relative;
  display: block;
}




.contactContainer {
  float: right;
}
.contact a, .contact div {
  text-decoration: none;
}
#banner a {
  cursor: pointer;
}

.mobileHide.phone span {  
  font-weight: 900;
}
.phone a {
  padding: 0;
  margin: 0;
  background: none;
  color: inherit;
  font-size: 1em;
  text-decoration: none;
  border: 0px solid red;
}



/* ---------------------------------- */
/* -------- SLIDESHOW STYLES -------- */




/*----flick animation----*/




.flick-title {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.flickerplate li.active .flick-title {
  -webkit-animation: flickAnimation 1s forwards ease-out;
          animation: flickAnimation 1s forwards ease-out;
}

@-webkit-keyframes flickAnimation {
  0% {
    opacity:0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0); 
    -webkit-transform: translate(0, -0.2em); 
  }

  100% {
    opacity:1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100); 
    -webkit-transform: translate(0, 0); 
  }
}

@keyframes flickAnimation {
  0% {
    opacity:0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0); 
            -webkit-transform: translate(0, -0.2em); 
                    transform: translate(0, -0.2em);
  }

  100% {
    opacity:1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100); 
            -webkit-transform: translate(0, 0); 
                    transform: translate(0, 0);
  }
}


.flick-sub-text {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.flickerplate li.active .flick-sub-text {
  -webkit-animation: flickAnimation2 1s 0.5s forwards ease-out;
          animation: flickAnimation2 1s 0.5s forwards ease-out;
}

@-webkit-keyframes flickAnimation2 {
  0% {
    opacity:0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0); 
    -webkit-transform: translate(0, 0.5em); 
  }

  100% {
    opacity:1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100); 
    -webkit-transform: translate(0, 0); 
  }
}

@keyframes flickAnimation2 {
  0% {
    opacity:0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0); 
            -webkit-transform: translate(0, 0.5em); 
                    transform: translate(0, 0.5em);
  }

  100% {
    opacity:1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100); 
            -webkit-transform: translate(0, 0); 
                    transform: translate(0, 0);
  }
}




/*---- end flick animation----*/



.mainSlider {
  position: relative;
  z-index:80;
}

.mouse {
  position: absolute !important;
  z-index: 100;
  top: auto;
  bottom: 40px; 
  left: 0; 
  right: 0;
  width: 20px;
    text-decoration: none!important;

  margin: auto;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.mouse:hover {
  bottom: 30px;
}

.mouse #mouse {
  width: 100%;
  height: auto;
}

a.mouse:after {
  content: "\f107";
  color:#fff;
  font-size:3em;
  font-family:fontAwesome;
  position: absolute;
  text-decoration: none!important;
  top: ;
  right: 0;
  bottom: 10px;
  left: 0;
}

a.mouse {
  position: relative;
  display: block;
}

/*===============================*/
/*=== FLICKERPLATE STYLES ===*/
/*==============================*/

.mainSlider .flickerplate, .flick-inner {
    /*Adjust This To Suit % Images*/

    padding-bottom: 45% !important;
  padding-bottom: 85vh !important;
    height: 0;
}
.mainSlider .flickerplate {
  position: relative;
  width: 100%;
  background-color: #000;
  overflow: hidden;
  
}

.flickerplate ul.flicks {
  width: 10000%;
  height: 100%;
  padding: 0px;
  margin: 0px;
  list-style: none;
  
}
.flickerplate li {
  float: left;
  width: 1%;
  height: 100%;
  background-position: center;
  background-size: cover;
  display: table;
}
.flick-inner {
  height: 0;
  background:rgba(0,0,0,0.4);
  color: #fff;
  display: table-cell;
  vertical-align: middle;
  
 
}

.flick-content {
  position: absolute;
  z-index: 99;
  top: auto;
  bottom: 25%;
  left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  margin: auto;
  height: auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
  display: -ms-flexbox;
  -ms-flex-pack: center;
  -ms-flex-direction: column;
  padding: 0 5px;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  
}

.centeredText .flick-content {
  left: 0;
  right: 0;
  top: 30%;
  bottom: 0%;
  width: 35em;
}

.centeredText .flick-title{
    width:100%;

}

.flick-title {
  text-align: left;
  font-size: 5em;
  width:40%;
  letter-spacing:-2px;
  font-weight: 300;
  text-transform:;
  line-height: 0.8em;
  color: #fff;
  font-family: 'Abril Fatface', sans-serif;
}

.flick-title span {
  color: #e4ab10;
}



.flick-sub-text {
  text-align: left;
  font-size: 1.4em;
  margin-top:20px;
  width:40%;
  font-weight: 400;
  
  line-height: 1.4em;
  color: #fff !important;
  font-family:"Lora", serif;
  
}

.flickerplate .butS2 {
  font-size:0.8em;
  margin-top:10px;
  background:#500000;
  
}

.flickerplate .butS2:hover {

  color:#fff;
  background:#e4ab10;
  
}

.flickerplate .butS2:before{
  display:none;
  
}

.flickerplate ul.flicks>li .flick-title span.flick-block-text, .flickerplate ul.flicks>li .flick-sub-text span.flick-block-text {
  padding: 12px 18px;
  background-color: rgba(0,0,0,0.6)
}
.flickerplate .arrow-navigation {
  position: absolute;
  height: 80px;
  width: 20px;
  bottom: 70px;
  right: 0;
  z-index: 100;
  overflow: hidden
}
.flickerplate .arrow-navigation .arrow {
  display: block;
  height: 100%;
  width: 90%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
    position: relative;
}
.flickerplate .arrow-navigation .arrow:before {
  font-size: 1.2em;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  font-family: FontAwesome;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
}

.flickerplate.flicker-theme-dark .arrow-navigation .arrow:before {
  color: #333;
}

.flickerplate .arrow-navigation:hover, .flickerplate .arrow-navigation .arrow:hover {
  cursor: pointer
}
.flickerplate .arrow-navigation.left {
  right: 130px;
}
.flickerplate .arrow-navigation.left .arrow {
/*   opacity: 0; */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  margin: 0px 0px 0px 20%;
}

.flickerplate .arrow-navigation.left .arrow:before {
  content: "\f104";
}

.flickerplate .arrow-navigation.right {
  right: 90px;
}
.flickerplate .arrow-navigation.right .arrow {
/*   opacity: 0; */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  margin: 0px 0px 0px -20%;
}

.flickerplate .arrow-navigation.right .arrow:before {
  content: "\f105";
}

.flickerplate .arrow-navigation.left.hover .arrow {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  margin: 0px 0px 0px 20%
}
.flickerplate .arrow-navigation.right.hover .arrow {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  margin: 0px 0px 0px -20%
}
.flickerplate .dot-navigation {
  position: absolute;
  bottom: 40px;
  right: 60px;
  left: auto;
  width: 250px;
  text-align: center;
  z-index: 100;
}
.flickerplate .dot-navigation ul {
  text-align: center;
  list-style: none;
}
.flickerplate .dot-navigation ul li {
  display: inline-block;
  float: none;
  width: 20px;
}
.flickerplate .dot-navigation .dot {
  width: 14px;
  height: 14px;
  margin: 0px 6px;
  background-color: rgba(255,255,255,0.2);
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out
}
.flickerplate .dot-navigation .dot:hover {
  cursor: pointer;
  background-color: #500000;
}
.flickerplate .dot-navigation .dot.active {
  background-color: #500000
}
.flickerplate .dot-navigation.left, .flickerplate .dot-navigation.left ul {
  text-align: left
}
.flickerplate .dot-navigation.right, .flickerplate .dot-navigation.right ul {
  text-align: right
}
.flickerplate.flicker-theme-dark .arrow-navigation.left .arrow {
  background-image: url("arrow-left-dark.png")
}
.flickerplate.flicker-theme-dark .arrow-navigation.right .arrow {
  background-image: url("arrow-right-dark.png")
}
.flickerplate.flicker-theme-dark .dot-navigation .dot {
  background-color: rgba(0,0,0,0.12)
}
.flickerplate.flicker-theme-dark .dot-navigation .dot:hover {
  background-color: rgba(0,0,0,0.6)
}
.flickerplate.flicker-theme-dark .dot-navigation .dot.active {
  background-color: #000
}
.flickerplate.flicker-theme-dark ul.flicks li .flick-inner {
  color: rgba(0,0,0,0.9)
}
.flickerplate.flicker-theme-dark ul.flicks li .flick-inner .flick-content .flick-sub-text {
  color: rgba(0,0,0,0.9)
}
.flickerplate.flicker-theme-dark ul.flicks li .flick-inner .flick-content .flick-title span.flick-block-text, .flickerplate.flicker-theme-dark ul.flicks li .flick-inner .flick-content .flick-sub-text span.flick-block-text {
  background-color: rgba(255,255,255,0.5)
}
.flickerplate ul.flicks li.flick-theme-dark .flick-inner {
  color: rgba(0,0,0,0.9)
}
.flickerplate ul.flicks li.flick-theme-dark .flick-inner .flick-content .flick-sub-text {
  color: rgba(0,0,0,0.9)
}
.flickerplate ul.flicks li.flick-theme-dark .flick-inner .flick-content .flick-title span.flick-block-text, .flickerplate ul.flicks li.flick-theme-dark .flick-inner .flick-content .flick-sub-text span.flick-block-text {
  background-color: rgba(255,255,255,0.5)
}
.flickerplate.animate-transform-slide ul.flicks {
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0%, 0px, 0px);
  -webkit-transform: translate3d(0%, 0px, 0px);
  -webkit-transition: -webkit-transform 0.6s ease-out;
  transition: -webkit-transform 0.6s ease-out;
  transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out, -webkit-transform 0.6s ease-out
}
.flickerplate.animate-transition-slide ul.flicks {
  position: relative;
  left: 0%;
  -webkit-transition: left 0.4s ease-in-out;
  transition: left 0.4s ease-in-out
}
.flickerplate.animate-jquery-slide ul.flicks {
  position: relative;
  left: 0%
}
.flickerplate.animate-scroller-slide {
  padding-bottom: 0px;
  overflow: auto
}
.flickerplate.animate-scroller-slide ul.flicks {
  position: auto
}
.flickerplate.animate-transition-fade ul.flicks {
  position: relative
}
.flickerplate.animate-transition-fade ul.flicks li {
  float: none;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
}
.flickerplate.animate-transition-fade.fade-inited ul.flicks li {
  -webkit-transition: opacity 0.8s linear;
  transition: opacity 0.8s linear
}
.flickerplate.animate-transition-fade.fade-inited ul.flicks li.first-flick {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"
}
.flickerplate.animate-jquery-fade ul.flicks {
  position: relative
}
.flickerplate.animate-jquery-fade ul.flicks li {
  float: none;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
}




/* ---------------------------------- */
/* ---------------------------------- */
/* ----------- ULTIMATE CSS --------- */
/* ---------------------------------- */
/* ---------------------------------- */
/* ----------- CUSTOM CSS ----------- */

.addtohome{
  display:none;
  
}

.abdelrehim {
  width:300px;
  position:absolute;
  bottom:0px;
  right:50px;
  
}



/* ---------------------------------- */
/* ----------- SIDE ICONS ----------- */
/* ---------------------------------- */




.sideIcons {
  position: fixed;
  z-index: 1005;
  top: 40%;
  right: -130px;
  font-size:1.2em;
}

.sideIcons a {
  display: block !important;
  margin: -1px 0 0;
  background:#008378;
  padding: 10px 10px;
  color: #fff;
    border-radius: 0;

  text-transform: uppercase;
  font-family: 'Fjalla One', sans-serif;
  -webkit-transform: translatex(0px);
          transform: translatex(0px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sideIcons a:first-child {
  border-radius: 5px 0 0 0;
}

.sideIcons a:last-child {
  border-radius: 0 0 0 5px;
}

.sideIcons a:hover {
  background: #22313F;
  color: #fff;
  -webkit-transform: translatex(-130px);
          transform: translatex(-130px);
  border-radius: 5px 0 0 5px;
}

.sideIcons a:before {
  margin-right: 15px;
  width: 20px;
  display:inline;
  text-align: center;
}





/* ---------------------------------- */
/* ------ BACKGROUND IMAGE CSS ------ */
/* ---------------------------------- */

.siteBottom section * {
  box-sizing: border-box;
}

.siteBottom section {
  position: relative;
}

.M_full_img, .M_left_img, .M_left_imgC, .M_right_img, .M_right_imgC {
  padding: 60px 0;
}

.backgroundImage {
  position: absolute;
  background-size: cover;
  background-position: center center;
}

/*-- full width image --*/

.M_full_img .backgroundImage {
  top: 0; left: 0; right: 0; bottom: 0;
}

/*-- image left --*/

.M_left_img .backgroundImage {
  top: 0; left: 0; bottom: 0; 
  width: 50%;
}


.M_left_img .backgroundImage:after{
  position: absolute;
  content:"";
  top:0;
  left:0;
  width:100%;
  height: 100%;
  
}

.M_left_img .backgroundImage:before {
  
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;

   -webkit-flex-direction: row;
   -ms-flex-direction: row;
    flex-direction: row;

   -webkit-align-items: center;
   -ms-flex-align: center;
    align-items: center;

   -webkit-justify-content: center;
   -ms-flex-pack: center;
    justify-content: center;
  
  position: absolute;
  content:"The best, strongest & most durable dog beds in Australia";
  top:0;
  right:0;
  width:50%;
  height: 100%;
  z-index: 1;
  color:#fff;
  text-align: center;
  margin: auto 15%;
  line-height: 1.3em;
  text-transform:;
  font-weight:300;
  font-family: 'Abril Fatface', sans-serif;
  color:#fff;
  font-size: 2.5em;
  

}
.red {
  padding:200px 10vw 0;
  position:absolute!important;
  font-family:cinzel;
  font-size:2.5em;
  width:;
}


.red span {
    margin: 0 0.2rem;
  color:#500000!important;
}


.M_left_img .container {
  width: 100%;
  margin: 0 auto;
  padding: 2em 3%;
  
}

.M_left_img .container .siteContent {
  width:44%;
  margin-left:56%;
}


/*-- image right --*/



.M_right_img .backgroundImage {
  top: 0; right: 0; bottom: 0; 
  width: 50%;
}

.M_right_img {
  background:;
}


.M_right_img .backgroundImage:after{
  position: absolute;
  content:"";
  top:0;
  left:0;
  width:100%;
  height: 100%;
  background:;
  
}

.M_right_img .backgroundImage:before {
  
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;

   -webkit-flex-direction: row;
   -ms-flex-direction: row;
    flex-direction: row;

   -webkit-align-items: center;
   -ms-flex-align: center;
    align-items: center;

   -webkit-justify-content: center;
   -ms-flex-pack: center;
    justify-content: center;
  
  position: absolute;
  content:"Our beds have been marketed continuously since 1975";
  top:0;
  left:0;
  width:50%;
  height: 100%;
  font-weight:300;
  text-transform: ;
  z-index: 1;
  font-family: 'Abril Fatface', sans-serif;
  color:#fff;
  font-size: 2.5em;
  text-align: center;
  margin: auto 15%;
  line-height: 1.3em;
  

}

.M_right_img-2 .backgroundImage:before {
content:"Tramploine Dog Beds";
  
}


.M_right_img-1 .red {
  width:50%;
  margin-left: 50%;
  position: relative;
  top:0;
  color:#fff;
  z-index: 1;
  text-align:center;

     display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;

   -webkit-flex-direction: row;
   -ms-flex-direction: row;
    flex-direction: row;

   -webkit-align-items: center;
   -ms-flex-align: center;
    align-items: center;

   -webkit-justify-content: center;
   -ms-flex-pack: center;
    justify-content: center;

}




.M_right_img .container {
  width: 100%;
  margin: 0 auto;
  /*! padding: 2em 3%; */
  
}

.M_right_img .container .siteContent {
  width:44%;
}


/*-- image left cover --*/

.M_left_imgC .backgroundImage {
  top: 0; left: 0; right: 0; bottom: 0; 
}

.M_left_imgC .container {
  width: 50%;
  margin: 0 0 0 auto;
  padding: 0 5%;
}

/*-- image right cover --*/

.M_right_imgC .backgroundImage {
  top: 0; left: 0; right: 0; bottom: 0; 
}

.M_right_imgC .container {
  width: 50%;
  margin: 0 auto 0 0;
  padding: 0 5%;
}

@media all and (max-width: 700px){
  
  .M_full_img, .M_left_img, .M_left_imgC, .M_right_img, .M_right_imgC {
    padding: 40px 0;
  }  

  .M_left_img, .M_right_img {
      padding: 0;
  }

  .siteBottom section .container {
    padding: 40px 20px;
    width: 100%;
  }

  .M_left_img .backgroundImage, .M_right_img .backgroundImage {   
      position: relative;
      width: 100%;
      height: 250px;
  }

  .M_left_imgC .backgroundImage {
      background-position: 90% 50%;
  }  
  
  .M_right_imgC .backgroundImage {
      background-position: 10% 50%;
  } 

}





/* Drop Down Enquiry */

#enquire-dropdown {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background: none repeat scroll 0 0 rgba(0,0,0, 0.95);
    display: none;
    overflow: hidden;
}

#enquire-dropdown .container {
    width: 100%;
    height: 100%;
    height: 100vh;
    max-width: 1100px !important;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    position: initial;
}

#enquire-dropdown .flexRow {
    width: 100%;
    text-align: center;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    /*-webkit-align-items: center;
   -ms-flex-align: center;
           align-items: center;*/
    -ms-flex-pack: justfiy;
    -webkit-box-pack: justify;
            justify-content: space-between;
}

#enquire-dropdown .col-2 {
    width: calc(50% - 20px);
    margin: 10px;
}

.dropContact a {
  margin:10px 0;
  text-decoration:none;
   line-height:2em;
  
}

.dropContact a:before {
  font-family:fontAwesome;
  margin-right:10px;
}

.dropContact .facebook, .dropContact, .dropContact {
  
  
}

#enquire-dropdown #enquiry {
    color: #fff;
    background: none;
    font-size: 1em;
    width: 100%;
    max-width: 450px;
    margin: auto;
    float: none;
}

.dropContact {
    text-align: center;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,0.1);
}

#enquire-dropdown h3 {
    color: #e4ab10;
    margin-bottom: 25px;
    font-size: 1.8em;
    font-weight: inherit;
    text-align: center;
  font-weight:300;
  font-family: 'Abril Fatface', sans-serif;
  /*! text-transform: uppercase; */
}

#enquire-dropdown #enquiry input,
#enquire-dropdown #enquiry textarea {
    border: none;
    padding: 7px 15px 7px 45px;
    -webkit-appearance: none;
    border-radius: 15px;
    font-family: inherit;
    background: rgba(0,0,0, 0.3);
    color: #fff;
    width: 100% !important;
    font-size: 16px;
    box-sizing: border-box;
}

#enquire-dropdown #enquiry input[type="submit"] {
    margin-bottom: 10px;
    border: 0;
    color: #fff;
    padding: 10px 0;
    cursor: pointer;
    width: 100%;
    border: 1px solid rgba(255,255,255,0.3);
}

.alignLeft {
    text-align: left;
    padding: 4px 25px;
    font-size: 0.9em;
}

#enquire-dropdown #enquiry .alignLeft input {
    width: auto !important;
    display: inline-block;
    margin: 0 15px;
    background: rgba(255, 255, 255, 0);
    -webkit-appearance: checkbox;
}

.required {
    font-size: 0.9em;
    text-align: left;
}

.closeBtn {
  position: absolute;
  left: 0;
  right: 10px;
  top: 10px;
  display: block;
  width: 25px;
  height: 25px;
  margin: 0 5px 0 auto;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: none !important;
}

.closeBtn:hover {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}

.closeBtn:before, .closeBtn:after {
  content: "";
  width: 25px;
  height: 2px;
  background: #fff!important;
  position: absolute;
  top: 50%;
  right: 0;
}

.closeBtn:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.closeBtn:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.closeBtn,
#enquire-dropdown #enquiry input[type="submit"] {
    -webkit-transition: .25s;
    transition: .25s;
}

/*  INPUT ICONS */

#enquire-dropdown .enqRow {
    position: relative;
}

#enquire-dropdown .enqRow span.FontAwesome {
    position: absolute;
    top: 8px;
    left: 28px;
    font-size: 0.9em;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#enquire-dropdown .enqRow span.FontAwesome:before {
    font-family: FontAwesome;
}

#enquire-dropdown .phone:before {
    content: "\f095";
}

#enquire-dropdown .email:before {
    content: "\f003";
}

#enquire-dropdown .name:before {
    content: "\f007";
}

#enquire-dropdown .question:before {
    content: "\f0e6";
}

#enquire-dropdown .clock:before {
    content: "\f017";
}


#enquire-dropdown ::-webkit-input-placeholder {
    color: #fff;
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
}

#enquire-dropdown :-moz-placeholder {
    color: #fff;
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
}

#enquire-dropdown ::-moz-placeholder {
    color: #fff;
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
}

#enquire-dropdown :-ms-input-placeholder {
    color: #fff;
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
}

/* MEDIA QUERIES */

@media all and (max-width: 700px) and (min-width: 0px) {
    #enquire-dropdown .mobile-hide {
        display: none !important;
    }
    #enquire-dropdown .col-2 {
        width: calc(100% - 20px);
    }
}

/* COLOR MODIFIER */

#enquire-dropdown .enqRow span.FontAwesome:before, #enquire-dropdown a {
    color:#fff !important;
}

#enquire-dropdown a:hover {
    color: #fff;
}





/* ---------------------------------- */
/* ----------- SECTION CSS ---------- */
/* ---------------------------------- */

.imageSection .container {
  max-width: 100%;
  padding: 0 !important;
}

#section1{
  
}

.link0 #section1 {
  padding:0px 0;
  background:#500000;
  color:#fff;
  text-align: center;

}


.link0 #section1 h1 {
  /*! letter-spacing:-2px; */;
}

.link0 #section1 h1, .link0 #section1 p  {
  line-height:1;
  margin:0.3em;
  color:#fff;
}

.link0 #section1 butS2 {
  text-align: left!important;
  background:#e4ab10;
  
}

.link0 #section2 {
  margin:60px 0 0;
}


.link0 #section2 .siteContent {
  padding: 0px;
}


.buttonSection .container {
  max-width: 1400px;
}



.link0 h1 span, .link0 h2 span {
  position: relative;
  z-index: 2;
}

.link0 #section3 {
  padding-top:50px;
}


.link0 #section3 h1{
  padding:0;
  /*! line-height:0; */
}

.link0 #section4 {
  padding:120px 0;
  margin:70px 0;
  background:url(sectionBg2.jpg) top center no-repeat;
  background-attachment:fixed;
  color:#fff;
  
}

.link0 #section4 h1, .link0 #section4 h3 {
  color:#fff;
}


.link0 #section5 {
  margin:70px 0;
  padding:0!important;
  
}

.link0 #section5 .container{
  padding: 0;
  
}




  #section9 {
  padding:0px 0;
  background:#500000;
  color:#fff;
  text-align: center;

}


 #section9 h1 {
  /*! letter-spacing:-2px; */;
}

 #section9 h1, .link0 #section9 p  {
  line-height:1;
  margin:0.3em;
  color:#fff;
}

 #section9 butS2:before {
  display:none!important;
  
}



/* ---------------------------------- */
/* ----------- PRELOADER  ----------- */
/* ---------------------------------- */

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  
    z-index: 9999999;
  overflow: hidden;
  

}

#loader {
  position: relative;
    display: block;
    width: 90%;
  height: 100%;
  margin: auto;
    max-width: 400px;
    border: 3px solid transparent;
    z-index: 1001;
  
  display: -webkit-flex;
   display: -ms-flexbox;
   display: -webkit-box;
   display: flex;
  
  -webkit-align-items: center;
   -ms-flex-align: center;
           -webkit-box-align: center;
          align-items: center;
   
}


#loader img{
width:100%;
height:auto;
opacity:0;
filter: alpha(opacity=0);
}

#loader img{
    -webkit-animation: load 4s alternate; 
    animation: load 4s alternate;
}

    @-webkit-keyframes load {
        0%   { 
 			opacity:0; 
 			filter: alpha(opacity=0);
        }
        30% {
            opacity:1;
            filter: alpha(opacity=100);
        }
        70% {
            opacity:1;
            filter: alpha(opacity=100);
        }
        100% {
            opacity:0;
            filter: alpha(opacity=0);
        }
    }
    @keyframes load {
        0%   { 
 			opacity:0; 
 			filter: alpha(opacity=0);
        }
        30% {
            opacity:1;
            filter: alpha(opacity=100);
        }
        70% {
            opacity:1;
            filter: alpha(opacity=100);
        }
        100% {
            opacity:0;
            filter: alpha(opacity=0);
        }
    }

    #loader-wrapper .loader-section {
        position: absolute;
        top: 0;
        width: 51%;
        height: 100%;
        
        z-index: 1000;
        -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateX(0);  /* IE 9 */
        transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
      
      background: #000;

}

    #loader-wrapper .loader-section.section-left {
        left: 0;
    }

    #loader-wrapper .loader-section.section-right {
        right: 0;
    }

    /* Loaded */
    .loaded #loader-wrapper .loader-section.section-left {
        -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(-100%);  /* IE 9 */
                transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
                transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }

    .loaded #loader-wrapper .loader-section.section-right {
        -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(100%);  /* IE 9 */
                transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
        transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }
    
    .loaded #loader {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transition: all 0.3s ease-out;  
                transition: all 0.3s ease-out;
    }
    .loaded #loader-wrapper {
        visibility: hidden;

        -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateY(-100%);  /* IE 9 */
                transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.3s 1s ease-out;  
                transition: all 0.3s 1s ease-out;
    }


.hide--first {
  display: none;
}
.hide--second {
  display: none;
}





/* ---------------------------------- */
/* ---------------------------------- */
/* ----------- SUB BANNERS ---------- */
/* ---------------------------------- */
#subBanner .container.hasImage {
  background-size: cover !important;
  background-position: center center !important;
  padding-bottom: 20%;
}

/* ---------------------------------- */
/* ------ HOME/CONTACT STYLES ------- */
/* ---------------------------------- */
/*------------------------------------*/
/*---------- MEDIA QUERIES -----------*/
/*------------------------------------*/



@media all and (max-width: 1550px) and (min-width: 700px){
  


  .flick-content {
    bottom:14%;
    
  }

  

}

@media all and (max-width: 1250px) and (min-width: 700px){
  
  /*
  #banner .contact {
    top:10px;
    text-align:right;
    margin-right:10px;
  }
  
  #banner .contact a{
    display:block;
    font-size:1em;
    text-align:center;
    
  }
  
  #banner .enquire-trigger{
    padding:5px 15px;
    
  }
  
.logo, .contactContainer {  
  display: block;
}
  


.link0 .logo, .logo, .logoScroll {
  display:block;
  position: fixed !important;
  z-index: 105;
  top: 0; 
  left: 25%; 
  right:25%;
  margin:-10px auto 0!important;
  width: 270px;
  padding: 0px 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s
}

.link0 .shrink .logoScroll, .shrink .logoScroll  {
  width: 200px;
  left: 25%; 
  right:25%;
  margin:0 auto!important;
  width: 170px;
  padding: 0px 40px 0;
  -webkit-transition: 0.2s;
  transition: 0.2s
}

.logo #logo, .logo img {
  width: 100%;
  height: auto;
}
  
  */
  
  




  
    #viewCart .viewCart{
    margin-right:0px;
    
  }



}




@media all and (max-width: 1100px) and (min-width: 700px){
  
 
  #menu nav li a {

    padding: 10px 0.3vw;
    font-size: 1.6vw;

}
  
  .mainSlider .flickerplate, .flick-inner {
    /*Adjust This To Suit % Images*/

  padding-bottom: 85vh !important;
}
  
  .flick-content {
    bottom:14%;
    
  }
  
  
  .flick-title {
    font-size: 4em!Important;
    letter-spacing:0;
    width:50%;

}


  .flick-sub-text {
    font-size:1.2em;
    width:50%;

}
  


  
  .link0 #section1, .link0 #section3 {
  text-align: ;
  padding:20px 0;

}



.link0 .subBannerTextContainer{
  display:none;
  
}

  
  
    .M_right_img .backgroundImage:before {
  
  width:70%;
  margin: auto 15%;
  
}
  
  .M_left_img .backgroundImage:before {
  
  width:70%;
  margin: auto 15%;
  
}
  

  
  .cfframe {
  width:50%;
  margin-bottom:30px;
  text-align:center;
}
  
}


@media all and (max-width: 900px) and (min-width: 700px){

#banner .contact {

  font-size:;
}
  
  
  .link0 #section4 {
  padding:40px 0;
  margin:30px 0;
  background-attachment:scroll;
  
}
  
  

    
}















/*-----------------------------------------*/
/*--------- SHOPPING CART LARGE -----------*/
/*-----------------------------------------*/
/**
* Parent of the cart thumbnails
* Cart thumbnail is a generic thumbnail type 
* used by both categories and items. They share a common base
* but each have their own styles which seperate them visually
*/
.cartThumbs {
  /**
   * A cart item thumb
   */
}
.cartThumbs .cartThumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  /* Item Banner
   * Shows if the item is on sale, new, popular, sold etc */
  /* Item name and price */
  /**
   * Wrapper for the thumbnail and sale sticker
   */
}
.cartThumbs .cartThumb .banner {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
  padding: .3em .5em;
  font-size: .8em;
  font-weight: bold;
  text-transform: uppercase;
  /* The different types of banner
   * the <div> will be, .itemBanner .bannerType */
}
.cartThumbs .cartThumb .banner.new:before {
  content: "New";
}
.cartThumbs .cartThumb .banner.sold:before {
  content: "Sold";
}
.cartThumbs .cartThumb .banner.onSale:before {
  content: "On Sale";
}
.cartThumbs .cartThumb .banner.outOfStock:before {
  content: "Out Of Stock";
}
.cartThumbs .cartThumb .banner.popular:before {
  content: "Popular";
}
.cartThumbs .cartThumb .info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: .5em .2em;
  /**
  * Short Description that appears on the item Thumb
  */
}
.cartThumbs .cartThumb .info .name {
  text-align: center;
  font-size: 1em;
  padding: 0.2em;
}
.cartThumbs .cartThumb .info .price {
  text-align: center;
  font-weight: bold;
  -ms-flex-order: 2;
      order: 2;
}
.cartThumbs .cartThumb .info .price .priceWas {
  color: #888888;
  display: inline-block;
  text-decoration: line-through;
  padding-right: 0.5em;
}
.cartThumbs .cartThumb .info .thumbDescription {
  -ms-flex-positive: 1;
      flex-grow: 1;
  font-size: 0.8em;
  line-height: 1.4em;
  padding: 0.2em 0.2em 0.5em;
  text-align: center;
  font-size: .8em;
}
.cartThumbs .cartThumb .info p {
  padding: 0;
  margin: 0;
}
.cartThumbs .cartThumb .imageFrame {
  /* The Actual Cart Image */
  /*.image {
  	width:100%;
  	height:0;
  	padding-bottom:130%;
  	background-size:contain!important;
  	background-position:center center!important;
  	background-repeat: no-repeat!important;
  	position:relative;
  	cursor:pointer;
  	overflow:hidden;
  }*/
}
.cartThumbs .cartThumb .imageFrame .noImage:after {
  content: "\f03e";
  font-family: FontAwesome;
  font-size: 4em;
  color: #ccc;
  position: absolute;
  text-align: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

/**
 * Category Side Menu
 */
.categoryMenu {
  padding: 0;
  margin: 1.5em 0 1em;
  font-size: .9em;
  line-height: 1.2em;
  /**
   * Side bar heading
   */
  /**
   * First Level Categories
   */
  /**
   * Second Level Categories
   */
  /**
   * Third Level Categories
  */
}
.categoryMenu h2:before {
  content: "Categories";
  display: block;
}
.categoryMenu li {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  /**
   * Generic Side Properties
   */
}
.categoryMenu li a {
  display: block;
  width: 100%;
  padding: 3px;
  margin: 1px 0;
  text-decoration: none;
}
.categoryMenu li ul {
  padding: 0;
  margin: 0;
  font-size: .9em;
}
.categoryMenu li ul li {
  margin: 0;
  padding: 0;
  cursor: pointer;
  display: block;
}
.categoryMenu li ul li ul {
  margin-bottom: 5px;
}
.categoryMenu > li > a {
  font-weight: bold;
  text-transform: uppercase;
  /*&:hover{
  	background: $darkTone;
  	color: white;
  }*/
}
.categoryMenu > li > ul > li > a {
  padding-left: 10px;
  /*&:hover{
  	background: $darkTone;
  	color:white;
  }*/
}
.categoryMenu > li > ul > li > a:before {
  content: '\f101';
  float: left;
  font-family: fontawesome;
  font-size: 0.9em;
  margin-right: 5px;
}
.categoryMenu > li > ul > li > ul > li > a {
  padding-left: 20px;
  font-size: 0.9em;
  /*&:hover{
  	background: $darkTone;
  	color:white;
  }*/
}
.categoryMenu > li > ul > li > ul > li > a:before {
  content: '\f105';
  float: left;
  font-family: fontawesome;
  font-size: 0.9em;
  margin-right: 5px;
}

.cartItemPage {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /**
   * Item Warning
   * when the user adds an item to the cart,
   * it is validated to see if it is stil instock,
   * or required fields submitted, 
   *
   * If there's an error, this div is added with a message
   */
  /**
   * Variant Drop Downs
   */
  /**
   * Cart Item Images
   */
}
.cartItemPage h1 {
  margin-bottom: 0;
}
.cartItemPage .itemLeft {
  width: 45%;
}
.cartItemPage .itemLeft.noImage .itemHeroImage {
  padding-bottom: 80%;
  position: relative;
  border: 1px solid #EAEAEA;
}
.cartItemPage .itemLeft.noImage .itemHeroImage:after {
  content: "\f03e";
  font-family: FontAwesome;
  font-size: 4em;
  color: #ccc;
  position: absolute;
  text-align: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cartItemPage .itemLeft.noImage .itemImageThumbs {
  display: none;
}
.cartItemPage .itemLeft h1, .cartItemPage .itemLeft .itemCode, .cartItemPage .itemLeft .itemPrice, .cartItemPage .itemLeft .itemShortDesc {
  display: none;
}
.cartItemPage .itemRight {
  width: 50%;
}
.cartItemPage .itemRight .itemStock span:before {
  content: "Remaining: ";
}
.cartItemPage .itemRight, .cartItemPage .itemLeft {
  display: inline-block;
  float: left;
  padding: 10px;
}
.cartItemPage .itemPrice {
  font-size: 1.5em;
  text-align: left;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  color: #4183d7;
}
.cartItemPage .itemPrice .itemWas {
  font-weight: normal;
  font-size: .9em;
  display: inline-block;
  color: #888888;
  margin-left: 10px;
}
.cartItemPage .itemCode {
  text-align: left;
  margin-bottom: 10px;
  padding-left: 2px;
  color: #bbbbbb;
}
.cartItemPage .itemWarning {
  border: 1px solid #CF000F;
  background: #f7d8da;
  padding: .3em;
  font-size: .9em;
  text-align: center;
  font-weight: bold;
  color: #CF000F;
}
.cartItemPage .itemOptions {
  width: 100%;
}
.cartItemPage .itemOptions .itemOption {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 2px 0;
}
.cartItemPage .itemOptions .itemOption label {
  width: 100%;
  display: block;
  text-align: left;
}
.cartItemPage .itemOptions .itemOption .select {
  width: 100%;
  cursor: pointer;
  margin-bottom: 10px;
}
.cartItemPage .itemOptions .itemOption .select.disabled {
  opacity: .5;
}
.cartItemPage .itemButtons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin: 10px 0;
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.cartItemPage .itemAction {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
}
.cartItemPage .itemAction .cartBtn {
  margin-left: 10px;
}
.cartItemPage .itemShortDesc {
  margin: 10px 0;
  padding: 0 10px;
  display: inline-block;
  background: rgba(0, 0, 0, 0.03);
}
.cartItemPage .itemImages {
  /**
   * The item thumbnails underneath the main hero image
   */
}
.cartItemPage .itemImages .itemHeroImage {
  width: 100%;
}
.cartItemPage .itemImages .itemHeroImage .itemImage {
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  background-size: cover !important;
  background-position: center center !important;
}
.cartItemPage .itemImages .itemHeroImage .itemImage.hidden {
  display: none;
}
.cartItemPage .itemImages .itemImage {
  margin-top: 17px;
  position: relative;
  border: 1px solid #EAEAEA;
  /*  Item Banners */
}
.cartItemPage .itemImages .itemImage .banner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #4183d7;
  color: #eee;
  padding: .3em .5em;
  font-size: .8em;
  font-weight: bold;
  text-transform: uppercase;
  /**
   * The different types of banner
   * the <div> will be, .itemBanner .bannerType
   */
}
.cartItemPage .itemImages .itemImage .banner.new:before {
  content: "New";
}
.cartItemPage .itemImages .itemImage .banner.sold:before {
  content: "Sold";
}
.cartItemPage .itemImages .itemImage .banner.onSale:before {
  content: "On Sale";
}
.cartItemPage .itemImages .itemImage .banner.outOfStock:before {
  content: "Out Of Stock";
}
.cartItemPage .itemImages .itemImage .banner.popular:before {
  content: "Popular";
}
.cartItemPage .itemImages .itemImageThumbs {
  width: 100%;
  overflow: hidden;
  border: 1px solid #EAEAEA;
  padding: 10px;
  border-radius: 0 0 5px 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-top: 10px;
}
.cartItemPage .itemImages .itemImageThumbs .itemImageThumb {
  display: inline-block;
  width: 24%;
  cursor: pointer;
  border: 1px solid transparent;
}
.cartItemPage .itemImages .itemImageThumbs .itemImageThumb div {
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.cartItemPage .itemImages .itemImageThumbs .itemImageThumb.current {
  border-color: black;
}
.cartItemPage .itemImages .itemImageThumbs .itemImageThumb div:hover:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: white;
  opacity: .3;
}

/**
 * Search box in the sidebar of the category page
 */
.categorySearch {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-top: 1em;
  /**
   * Search Field
   */
  /**
   * Submit Button
   */
}
.categorySearch input {
  padding: .5em;
  width: 80%;
  border-right: 0;
}
.categorySearch button {
  /*color: $white;
  background: $midTone;
  border:1px solid $greyDark;*/
  width: 20%;
}
.categorySearch button span:before {
  content: "\f002";
  font-family: fontawesome;
}
.categorySearch button:hover {
  /*background: $darkTone;*/
}

/**
 * Filter in the category sidebar
 */
.categoryFilter {
  margin-top: 0.5em;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0;
  /**
   * Parents for the min/max inputs
   */
  /**
   * Submit Button
   */
}
.categoryFilter .filterInput {
  padding-right: 1em;
  width: 40%;
  padding: 3px 3px 0px;
  position: relative;
}
.categoryFilter .filterInput:before {
  position: absolute;
  bottom: 3px;
  left: 6px;
  font-size: 0.8em;
  content: '$';
}
.categoryFilter .filterInput span, .categoryFilter .filterInput input {
  width: 100%;
  text-align: center;
  padding: 3px;
}
.categoryFilter .filterInput span {
  font-size: 0.8em;
}
.categoryFilter button {
  /*background: $midTone;
  border:1px solid $greyDark;		
  color: $white;
  */
  width: 20%;
  height: 28px;
  margin-top: auto;
  /*&:hover{
  	background: $darkTone;
  }*/
}
.categoryFilter button span:before {
  content: "\f002";
  font-family: fontawesome;
}

.viewCartContent .prevPage:after {
  content: "Return to Previous Page";
}
.viewCartContent .prevPage icon:before {
  content: "\f060";
}
.viewCartContent .qtyForm {
  display: -ms-flexbox;
  display: flex;
}
.viewCartContent .qtyForm .itemQty {
  padding: 0;
  margin-right: 10px;
}
.viewCartContent .cartCheckout:after {
  content: "Checkout";
}
.viewCartContent .cartCheckout icon:before {
  content: "\f07a";
}

.cartItemOther {
  width: 100%;
  box-sizing: border-box;
}
.cartItemOther .cartItems {
  margin-bottom: 0;
}

.viewCartContent {
  width: 100%;
  margin-bottom: 1rem;
}

.viewCartSection {
  padding: 10px;
  width: 100%;
  margin-top: 10px;
  box-sizing: border-box;
}
.viewCartSection h4 {
  margin: 0;
}
.viewCartSection .cartSubHeading {
  color: #888888;
}

.viewCartItems {
  width: 100%;
  margin: 10px 0;
}
.viewCartItems .cartItemAction {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.viewCartItems .cartItemAction span {
  margin-right: 10px;
}
.viewCartItems .cartItemAction .cartItemUpdate {
  margin-right: 5px;
}
.viewCartItems .cartItemAction span.button {
  cursor: auto;
  color: #CF000F;
  margin-left: 1em;
}
.viewCartItems .cartSubTotal {
  float: right;
  margin: 20px 0;
  color: #555;
  font-size: 1.1em;
}
.viewCartItems .cartSubTotal span {
  font-weight: bold;
  margin-left: 10px;
}
.viewCartItems .cartUpdate {
  float: left;
  margin: 30px 0;
  background: #404040;
  border-radius: 5px;
  padding: 10px;
  color: #fff;
  font-size: 1.1em;
}
.viewCartItems .cartUpdate span {
  margin-right: 10px;
}

.viewCartRow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  font-weight: normal;
  padding: 5px 10px;
  font-size: .9em;
}
.viewCartRow .viewCartDelete {
  font-size: 1em;
  text-align: center;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  margin: 0 5px 0 0;
}
.viewCartRow .viewCartDelete div {
  color: #fff;
  background: #CF000F;
  border-radius: 50%;
  padding: 4px 12px;
}
.viewCartRow .viewCartDelete div:before {
  content: "\f00d";
}
.viewCartRow .viewCartItem {
  width: 120px;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #ccc;
}
.viewCartRow .viewCartItem .viewCartThumb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  border-radius: 3px;
}
.viewCartRow .viewCartItem.viewCartDiscount {
  text-align: center;
}
.viewCartRow .viewCartItem.viewCartDiscount icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background: #eee;
  border-radius: 2px;
  width: 100%;
  font-size: 1.5em;
  line-height: 1.0em;
  padding: 0.5em;
  color: #aaa;
}
.viewCartRow .viewCartDescription {
  width: 40%;
  width: calc(100% - 465px);
  padding: 0 1em;
  -ms-flex-positive: 1;
      flex-grow: 1;
  line-height: 1.4em;
}
.viewCartRow .viewCartDescription .itemWarning {
  color: #CF000F;
  margin-left: 1em;
}
.viewCartRow .viewCartPrice {
  width: 100px;
  text-align: Center;
}
.viewCartRow .viewCartTotal {
  width: 100px;
  text-align: Center;
}
.viewCartRow .viewCartQuantity {
  text-align: Center;
  width: 148px;
}

.viewCartRow:nth-child(even) {
  background: rgba(0, 0, 0, 0.01) !important;
}

.viewCartRowHeader {
  font-weight: bold;
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
  font-size: 1em;
  /*background: $darkTone;
  color: $white;*/
}
.viewCartRowHeader .viewCartItem {
  border: none;
}

#discountForm {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: stretch;
      align-items: stretch;
}
#discountForm .discountCodeInput {
  margin-right: auto;
  padding: 5px;
}
#discountForm .cartBtn {
  margin-left: 10px;
}

.cartMessage {
  text-align: center;
  margin: 10px 0;
}
.cartMessage.success {
  color: #26A65B;
  border: 1px solid #26A65B;
}
.cartMessage.fail {
  color: #CF000F;
  border: 1px solid #CF000F;
}

#shippingForm {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
}
#shippingForm .cartBtn {
  margin-left: auto;
}

.shipTo {
  margin-right: 10px;
}

#additionalInfoForm .cartBtn {
  float: right;
}

/*--- SHOPPING QUESTIONS --*/
.cartQuestionRow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 80%;
  max-width: 700px;
  margin: 5px auto;
}
.cartQuestionRow .cartQuestion {
  width: 25%;
}
.cartQuestionRow .cartQuestionInput {
  margin-left: 10px;
  width: 70%;
}
.cartQuestionRow .cartQuestionInput input {
  width: 100%;
  padding: 3px 5px;
  font-family: inherit;
}

/*--- SHOPPING QUESTIONS REVIEW --*/
#reviewSection .container {
  display: inline-block;
}
#reviewSection .viewCartSection {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
#reviewSection .reviewLeft, #reviewSection .reviewRight {
  width: 50%;
}
#reviewSection .reviewLeft {
  padding-right: 10px;
}
#reviewSection .reviewRight {
  padding-left: 10px;
}
#reviewSection .reviewQuestionRow {
  width: 100%;
  margin: 5px 0;
  display: -ms-flexbox;
  display: flex;
}
#reviewSection .reviewQuestionRow .reviewQuestion {
  width: 30%;
  color: #555;
}
#reviewSection .reviewQuestionRow .reviewQuestionAnswer {
  width: 70%;
  background: #EAEAEA;
  padding: 5px;
}
#reviewSection .reviewQuestionRow .reviewQuestion, #reviewSection .reviewQuestionRow .reviewQuestionAnswer {
  display: inline-block;
}

.payPalLogo {
  font: #4183d7;
  color: inherit;
  font-size: 1.3em;
}
.payPalLogo icon {
  margin-right: 5px;
}

.checkoutEmail .submitOrder {
  width: 100%;
}

.priceSection, .checkoutFinalPrice {
  width: 300px;
  padding-top: 1em;
}
.priceSection .viewCartSectionInner, .checkoutFinalPrice .viewCartSectionInner {
  width: 100%;
  max-width: 250px;
  text-align: right;
  float: right;
}
.priceSection .cartPriceRow, .checkoutFinalPrice .cartPriceRow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 5px;
}
.priceSection .cartPricePrice, .checkoutFinalPrice .cartPricePrice {
  font-weight: bold;
  width: 100px;
  text-align: right;
  color: inherit;
}
.priceSection .priceTotal, .checkoutFinalPrice .priceTotal {
  border: 1px solid #4183d7;
  background: #4183d7;
  color: #fff;
  font-size: 1.4em;
  padding: 5px;
  margin: 10px 0;
}
.priceSection .cartPriceRow:nth-child(1), .checkoutFinalPrice .cartPriceRow:nth-child(1) {
  width: 100%;
  text-align: center;
  border-bottom: 2px solid #f2f2f2;
  margin-bottom: 5px;
  font-size: 1.1em;
  padding: 7px;
}

.cartInnerWrap, .checkoutSection {
  width: 100%;
}

.checkoutSection {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.checkoutSection span.fontAwesome {
  margin-right: 10px;
}
.checkoutSection h2 {
  -ms-flex-order: -1;
      order: -1;
}
.checkoutSection #additionalinfo {
  width: 100%;
}

.checkoutSection.priceSection {
  -ms-flex-pack: end;
      justify-content: flex-end;
}

.checkoutSectionInner {
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 200px;
}

.checkoutStep {
  display: inline;
  margin-right: 0.5em;
}

.checkoutStageComplete {
  -ms-flex-align: center;
      align-items: center;
  color: white;
  display: -ms-flexbox;
  display: flex;
  font-size: 1em;
  line-height: 1em;
  margin-left: auto;
  padding: 12px 20px;
}
.checkoutStageComplete span.fontAwesome {
  margin-left: 10px;
}

.checkoutStageComplete, .UpdateQuantity {
  background: #26A65B none repeat scroll 0 0;
  color: #fff;
}

.UpdateQuantity {
  cursor: pointer;
}

.linkCartCheckout .contentWrap {
  width: 100%;
  max-width: 1200px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: stretch;
      align-items: stretch;
  margin: auto;
}

.checkoutReview {
  width: 100%;
  margin-bottom: 10px;
}

.checkoutReview .checkoutFinalPrice {
  width: 200px;
  margin-left: auto;
}

.checkoutReview .checkoutPaypal {
  width: 200px;
  margin-top: 20px;
  margin-left: auto;
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -ms-flex-direction: column;
  /*---- END DISPLAY FLEX -----*/
  /*--- JUSTIFY CONTENT ---*/
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  /*--- END JUSTIFY CONTENT ---*/
  /*------ FLEX ALIGN -----*/
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  /*------ END FLEX ALIGN -----*/
}

.checkoutReview .checkoutPaypal .payPalLogo {
  background: url(PP-logo.png);
  margin-bottom: 10px;
  width: 129px;
  height: 49px;
  display: block;
}

.checkoutReview .checkoutEmail {
  width: 47%;
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*--- JUSTIFY CONTENT ---*/
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  /*--- END JUSTIFY CONTENT ---*/
  /*------ FLEX ALIGN -----*/
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  /*------ END FLEX ALIGN -----*/
}

.checkoutReview .checkoutEmail .cartBtn {
  margin-left: 0;
}

.checkoutReviewMessage {
  padding: 10px;
  width: 100%;
  margin: 10px 0;
}

.cartBtn {
  background: none;
  font: inherit;
  text-decoration: none;
  display: inline-block;
  line-height: 1em;
}
.cartBtn icon {
  margin-right: 10px;
}
.cartBtn:hover:not(.disabled) {
  cursor: pointer;
}
.cartBtn:after, .cartBtn:before {
  display: inline-block;
}
.cartBtn::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.cartBtn .highlight {
  color: #4183d7;
  border: 1px solid #4183d7;
}
.cartBtn .highlight:hover:not(.disabled) {
  background: #4183d7;
  color: white;
}

.cartBtn.grey {
  color: #737373;
  border: 1px solid #737373;
}
.cartBtn.grey:hover:not(.disabled) {
  background: #737373;
  color: white;
}

.cartBtn.green {
  color: #26A65B;
  border: 1px solid #26A65B;
}
.cartBtn.green:hover:not(.disabled) {
  background: #26A65B;
  color: white;
}

.cartBtn.red {
  color: #CF000F;
  border: 1px solid #CF000F;
}
.cartBtn.red:hover:not(.disabled) {
  background: #CF000F;
  color: white;
}

.cartBtn.submitOrder {
  background: #26A65B;
  border: 1px solid #26A65B;
  color: white;
  width: 100%;
}
.cartBtn.submitOrder:hover:not(.disabled) {
  background: white;
  color: #26A65B;
}

.resumeShopping {
  margin-left: auto;
  font-size: 15px !important;
  font-weight: normal !important;
}
.resumeShopping:after {
  content: "Resume Shopping";
}
.resumeShopping icon:before {
  content: "\f07a";
}
.resumeShopping span.fontAwesome {
  margin-right: 10px;
}

.itemAdd:after {
  content: "Add To Cart";
}
.itemAdd icon:before {
  content: "\f067";
}

.itemMore:after {
  content: "More Info";
}
.itemMore icon:before {
  content: "\f06e";
}

.checkoutPrev:after {
  content: "Previous";
}
.checkoutPrev icon:before {
  content: "\f060";
}

.checkoutNext:after {
  content: "Next";
}
.checkoutNext icon {
  float: right;
  margin: 0 0 0 10px;
}
.checkoutNext icon:before {
  content: "\f061";
}

#additionalSection .checkoutNext {
  margin-left: auto;
}

.applyDiscount:after {
  content: "Apply Discount";
}
.applyDiscount icon {
  margin: 0 0 0 10px;
}
.applyDiscount icon:before {
  content: "\f155";
}

.submitOrder:after {
  content: "Submit Order";
}
.submitOrder icon:before {
  content: "\f00c";
}

.viewCartQuantity {
  width: 110px;
}

.viewCartQuantity form {
  display: -ms-flexbox;
  display: flex;
  vertical-align: center;
}

.viewCartQuantity .cartItemQtyCount {
  display: inline-block;
  position: relative;
  width: 64px;
  font-size: 0.8em;
}

.viewCartQuantity .UpdateQuantity {
  width: 40px;
  border: medium none;
  display: inline-block;
  padding: 7px 6px 8px;
  background: #26a65b none repeat scroll 0 0;
  color: #fff;
  cursor: pointer;
  font-size: 0.8em;
  vertical-align: top;
}

.cartItemQtyCount .itemQtyDisplay {
  width: 46px;
  padding: 6px 2px;
  text-align: center;
}

.cartItemQtyCount .cartItemQtyUp, .cartItemQtyCount .cartItemQtyDown {
  width: 40%;
  height: 50%;
  position: absolute;
  cursor: pointer;
  line-height: 1.4em;
}

.cartItemQtyCount .cartItemQtyUp {
  top: 0;
  right: 0;
}

.cartItemQtyCount .cartItemQtyDown {
  bottom: 0;
  right: 0;
}

.itemQty {
  color: #555;
  background: rgba(0, 0, 0, 0);
  padding: 0 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: none;
  margin: auto;
}
.itemQty span {
  margin-right: 15px;
  display: inline-block;
  padding: 5px 0;
}
.itemQty div {
  background: none;
  border: 1px solid #676767;
  color: #676767;
  transition: all 0.2s ease;
  width: 40px;
  padding: 2px;
}
.itemQty .itemQtyCount {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: stretch;
      align-items: stretch;
}
.itemQty .itemQtyCount input {
  padding: 3px 5px;
  width: 30px;
}
.itemQty .itemQtyUp, .itemQty .itemQtyDown {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 35px;
  cursor: pointer;
}
.itemQty .itemQtyUp:hover, .itemQty .itemQtyDown:hover {
  background: #222;
  color: #fff;
}
.itemQty .itemQtyUp.hidden, .itemQty .itemQtyDown.hidden {
  pointer-events: none;
  opacity: .2;
}
.itemQty .itemQtyUp {
  -ms-flex-order: 3;
      order: 3;
  border-radius: 0 5px 5px 0;
}
.itemQty .itemQtyDown {
  -ms-flex-order: 2;
      order: 2;
  border-radius: 5px 0 0 5px;
}
.itemQty .itemQtyUp:before {
  content: "\f067";
  font-family: fontawesome;
}
.itemQty .itemQtyDown:before {
  content: "\f068";
  font-family: fontawesome;
}
.itemQty .itemQtyDisplay {
  border: none;
  text-align: center;
  -ms-flex-order: 1;
      order: 1;
  padding: 6px 2px;
  margin-right: 10px;
  color: black;
  font-size: 20px;
  font-weight: bold;
  width: 48px;
}

.viewCartRow .viewCartDelete a {
  color: #fff;
  background: #CF000F;
  border-radius: 50%;
  padding: 10px 12px;
}
.viewCartRow .viewCartDelete a:hover {
  background: #c5000e;
}
.viewCartRow .viewCartDelete a:before {
  pointer-events: none;
}

.viewCartItems .cartSubTotal {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  margin: 0 0 20px;
  width: 100%;
  background: #f1f1f1;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  color: black;
  padding: 20px;
  font-size: 1.5em;
}

/**
 * Container for both the item pagination list and the items
 * per page drop down
 */
.itemPagination {
  font-size: .8em;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 0.5em;
  /**
   * Parent container for pagination links
   */
}
.itemPagination .pagination {
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0;
  /**
   * A pagination link
   */
}
.itemPagination .pagination a {
  border: 1px solid #ccc;
  width: 30px;
  height: 30px;
  margin: 0 2px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
  text-decoration: none;
}
.itemPagination .pagination a:only-child {
  display: none;
}
.itemPagination .pagination a:hover:not(.false) {
  background: rgba(0, 0, 0, 0.2);
}
.itemPagination .pagination a.current {
  font-weight: bold;
  background: rgba(0, 0, 0, 0.1);
}
.itemPagination .pagination a.prev:before {
  content: "\f104";
  font-family: fontawesome;
}
.itemPagination .pagination a.next:before {
  content: "\f105";
  font-family: fontawesome;
}

/**
 * Items per page <select> in category sidebar
 */
.itemsPerPage {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin: 1.5em 0;
}
.itemsPerPage:before {
  content: "Items Per Page";
  margin-right: 10px;
  font-size: .7em;
}
.itemsPerPage form {
  width: 50%;
}

form .select {
  background: white;
  width: 100%;
}
form .select select {
  cursor: pointer;
}
form .select:after {
  /*background: $midTone;
  color: white;*/
}
form .select:hover:after {
  /*background: lighten($midTone, 10%);*/
}

/**
 * Parent div for the checkout pages (details, shipping & pay)
 * the body of the checkout pages have two classes
 * .checkout
 * and a class describing the current step in the checkout process, 
 * i.e checkoutDetails, checkoutPay, checkoutShipping
 *
 * so you can target specific pages via .checkout .checkoutPay for example
 */
.checkout .contentWrap {
  display: -ms-flexbox;
  display: flex;
}
.checkout .contentWrap .container {
  height: 100%;
}

.checkout .siteContent {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /**
   * The two checkout sections 
   *  - checkoutLeft  - the current step in the checkout process
   *  - checkoutRight - the summary of the items in cart, totals etc
   */
  /**
   * Cart summary
   */
  /**
   * Left hand side shows the current progress of the 
   * checkout process
   */
}
.checkout .siteContent .checkoutRight, .checkout .siteContent .checkoutLeft {
  width: 50%;
  display: inline-block;
}
.checkout .siteContent .checkoutRight {
  background: rgba(0, 0, 0, 0.05);
  padding: 1em;
  /**
   * Parent container for all the items in the 
   * cart sumamry
   */
  /**
   * Discount section in the checkout summary
   */
}
.checkout .siteContent .checkoutRight .openCheckout {
  display: none;
  font-size: 0.8em;
}
.checkout .siteContent .checkoutRight .openCheckout:before {
  content: "View Checkout Items";
}
.checkout .siteContent .checkoutRight .openCheckout icon:after {
  content: "\f078";
}
.checkout .siteContent .checkoutRight .items {
  width: 100%;
}
.checkout .siteContent .checkoutRight .checkoutRow {
  width: 100%;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /**
   * Left hand side of each checkout summary row
   */
  /**
   * Right hand side of each checkout summary row
   */
  /**
   * Make the heading, price and totals bold, and larger
   */
}
.checkout .siteContent .checkoutRight .checkoutRow .checkoutTitle, .checkout .siteContent .checkoutRight .checkoutRow .checkoutValue {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.checkout .siteContent .checkoutRight .checkoutRow .checkoutTitle .itemPrice, .checkout .siteContent .checkoutRight .checkoutRow .checkoutValue .itemPrice {
  width: 100%;
  text-align: right;
}
.checkout .siteContent .checkoutRight .checkoutRow .checkoutTitle .itemImage, .checkout .siteContent .checkoutRight .checkoutRow .checkoutValue .itemImage {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.checkout .siteContent .checkoutRight .checkoutRow .checkoutTitle {
  width: 70%;
}
.checkout .siteContent .checkoutRight .checkoutRow .checkoutTitle input[name=discountCode] {
  padding: 0.5em;
  width: 100%;
  margin-bottom: 5px;
}
.checkout .siteContent .checkoutRight .checkoutRow .checkoutValue {
  width: 30%;
  text-align: right;
}
.checkout .siteContent .checkoutRight .checkoutRow .itemHeading, .checkout .siteContent .checkoutRight .checkoutRow .itemPrice, .checkout .siteContent .checkoutRight .checkoutRow.checkoutSubTotal .checkoutValue, .checkout .siteContent .checkoutRight .checkoutRow.checkoutShipping .checkoutValue, .checkout .siteContent .checkoutRight .checkoutRow.checkoutTotal .checkoutValue, .checkout .siteContent .checkoutRight .checkoutRow.checkoutTax .checkoutValue {
  font-weight: bold;
  font-size: 1.1em;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.checkout .siteContent .checkoutRight .checkoutRow .checkout-discountMessage {
  display: block;
  width: 100%;
  background: #D50C0C;
  color: white;
  text-align: center;
  margin: 5px auto;
  border-radius: 3px;
}
.checkout .siteContent .checkoutRight .items {
  /**
   * Put a border under each of the items
   */
  /**
   * parent div for the item image
   */
  /**
   * Description for the item, contains item code etc
   */
}
.checkout .siteContent .checkoutRight .items .checkoutRow {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 0 10px;
}
.checkout .siteContent .checkoutRight .items .itemImage {
  width: 100px;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: white;
  padding: 0.5em;
  border-radius: 0.5em;
  margin-right: 1em;
  /**
   * The actual image, it's a backround image
   * we use cover to ensure it fills the square
   */
}
.checkout .siteContent .checkoutRight .items .itemImage .itemThumb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.checkout .siteContent .checkoutRight .items .itemDescription {
  width: calc(100% - 110px);
  display: inline-block;
}
.checkout .siteContent .checkoutRight .items .itemDescription .itemHeading, .checkout .siteContent .checkoutRight .items .itemDescription .itemCode, .checkout .siteContent .checkoutRight .items .itemDescription .itemQuantity {
  width: 100%;
}
.checkout .siteContent .checkoutRight .items .itemDescription .itemCode, .checkout .siteContent .checkoutRight .items .itemDescription .itemQuantity {
  font-size: .9em;
  line-height: 1.2em;
}
.checkout .siteContent .checkoutRight .checkoutDiscount {
  padding: 1em 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.checkout .siteContent .checkoutRight .checkoutDiscount .checkoutTitle {
  width: 50%;
}
.checkout .siteContent .checkoutRight .checkoutDiscount .checkoutValue {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  width: 40%;
}
.checkout .siteContent .checkoutRight .checkoutDiscount .checkoutValue .discountAmount {
  margin-left: 1em;
}
.checkout .siteContent .checkoutRight .checkoutDiscount .removeDiscount {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.checkout .siteContent .checkoutRight .checkoutDiscount .removeDiscount button {
  padding: 0.5em 1.0em !important;
  font-size: 0.9em;
}
.checkout .siteContent .checkoutRight .checkoutSubTotal {
  padding-top: 1em;
}
.checkout .siteContent .checkoutRight .checkoutSubTotal .checkoutValue {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.checkout .siteContent .checkoutRight .checkoutTaxMessage {
  
  text-align: right;
  display: block;
  width: 100%;
  font-size: 0.8em;
  font-weight: normal;
  line-height: 1em;
}
.checkout .siteContent .checkoutRight .checkoutShipping {
  padding-bottom: 1em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.checkout .siteContent .checkoutRight .checkoutTotal {  padding-top: 1em;}
.checkout .siteContent .checkoutRight .checkoutTotal:after {
  
  text-align: right;
  display: block;
  width: 100%;
  font-size: 0.8em;
  line-height: 1em;
}
.checkout .siteContent .checkoutLeft {
  padding: 1em;
  /**
   * Checkout Customer Details
   */
  /**
   * Shipping Methods
   */
}
.checkout .siteContent .checkoutLeft .checkoutDetails {
  margin-bottom: 1em;
  /**
   * Styles for when the customer details aren't editable
   * Remove the border off of the inputs, JS will add the 
   * readonly attr
   */
}
.checkout .siteContent .checkoutLeft .checkoutDetails * {
  transition: all 0.2s ease;
}
.checkout .siteContent .checkoutLeft .checkoutDetails .checkoutDetailsRow {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: .2em;
}
.checkout .siteContent .checkoutLeft .checkoutDetails .checkoutDetailsRow.col2 input {
  width: 50%;
  width: calc(50% - 0.2em);
}
.checkout .siteContent .checkoutLeft .checkoutDetails .checkoutDetailsRow.col3 input {
  width: 35%;
  width: calc(35% - 0.4em);
}
.checkout .siteContent .checkoutLeft .checkoutDetails .checkoutDetailsRow.col3 input[name=postCode] {
  width: 20%;
}
.checkout .siteContent .checkoutLeft .checkoutDetails .checkoutDetailsRow.col3 .select {
  width: 45%;
  margin-right: .4em;
  width: calc(45% - 0.4em);
}
.checkout .siteContent .checkoutLeft .checkoutDetails .checkoutDetailsRow input {
  width: 100%;
  padding: .5em;
  /**
   * With rows that have multiple inputs, we need to
   * put some gutters between some of the inputs.
   */
}
.checkout .siteContent .checkoutLeft .checkoutDetails .checkoutDetailsRow input[name=firstName], .checkout .siteContent .checkoutLeft .checkoutDetails .checkoutDetailsRow input[name=state], .checkout .siteContent .checkoutLeft .checkoutDetails .checkoutDetailsRow input[name=country] {
  margin-right: .4em;
}
.checkout .siteContent .checkoutLeft .checkoutDetails .checkoutDetailsRow input[name=fullName] {
  display: none;
}
.checkout .siteContent .checkoutLeft .checkoutDetails [name=editDetails] {
  display: none;
}
.checkout .siteContent .checkoutLeft .checkoutDetails .nonEditable {
  font-size: 0.9em;
}
.checkout .siteContent .checkoutLeft .checkoutDetails .nonEditable .select {
  cursor: default;
}
.checkout .siteContent .checkoutLeft .checkoutDetails .nonEditable .select:after {
  display: none;
}
.checkout .siteContent .checkoutLeft .checkoutDetails .nonEditable .checkoutDetailsRow {
  padding: 0;
}
.checkout .siteContent .checkoutLeft .checkoutDetails .nonEditable input {
  border: 0;
  padding: .2em;
  width: inherit;
}
.checkout .siteContent .checkoutLeft .checkoutDetails .nonEditable input[name=firstName], .checkout .siteContent .checkoutLeft .checkoutDetails .nonEditable input[name=lastName] {
  display: none;
}
.checkout .siteContent .checkoutLeft .checkoutDetails .nonEditable input[name=fullName] {
  display: inline-block;
}
.checkout .siteContent .checkoutLeft .checkoutDetails .nonEditable [name=saveDetails] {
  display: none;
}
.checkout .siteContent .checkoutLeft .checkoutDetails .nonEditable [name=saveDetails]:before {
  content: '\f0c7';
  font-family: fontAwesome;
  margin-right: 5px;
}
.checkout .siteContent .checkoutLeft .checkoutDetails .nonEditable [name=editDetails] {
  display: inline-block;
  margin: 10px 0 0;
}
.checkout .siteContent .checkoutLeft .checkoutDetails .nonEditable [name=editDetails]:before {
  content: '\f040';
  font-family: fontAwesome;
  margin-right: 5px;
}
.checkout .siteContent .checkoutLeft .shippingMethod {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: .5em;
  margin: 10px auto 20px;
}
.checkout .siteContent .checkoutLeft .shippingMethod .shippingRow {
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: .5em;
  display: -ms-flexbox;
  display: flex;
}
.checkout .siteContent .checkoutLeft .shippingMethod .shippingRow .shippingRadio, .checkout .siteContent .checkoutLeft .shippingMethod .shippingRow .shippingDescription {
  display: inline-block;
  float: left;
}
.checkout .siteContent .checkoutLeft .shippingMethod .shippingRow .shippingRadio {
  width: 30px;
  text-align: center;
}
.checkout .siteContent .checkoutLeft .shippingMethod .shippingRow .shippingDescription {
  width: calc(100% - 30px);
}
.checkout .siteContent .checkoutLeft .shippingMethod .shippingRow .shippingDescription span {
  font-weight: bold;
}
.checkout .siteContent .checkoutLeft .shippingMethod .shippingRow .shippingDescription div {
  margin-bottom: 5px;
}
.checkout .siteContent .checkoutLeft .shippingMethod .shippingRow .shippingDescription p {
  font-size: 0.7em;
  line-height: 1.4em;
  margin: 0;
}
.checkout .siteContent .checkoutLeft .checkoutButtons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.checkout .siteContent .checkoutLeft .checkoutButtons #paypal-button {
  width: 100%;
  text-align: center;
}
.checkout .siteContent .checkoutLeft .checkoutButtons .checkoutPayOptions {
  margin: auto;
  text-align: center;
  font-size: 0.8em;
  line-height: 1.2em;
}
.checkout .siteContent .checkoutLeft .checkoutButtons .checkoutPayOptions img {
  width: 227px;
  height: auto;
  display: block;
  margin: auto;
}
.checkout .siteContent .checkoutLeft .checkoutButtons .checkoutPayOptions span.checkoutPayText {
  display: block;
  margin-bottom: 1.5em;
}
.checkout .siteContent .checkoutLeft .checkoutButtons .checkoutPayOptions span.checkoutPayText:before, .checkout .siteContent .checkoutLeft .checkoutButtons .checkoutPayOptions span.checkoutPayText:after {
  display: block;
  margin: 0.4em 0;
}
.checkout .siteContent .checkoutLeft .checkoutButtons .checkoutPayOptions span.checkoutPayText:before {
  content: "Pay safely today with Visa, MasterCard, AMEX on PayPal.";
}
.checkout .siteContent .checkoutLeft .checkoutButtons .checkoutPayOptions span.checkoutPayText:after {
  content: "No account required.";
}
.checkout .siteContent .checkoutLeft .checkoutButtons .checkoutPrev.smlBtn {
  margin: 10px auto;
  font-size: 0.7em;
  border: none;
}

/**
 * PayPal Checkout Page
 */
.checkoutPayPal .checkoutLeft {
  max-width: 500px;
  margin: 0 auto;
}
.checkoutPayPal .checkoutLeft h1 {
  text-align: center;
}
.checkoutPayPal .siteContent .checkoutRight .checkoutSubTotal .checkoutValue::after {
  display: none;
}

/**
 * Reusable radio styles
 */
.cartRadio input[type=radio] {
  width: 0px;
  visibility: hidden;
  height: 0px;
  margin: 0;
  padding: 0;
}
.cartRadio label {
  width: 15px;
  height: 15px;
  border-radius: 10px;
  position: relative;
  z-index: 10;
  display: inline-block;
  background: #eee;
  border: 1px solid #aaa;
  cursor: pointer;
}
.cartRadio label:after {
  content: " ";
  left: 2px;
  top: 0px;
  opacity: 0;
  background: #222;
  width: 9px;
  height: 9px;
  z-index: 1000;
  position: absolute;
  top: 2px;
  border-radius: 8px;
  display: inline-block;
}
.cartRadio label::before {
  background: #222;
  border-radius: 8px;
  content: " ";
  display: inline-block;
  height: 11px;
  left: 2px;
  position: absolute;
  top: 2px;
  width: 11px;
  z-index: 1000;
  opacity: 0;
}
.cartRadio input[type="radio"]:checked + .cartRadioLabel:after {
  opacity: 1;
}
.cartRadio input[type="radio"]:checked + .cartRadioLabel:before {
  display: none;
}

@-moz-document url-prefix() {
  .cartRadio input[type=radio] {
    margin-right: -13px;
  }
}
/**
 * Category Cover Image
 * Image is on the SubBanner section and it's container
 * using CSS you can toggle which one displays the image
 */
.subBannerCategory {
  width: 100%;
}
.subBannerCategory .container.hasImage {
  padding-bottom: 15%;
  background-size: cover !important;
  background-position: center center !important;
}

.categoryDescription {
  word-wrap: break-word;
}

.categorySection .siteContent {
  width: calc(100% - 250px);
}

.categorySection .sidebar {
  width: 100%;
  max-width: 250px;
}

/*-----------------------------------*/
/*----------- VALIDATION  -----------*/
/*-----------------------------------*/
.popUp {
  font-size: 13px;
  position: absolute;
  background: #fff;
  color: #222;
  padding: 7px;
  border-radius: 3px;
  margin-top: 5px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  color: white;
  border: 1px solid #ccc;
  color: black;
  z-index: 1000;
}

.popUpInner {
  position: relative;
}

.popUpInner:after {
  position: absolute;
  width: 0;
  left: 5px;
  top: -15px;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  content: "";
  z-index: 2;
}

.popUpInner:before {
  position: absolute;
  width: 0;
  left: 5px;
  top: -16px;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 9px solid #ccc;
  content: "";
  z-index: -1;
}

.fieldRequired {
  box-shadow: 0 0 2px 2px rgba(255, 0, 0, 0.5);
}

.fieldRequired:focus {
  box-shadow: 0 0 2px 2px rgba(255, 0, 0, 0.3);
}
@media (min-width:701px) and (max-width:1000px){/* ---------------------------------- */
/* ------------- GRID --------------- */
/* ---------------------------------- */
.col-1-med {
  width: 100%;
  width: calc(100% - 10px);
}

.col-2-med, .contentImgRow .item, .cartThumb {
  width: 50%;
  width: calc(50% - 10px);
}

.col-3-med {
  width: 33.333%;
  width: calc(33.333% - 10px);
}

/* ---------------------------------- */
/* ------------- OTHER -------------- */
/* ---------------------------------- */
}@media (min-width:701px) and (max-width:1000px){/*-------------------------------------------*/
/*--------- SHOPPING CART MEDIUM ------------*/
/*-------------------------------------------*/
.itemBtns {
  font-size: 0.8em;
}
}@media (max-width:700px){/* ---------------------------------- */
/* ------ MAIN BODY OF WEBSITE ------ */
/* ---------------------------------- */
html, body, form, fieldset, p, div, h1, h2, h3, h4, h5, h6 {
  -webkit-text-size-adjust: none;
  /* This stops the iPhone from automatically changing the size of the text when you flip the phone */
}

.outerWrap.menu-open {
  cursor: pointer;
}

.desktop-hide,
a.desktop-hide {
  display: block !important;
}

.mobile-hide,
a.mobile-hide,
#banner #viewCart, .viewCartSection {
  display: none !important;
}

/* ---------------------------------- */a/* ---------------------------------- */
/* ------ MAIN BODY OF WEBSITE ------ */
/* ---------------------------------- */
html, body, form, fieldset, p, div, h1, h2, h3, h4, h5, h6 {
  -webkit-text-size-adjust: none;
  /* This stops the iPhone from automatically changing the size of the text when you flip the phone */
}

body {
  font-size: 16px;
}

h1, h2, h3, h4 {
  line-height: 1.3em;
}

h1{
  font-size:1.8em;
}

h2{
  font-size:1.5em;
}

h3{
  font-size:1.2em;
}

/* ---------------------------------- */
/* ---------- VIEW CART BTN --------- */
/* ---------------------------------- */

#viewCart .container {
  position: absolute;
  z-index:9999;
  right:0px;
  text-align:right;
  width:100%;
  top:-10px;
}



.viewCart {
  font-size:1em!Important;
  position: relative!Important;
  width:;
  max-width:;
  /*--- JUSTIFY CONTENT ---*/
  -webkit-box-pack: start;
          justify-content:flex-start!Important;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  /*--- END JUSTIFY CONTENT ---*/
}

#viewCart .viewCart {
  color:#0083ff!Important;
  font-size:1.2em!Important;
  margin-right:0px;
  
}

.link0 .siteBottom {
  padding-top:0px;
  
}


.siteBottom {
  padding-top:0px;
  
}


.siteBottom section .container {
  padding:10px 10px;
  
}

/* ---------------------------------- */
/* ------------ SIDEBAR ------------- */
/* ---------------------------------- */
.sidebar, #outerSidebar {
  display: none;
}

/* ---------------------------------- */
/* ----------- NAVIGATION ----------- */
/* ---------------------------------- */
#menu {
  display: none;
}


#navToggleWrap {
  width: 100%;
  background: #500000!important;
  position:fixed;
  z-index:99999!Important;
  color: #fff;
  display: -ms-flexbox;
  display: flex!important;
}
#navToggleWrap > #navToggle, #navToggleWrap > a {
  -ms-flex-positive: 1;
      flex-grow: 1;
  padding: 15px 0;
  line-height: 1em;
  position: static;
  cursor: pointer;
  text-decoration: none;
  background: none;
  color: #fff;
}
#navToggleWrap > #navToggle:after, #navToggleWrap > a:after {
  line-height: 1em;
  display: block;
  text-align: center;
  margin: 8px 0 2px;
  
  display:;
}
#navToggleWrap > #navToggle:before, #navToggleWrap > a:before {
  font-family: FontAwesome;
  font-size: 1em;
  line-height: 1em;
  display: block;
  text-align: center;
  margin: 2px 0;
  color:#fff;
}
#navToggleWrap > #navToggle:after, #navToggleWrap > #navToggle span, #navToggleWrap > a:after, #navToggleWrap > a span {
  font-size: 11px;
  text-transform: uppercase;
}

#navToggleWrap #navToggle {
  background:#e4ab10;
  
}

#navToggleWrap #navToggle:before {
  content: "\f0c9";
  color:#;
}
#navToggleWrap #navToggle:after {
  content: "Menu";
}
#navToggleWrap .blank:before {
  content: "\f067";
}
 #navToggleWrap .facebook,  #navToggleWrap .twitter, #navToggleWrap .instagram, #navToggleWrap .address, #navToggleWrap .googlePlus, #navToggleWrap .pinterest, #navToggleWrap .linkedIn, #navToggleWrap .blank, #navToggleWrap .youTube, #navToggleWrap .enquiry {
  display:none;
}
#navToggleWrap .address:after {
  content: "address";
}
#navToggleWrap .facebook:after {
  content: "facebook";
}
#navToggleWrap .twitter:after {
  content: "twitter";
}
#navToggleWrap .instagram:after {
  content: "instagram";
}
#navToggleWrap .googlePlus:after {
  content: "googlePlus";
}
#navToggleWrap .pinterest:after {
  content: "pinterest";
}
#navToggleWrap .linkedIn:after {
  content: "linkedIn";
}
#navToggleWrap .blank:after {
  content: "blank";
}
#navToggleWrap .youTube:after {
  content: "youTube";
}
#navToggleWrap .email:after {
  content: "enquire";
}
#navToggleWrap .phone:after {
  content: "phone";
}

#mobileMenu {
  display: inline-block;
  background: #111;

}
#mobileMenu nav {
  display: none;
}
#mobileMenu nav > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#mobileMenu li {
  list-style-type: none;
}
#mobileMenu li a {
  width: 100%;
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
#mobileMenu li span {
  padding: 10px;
  display: block;
  color: #fff;
}
#mobileMenu .parent > span:after {
  content: "\f107";
  font: 1em fontawesome;
  margin-left: 10px;
  transition: .3s;
  transform: rotate(0deg);
  display: inline-block;
}
#mobileMenu .parent.open > span:after {
  transform: rotate(180deg);
}
#mobileMenu .current > span, #mobileMenu .current > a {
  opacity: 0.5;
}

#mobileMenu nav {
  display: inline-block;
  width: 100%;
}

#mobileMenu {
  position: fixed;
  top: 0;
  left: -80%;
  width: 80%;
  height: 100%;
  z-index: 999999;
  overflow: scroll;
  transition: .5s ease-out;
}
#mobileMenu.menu-open {
  left: 0;
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
}

/* ----------- SUB MENU ----------- */
#mobileMenu li ul {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(0, 0, 0, 0.3);
}
#mobileMenu li ul li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#mobileMenu li ul a {
  padding-left: 30px;
}

/* ---------------------------------- */
/* ------------- FOOTER ------------- */
/* ---------------------------------- */
#footerBottom {
  padding: 0 0 10px 0;
}
#footerBottom .container {
  -ms-flex-direction: column;
      flex-direction: column;
}
#footerBottom nav {
  width: 100%;
  padding: 10px 0;
  text-align: center;
  /*background:rgba(0,0,0,.2);*/
}
#footerBottom nav li {
  width: 100%;
}
#footerBottom .footerRight {
  text-align: center;
}

/*----------------------------------------------*/
/*--------------- ENQUIRY FORM -----------------*/
/*----------------------------------------------*/
#enquiry, .enqLeft, .enqRight {
  width: 100%;
  max-width: 100%;
}

/* ---------------------------------- */
/* ------------- GRID --------------- */
/* ---------------------------------- */
.col-1-small {
  width: 100%;
  width: calc(100% - 10px);
}

.col-2-small, .contentImgRow .item, .cartThumb {
  width: 50%;
  width: calc(50% - 10px);
}

/* ---------------------------------- */
/* --------- PHOTO SECTION ---------- */
/* ---------------------------------- */
.imageSection .item {
  width: 50%;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.clients .contentImgRow .item {
  border: 1px solid rgba(0,0,0,0.1);
  margin: 10px;
  width: calc(48% - 20px) !important;
  padding: 40px 20px;
  box-sizing: border-box;
  -webkit-box-flex: none;
      -ms-flex-positive: none;
          flex-grow: none;
}

.contentImgRow {
  /*--- JUSTIFY CONTENT ---*/
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  /*--- END JUSTIFY CONTENT ---*/
  /*------ FLEX WRAP ------*/
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  /*------ END FLEX WRAP ------*/
}

/* ---------------------------------- */
/* ----------- CUSTOM DIVS ---------- */

 .subBannerTextContainer{
  height:0px;
  display:none;
  
}

#subBanner {
  display:none;
  height:160px;
  
}

.abdelrehim {
  display:none;
  
}

/*Add to Home Screen Button */

.addtohome, .addtohome * {
  
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.addtohome {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 20px;  
  margin: auto;
  display: none;
  z-index: 1000000;  
  background: rgba(0, 0, 0, .8);
  border-radius: 5px;  
  padding: 8px 2%;
}

.addToHome .flexCenter {
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
           
   -webkit-align-items: center;
   -ms-flex-align: center;
   align-items: center;
}

.addToHomeLogo {
  display: inline-block;
  width: 65px;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}
.addToHomeLogo img {
  width: 100%;
  height: auto;
}

.addtohome .addHomeText {
  display: inline-block;
  width: calc(94% - 65px);
  margin-left: 2%;
  color: #fff;
  font-weight: 300;
  font-size: 0.85em;
  line-height: 1.4em;
  padding: 8px 0 6px;
}
.addIcon {
  margin: 0 2px;
  width: 12px;
  height: 12px;
  display: inline-block;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: relative
}
.addIcon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  height: 1px;
  border-left: 3px solid #fff;
  border-right: 3px solid #fff;
}
.addIcon:after {
  content: "\f176";
  font-family: FontAwesome;
  font-size: 10px;
  position: absolute;
  top: -10px;
  left: 3px;
  margin: auto;
}
.addtohome:after {
  position: absolute;
  bottom: -10px;
  left: 46%;
  width: 0px;
  height: 0px;
  content: "";
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid rgba(0, 0, 0, .8);
}
.addtohome:before {
  content:  "\f057";
  font-family: FontAwesome;
  color: #fff;
  position: absolute;
  top: 1px;
  right: 3px;
}

/* ---------------------------------- */
/* ---------------------------------- */
/* ------------- FOOTER ------------- */
/* ---------------------------------- */
footer {
  padding: 0 0 10px 0;
}
footer .container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
footer nav {
  width: 100%;
  text-align: center;
  padding: 10px 0;
  background: rgba(0, 0, 0, 0);
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*------ FLEX ALIGN -----*/
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  /*------ END FLEX ALIGN -----*/
  /*--- JUSTIFY CONTENT ---*/
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  /*--- END JUSTIFY CONTENT ---*/
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
footer .footerRight {
  text-align: center;
}

/*----------------------------------------------*/
/*--------------- ENQUIRY FORM -----------------*/
/*----------------------------------------------*/
#enquiry, .enqLeft, .enqRight {
  width: 100%;
}

/* ---------------------------------- */
/* --------- CART ITEM PAGE --------- */
/* ---------------------------------- */
.cartItemTop {
  display: inline-block;
}
.cartItemTop .cartItemImages, .cartItemTop .cartItemMain {
  padding: 0 10px;
  width: 100%;
  box-sizing: border-box;
}

.cartItemHeading {
  font-size: 1.4em;
}

.cartItemImages .cartItemHeading, .cartItemImages .cartItemCatHeading {
  display: inline-block;
}

.cartItemHeading {
  margin: 10px 0;
}

.flicker {
  margin-top: 10px;
}

.cartItemAction {
  /*------ FLEX WRAP ------*/
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  /*------ END FLEX WRAP ------*/
}
.cartItemAction a {
  box-sizing: border-box;
  margin-bottom: 10px;
  font-size: .9em;
}

.cartItemQty {
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}

.cartItemOptions {
  width: 100%;
  margin: 0;
}
.cartItemOptions .cartItemOptionHeading {
  width: 20%;
  text-align: left !important;
}
.cartItemOptions select, .cartItemOptions input {
  width: 80%;
}

.cartItemContent .cartItemMain .cartItemPrice {
  text-align: right;
  font-size: 1.7em;
  height: 42px;
}
.cartItemContent .cartItemMain .cartItemPrice div {
  width: 100%;
}
.cartItemContent .cartItemMain .cartItemPrice span {
  display: inline-block;
  width: auto;
  /*------ FLEX ORDER -----*/
  -webkit-box-ordinal-group: 2;
          order: 1;
  -webkit-order: 1;
  -ms-flex-order: 1;
  /*------ END FLEX ORDER -----*/
  margin: 5px 0 0;
}
.cartItemContent .cartItemMain .cartItemCode {
  text-align: right;
  font-size: .8em;
  padding: 0 10px;
}

.cartItemShortDesc {
  padding: 10px 0;
}

.cartItemBottom {
  padding: 0 10px;
}

/* ---------------------------------- */
/* ----------- CART ITEMS ----------- */
/* ---------------------------------- */
.cartItem {
  width: 48%;
  margin-bottom: 10px;
}

.cartItem:nth-last-child(1), .cartItem:nth-last-child(2), .cartItem:nth-last-child(3), .cartItem:nth-last-child(4) {
  margin-bottom: 10px;
}

.cartItem:nth-last-child(1), .cartItem:nth-last-child(2) {
  margin-bottom: 0px;
}

.cartItemPrice {
  display: inline-block;
  text-align: center;
  height: 58px;
  width: 100%;
  box-sizing: border-box;
}
.cartItemPrice span {
  width: 100%;
  display: inline-block;
  font-size: .7em;
}

.cartItemBtns a {
  padding: 5px;
  box-sizing: border-box;
}
.cartItemBtns a span {
  width: 100%;
  display: inline-block;
  text-align: center;
}

.viewCartRow {
  /*------ FLEX WRAP ------*/
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  /*------ END FLEX WRAP ------*/
}

.viewCartDescription {
  width: 60% !important;
}

.viewCartRow {
  font-size: .8em;
  padding: 5px;
}
.viewCartRow .viewCartTotal {
  width: 50px;
  text-align: left;
}
.viewCartRow .viewCartDelete {
  width: 25px;
}

.viewCartItem, .viewCartPrice {
  display: none;
}

.cartUpdate, .cartSubTotal {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.cartItemAction a {
  margin-bottom: 0;
}

.viewCartQuantity {
  display: none;
}

.cartItemAction .cartItemPrev, .cartItemAction .cartItemAdd {
  width: 100%;
  margin-top: 3px;
  text-align: center;
}

/*-- CHECKOUT --*/
.checkoutSection {
  font-size: .9em;
}

.resumeShopping {
  display: none;
}

.checkoutSingle {
  display: inline-block;
}

.singleInput {
  width: 100% !important;
  margin-bottom: 10px;
}

.checkoutStageComplete {
  width: 100%;
  text-align: center;
  /*--- JUSTIFY CONTENT ---*/
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  /*--- END JUSTIFY CONTENT ---*/
}

.cartBtn {
  width: 100%;
}

.checkoutNext {
  margin-top: 10px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.reviewQuestionRow {
  display: inline-block;
  width: 100%;
}
.reviewQuestionRow .reviewQuestion, .reviewQuestionRow .reviewQuestionAnswer {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.checkoutReviewMessage {
  word-wrap: break-word;
}

.checkoutReview {
  display: inline-block;
}

.checkoutSectionInner {
  width: 100% !important;
  box-sizing: border-box;
  margin-top: 5px;
}

.cartQuestionRow, .cartQuestion, .cartQuestionInput {
  width: 100% !important;
  display: inline-block;
  margin: 3px 0 !important;
}

/* ---------------------------------- */
/* -------- BANNER OF WEBSITE ------- */
/* ---------------------------------- */




.desktopHide {
  display: block;
}
.mobileHide {
  display: none !important;
}

.siteTop {
  position: relative;
  background:#000;
  margin-top:0px;
}

.link0 .logo{
  width:80%;
   max-width:250px;
   margin-top: 20px;
   padding-bottom:10px;
}
.logo {
  max-width:200px;
   padding-bottom:10px;

  
}



#banner .container{
  position:absolute;  background:!important;


  
}



.link0 #banner{
  background-size:cover;  
  padding:60px 0 0px;
  top:0px;
  position:relative;
  
}


 #banner{
   background:url(files/sl2.jpg) center no-repeat;
  background-size:cover;  
  padding:70px 0 150px;
  top:0px;
  position:relative;
  
}


#banner .contact {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  display:none;
}

#banner .contact a {
  display: inline-block;
  margin: 0;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 0 !important;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

#banner .contact a:hover {
  -webkit-transform: none;
          transform: none;
}

#banner .contact a:before {
  margin-right: 0;
}

#banner .contact a span {
  display: none;
}


#section1{
  padding:0;
}


.link0 #section1 .siteContent{
  padding: 0px;
}



.link0 #section2 {
  margin-top:0px;
  
}


.link0 #section1 h1, .link0 #section2 h1  {
  margin-bottom: 10px;
}

.link0 #section1 h3 {
  font-size:1em;
  
}

.link0 #section4 {
  background:#500000;
  padding:0;
  margin:0;
  
}

.link0 #section5 {
  padding:0;
  margin:0;
  
}


h6 a {
  margin-top: 0.8em;
}

.M_full_img, .M_left_img, .M_left_imgC, .M_right_img, .M_right_imgC {
  padding: 0px 0;
}


.basicFrame{
  width:90%;
  margin:5px auto;
  
}

/* ---------------------------------- */
/* -------- GRAPHICAL BUTTONS ------- */

.butFrame {
  margin:5px auto;
  
}

/* ---------------------------------- */

/* ---------------------------------- */
/* -------- SLIDESHOW STYLES -------- */
/* ---------------------------------- */

.mouse, .flickerplate .arrow-navigation {
  display: none !important;
}

.mainSlider .flickerplate, .flick-inner {
    /*Adjust This To Suit % Images*/

    padding-bottom: 95% !important;
    height: 0;
}



.flick-content {
  padding: 0;
  bottom: 30%;
  font-size: 3vw;
  
  display:none;
}

.flick-title {
  font-size: 3em;
  letter-spacing:-1px;

}

.flick-sub-text {
    font-size: 1.5em;

  
}



.flickerplate .dot-navigation {
  display: none;
}

/*.flick-inner .flick-content {
  display: none;
}*/




/* ---------------------------------- */
/* ---------- CUSTOM FOOTER --------- */


.cfframe {
  width:100%;
  margin-bottom:30px;
  text-align:center;
}

.cfwrap {
  padding:15px 0px;
}

.cfframe:nth-last-child(1) {
  margin-bottom:0;
}

/* ---------------------------------- */
/* ---------------------------------- */
/* ----------- ULTIMATE CSS --------- */
/* ---------------------------------- */

a.callback {
  display: none;
}

/*#enquire-dropdown {
  height: 370px;
}*/

/* ---------------------------------- */
/* ----------- CUSTOM CSS ----------- */
/* ---------------------------------- */



.link0 #section1 h1 {
  line-height:1;
}


.compressor1, .compressor2{
  display:none;
}

td{
  width:100%!Important;
  display:block;
  
}

.M_right_img .container .siteContent {
    width: 100%;
    margin-left: 0%;
}
  

    .M_right_img .backgroundImage:before {
  
  width:90%;
  margin: auto 5%;
      font-size:1.4em;
  
}

.M_left_img .container .siteContent {
    width: 90%;
    margin-left: 5%;
}
  
  .M_left_img .backgroundImage:before {
  
  width:90%;
  margin: auto 5%;
      font-size:1.4em;
  
}
  



.col-1, .col-2,.col-3, .col-4, .col-5, .col-6 {
  width: calc(100% - 20px)!important;
  margin: 10px;
}
.contactContainer {
  text-align: center;
}
.contactContainer .col-1 {
  width: calc(100% - 20px);
   margin: 10px;
  display: block;
}

.contactContainer .col-2 {
  width: calc(50% - 20px);
   margin: 10px;
  display: inline-block;
}
.contactContainer .col-3 {
   width: calc(33.33% - 20px);
   margin: 10px;
   display: inline-block;
}
.contactContainer .col-4 {
   width: calc(25% - 20px);
   margin: 10px;
   display: inline-block;
}
.contactContainer .col-5 {
  width: calc(20% - 20px);
   margin: 10px;
  display: inline-block;
}
.contactContainer .col-6 {
 width: calc(16.66% - 20px);
   margin: 10px;
 display: inline-block;
}

/* ------------ SIDEBAR ------------- */
/* ---------------------------------- */
.sidebar,
#outerSidebar {
  display: none;
}

/* ---------------------------------- */
/* -------- VIEW CART BUTTON -------- */
/* ---------------------------------- */
#viewCart {
  position: static;
  border: 0px solid transparent;
}
#viewCart .itemCount, #viewCart .total {
  display: inline-block;
}
}@media (max-width:700px){.cartItemPage .itemLeft, .cartItemPage .itemRight {
  width: 100%;
}
.cartItemPage .itemAction, .cartItemPage .itemButtons, .cartItemPage .itemAdd, .cartItemPage .itemPrev {
  width: 100%;
}
.cartItemPage .itemButtons {
  display: inline-block;
}
.cartItemPage .itemQty {
  -ms-flex-pack: center;
      justify-content: center;
  margin: 10px 0;
}
.cartItemPage .itemPrev:after {
  content: "Previous Page";
}
.cartItemPage .itemLeft h1, .cartItemPage .itemLeft .itemCode, .cartItemPage .itemLeft .itemPrice, .cartItemPage .itemLeft .itemShortDesc {
  display: block;
}
.cartItemPage .itemRight h1, .cartItemPage .itemRight .itemCode, .cartItemPage .itemRight .itemPrice, .cartItemPage .itemRight .itemShortDesc {
  display: none;
}

.itemCodeStock {
  text-align: right;
  margin: 10px 10px 5px 10px;
}

.itemStock {
  text-align: right;
  padding: 5px;
  margin-bottom: 10px;
}

.itemMainInfo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.itemMainInfo .itemStock {
  -ms-flex-order: 1;
      order: 1;
}
.itemMainInfo .itemButtons, .itemMainInfo .itemDesc {
  -ms-flex-order: 2;
      order: 2;
}

.viewCartContent .prevPage:after {
  content: "Previous Page";
}
.viewCartContent .viewCartItem, .viewCartContent .viewCartContent .viewCartQuantity {
  display: none;
}

.discountCodeInput, .applyDiscount, .checkoutNext, .checkoutPrev {
  text-align: center;
  margin: 5px 0;
}

#discountForm {
  display: inline-block;
}

#shippingForm {
  display: inline-block;
}

#shippingForm select {
  width: 100%;
}

.cartQuestionRow {
  display: inline-block;
  width: 100%;
  margin: 0;
}
.cartQuestionRow .cartQuestion {
  margin-bottom: 5px;
  width: 100%;
}
.cartQuestionRow .cartQuestionInput {
  width: 100%;
  margin: 0;
}

#reviewSection .viewCartSection {
  display: inline-block;
}
#reviewSection .viewCartSection .reviewLeft, #reviewSection .viewCartSection .reviewRight {
  width: 100%;
  padding: 0;
}

.priceSection {
  border: 0;
}

.checkoutSection h2 {
  font-size: 1em;
  margin-bottom: 15px;
}

.viewCartRowHeader .viewCartDescription, .viewCartRowHeader .viewCartDelete, .viewCartRowHeader .viewCartItem {
  display: none !important;
}

.viewCartRow {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.viewCartContent .viewCartItem, .viewCartContent .viewCartContent .viewCartQuantity {
  display: inline-block;
}

.viewCartDelete, .deleteForm, .viewCartDescription {
  -ms-flex-order: -1;
      order: -1;
}

.deleteForm {
  width: 10%;
}

.viewCartRow .viewCartDescription {
  width: calc(90% - 140px);
  padding: 0 0.5em;
}

.viewCartRow .viewCartPrice, .viewCartRow .viewCartTotal {
  width: 20%;
}

.viewCartItem {
  margin-bottom: 15px;
}

.viewCartRow {
  position: relative;
}
.viewCartRow:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
}
.viewCartRow:first-child:before {
  display: none;
}

.checkoutSectionInner, .checkoutReview .checkoutFinalPrice, .checkoutReview .checkoutPaypal {
  width: 100%;
}

.priceSection .cartPriceRow, .checkoutFinalPrice .cartPriceRow {
  -ms-flex-pack: center;
      justify-content: center;
}

.cartBtn {
  font-size: 0.8em;
}

/* ---------------------------------- */
/* ---------- VIEW CART BTN --------- */
/* ---------------------------------- */
#viewCart .viewCart {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  -ms-flex-pack: center;
      justify-content: center;
  top: 0;
  left: 0;
  border-radius: 0;
}
#viewCart .viewCart:after {
  box-shadow: none;
}

.cartItems {
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: stretch;
      align-items: stretch;
}
.cartItems .cartItem {
  width: 48%;
}
.cartItems .itemName {
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  padding: 0 5px;
  white-space: nowrap;
}

.categorySection .siteContent {
  width: 100%;
}
.categorySection .sidebar {
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0;
}
.categorySection .container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.siteBottom .paginationContainer {
  display: inline-block;
}
.siteBottom .paginationContainer .shopPaginationItemsPerPage {
  margin: 10px 0;
}
.siteBottom .paginationContainer .shopPaginationItemsPerPage .shopPagination {
  width: 100%;
  -ms-flex-pack: center;
      justify-content: center;
}
.siteBottom .paginationContainer .shopPaginationBtn {
  width: 40px;
  height: 40px;
}

.checkout .siteContent .checkoutLeft, .checkout .siteContent .checkoutRight {
  width: 100%;
}
.checkout .siteContent .checkoutRight {
  -ms-flex-order: -1;
      order: -1;
  display: inline-block;
}
.checkout .siteContent .checkoutRight .openCheckout {
  display: block;
  margin: auto;
}
.checkout .siteContent .checkoutRight .checkoutSummary {
  display: none;
}

.checkout.checkoutPayPal .siteContent .checkoutRight .checkoutSummary {
  display: block;
}
.checkout.checkoutPayPal .siteContent .checkoutRight .openCheckout {
  display: none;
}

.checkout.checkoutShippingPage .siteContent .checkoutRight .openCheckout {
  display: none;
}
.checkout.checkoutShippingPage .siteContent .checkoutRight .checkoutSummary {
  display: inline-block;
  width: 100%;
}

.checkout .siteContent .checkoutRight .checkoutSummary > .items > .checkoutRow .checkoutValue {
  width: 100%;
}
.checkout .siteContent .checkoutRight .checkoutSummary > .items > .checkoutRow .checkoutValue .itemPrice {
  padding-top: 10px;
}
.checkout .siteContent .checkoutRight .checkoutSummary > .items > .checkoutRow .checkoutTitle {
  width: 100%;
}
}