/* ---------------------------------- */
/* ------ MAIN BODY OF WEBSITE ------ */
/* ---------------------------------- */
html {
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
}

body {
  background: url(/bg.jpg) top center fixed no-repeat; #fff;
  font: 16px Arial, verdana, helvetica, sans-serif;
  color: #333;
  line-height: 1.4em;
  font-family: 'Lato', sans-serif;
  position:relative;
}

a {
  color: #555;
}

a:hover {
  color: #000;
}

/* ---------------------------------- */
/* ------------ HEADINGS ------------ */
/* ---------------------------------- */
h1, h2, h3, h4 {
  font-weight: 500;
  font-family: inherit;
  line-height: 1em;
}

h1 {
  font-size: 2em;
  color: #111;
  margin-top: 0px;
  margin-bottom: 15px;
}

h2 {
  font-size: 1.5em;
  color: #375478;
  margin-top: 0px;
  margin-bottom: 15px;
  font-weight:600;
}

h3 {
  font-size: 1.4em;
  color: #333;
  margin-top: 5px;
  margin-bottom: 5px;
}

h4 {
  font-size: 1.4em;
  color: #375478;
  margin-top: 10px;
  margin-bottom: 10px;
  width:100%;
  display:block;
  padding: 20px 20px;
  box-sizing:border-box;
  background:#335176;
  background:#E4E1E1;
  font-weight:600;
}

h4:before {
  content:"\f061";
  font-family:FontAwesome;
  margin-right:10px;
  font-size:.7em;
  vertical-align:top;
}

.link0 h4 {
  background:none;
  margin:0;
  padding:0;
}

.link0 h4:before {
  display:none;
}

h5 {
  font-size:1.2em;
  margin:15px 0px;
  color:#335176;
}

h5:after {
  content:"\f075";
  font-family:FontAwesome;
  margin-left:10px;
  font-size:.9em;
  vertical-align: top;
  color:#4EA9D0;
}

h6 {
  font-size:2em;
  margin:20px 0px;
  color:#143660;
  border-bottom:3px solid #143660;
  padding-bottom:20px;
}

section {
  width: 100%;
}

.container {
  max-width: 1350px;
  width: 100%;
  margin: auto;
  position: relative;
}

/* ---------------------------------- */
/* ---------- CONTENT AREA ---------- */
/* ---------------------------------- */


.siteBottom .container {
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*--- JUSTIFY CONTENT ---*/
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  /*--- END JUSTIFY CONTENT ---*/
  /*------ FLEX ALIGN -----*/
  align-items: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  /*------ END FLEX ALIGN -----*/
  box-sizing: border-box;
  padding: 0 10px;
}

.siteContent {
  width: 100%;
  -ms-flex: 1 1 auto;
}

.contentCopy {
  padding: 45px 0 20px;
}

#subBanner img {
  width: 100%;
  height: auto;
}

#callbacks {
  display: none;
}

.buttonSection .siteContent, .buttonSection .container {
  padding: 0;
}

/* ---------------------------------- */
/* ----------  BASIC BTNS  ---------- */
/* ---------------------------------- */
.basicFrame {
  width: 24%;
  padding: 20px 0px;
  background: #f1f1f1;
  color: #222;
  cursor: pointer;
  border-radius: 2px;
  text-align: center;
  margin-bottom: 10px;
}

.basicFrame:hover {
  background: #222;
  color: #f1f1f1;
}

/* ---------------------------------- */
/* ------------ SIDEBAR ------------- */
/* ---------------------------------- */
.sidebar {display:none;
  width: 230px;
  padding: 0 15px;
  margin: 0px 15px 0px 0;
  box-sizing: border-box;
  /*------ FLEX SIZE -----*/
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-flex-shrink: 0;
  /*---- END FLEX SIZE ---*/
  background: rgba(0, 0, 0, 0.1);
  line-height: 1.5em;
}

.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;
  image-rendering: -moz-crisp-edges;
}
.sidebar .item .caption, #outerSidebar .item .caption {
  font-size: .8em;
}

#outerSidebar {
  display: none;
}

#cartContent .sidebar {
  display: none;
}

/*
@media (min-width:600px){
    .siteBottom {
      width: 100%;
      max-width: 1100px;
      margin: auto;
      display: -ms-flexbox;
      display: -webkit-box;
      display: box;
      display: flex;
      display: -webkit-flex;
      justify-content: space-between;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      -webkit-box-pack: justify;
      box-pack: justify;
    }

    .sidebar {
      display: none;
    }

    #outerSidebar {
      width: 200px;
      padding: 0 15px;
      flex-shrink: 0;
      -webkit-flex-shrink: 0;
      background: rgba(0, 0, 0, 0.1);

      display: inline-block;
    }

    .contentWrap {
      width: 100%;
      -ms-flex:0 1 auto;
    }
}

*/


/* ---------------------------------- */
/* ---------- VIEW CART BTN --------- */
/* ---------------------------------- */
#viewCart .container {
  position: relative;
}

.viewCart {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  height: 38px;
  z-index: 1000;
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*--- JUSTIFY CONTENT ---*/
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  /*--- END JUSTIFY CONTENT ---*/
  cursor: pointer;
  color: #fff;
}

.viewCart:before, .viewCart:after {
  /*---- 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 -----*/
}

.viewCart:before {
  font: 1.5em FontAwesome;
  content: "\f07a";
  border-right: 1px solid #717a83;
  padding: 0px 10px;
}

.viewCart:after {
  content: "View Cart";
  padding: 0px 25px;
  border-left: 1px solid #3a4b5a;
}

.viewCart:hover {
  background: rgba(255, 255, 255, 0.3);
}

.viewCartCurrent {
  background: rgba(255, 255, 255, 0.4);
}

/* ---------------------------------- */
/* -------- CONTACT DETAILS --------- */
/* ---------------------------------- */
.contact a:before, .contact div:before, .contact p:before {
  font-family: FontAwesome;
  display: inline-block;
  position: relative;
  margin-right: 10px;
  color: #fff;
}

.phone:before {
  content: "\f095";
}

.mobile:before {
  content: "\f10b";
}

.email:before {
  content: "\f0e0";
}

.fax:before {
  content: "\f1ac";
}

.address:before {
  content: "\f041";
}

/* ---------------------------------- */
/* ---------- SOCIAL LINKS ---------- */
/* ---------------------------------- */
.socialLinks {
  width: 100%;
  position: relative;
  z-index: 2;
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*--- JUSTIFY CONTENT ---*/
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  /*--- END JUSTIFY CONTENT ---*/
  /*------ FLEX ALIGN -----*/
  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: 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 -----*/
  color: #fff;
  font-size: 1.6em;
  line-height: 1.5em;
  padding: 1px 0 1px 0;
}

.facebook {
  background: #49639E;
}

.facebook:after {
  content: "\f09a";
}

.instagram {
  background: #555;
}

.instagram:after {
  content: "\f16d";
}

.twitter {
  background: #5EA9DD;
}

.twitter:after {
  content: "\f099";
}

.googlePlus {
  background: #DD4B39;
}

.googlePlus:after {
  content: "\f0d5";
}

.pinterest {
  background: #BD081C;
}

.pinterest:after {
  content: "\f0d2";
}

.linkedIn {
  background: #0177B5;
}

.linkedIn:after {
  content: "\f0e1";
}

.youTube {
  background: #E22D24;
}

.youTube:after {
  content: "\f167";
}

/* ---------------------------------- */
/* --Standard for HR line styling  -- */
/* ---------------------------------- */
hr {
  border: 0;
  height: 1px;
  color: #c1c1c1;
  background-color: #c1c1c1;
  width: 100%;
}

/* ---------------------------------- */
/* ----------- NAVIGATION ----------- */
/* ---------------------------------- */
#menu {
  position: relative;
  z-index: 100;
  background: #515151;
}

#menu nav {
  max-width: 1100px;
  width: 100%;
  margin: auto;
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*--- JUSTIFY CONTENT ---*/
  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 ------*/
}

#menu nav li {
  list-style: none;
  float: left;
  display: inline-block;
  margin: 0;
}

#menu nav li a {
  display: inline-block;
  text-decoration: none;
  width: 100%;
  padding: 10px;
  color: #fff;
  box-sizing: border-box;
  vertical-align: top;
  font-size: 1em;
}

#menu nav li a:hover {
  background: rgba(255, 255, 255, 0.2);
}

#menu nav li .current {
  background: rgba(0, 0, 0, 0.2);
}

#menu nav .parent > a:after {
  font-family: FontAwesome;
  margin-left: 8px;
  content: "\f107";
  line-height: 1em;
}

#menu nav .subContainer .current a {
  background: rgba(0, 0, 0, 0.1);
}

#mobileMenu {
  display: none;
}

/* ---------------------------------- */
/* ------------ SUB MENU ------------ */
/* ---------------------------------- */
#menu nav ul {
  position: absolute;
  width: 150px;
  margin: 0;
  padding: 0;
  display: none;
  font-size: .85em;
}

#menu .subContainer {
  background: #333;
  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 #333;
}

#menu nav ul li {
  width: 100%;
  display: inline-block;
}
#menu nav ul li a {
  padding: 5px 10px;
}

/*-----------------------------------*/
/*------------ 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 {
  width: 100%;
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*------ FLEX ALIGN -----*/
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  /*------ END FLEX ALIGN -----*/
  /*--- JUSTIFY CONTENT ---*/
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  /*--- END JUSTIFY CONTENT ---*/
  image-rendering: -moz-crisp-edges;
}
.contentImgRow .item:nth-child(1) {
  margin-left: 0;
}
.contentImgRow .item:nth-last-child(1) {
  margin-right: 0;
}

.contentImgRow .item {
  width: 24%;
  display: inline-block;
  margin: 0 5px 10px;
}

.contentImgRow .contentImg {
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  margin: 0;
}

.contentImgRow .caption {
  font-size: .8em;
  margin-top: 5px;
}

/* ---------------------------------- */
/* ---------- FONT AWESOME ---------- */
/* ---------------------------------- */
.fontAwesome {
  font-family: FontAwesome;
}

/*----------------------------------------------*/
/*--------------- ENQUIRY FORM -----------------*/
/*----------------------------------------------*/
#enquiry {
  width: auto;

  float: right;
  padding: 0;
  width: 500px;
  color: #333;
  box-sizing: border-box;
  margin-left: 20px;
  font-size: 1em;
}

.enqHeader {
  background: #4EA9D0;
  color: #fff;
  padding: 15px 10px;
  margin-bottom: 10px;
  font-size: 1.3em;
  text-align:center;
}

.enqRow {
  width: 100%;
  overflow: hidden;
  padding: 5px 0px;
  box-sizing: border-box;
}

#enquiry .flex2, #enquiry .flex3 {
  width:100%;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-flex-direction:row;
      -ms-flex-direction:row;
          flex-direction:row;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
      -webkit-flex-flow:row wrap;
    -ms-flex-flow:row wrap;
    flex-flow:row wrap;
}

#enquiry .flex3 .enqRow {
  width:33%;
}

#enquiry .flex2 .enqRow {
  width:49.5%;
}

.enqRight {
  width: 100%;
  float: left;
}

#enquiry input, #enquiry textarea {
  width: 100%;
  border: none;
  padding: 15px 7px;
  box-sizing: border-box;
  font-size: 1em;
  -webkit-appearance: none;
  border-radius: 0;
    font-family: 'Lato', sans-serif;
background:#E0DFDF;
  border:1px solid #ccc;
}

#enquiry textarea {
  height: 80px;
}

#enquiry input[type="radio"] {
  width: 10%;
  -webkit-appearance: radio;
}

#enquiry input[type="checkbox"] {
  -webkit-appearance: checkbox;
  width: 10%;
}

#enquiry input[type="submit"] {
  margin-bottom: 10px;
  border: 0;
  color: #fff;
  padding: 10px 0;
  background: #4EA9D0;
  cursor: pointer;
  font-size:1em;
  font-weight:500;
}

#enquiry select {
  width: 100%;
}

.enqRight div {
  text-align:right;
  font-size:.7em;
}


/*----------------------------------------------*/
/*--------------- Quote FORM -----------------*/
/*----------------------------------------------*/
#quoteenquiry {
  width: auto;

display:block;
  padding: 0;
  width: 70%;
  color: #333;
  box-sizing: border-box;
margin: 0 auto;
  font-size: 1em;
}

#quoteenquiry .enqHeader {
  background: #4EA9D0;
  color: #fff;
  padding: 15px 10px;
  margin-bottom: 10px;
  font-size: 1.3em;
  text-align:center;
}

#quoteenquiry .enqRow {
  width: 100%;
  overflow: hidden;
  padding: 5px 0px;
  box-sizing: border-box;
}

#quoteenquiry .flex2, #quoteenquiry .flex3 {
  width:100%;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-flex-direction:row;
      -ms-flex-direction:row;
          flex-direction:row;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
      -webkit-flex-flow:row wrap;
    -ms-flex-flow:row wrap;
    flex-flow:row wrap;
}

#quoteenquiry .flex3 .enqRow {
  width:33%;
}

#quoteenquiry .flex2 .enqRow {
  width:49.5%;
}

#quoteenquiry .enqRight {
  width: 100%;
  float: left;
}

#quoteenquiry input, #quoteenquiry textarea {
  width: 100%;
  border: none;
  padding: 15px 7px;
  box-sizing: border-box;
  font-size: 1em;
  -webkit-appearance: none;
  border-radius: 0;
    font-family: 'Lato', sans-serif;
background:#E0DFDF;
  border:1px solid #ccc;
}

#quoteenquiry textarea {
  height: 80px;
}

#quoteenquiry input[type="radio"] {
  width: 10%;
  -webkit-appearance: radio;
}

#quoteenquiry input[type="checkbox"] {
  -webkit-appearance: checkbox;
  width: 10%;
}

#quoteenquiry input[type="submit"] {
  margin-bottom: 10px;
  border: 0;
  color: #fff;
  padding: 10px 0;
  background: #4EA9D0;
  cursor: pointer;
  font-size:1em;
  font-weight:500;
}

#quoteenquiry select {
  width: 100%;
}

#quoteenquiry .enqRight div {
  text-align:right;
  font-size:.7em;
}

/* ---------------------------------- */
/* ------------- FOOTER ------------- */
/* ---------------------------------- */
footer {
  width: 100%;
  background: #222;
  font-size: .75em;
margin-top:35px;
}

footer .container {
  overflow: hidden;
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*--- JUSTIFY CONTENT ---*/
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  /*--- END JUSTIFY CONTENT ---*/
  /*------ FLEX ALIGN -----*/
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  /*------ END FLEX ALIGN -----*/
    padding:15px 10px 20px;
  box-sizing:border-box;
  max-width:1600px!important;
}

.footerRight {
  text-align: right;
  margin-right: 10px;
  width:30%;
}

/*-------- FOOTER TEXT STYLES ---------*/
footer, footer a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

footer a:hover {
  color: white;
}

/*------------ FOOTER MENU ------------*/
footer nav {
  width: 60%;
  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;
}

footer nav li a:hover {
  /**/
}

/* ----------------------------------------- */
/* -----------------TO TOP ----------------- */
/* ----------------------------------------- */
#toTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  background: #1CA2D8;
  text-align: center;
  padding-top: 14px;
  text-decoration: none;
  color: transparent;
  font: .9em fontAwesome;
  opacity: .8;
  filter: alpha(opacity=80);
  transition: .5s;
}

#toTop:before {
  font: 1.3em fontAwesome;
  content: "\f062";
  width: 100%;
  height: auto;
  position: absolute;
  color: #fff;
  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;
}

#toTopHover {
  display: none;
}

#toTop:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  transition: .5s;
}

/*-----------------------------------*/
/*--------- SHOPPING CART -----------*/
/*-----------------------------------*/
.cartItems {
  width: 100%;
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*--- JUSTIFY CONTENT ---*/
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  /*--- END JUSTIFY CONTENT ---*/
  /*------ FLEX WRAP ------*/
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  /*------ END FLEX WRAP ------*/
  /*------ FLEX ALIGN -----*/
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  /*------ END FLEX ALIGN -----*/
  color: #333;
  margin: 15px 0;
}
.cartItems a {
  text-decoration: none;
}

.cartItem {
  width: 24%;
  background: #e3e3e3;
  margin: 0 .5%;
  margin-bottom: 20px;
  border-bottom: 4px solid #ccc;
}

.cartItem:nth-child(1) {
  margin-left: 0;
}

.cartItem:nth-last-child(1) {
  margin-right: 0;
}

.cartItemImage {
  width: 100%;
  position: relative;
}

.cartItemSale {
  position: absolute;
  top: 0;
  left: 0;
  background: #737373;
  color: #f2f2f2;
  padding: 8px 10px 10px;
  border-radius: 0 0 10px 0;
  z-index: 1000;
}

.cartItemThumb {
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  background-size: cover !important;
  position: relative;
  cursor: pointer;
}

.cartItemThumb:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 70px;
  height: 70px;
  content: "\f002";
  background: rgba(0, 0, 0, 0.8);
  border-radius: 35px;
  font: 2.5em FontAwesome;
  /*---- 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 -----*/
  color: #fff;
  margin: auto;
  transform: scale(0);
  -webkit-transform: scale(0);
  transition: 0.15s ease-in;
}

.cartItemThumb:hover:after {
  transform: scale(1);
  -webkit-transform: scale(1);
  transition: 0.15s ease-in;
}

.cartItemInfo {
  height: 60px;
  overflow: hidden;
  background: #fafafa;
  padding: 10px;
  box-sizing: border-box;
}

.cartItemName {
  font-weight: 700;
  color: #737373;
}

.cartItemCat {
  font-weight: 300;
  font-size: .9em;
  text-decoration: none;
}

.cartItemPrice {
  /*---- 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 ---*/
  box-sizing: border-box;
  /*------ FLEX ALIGN -----*/
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  /*------ END FLEX ALIGN -----*/
  padding: 10px;
  font-size: 1.1em;
  font-weight: 700;
}
.cartItemPrice span {
  text-decoration: line-through;
  opacity: .8;
  font-weight: 500;
  font-size: .85em;
  margin-right: 20px;
}

.cartItemBtns {
  padding: 5px 10px;
  font-size: .9em;
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  box-sizing: border-box;
  /*--- JUSTIFY CONTENT ---*/
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  /*--- END JUSTIFY CONTENT ---*/
}
.cartItemBtns a, .cartItemBtns div {
  background: #333;
  color: #f2f2f2;
  border-radius: 3px;
  padding: 5px 15px;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}
.cartItemBtns a span, .cartItemBtns div span {
  margin-right: 5px;
}
.cartItemBtns a:hover {
  background: #555;
}

.categoriesHeading {
  color: #444;
}

.categoriesHeading:before {
  content: "Shop Categories";
  line-height: 1.5em;
}

.cartItemsCategories {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}
.cartItemsCategories a {
  text-decoration: none;
  color: #555;
  width: 100%;
  display: inline-block;
  padding: 5px 10px;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
  margin: 10px 0 5px;
  font-size: 1.1em;
}
.cartItemsCategories .subCat {
  padding-left: 20px;
  background: none;
  font-weight: 500;
  margin: 0;
  border-bottom: 1px dashed #666;
}
.cartItemsCategories a:hover {
  background: rgba(255, 255, 255, 0.5);
}
.cartItemsCategories a:after {
  font-family: FontAwesome;
  content: "\f054";
  font-size: .7em;
  float: right;
  opacity: .7;
}

.cartItemOutOfStock {
  width: 100%;
}

.shoppingContent h1, .shoppingContent h2, .shoppingContent h3, .shoppingContent h4 {
  margin-top: 5px;
}

.cartItemContent {
  line-height: 1.7em;
  color: #555555;
  width: 100%;
}

.cartItemTop {
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*--- JUSTIFY CONTENT ---*/
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  /*--- END JUSTIFY CONTENT ---*/
  /*------ FLEX ALIGN -----*/
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  /*------ END FLEX ALIGN -----*/
  padding: 10px 0;
}

.cartItemImages {
  width: 40%;
  padding-right: 15px;
  box-sizing: border-box;
}

.cartItemHeading {
  line-height: 1.1em;
  margin: 15px;
}

.cartItemMain {
  width: 60%;
}
.cartItemMain .cartItemPrice {
  font-size: 1.5em;
  text-align: right;
  display: inline-block;
  width: 100%;
}
.cartItemMain .cartItemPrice div {
  font-weight: 300;
  font-size: .9em;
  display: inline-block;
  width: 100%;
}
.cartItemMain .cartItemPrice div span {
  display: inline-block;
  margin-top: 10px;
}
.cartItemMain .cartItemCode {
  text-align: right;
  padding: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.cartItemOptions {
  width: 80%;
  margin-left: 20%;
}
.cartItemOptions .cartItemOption {
  width: 100%;
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*--- JUSTIFY CONTENT ---*/
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  /*--- END JUSTIFY CONTENT ---*/
  /*------ FLEX ALIGN -----*/
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  /*------ END FLEX ALIGN -----*/
  padding: 2px 0;
}
.cartItemOptions .cartItemOption .cartItemOptionHeading {
  width: 30%;
  text-align: right;
  padding-right: 10px;
  box-sizing: border-box;
}
.cartItemOptions .cartItemOption select, .cartItemOptions .cartItemOption input {
  width: 70%;
  padding: 3px 5px;
  color: #333;
  box-sizing: border-box;
}

.cartItemMainPanel {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 5px;
  padding: 10px;
  box-sizing: border-box;
}

.cartItemAction {
  margin-top: 20px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  padding: 5px 15px;
  box-sizing: border-box;
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*--- JUSTIFY CONTENT ---*/
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  /*--- END JUSTIFY CONTENT ---*/
  /*------ FLEX ALIGN -----*/
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  /*------ END FLEX ALIGN -----*/
}
.cartItemAction .button, .cartItemAction a {
  text-decoration: none;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  cursor: pointer;
}
.cartItemAction .button span, .cartItemAction a span {
  margin-right: 10px;
  font-size: 1.3em;
  margin-top: 2px;
}
.cartItemAction .cartItemAdd {
  background: #737373;
  box-shadow: inset 0 -3px 0 #404040;
}
.cartItemAction .cartItemPrev {
  background: rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
}
.cartItemAction .cartItemPrev:hover {
  background: rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.6);
}
.cartItemAction .cartItemAdd:hover {
  background: #5a5a5a;
  box-shadow: inset 0 -3px 0 #272727;
}

.cartItemQty {
  color: #555555;
}
.cartItemQty span {
  margin-right: 15px;
  display: inline-block;
}
.cartItemQty .cartItemQtyCount {
  position: relative;
  display: inline-block;
  background: #737373;
  border-radius: 3px;
  padding: 2px 20px 2px 2px;
}
.cartItemQty .cartItemQtyCount input {
  padding: 3px 5px;
  height: 30px;
  box-sizing: border-box;
  width: 30px;
}
.cartItemQty .cartItemQtyCount .cartItemQtyUp, .cartItemQty .cartItemQtyCount .cartItemQtyDown {
  position: absolute;
  right: 0;
  width: 20px;
  height: 18px;
  /*---- 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 -----*/
  color: #fff;
  cursor: pointer;
}
.cartItemQty .cartItemQtyCount .cartItemQtyUp:hover, .cartItemQty .cartItemQtyCount .cartItemQtyDown:hover {
  background: rgba(255, 255, 255, 0.2);
}
.cartItemQty .cartItemQtyCount .cartItemQtyUp {
  top: 0;
}
.cartItemQty .cartItemQtyCount .cartItemQtyDown {
  bottom: 0;
}

.cartItemShortDesc {
  margin: 10px 0;
  padding: 10px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 5px;
}

.cartItemHero .flickerplate {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cartItemHero .flicks {
  width: 10000%;
  height: 100%;
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.cartItemHero .flickerplate {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  height: auto !important;
}
.cartItemHero .flickerplate li {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  list-style: none;
  float: left;
  width: 1%;
  height: 100%;
  background-position: center;
  background-size: cover;
  display: table;
}
.cartItemHero .flick-inner {
  height: 0 !important;
  padding: 0 0 100% 0 !important;
}
.cartItemHero .arrow-navigation {
  display: none;
}
.cartItemHero .dot-navigation {
  display: none !important;
}
.cartItemHero .flickerplate.animate-transform-slide ul.flicks {
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0%, 0px, 0px);
  -webkit-transform: translate3d(0%, 0px, 0px);
  transition: -webkit-transform 0.6s ease-out;
  transition: transform 0.6s ease-out;
}
.cartItemHero .flickerplate.animate-transition-slide ul.flicks {
  position: relative;
  left: 0%;
  transition: left 0.4s ease-in-out;
}
.cartItemHero .flickerplate.animate-jquery-slide ul.flicks {
  position: relative;
  left: 0%;
}
.cartItemHero .flickerplate.animate-scroller-slide {
  padding-bottom: 0px;
  overflow: auto;
}
.cartItemHero .flickerplate.animate-scroller-slide ul.flicks {
  position: auto;
}

.cartHeroThumbs {
  width: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.03);
  padding: 10px;
  border-radius: 0 0 5px 5px;
  box-sizing: border-box;
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*--- JUSTIFY CONTENT ---*/
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  /*--- END JUSTIFY CONTENT ---*/
}
.cartHeroThumbs .cartHeroThumb {
  display: inline-block;
  width: 24%;
  cursor: pointer;
}
.cartHeroThumbs .cartHeroThumb div {
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.cartHeroThumbs .cartHeroThumb div:hover:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: white;
  opacity: .3;
}

.cartItemOther {
  margin: 10px 0;
}
.cartItemOther h3 {
  margin: 0 0 10px 0;
}

.cartItemCatHeading {
  padding-left: 15px;
}

.cartItemImages .cartItemHeading, .cartItemImages .cartItemCatHeading {
  display: none;
}

.cartItemLongDesc, .cartItemOther {
  padding: 10px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.03);
}

.cartItemOther {
  width: 100%;
  box-sizing: border-box;
}
.cartItemOther .cartItems {
  margin-bottom: 0;
}

.viewCartContent {
  width: 100%;
}

.viewCartSummary {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  margin-top: 10px;
  box-sizing: border-box;
}

.viewCartItems {
  background: white;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 20px;
}
.viewCartItems .cartItemAction {
  width: 100%;
}
.viewCartItems .cartSubTotal {
  float: right;
  padding: 20px 10px;
  margin: 20px 0;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.03);
  color: #555555;
  font-size: 1.1em;
}
.viewCartItems .cartSubTotal span {
  font-weight: 700;
  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 FLEX -----*/
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*--- JUSTIFY CONTENT ---*/
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  /*--- END JUSTIFY CONTENT ---*/
  /*------ FLEX ALIGN -----*/
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  /*------ END FLEX ALIGN -----*/
  font-weight: 300;
  padding: 10px 10px;
  font-size: .9em;
  background: rgba(0, 0, 0, 0.03);
}
.viewCartRow .viewCartDelete {
  width: 30px;
  font-size: 1.5em;
  text-align: center;
  color: #D91E18;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
}
.viewCartRow .viewCartItem {
  width: 80px;
  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 .viewCartDescription {
  width: 40%;
}
.viewCartRow .viewCartPrice {
  width: 100px;
  text-align: Center;
}
.viewCartRow .viewCartTotal {
  width: 100px;
  text-align: Center;
}
.viewCartRow .viewCartQuantity {
  text-align: Center;
  width: 110px;
}

.viewCartRow:nth-child(even) {
  background: rgba(0, 0, 0, 0.01) !important;
}

.viewCartRowHeader {
  padding-bottom: 10px;
  font-weight: 700;
  border-bottom: 3px solid rgba(0, 0, 0, 0.15);
  font-size: 1em;
  background: none !important;
}
.viewCartRowHeader .viewCartItem {
  border: none;
}

.checkoutSection {
  width: 100%;
  float: right;
  border-radius: 5px;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
  margin: 10px 0;
  font-size: 1.1em;
  position: relative;
}
.checkoutSection .checkoutSectionInner {
  background: #fff;
  border-radius: 5px;
  padding: 10px;
}
.checkoutSection .cartPriceRow {
  /*---- 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 -----*/
  margin: 5px 0;
}
.checkoutSection .priceHeading {
  display: inline-block;
  margin-right: 20px;
  text-align: left;
  width: 100px;
}
.checkoutSection .cartPricePrice {
  font-weight: 700;
  color: #555;
  display: inline-block;
  width: 100px;
  text-align: right;
}
.checkoutSection h2 {
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*--- JUSTIFY CONTENT ---*/
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  /*--- END JUSTIFY CONTENT ---*/
  /*------ FLEX ALIGN -----*/
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  /*------ END FLEX ALIGN -----*/
  margin: 10px 10px 10px 0;
}
.checkoutSection h2 .checkoutStep {
  background: #737373;
  width: 30px;
  height: 28px;
  color: #fff;
  padding-bottom: 2px;
  border-radius: 5px;
  /*---- 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 -----*/
  font-size: .7em;
  float: left;
  margin-top: 5px;
  margin-right: 10px;
}

.priceSection {
  width: 300px;
  margin-left: auto;
}

.priceTotal {
  width: 100%;
  border-radius: 5px;
  padding: 10px;
  background: #737373;
  box-sizing: border-box;
  margin: 10px 0;
  color: #fff;
  margin-top: 15px !important;
  box-shadow: 0 3px 0 #4d4d4d;
}
.priceTotal .cartPricePrice {
  color: #fff;
}

.checkoutSingle {
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*--- JUSTIFY CONTENT ---*/
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  /*--- END JUSTIFY CONTENT ---*/
  /*------ FLEX ALIGN -----*/
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  /*------ END FLEX ALIGN -----*/
  padding: 5px 10px;
}
.checkoutSingle h2 {
  margin: 10px 10px 10px 0;
}
.checkoutSingle .checkoutSectionInner {
  width: 80%;
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*--- JUSTIFY CONTENT ---*/
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  /*--- END JUSTIFY CONTENT ---*/
  /*------ FLEX ALIGN -----*/
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  /*------ END FLEX ALIGN -----*/
}
.checkoutSingle .singleInput {
  padding: 7px 5px;
  border-radius: 3px;
  width: 300px;
}

.checkoutNext, .checkoutApply {
  border-radius: 5px;
  padding: 12px 20px;
  background: #737373;
  margin-left: 10px;
  color: #fff;
  box-shadow: inset 0 -3px 0 #4d4d4d;
  display: inline-block;
  cursor: pointer;
  margin-left: auto;
}
.checkoutNext span, .checkoutApply span {
  margin-right: 10px;
}

.checkoutNext:hover {
  background: #8d8d8d;
  box-shadow: inset 0 -3px 0 #737373;
}

.checkoutApply {
  margin-left: 5px;
  background: #555;
  box-shadow: inset 0 -3px 0 #2f2f2f;
}

.checkoutApply:hover {
  background: #6e6e6e;
  box-shadow: inset 0 -3px 0 #555;
}

.checkoutReview {
  width: 100%;
  margin-bottom: 10px;
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*--- JUSTIFY CONTENT ---*/
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  /*--- END JUSTIFY CONTENT ---*/
  /*------ FLEX ALIGN -----*/
  align-items: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  /*------ END FLEX ALIGN -----*/
}
.checkoutReview .checkoutFinalPrice {
  width: 48%;
}
.checkoutReview .checkoutPaypal {
  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 .checkoutPaypal .payPalLogo {
  background: url(PP-logo.png);
  width: 129px;
  height: 49px;
}
.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 {
  background: white;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  margin: 10px 0;
}

.UpdateQuantity {
  background: #26A65B;
  color: #fff;
  border: none;
  border-radius: 3px;
  display: inline-block;
  padding: 4px 6px;
}

.cartBtn {
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  margin-left: 10px;
  color: #fff;
  display: inline-block;
  cursor: pointer;
  margin-left: auto;
  box-shadow: inset 0 -3px 0 #2f2f2f;
  background: #555555;
  text-decoration: none;
}
.cartBtn span {
  margin-right: 10px;
}

.cartBtn:hover {
  background: #6e6e6e;
  box-shadow: inset 0 -3px 0 #555555;
  color: #fff;
}

.cartBtnHL {
  box-shadow: inset 0 -3px 0 #4d4d4d;
  background: #737373;
}

.cartBtnHL:hover {
  background: #8d8d8d;
  box-shadow: inset 0 -3px 0 #737373;
}

.resumeShopping {
  position: absolute;
  top: 15px;
  right: 15px;
}

.DiscountNotValid, .DiscountValid {
  display: inline-block;
  padding: 10px;
  border-radius: 5px;
  background: #cf000f;
  color: white;
  margin-left: 10px;
  box-shadow: inset 0 1px 0 #360004, 0 1px 0 rgba(255, 255, 255, 0.5);
}

.DiscountValid {
  background: #26a65b;
  box-shadow: inset 0 1px 0 #1c7d44, 0 1px 0 rgba(255, 255, 255, 0.5);
}

.checkoutStageComplete {
  background: #26a65b;
  box-shadow: inset 0 -3px 0 #186839;
  line-height: 1em;
  padding: 5px;
  font-size: 1em;
  color: white;
  margin-left: auto;
  border-radius: 5px;
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*------ FLEX ALIGN -----*/
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  /*------ END FLEX ALIGN -----*/
}
.checkoutStageComplete span {
  font-size: 1.8em;
  line-height: 1em;
  margin-left: 10px;
  padding-top: 3px;
}

.shipTo {
  margin-right: 10px;
}

/*--- SHOPPING QUESTIONS --*/
.cartQuestionRow {
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*------ FLEX ALIGN -----*/
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  /*------ END FLEX ALIGN -----*/
  width: 80%;
  max-width: 700px;
  margin: 5px auto;
}
.cartQuestionRow .cartQuestion {
  width: 25%;
}
.cartQuestionRow .cartQuestionInput {
  margin-left: 10px;
  width: 70%;
}
.cartQuestionRow .cartQuestionInput input {
  width: 100%;
}

/*--- SHOPPING QUESTIONS REVIEW --*/
.reviewQuestions {
  margin-bottom: 10px;
}

.reviewQuestionRow {
  /*---- DISPLAY FLEX -----*/
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  /*---- END DISPLAY FLEX -----*/
  /*------ FLEX ALIGN -----*/
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  /*------ END FLEX ALIGN -----*/
  width: 80%;
  max-width: 700px;
  margin: 5px auto;
}
.reviewQuestionRow .reviewQuestion {
  width: 25%;
}
.reviewQuestionRow .reviewQuestionAnswer {
  margin-left: 10px;
  width: 70%;
  background: rgba(0, 0, 0, 0.05);
  padding: 3px;
  min-height: 25px;
}

/*-----------------------------------*/
/*-------------- FORMS  -------------*/
/*-----------------------------------*/
.formError {
  z-index: 990;
}

.formError .formErrorContent {
  z-index: 991;
}

.formError .formErrorArrow {
  z-index: 996;
}

.ui-dialog .formError {
  z-index: 5000;
}

.ui-dialog .formError .formErrorContent {
  z-index: 5001;
}

.ui-dialog .formError .formErrorArrow {
  z-index: 5006;
}

.inputContainer {
  position: relative;
  float: left;
}

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left;
}

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
}

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none;
}

.formError .formErrorContent {
  width: 100%;
  background: #ba0000;
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 13px;
  border: 2px solid #ddd;
  box-shadow: 0 0 6px #000;
  -moz-box-shadow: 0 0 6px #000;
  -webkit-box-shadow: 0 0 6px #000;
  -o-box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px;
}

.formError.inline .formErrorContent {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
}

.greenPopup .formErrorContent {
  background: #33be40;
}

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF;
}

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative;
}

body[dir='rtl'] .formError .formErrorArrow, body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0;
}

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px;
}

.formError .formErrorArrow div {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  box-shadow: 0 2px 3px #444;
  -moz-box-shadow: 0 2px 3px #444;
  -webkit-box-shadow: 0 2px 3px #444;
  -o-box-shadow: 0 2px 3px #444;
  font-size: 0px;
  height: 1px;
  background: #ba0000;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block;
}

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
}

.greenPopup .formErrorArrow div {
  background: #33be40;
}

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF;
}

.formError .formErrorArrow .line10 {
  width: 15px;
  border: none;
}

.formError .formErrorArrow .line9 {
  width: 13px;
  border: none;
}

.formError .formErrorArrow .line8 {
  width: 11px;
}

.formError .formErrorArrow .line7 {
  width: 9px;
}

.formError .formErrorArrow .line6 {
  width: 7px;
}

.formError .formErrorArrow .line5 {
  width: 5px;
}

.formError .formErrorArrow .line4 {
  width: 3px;
}

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd;
}

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd;
}

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd;
}

/*-----------------------------------*/
/*------------ FANCYBOX -------------*/
/*-----------------------------------*/
/*! 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: #444;
}

.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: -15px;
  right: -15px;
  width: 30px;
  border-radius: 154px;
  height: 30px;
  cursor: pointer;
  z-index: 8040;
  /*---- 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 -----*/
  color: #fff;
  text-decoration: none;
  background: #222;
  border: 2px solid #fff;
  box-shadow: 0 2px 2px #000;
}

a.fancybox-close:after {
  content: "\f00d";
  font: 1.2em FontAwesome;
  line-height: 1.5em;
}

a.fancybox-nav {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  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;
  text-shadow: 0 2px 2px #000;
}

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: "\f054";
}

a.fancybox-prev span:after {
  content: "\f053";
}

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: #111;
  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: #333;
  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;
  border-radius: 2px;
  border: 3px solid #fff;
  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;
}

/* ---------------------------------- */
/* -------- BANNER OF WEBSITE ------- */
/* ---------------------------------- */

#banner {
  position:relative;
  background:#CAE3EE;
background:#f1f1f1;
}


#banner .container{
   padding:15px 20px;
  box-sizing:border-box;   
   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: space-between;
   -ms-flex-pack: justify;
           justify-content: space-between; 
 
  position:relative;
}


#logo{
    width:auto;
height:100%;
  position: relative;
  top:0;
  left:0;

  z-index:900;

}

#logo > img {
    width:100%;
    height:auto;
      max-width:280px;
  box-sizing:border-box;
}


/* ---------------------------------- */
/* -------- GRAPHICAL BUTTONS ------- */
/* ---------------------------------- */

.imageSection.buttonSection {
  margin-bottom:20px;
}

.buttons{
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   -webkit-flex-direction: row;
   -ms-flex-direction: row;
    flex-direction: row;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
   -webkit-box-pack: justify;
    -webkit-flex-flow:row wrap;
    -ms-flex-flow:row wrap;
    flex-flow:row wrap;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 10px;
  box-sizing:border-box;
}


.buttons .butFrame {
    width:24%; /* Change This Dependong On How Many Buttons You Have*/
    position:relative;
    cursor:pointer;
    -ms-box-sizing:border-box;
    -o-box-sizing:border-box;
    box-sizing:border-box;
}

.buttons .butImage {
    width:100%;
    display:block;
  height:250px;
}

.buttons .butImage img {
    width:100%;
    height:250px;
    display:block;
  
}

.buttons .butText{
    display:block;
    width:100%;
    font-size:1em;
    line-height:1.4em;
    color:#fff;
    background:#009CD0;
    padding:0px 5px;
    height:45px;
    position:absolute;
    bottom:0px;
    left:0px;
    -ms-box-sizing:border-box;
    -o-box-sizing:border-box;
    box-sizing:border-box;   

   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;
  text-align:center;
}



/* ----------------
HOVER STYLES
------------------ */

.buttons .butFrame *{
    transition:.5s;
}

.buttons .butFrame:hover{

}

.buttons .butFrame:hover .butText{
    height:100%;
    background:rgba(0,156,208,.8);
  font-size:1.2em;
}

/* ---------------------------------- */
/* -------- HOME BUTTONS ------- */
/* ---------------------------------- */




#buttons * {
  transition: all .5s ease;
}

#buttons {
 width:100%;
  margin: auto; /* For Codepen presentation only */
  padding:20px 10px;
  box-sizing:border-box;
}

#buttons > .butHeading {
  clear: both;
  margin: 0;
  padding: 4em 1% 0;
  color: #484B54;
  font-weight: 800;
  font-size: 1.5em;
}

#buttons > .butHeading:first-child {
  padding-top: 0em;
}

.butWrap {
  position: relative;
  list-style: none;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-align-content: end;
      -ms-flex-line-pack: end;
          -webkit-align-content: flex-end;
          align-content: flex-end;
  width: 100%;
}
/* Common style */

.butWrap .butFrame {
  position: relative;
  overflow: hidden;
height:300px;
  width: 33%;
  background: #fff;
  text-align: center;
  cursor: pointer;

}

.butWrap .butFrame img {
  position: relative;
  display: block;
  max-width: 100%;
  opacity: 0.8;
  position: absolute;
}

.butWrap .butFrame .butTextWrap {

  padding: 5em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.butWrap .butFrame .butTextWrap::before,
.butWrap .butFrame .butTextWrap::after {
  pointer-events: none;
  box-sizing: border-box;
}
.butWrap .butFrame .butTextWrap,
.butWrap .butFrame .butTextWrap > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Anchor will cover the whole item by default */

.butWrap .butFrame .butTextWrap > a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}
.butWrap .butFrame .butHeading {
  word-spacing: -0.15em;
  font-weight: 500;
  font-size: 1.4em;
  font-family: inherit;
  
}
.butWrap .butFrame .butHeading .butText {
  font-weight: 300;
}
.butWrap .butFrame .butHeading,
.butWrap .butFrame p {
  margin: 0;
  color:#fff;
}
.butWrap .butFrame p {
  letter-spacing: 1px;
  font-size: 68.5%;

}
/*---------------*/
/***** Effect ****/
/*---------------*/

#buttons .butFrame {
  background: #fff;
}
#buttons .butFrame img {
  opacity: 0.9;
  transition: opacity .35s;
  width: 100%;
  height: auto;
}
#buttons .butFrame:hover img {
  opacity: 0.3;
}
#buttons .butFrame .butTextWrap::before,
#buttons .butFrame .butTextWrap::after {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  content: '';
  opacity: 0;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
}
#buttons .butFrame .butTextWrap::before {
  border-top: 2px solid #21AEE2;
  border-bottom: 2px solid #21AEE2;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
#buttons .butFrame .butTextWrap::after {
  border-right: 2px solid #21AEE2;
  border-left: 2px solid #21AEE2;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
#buttons .butFrame .butHeading {
  padding-top: 10%;
  transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, -20px, 0);
  transform: translate3d(0, -20px, 0);
}
#buttons .butFrame p {
  padding: 10px 2.5em;
  opacity: 0;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}
#buttons .butFrame:hover .butTextWrap::before,
#buttons .butFrame:hover .butTextWrap::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
#buttons .butFrame:hover .butHeading,
#buttons .butFrame:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color:#143660;
  
}

  

/* Media Queries */
/*@media all and (max-width: 701px) and (min-width: 0px) {
  .butWrap .butFrame {
    width: 100%;
  }
  
  .butWrap {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-content: flex-end;
    -ms-align-content: end;
    align-content: flex-end;
  }
}*/



/* ---------------------------------- */
/* -------- SLIDESHOW STYLES -------- */
/* ---------------------------------- */

.sliderwrapper {
  position:relative;
}

.slidertextwrapper {
  position:absolute;
  top:0;
  right:0;
  width:50%;
  height:100%;
  background:rgba(27,173,231,.9);
padding:20px 70px;
  box-sizing:border-box;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-flex-direction:column;
      -ms-flex-direction:column;
          flex-direction:column;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slidertextwrapper .logosymbol  {
  display:block;
  width:100%;
  max-width:127px;
  height:auto;
}

.slidertextwrapper h1 {
  color:#fff;
  font-weight:300;
  font-size:2.6em;
  text-transform:uppercase;
  margin:25px 0 10px;
}

.slidertextwrapper h2 {
  color:#fff;
  font-weight:600;
  font-size:3.6em;
  text-transform:uppercase;
  margin:0;
}

.slidertextwrapper h2:after {
  content:"";
  display:block;
  width:55%;
  height:8px;
  background:#fff;
  margin:20px 0 30px;
}

.slidertextwrapper h3 {
  color:#03528d;
  font-size:2em;
  font-weight:600;
  margin:15px 0 5px;
}

.slidertextwrapper h4 {
  color:#333;
  font-size:1.2em;
  font-weight:600;
  margin:0px 0 10px;
}

.slidertextwrapper p {
  font-weight:300;
  font-size:1.6em;
  color:#000;
  line-height:1.1em;
}

.slidertextwrapper a {
  display:inline-block;
  background:#143660;
  color:#fff;
  text-transform:uppercase;
  padding:10px 35px;
  border-radius:6px;
  font-weight:600;
  text-decoration:none;
  font-size:.85em;
  margin-top:25px;
}

/* ---------------------------------- */
/* ------ SLIDESHOW OF WEBSITE ------ */
/* ---------------------------------- */


.flickerplate {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #22A5D8;
  overflow: hidden
}
.flickerplate ul.flicks {
  width: 10000%;
  height: 100%;
  padding: 0px;
  margin: 0px;
  list-style: none
}
.flickerplate ul.flicks>li {
  float: left;
  width: 1%;
  height: 100%;
  background-position: center;
  background-size: cover;
  display: table
}
.flickerplate ul.flicks>li .flick-inner {
  height: 100%;
  padding: 10px;
  color: #fff;
  display: table-cell;
  vertical-align: middle
}
.flickerplate ul.flicks>li .flick-inner .flick-content {
  max-width: 68.75em;
  margin-left: auto;
  margin-right: auto
}
.flickerplate ul.flicks>li .flick-title {
  padding: 0px 0px;
  font-size: 2.778em;
  line-height: 1.995em;
  text-align: center
}

@media only screen and (max-width: 43.813em) {
.flickerplate ul.flicks>li .flick-title {
  font-size: 1.667em
}
}
.flickerplate ul.flicks>li .flick-sub-text {
  padding: 5px;
  font-weight: 300;
  line-height: 2.5em;
  color: rgba(255,255,255,0.8);
  text-align: center
}
.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: 80%;
  width: 10%;
  top: 10%;
  z-index: 100;
  overflow: hidden;
  display:none;
}
.flickerplate .arrow-navigation .arrow {
  display: block;
  height: 100%;
  width: 90%;
  transition: all 0.2s ease-out
}
.flickerplate .arrow-navigation:hover, .flickerplate .arrow-navigation .arrow:hover {
  cursor: pointer
}
.flickerplate .arrow-navigation.left {
  left: 0%
}
.flickerplate .arrow-navigation.left .arrow {
  opacity: 0;
  margin: 0px 0px 0px 50%;
  background-image: url("arrow-left-light.png");
  background-repeat: no-repeat;
  background-position: left
}
.flickerplate .arrow-navigation.right {
  right: 0%
}
.flickerplate .arrow-navigation.right .arrow {
  opacity: 0;
  margin: 0px 0px 0px -50%;
  background-image: url("arrow-right-light.png");
  background-repeat: no-repeat;
  background-position: right
}
.flickerplate .arrow-navigation.left.hover .arrow {
  opacity: 1;
  margin: 0px 0px 0px 20%
}
.flickerplate .arrow-navigation.right.hover .arrow {
  opacity: 1;
  margin: 0px 0px 0px -20%
}
.flickerplate .dot-navigation {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  z-index: 100
}
.flickerplate .dot-navigation ul {
  text-align: center;
  list-style: none;
  padding: 0px 15px
}
.flickerplate .dot-navigation ul li {
  display: inline-block;
  float: none
}
.flickerplate .dot-navigation .dot {
  width: 14px;
  height: 14px;
  margin: 0px 6px;
  background-color: #143660;
  transition: background-color 0.2s ease-out
}
.flickerplate .dot-navigation .dot:hover {
  cursor: pointer;
  background-color: rgba(255,255,255,0.6)
}
.flickerplate .dot-navigation .dot.active {
  background-color: #fff;
}
.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);
  transition: -webkit-transform 0.6s ease-out;
  transition: transform 0.6s ease-out
}
.flickerplate.animate-transition-slide ul.flicks {
  position: relative;
  left: 0%;
  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
}
.flickerplate.animate-transition-fade.fade-inited ul.flicks li {
  transition: opacity 0.8s linear
}
.flickerplate.animate-transition-fade.fade-inited ul.flicks li.first-flick {
  opacity: 1
}
.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
}



/* ---------------------------------- */
/* ---------- CUSTOM FOOTER --------- */
/* ---------------------------------- */

.cfwrapper {
  width:100%;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-flex-direction:row;
      -ms-flex-direction:row;
          flex-direction:row;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;

  padding:25px 0;

  background:#333;
  
}

#footerTop {
  background:#333;
}

#footerBottom {
padding:15px 10px;
box-sizing:Border-box;
}

.cfframe {
  padding:5px 10px;
  box-sizing: border-box;
  font-size:1.1em;
  line-height:1.7;
  
}

.cfframe a, .cfframe p {
  color:#ccc;
  display:block;
  padding-left:10px;
}

.cfframe h3 {
  margin: 0 0 10px;
  font-size:1.4em;
  color:#21AEE2;
}

.ultimate a {
  cursor:pointer;
}


/* ---------------------------------- */
/* ----------- ULTIMATE CSS --------- */
/* ---------------------------------- */


/* -------------------------- */
/* -DROP DOWN ENQUIRY BUTTON- */
/* ------------------------- -*/


#enquire-dropdown {
    position:fixed;
    top:0;
    z-index:10000;
    padding:5px;
    left:50%;
    margin-left:-150px;
  display:none;
  width:400px;
  background:#fff;
  border-radius:0px;
border:1px solid #f1f1f1;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size:.8em;
}

#enquire-dropdown #enquiry{
background:none;
width:100%;
}



#enquire-dropdown #enquiry input, 
#enquire-dropdown #enquiry textarea {
border:1px solid rgba(0,0,0,.1);
  padding:15px 10px!important;
  
}

#enquire-button {
  position:fixed;
  top:0px;
  left:50%;
  margin-left:110px;
  z-index:1000;
  cursor:pointer;
}


#enquire-button:hover {
  opacity:.8;
  filter: alpha(opacity=80);
}
#enquire-close {
    cursor:pointer;
    margin-left:10px;
    font-size:13px;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
}


#enquire-close span {
    font-size:19px;
    font-weight:bold;
    margin-right:5px;
    
}
#enquire-close:hover {
  opacity:.7;
  filter: alpha(opacity=70);
}

/* ---------------------------------- */
/* ----------- CUSTOM CSS ----------- */
/* ---------------------------------- */
#homepageMedals {
  display:flex;
  width:100%;
  justify-content: space-around;
}

.medal img{
  width:100%;
  height:auto;
  box-sizing: border-box;
  padding:15%;
}



.link0 .flickerplate .dot-navigation li .dot {
  background-size:cover!important;
  height:50px;
  width:65px;
  border:1px solid #ccc;
  position: relative;
}

.link0 .flickerplate .dot-navigation li .dot.active:after {
  content:"\f002";
  font-family:FontAwesome;
  position:absolute;
  top:0;
  left:0;
  height:100%;
  width:100%;
  background: rgba(20,54,96,.8);
  color:#fff;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-flex-direction:row;
      -ms-flex-direction:row;
          flex-direction:row;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items:center;
      -ms-flex-align:center;
          align-items:center;
} 

.link0 .flickerplate .dot-navigation li:nth-child(1) .dot { background:url(http://www.perthconcretepools.com.au/files/sl1.jpg) center center no-repeat;}
.link0 .flickerplate .dot-navigation li:nth-child(2) .dot { background:url(http://www.perthconcretepools.com.au/files/sl2.jpg) center center no-repeat;}
.link0 .flickerplate .dot-navigation li:nth-child(3) .dot { background:url(http://www.perthconcretepools.com.au/files/sl3.jpg) center center no-repeat;}
.link0 .flickerplate .dot-navigation li:nth-child(4) .dot { background:url(http://www.perthconcretepools.com.au/files/sl4.jpg) center center no-repeat;}
.link0 .flickerplate .dot-navigation li:nth-child(5) .dot { background:url(http://www.perthconcretepools.com.au/files/sl5.jpg) center center no-repeat;}


.link0 .container {
  max-width:none;
  padding:0;
}

.link0 .contentCopy {
  padding:0;
}

#sect1wrap {
  width:100%;
  height:100vh;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-flex-direction:row;
      -ms-flex-direction:row;
          flex-direction:row;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items:stretch;
      -ms-flex-align:stretch;
          align-items:stretch;
}

.sect1frame {
  width:50%;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-flex-direction:column;
      -ms-flex-direction:column;
          flex-direction:column;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position:relative;
  overflow:hidden;
}

#section1 #sect1wrap .frame2:after {
position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  content:"' Our business is our future, we are building a reputation our children will be proud of '";
  font-size:2.5em;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-flex-direction:row;
      -ms-flex-direction:row;
          flex-direction:row;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align:center;
  padding: 0 17%;
  box-sizing:border-box;
  line-height:1em;
  color:#14BAF2;
  font-weight:400;
  background:rgba(20,54,118,.6);
    background:rgba(0,0,0,.5);
  font-style:italic;
}

.sect1frame .sect1img {
  position:absolute;
  top:0;
  left:0;
  height:100%;
  width:100%;

}

#sect1wrap .frame1 {
  padding:20px 50px;
  box-sizing:border-box;
}

#sect1wrap .frame1 .sect1logo {
  width:100%;
  display:block;
  max-width:220px;
  margin:0 auto 25px;
  text-align:center;
}

#sect1wrap .frame1 h1 {
  font-size:2.5em;
  text-transform:uppercase;
  font-weight:600;
  color:#143660;
  text-align:center;
  margin:0 0 20px;
  
}

#sect1wrap .frame1 h1:after {
  content:"";
  display:block;
  width:40%;
  height:4px;
  background:#21AEE2;
  margin: 20px auto 10px;
}

#sect1wrap .frame1 .text {
  font-weight:300;
  font-size:1.2em;
  text-align:center;
  color:#000;
}

#sect1wrap .frame1 .sect1infowrap {
  width:100%;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-flex-direction:row;
      -ms-flex-direction:row;
          flex-direction:row;
  -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:50px 0px;
}


#sect1wrap .frame1 .sect1infoframe {
  width:30%;
  position:relative;
  text-align:center;
}

#sect1wrap .absymb {
  width:100%;
  max-width:40px;
    margin:20px;

}


#sect1wrap .frame1 .sect1infoframe h3 {
  font-size:1.15em;

  font-weight:600;
  margin: 0 0 10px;
  color:#143660;
}

#sect1wrap .frame1 .sect1infoframe h4 {
  font-size:.9em;
  color:#555;
  
}


.pageTitle  {
  width:100%;
  text-align:center;
  padding:30px 10px ;
  box-sizing:border-box;
  font-size:2.8em;
  list-style: none!important;

  position:relative;
  z-index:5;
  background:rgba(20,54,96,.85);
}

.pageTitle span {
  color:#24AEE2!important;;
  font-weight:600;
}

.pageTitle:after {

  display:block;
  font-size:.5em;
  margin-top:25px;
  font-weight:300;
  font-style: italic;
  color:#fff;
}


.link0 .pageTitle {
  display:none;
}


.pagecolumnwrap {
  width:100%;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-flex-direction:row;
      -ms-flex-direction:row;
          flex-direction:row;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.pagecolumnframe {
  width:50%;
  position:relative;
  padding:10px 35px;
   box-sizing:border-box;
  overflow:hidden;
}

.pagecolumnwrap .frame2 {
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-flex-direction:row;
      -ms-flex-direction:row;
          flex-direction:row;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  
}

.pagecolumnwrap .frame2 img {

  position:absolute;
  top:0;
  left:0;
  height:150%;
  display:block;
  
}


/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
}


html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



body, html {
  /* prevent horizontal scrolling */
  overflow-x: hidden;
}




.cd-nav-trigger {
  position: relative;
  z-index: 3;  
  height: 55px;
  width: 55px;
  background-color: #143660;
  border-radius: 50%;
  white-space: nowrap;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-flex-direction:row;
      -ms-flex-direction:row;
          flex-direction:row;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration:none;
}

.cd-nav-trigger:after {
font-family:FontAwesome;
  content: "\f0c9";
  color:#ededed;
  display:block;
  position:relative;
  font-size:1.8em;

  text-align:center;
  z-index:100000;
  font-weight:100;

}

.navigation-is-open .cd-nav-trigger {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  transition:.7s;
}

.navigation-is-open .cd-nav-trigger:after {
  font-family:FontAwesome;
  content: "\f063";
  color:#ededed;
  display:block;
  position:relative;
  font-size:1em;
  text-align:center;
  z-index:10000;
  font-weight:100;
  

   
}

.cd-nav {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #143660;
  visibility: hidden;
    transition:.7s;
left:-18%;
  
}
.cd-nav .cd-navigation-wrapper {
  /* all navigation content */
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
 padding:10px 0;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: -webkit-transform 0.7s;
  transition: transform 0.7s;
  transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-flex-direction:row;
      -ms-flex-direction:row;
          flex-direction:row;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  box-sizing:border-box;
}

.navframe {
  width:100%;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-flex-direction:column;
      -ms-flex-direction:column;
          flex-direction:column;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size:1.1em;
  padding:50px 10px 0px;
  box-sizing: border-box;
text-align:center;
position: relative;

  overflow:hidden;
  transition:.05s;
  visibility: hidden;
  
}

.navigation-is-open .navframe {
  transition:.5s;
  visibility: visible;
  overflow:hidden;

}

.navigation-is-open .cd-nav {
  visibility: visible;
  transition: visibility 0s 0s;
  width:18%;
  transition:.5s;
left:0;
  z-index:1000;
 
}
.navigation-is-open .cd-nav .cd-navigation-wrapper {
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
}


.cd-nav .cd-primary-nav li {
  line-height: 2em;
  list-style-type:none;
  font-weight:500;
  
  
  
}
.cd-nav .cd-primary-nav a {
  font-size: 1.1em;
  color: #fff;
  display: inline-block;
  text-decoration:none;
}

.no-touch .cd-nav .cd-primary-nav a:hover {
  color:#23A6DB;

}

.cd-nav .cd-primary-nav .current {
  color:#23A6DB;
  position:relative;
  
}

.cd-nav .cd-primary-nav .current .current:after, .cd-nav .cd-primary-nav .current:after {
  content:"\f137";
  font-family:FontAwesome;
  font-size:.9em;
  color:inherit;;  
  position:absolute;
  top:2px;
  right:-38px;
  
}


.cd-nav .cd-primary-nav .current .current {
  position:relative;
}

.cd-primary-nav {
  padding:0;
}


.cd-nav nav ul .subContainer {
  padding:3px 0px;;
  font-size:.7em;
  
}

.cd-nav nav ul {
  padding:0;
  
}

.cd-nav ul .subContainer .current a {
  color:#000!important;
}

.cd-nav ul .subContainer a {
  font-weight:400;
}

.navlogo {
  width:90px;
  display:block;
  margin:0 auto 40px;
}



.menuwrap {
  position:relative;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-flex-direction:row;
      -ms-flex-direction:row;
          flex-direction:row;
  -webkit-justify-content:flex-end;
      -ms-flex-pack:end;
          justify-content:flex-end;
  width:100%;

}







.homemenuwrap {
  display:none;
}


.link0 .homemenuwrap {
  position:absolute;
  width:100%;
  top:0;
  right:0;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-flex-direction:row;
      -ms-flex-direction:row;
          flex-direction:row;
  -webkit-justify-content:flex-end;
      -ms-flex-pack:end;
          justify-content:flex-end;
  padding:40px 20px 0px 0px;
  box-sizing:border-box;
  z-index:100;
}

.link0 #banner {
  display:none;
}






.ultside {
  width:100%;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-flex-direction:column;
      -ms-flex-direction:column;
          flex-direction:column;;

  padding-bottom:6%;
}

.ultside a {

  display:inline;
    text-align:center;
  color:#fff;
    text-decoration:none;
  cursor:pointer;
  margin:3px 0;
  text-align:center;
  font-size:.9em;
}

.ultside a:before {
  font-family:FontAwesome;
  content:"\f102";
  margin-right:5px;

  
}

.ultside .callback:before {
  content:"\f098";
}

.ultside .dropenq:before {
  content:"\f199";
}


@media all and (max-width: 1717px) {

 .slidertextwrapper .logosymbol{
    max-width:90px;
  }
  
  .slidertextwrapper {
    font-size:.7em;
  }
  
  .link0 .flickerplate .dot-navigation li .dot {
    height:30px;
    width:45px;
  }
  
.navigation-is-open .cd-nav {
width:30%;
}
  
  .cd-nav .cd-primary-nav li {
    line-height:1.9em;
  }
  
  .cd-nav .cd-primary-nav a {
    font-size:1em;
  }
  
  .navlogo {
    margin-bottom:15px;
  }
  
  #sect1wrap {
    height:auto;
    font-size:.9em;
  }
  
  #sect1wrap .frame1 .sect1infowrap {
    padding:25px 0px;
  }
  
  
}

@media all and (max-width: 1353px) { 
  
.buttons .butImage {
  height:auto;
}

.buttons .butImage img {
  height:auto;

  
}
  
  .buttons .butText {
    height:35px;
  }
  
  
}

@media all and (max-width: 1022px) { 
  

  
.pageTitle  {
  width:100%;
  text-align:center;
  padding:20px 10px ;
  box-sizing:border-box;
  font-size:2.4em;
  list-style: none!important;

  position:relative;
  z-index:5;
  background:rgba(20,54,96,.85);
}

.pageTitle span {
  color:#24AEE2!important;;
  font-weight:600;
}

.pageTitle:after {

  display:block;
  font-size:.5em;
  margin-top:15px;
  font-weight:300;
  font-style: italic;
  color:#fff;
}
  
  
}

@media all and (max-width: 830px) { 
  

  
.pageTitle  {
  width:100%;
  text-align:center;
  padding:15px 10px ;
  box-sizing:border-box;
  font-size:2.2em;
  list-style: none!important;

  position:relative;
  z-index:5;
  background:rgba(20,54,96,.85);
}

.pageTitle span {
  color:#24AEE2!important;;
  font-weight:600;
}

.pageTitle:after {

  display:block;
  font-size:.5em;
  margin-top:10px;
  font-weight:300;
  font-style: italic;
  color:#fff;
}
  
  .buttons .butImage {
  height:120px;
}

.buttons .butImage img {
  height:120px;

  
}
  
  .buttons .butText {
    height:25px;
    font-size:.8em;
  }
  
  
}


@media all and (max-width: 1315px) { 
  
  .butWrap .butFrame .butTextWrap, .butWrap .butFrame .butTextWrap > a {
    height:92%;
  }
  
    .link0 .flickerplate .dot-navigation li .dot {
  height:10px!important;;
    width:10px!important;;
}
  
  
}

@media all and (max-width: 1200px) { 
  
  .butWrap .butFrame .butTextWrap, .butWrap .butFrame .butTextWrap > a {
    height:89%;
  }
  

  
  
}

@media all and (max-width: 1053px) { 
  
  .butWrap .butFrame .butTextWrap, .butWrap .butFrame .butTextWrap > a {
    height:79%;
  }
  
  .butWrap .butFrame .butTextWrap {
    padding:3.8em;
  }
  
  
}


@media all and (max-width: 950px) {  

  .navigation-is-open .cd-nav {
width:40%;
}
  
  #sect1wrap {
    -webkit-flex-direction:column;
        -ms-flex-direction:column;
            flex-direction:column;
  }
  
  #sect1wrap .sect1frame {
    width:100%;
    
  }
  
  #sect1wrap .frame2 {
    display:none;
  }
  

  
  .pagecolumnwrap {
    -webkit-flex-direction:column;
        -ms-flex-direction:column;
            flex-direction:column;
  }
  
  .pagecolumnframe {
    width:100%;
  }
  
  .pagecolumnwrap .frame2 img {
    position:relative;
    height:auto;
    
  }
  
   #enquiry {
    width:420px;
  }
  
    .butWrap {
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  
    .butWrap .butFrame .butTextWrap, .butWrap .butFrame .butTextWrap > a {
    height:57%;
  }
  
  .butWrap .butFrame .butTextWrap {
    padding:3em;
    font-size:1em;
  }

}


.affbottom {
  width:100%;
  text-align:center;
}

.affbottom img {
  display:inline-block;
  height:auto;
  vertical-align: middle;
  margin:10px 10%;
}

.affbottom .img1 {
  width:180px;
}

.affbottom .img2 {
  width:100px;
}


.logosbottom {
  width:50%;

}

.logosbottom img {
  width:60px;
  margin: 0 10px
}


/*-----------------------------------*/
/*------------ BLOG HOME ------------*/
/*-----------------------------------*/

.blogBody .contentCopy {
  display: flex;
}

.link10000 .siteContent .contentCopy{
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}

.link10000 .sidebar{
    display: none;
}
  
.link10000 .blogSide{
    display: inline-block;
    padding:1em;
    box-sizing: border-box;
}


@media all and (max-width: 700px){
    
    .link10000 .siteContent .contentCopy{
      flex-direction: column-reverse;
    }
  
    .link10000 .blogSide{
      display: inline-block;
      padding:1em;
      box-sizing: border-box;
      margin: 0;
	}
  

}

/*-----------------------------------*/
/*---------- BLOG ARTICLE -----------*/
/*-----------------------------------*/

.blogSide{
    display: inline-block;
    padding:1em;
    box-sizing: border-box;
}

.blogWrap{
    width: calc(100% - 230px);
	padding: 2em 0;
    box-sizing: border-box;
}

.blogArticle{
    background: none;
    width:100%;
    padding:1em;
    margin: 0.5em 0;
    display: block;
  	box-sizing: border-box;
}  

.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{
    padding: 0;
}

.blogArticle .blogArticleWrap .blogPostHero{
    float: right;
    margin: 0em 0em 1em 1em;
    width: 100%;
    max-width: 400px;
}

.blogArticle .blogArticleWrap .blogPostHero img{
    width: 100%;
}

.blogArticle .blogArticleWrap .blogPostHero.noImage{
    display: none;
}

.blogArticle .blogArticleWrap	.blogSubHead{
    margin: 0 0 0.5em 0;
    font-size: 0.9em;
}

.blogArticle .blogArticleWrap	.blogArticlePublish{
    font-style: italic;
    font-size: 0.9em;
    margin: 0 0 1.0em 0;
}

.blogArticle .blogNavigation{ 
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 1em;
    font-size: 0.8em;
}

.blogArticle .blogNavigation a{
    text-decoration: none;
    padding: 0.4em 1em;
    border: 1px solid rgba(255,255,255,0);			
}

.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 .blogArticleWrap .blogArticleImages{
    margin: 1em 0;
}

.blogArticle .blogArticleWrap .blogArticleImages .container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
}  

.blogArticle .blogArticleWrap .blogArticleImages .container	div{
    width: 24%;
}

.blogArticle .blogArticleWrap .blogArticleImages .container	div img{
    width: 100%;
}

.blogCategoryWrap{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    margin: 1em 0 0;
    font-size: 0.8em;
}
		
.blogCategoryWrap:before{
    content:'Categories:';
    margin: 0 .5em 0 0;
}

.blogCategoryWrap .articleCategory{
    display: inline-block;
    padding: .05em .5em;
    margin: 0 .1em;
    color:#555;
    font-style: italic;
    border-radius: 0.2em;
    transition: all .3s ease;
}

.blogCategoryWrap .articleCategory:hover{
    color: black;
    text-decoration: none;
}

.socialShare{display: none}


/*-----------------------------------*/
/*---------- 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;
    box-sizing: border-box;
}

.blogArchive li	ul{
    margin: 0;
    padding: 0;
}

.blogArchive li	ul li{
    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: black;
    color: white;
}

.blogArchive li	ul li:hover a{
    color: white;
}


/**
 * Category Side Menu
 */

.blogMenu{
  width:100%;
}

.blogMenu .categoryMenu {
  width:100%;
	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 0;
    font-weight: 500;
}

.blogMenu .categoryMenu	li {
    width:100%;
    list-style: none;
    margin: 0;
    font-size: .9em;
    font-weight: 500;
    padding: 0;
}

.blogMenu .categoryMenu	li a {	
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: .1em .1em .1em .5em;
    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 a:hover{
    background: black;
    color: white;
}

.blogMenu .categoryMenu	li a:hover a{
    color: white;
}
			
.blogMenu .categoryMenu	li.current > a{
    background: black;
    color: white;
}


/*-----------------------------------*/
/*------------ BLOG POST-------------*/
/*-----------------------------------*/

.blogPost{
    width:100%;
    padding:1em; 
    margin: 0.5em 0;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px dashed #ccc;  
    box-sizing: border-box;
}

.blogPost .blogPostHero{ 
    width: 200px;
    height: 200px;
}

.blogPost .blogPostHero .image{
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;

    display: block;
    width: 100%;
    height: 100%;
}				

.blogPost .blogPostHero .image.noImage{
    background: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Icon for the placeholder */
.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;
}

/* add text to the placeholder, using the content attribute */	
.blogPost .blogPostHero .image:after{
	content:'';
	color: #ccc;
	line-height: 1.0em;
	margin: -50px auto 0;
}

.blogPost:hover{
	cursor: pointer;
}

.blogPost:hover .blogPostDetails{
	background: #f1f1f1;
	cursor: pointer;
    transition: all .5s ease;
}


.blogPost:hover	a.blogBtn button{
	color: black;
	text-decoration: underline;
}		

.blogPost:hover .image{
	opacity: .9;
}	

.blogPost .blogPostDetails{
	width: 70%; /* backup */
	width: calc(100% - 200px);
	box-sizing: border-box;
	padding: .3em .3em .3em 1em;
	transition: all .2s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    
}
		

.blogPost .blogPostDetails:hover a.blogBtn button{
	color: black;
	text-decoration: underline;
}
		
.blogPost .blogPostDetails .blogTitle{
	font-size: 1.5em;
	line-height: 1.0em;
	font-weight: bold;
	padding: 0;
	margin: 0;
}

.blogPost .blogPostDetails .blogPublsihInfo{
	display: flex;
	line-height: 1.0em;
	padding: 0.5em 0 1em;
}

.blogPost .blogPostDetails .blogPostAuthor, .blogPostDate{
	font-style: italic;
	color: #888;
	font-size: 0.8em;
	padding: 0;
	margin-left: .3em;
}

.blogPost .blogPostDetails .blogPostText{
	line-height: 1.4em;
	padding: 0.4em 0;
}

.blogPost .blogPostDetails a.blogBtn {
	display: inline-block;
	text-decoration: none;
}

.blogPost .blogPostDetails a.blogBtn button{
	display: inline-block;
	background: none;
	border: none;
	padding: 0;
	color: #555;
}

.blogPost .blogPostDetails a.blogBtn:hover{
	color:black;
	color: red;
	text-decoration: underline;
}
	


/*-------------------------------------*/
/*------------ Pagination -------------*/
/*-------------------------------------*/

.itemPagination {
    width: 100%;
    text-align: center;
    font-size: .8em;
}

.itemPagination .pagination{
    display: inline-block;
    padding: 1em;
}

.itemPagination .pagination a{
    display: inline-block;
    padding: .5em 1em;
    border: 1px solid #ccc;
    text-decoration: none;
}

.itemPagination .pagination a:hover{
    background: #eee;
    border: 1px solid #bbb;
}

.itemPagination .pagination a.current{
    background: #eee;
   border: 1px solid #bbb;
    color: black;
}

.itemPagination .pagination a.next, .itemPagination .pagination a.prev{
  border: 1px solid rgba(255,255,255,0);
}

.itemPagination .pagination a.next:before{
    content: 'Next';
}

.itemPagination .pagination a.next:after{
    content: '\f105';
    font-family: fontAwesome;
    margin-left: .3em;
}

.itemPagination .pagination a.prev:before{
    content: '\f104';
    font-family: fontAwesome;
    margin-right: .3em;
}

.itemPagination .pagination a.prev:after{
    content: 'Previous';

}




@media all and (max-width: 700px){
  .blogWrap{
    width: 100%;
  }

  .blogNavigation{
    text-align: center;
  }

  .blogArticle .blogArticleWrap .blogPostHero{
    float: none;
    max-width: none;
    margin: 1em 0;
  }	

  .blogArticle  .blogArticleImages .container div{
    width: 49%;
  }		

  .categorySection .container{
    flex-direction: column-reverse;
  }

  .blogSide{
    width: 100%;
  }

  .blogPost:hover{
    background: #f5f5f5;
    cursor: pointer;
    transition: all .5s ease;
  }

  .blogPost .blogPostHero{
    width: 100%;
    max-width: none;
    max-height: none;
    min-height: 15em;
    margin: 0 0 1em;
  }

  .blogPost .blogPostDetails{
    width: 100%;
    padding: 0;
	}
  
  .blogBody .contentCopy {
  flex-direction: column;
}
  
  .sidebar.blogSide {
    display: block;
    order: 2;
  }
  
}



/*-----------------------------------*/
/*----------- BLOG WIDGET------------*/
/*-----------------------------------*/

.blog-widget {
	width:100%;
	max-width:600px;
	background: none;
	padding:1em;
  	box-sizing: border-box;
}
/**
 * Title of the blog
 */
.blog-widget .blog-widget-heading {
	font-size:1.5em;
	font-weight:bold;
	margin-bottom:1em;
}

/**
 * A singular blog article
 */
.blog-widget .blog-widget-article {
	width:100%;
	margin-bottom:1em;
	padding-bottom:1em;
	border-bottom:1px solid #bbb;
	display:flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.blog-widget .blog-widget-article:nth-last-child(1){
	border-bottom:none;
}

/**
* Holder for the article image
*/
.blog-widget .blog-widget-article .blog-widget-article-img {
	width:100%;			
	border: 1px solid $lightTone;
	box-sizing: border-box;
}
/**
* Actual article image
*/
.blog-widget .blog-widget-article .blog-widget-article-imgFrame {
	width:100%;
	height:0;
	padding-bottom:30%;
	background-size:cover!important;
	background-position:center center!important;
}

.blog-widget .blog-widget-article .noImage .blog-widget-article-imgFrame {
	display: none;
}
		
/**
* Blog Text Content
*/
.blog-widget .blog-widget-article-preview {
  width:100%;
  font-size: 0.9em;
}
/**
* Title of article
*/
.blog-widget .blog-widget-article-preview .blog-widget-article-preview-title {
  font-weight:bold;
  line-height: 1.2em;
  margin: 0.5em 0;
}

/**
* Sub Title Article
*/
.blog-widget .blog-widget-article-preview .blog-widget-article-content-subheading{
  font-weight:bold;
  line-height: 1.2em;
  margin: 0.5em 0;
}

.blog-widget .blog-widget-article-preview .blog-widget-article-author{
  font-size: .8em;
  margin-bottom: .3em;
  font-style: italic;
  line-height: 1.0em;
}

/**
* Date time of article
*/
.blog-widget .blog-widget-article-preview .blog-widget-article-date {
  width:100%;
  display:flex;
  justify-content:flex-start;
  flex-wrap: wrap;
  font-size: .8em;
  line-height: 1.0em;
  font-style: italic;
}
			
.blog-widget-article-date-date {
  margin-right: .2em;
}		

/**
* Article preview text
*/
.blog-widget .blog-widget-article-preview .blog-widget-article-content-text {
  padding: .6em 0;
  line-height: 1.3em;
}

/**
* Read more button
*/
.blog-widget .blog-widget-article-preview .blog-widget-article-content-button {
    padding: 0;
    display: block;
    margin:  0 auto;
    font-weight:normal;
    text-decoration:none;
    background: none;
    color:black;
}

.blog-widget .blog-widget-article-preview .blog-widget-article-content-button:hover{
  color: $highlightTone;
  text-decoration: underline;
}
	

/* ---------------------------------- */
/* --------- GALLERY SLIDER --------- */
/* ---------------------------------- */

#makeMeScrollable {
  position: relative;
  overflow: hidden;
  height: 550px; 
}

#makeMeScrollable div.scrollableArea *
{
  position: relative;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  height: 100%;
  width: auto;
  /* If you don't want the images in the scroller to be selectable, try the following
    block of code. It's just a nice feature that prevent the images from
    accidentally becoming selected/inverted when the user interacts with the scroller. */
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
      user-select: none;
}


#makeMeScrollable img {
  margin:0 10px!important;
}
