* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  html {
      height: 100%;
  }

  .form-group label {
      display: block;
      margin-bottom: 5px;
  }

  legend {
      display: block;
      width: 100%;
      padding: 0;
      margin-bottom: 20px;
      font-size: 21px;
      line-height: 2em;
      color: #333;
      border: 0;
      border-bottom: 1px solid #e5e5e5;
  }


  .ajsBtn {
      position: relative;
      overflow: hidden;
  }

  .ajsBtn > * {
      display: block;
  }

  .ajsBtn .original {
      position: relative;
      z-index: 10;
  }

  .ajsBtn .wrap {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
  }

  .ajsBtn .wrap .effect {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 200%;
      background: rgba(0,0,0,0.2);
      -moz-transform: translateX(150%);
      -webkit-transform: translateX(150%);
      -o-transform: translateX(150%);
      -ms-transform: translateX(150%);
      transform: translateX(150%);
      -webkit-transition: all 500ms linear;
      -moz-transition: all 500ms linear;
      -ms-transition: all 500ms linear;
      -o-transition: all 500ms linear;
      transition: all 500ms linear;
      opacity: 0;
  }

  .ajsBtn:hover {
      background: rgba(0,0,0,0.2) !important;
  }

  .ajsBtn:hover .wrap .effect {
      -moz-transform: translateX(-25%);
      -webkit-transform: translateX(-25%);
      -o-transform: translateX(-25%);
      -ms-transform: translateX(-25%);
      transform: translateX(-25%);  
      opacity: 1; 
  }

  .ajsLabels {
      position: relative;
      padding-top: 15px;
  }

  .ajsLabels label {
      font-size: 10px;
      opacity: 0;
      position: absolute;
      top: 0px;
      height: 15px;
      line-height: 15px;
      background: #fff;
      left: 0px;
      padding: 0 5px 0 0;
      color: #9d9d9d;
  }

  .ajsLabels.focus label {
      opacity: 1;
  }

  .ajsLabels input,
  .ajsLabels textarea {
      margin-bottom: 15px;
  }

  .form-group.checkbox {
      margin-bottom: 10px;
  }

  .ajsBreadcrumb .fa-home {
      font-weight: 400;
  }

  .ajsBreadcrumb ul {
      margin-bottom: 15px;
  }

  .ajsBreadcrumb ul li {
      margin-bottom: 0;
      font-size: 12px;
  }

  .ajsBreadcrumb ul li:first-child {
      padding-left: 0;
  }

  .ajsBreadcrumb ul li:first-child a:after {
      content: ' Home';
  }

  .ajsBreadcrumb ul li:first-child:before {
      display: none;
  }

  .ajsBreadcrumb ul li:before {
      content: '\f105 ';
      font-family: Font Awesome\ 5 Pro;
      color: #868686;
      display: inline-block;
      margin-right: 5px;
  }

  .ajsBreadcrumb ul li a {
      color: #868686;
      display: inline-block;
  }

  #sidebar nav {
      margin-bottom: 30px;
  }

  #sidebar nav .title {
      line-height: 20px;
      padding-bottom: 10px;
      border-bottom: 1px solid #dfdfdf;
      margin-bottom: 15px;
      text-transform: uppercase;
      font-weight: 700;
  }

  #sidebar nav ul li {
      margin-bottom: 15px;
  }

  label.ajsCheckbox span {
      position: relative;
  }

  label.ajsCheckbox input[type="checkbox"] {
      display: none;
  }

  label.ajsCheckbox input[type="checkbox"] + span {
      display: block;
      padding-left: 25px;
  }

  label.ajsCheckbox input[type="checkbox"] + span:before {
      position: absolute;
      left: 0;
      top: 4px;
      display: block;
      content: '\f00c ';
      font-family: Font Awesome\ 5 Pro;
      width: 12px;
      line-height: 10px;
      height: 12px;
      border: 1px solid #b3b3b3;
      background: #fff;
      text-align: center;
      font-size: 0;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
      cursor: pointer;
  }

  label.ajsCheckbox input[type="checkbox"][disabled] + span {
      opacity: 0.5;
      pointer-events: none;
  }

  label.ajsCheckbox input[type="checkbox"]:checked + span:before {
      font-size: 12px;
  }

  .ajsPagination {
      display: flex;
      display: -webkit-flex;
      display: -ms-flex;
      display: -moz-flex;
      justify-content: space-between;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      align-items: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      -moz-align-items: center;
      align-content: stretch;
      text-align: center;
      flex-wrap: wrap;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      padding: 15px 0;
  }

  .ajsPagination ul li > * {
      background: #f4f2f2;
      border: 2px solid #f4f2f2;
      color: #161616;
      padding: 10px;
      line-height: 25px;
      text-align: center;
      min-width: 45px;
      display: block;
      margin-left: 10px;
  }

  .ajsPagination ul li:first-child > * {
      margin-left: 0;
  }

  .ajsPagination ul li > span {
      background: #fff;
      color: #161616;
  }

  #singleHeader {
      padding-top: 15px;
      padding-bottom: 30px;
  }


  .specialTitle > div > * {
      margin: 0;
      padding: 30px 0;
      line-height: 30px;
      font-size: 22px;
      font-weight: 400;
      text-align: center;
      /*text-transform: uppercase;*/
      display: block;
      letter-spacing: 0.05em;
  }

  .specialTitle > div > * > strong {
      display: block;
  }

  .specialTitle > img {
      display: block;
      margin: 0 auto;
  }

  .curateTitle > div > h1 {
      margin: 0;
      padding: 30px 0 0 0;
      line-height: 30px;
      font-size: 26px;
      font-weight: 400;
      text-align: center;
      /*text-transform: uppercase;*/
      display: block;
  }

  .curateTitle > div > * > strong {
      display: block;
  }

  .curateTitle .ajsBreadcrumb ul {
      text-align: center;
  }


  .tabs {
      margin-bottom: 30px;
  }

  /* homePage */

  #heroSlider .slide {
      position: relative;
      display: block;
  }

  #heroSlider .slide > div {
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      display: flex;
      display: -webkit-flex;
      display: -ms-flex;
      display: -moz-flex;
      justify-content: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      align-items: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      -moz-align-items: center;
      align-content: stretch;
      text-align: center;
      flex-wrap: wrap;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      padding: 15px;
  }

  #heroSlider .slide > div > div {
      color: #fff;
      text-transform: uppercase;
      max-width: 600px;
  }

  #heroSlider .slide > div > div strong {
      margin-top: 45px;
      border: 1px solid #d9d5d3;
      border-bottom-width: 0;
      padding: 15px;
      background: rgba(0,0,0,0.4);
      font-weight: 300;
      line-height: 45px;
      font-size: 34px;
      display: block;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
  }

  #heroSlider .slide:hover > div > div strong {
      background: rgba(0,0,0,0.2);
  }

  #heroSlider .slide > div > div p {
      line-height: 30px;
      margin-top: -15px;
      display: flex;
      display: -webkit-flex;
      display: -ms-flex;
      display: -moz-flex;
      justify-content: space-between;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      align-items: flex-start;
      -webkit-align-items: flex-start;
      -ms-flex-align: flex-start;
      -moz-align-items: flex-start;
      align-content: stretch;
      text-align: center;
      flex-wrap: wrap;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
  }

  #heroSlider .slide > div > div p span {
      display: block;
      padding: 0 15px;
      font-size: 18px;
  }

  #heroSlider .slide > div > div p:before,
  #heroSlider .slide > div > div p:after {
      display: block;
      content: '';
      height: 15px;
      border-bottom: 1px solid #fff;
      -webkit-flex-basis: 0;
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      -webkit-box-flex: 1;
      -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      max-width: 100%;
  }

  #accredSlider {
      padding: 30px 0;
  }

  #accredSlider .slide {
      display: flex;
      display: -webkit-flex;
      display: -ms-flex;
      display: -moz-flex;
      justify-content: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      align-items: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      -moz-align-items: center;
      align-content: stretch;
      text-align: center;
      flex-wrap: wrap;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
  }

  #accredSlider img {
      width: auto;
      display: block;
  }

  #services .row {
      margin-left: -8px;
      margin-right: -8px;
  }



  #services .service {
      padding: 8px;
  }

  #services .service img,
  #services .service picture {
      width: 100%;
  }

  .service > a {
      display: block;
      color: #525252;
      position: relative;
      background: #dcd9d0;
      position: relative;
      display: flex;
      align-items: flex-end;
      align-content: flex-end;
  }

  .service > a strong {
      background: #fff;
      line-height: 25px;
      padding: 5px 15px;
      min-width: 50%;
      position: absolute;
      bottom: 0;
      left: 0;
      font-size: 16px;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
  }

  .service > a strong .fa {
      color: #b0aca2;
  }

  .service > a:hover strong {
      padding: 10px 15px;
  }

  .service > a blockquote {
      font-size: 22px;
      letter-spacing: 0.05em;
      font-weight: 400;
      color: #fff;
      line-height: 1.4705882352941178em;
      font-style: normal;
      margin: 0;
      padding: 20px 20px 20px 20px;
      max-width: 350px;
      max-height: 100%;
  }

  .service blockquote:before {
      font-size: 44px;
  }

  #newsletterSignup #newsletterSignup_wrap {
      background: #efeeea;
      padding: 10px;
  }

  #newsletterSignup #newsletterSignup_wrap {
      display: flex;
      display: -webkit-flex;
      display: -ms-flex;
      display: -moz-flex;
      justify-content: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      align-items: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      -moz-align-items: center;
      align-content: stretch;
      text-align: center;
      flex-wrap: wrap;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
  }

  #newsletterSignup label {
      padding: 10px 45px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: #5e5d58;
      font-size: 17px;
      -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: initial;
      font-weight: 400;
      line-height: 1.45em;
  }

  #newsletterSignup label strong {
      line-height: 1.45em;
  }

  #newsletterSignup input[type=email] {
      max-width: calc(100% - 100px);
      width: 330px;
      margin: 0;
      border: 0;
  }

  #newsletterSignup button {
      background: #5e5d58;
      border: 0;
      height: 45px;
      padding: 5px 15px;
      width: 100px;
      text-align: center;
      color: #fff;
      line-height: 35px;
      text-transform: uppercase;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
  }

  #newsletterSignup button:hover {
      background: #a2bbc8;
  }

  #latestNews section {
      background: #eeeeee;
      padding: 15px 30px 150px 30px;
  }

  #latestNews .specialTitle > div > * {
      text-decoration: underline;
      font-size: 20px;
      color: #525252;

  }

  #latestNews .specialTitle > div > * {
      padding: 30px 0 30px 0;
  }

  .newsBox {
      -webkit-box-shadow: 0 0px 0 0px rgba(0,0,0,0);
      box-shadow: 0 0px 0 0px rgba(0,0,0,0);
      display: block;
      background: #fff;
      padding: 1px 30px 30px 30px;
      color: #525252;
      margin-top: 30px;
      margin-bottom: 18px;
      -moz-transform: scale(0.98);
      -webkit-transform: scale(0.98);
      -o-transform: scale(0.98);
      -ms-transform: scale(0.98);
      transform: scale(0.98);
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
      position: relative;

  }

  .newsBox:hover {
      color: #525252;
      -webkit-box-shadow: 0 6px 0 -3px rgba(0,0,0,0.05);
      box-shadow: 0 6px 0 -3px rgba(0,0,0,0.05);
      -moz-transform: scale(1);
      -webkit-transform: scale(1);
      -o-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
  }

  .newsBox .img {
      -webkit-box-shadow: 0 0px 0 0px rgba(0,0,0,0);
      box-shadow: 0 0px 0 0px rgba(0,0,0,0);
      margin-top: -30px;
      margin-bottom: 30px;
      -moz-transform: scale(0.98);
      -webkit-transform: scale(0.98);
      -o-transform: scale(0.98);
      -ms-transform: scale(0.98);
      transform: scale(0.98);
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
  }

  .newsBox:hover .img {
      -webkit-box-shadow: 0 6px 0 -3px rgba(0,0,0,0.1);
      box-shadow: 0 6px 0 -3px rgba(0,0,0,0.1);
      -moz-transform: scale(1);
      -webkit-transform: scale(1);
      -o-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
  }

  .newsBox .img img {
      width: 100%;
  }

  .newsBox .date {
      font-size: 13px;
      display: block;
  }

  .newsBox strong {
      display: block;
      font-size: 16px;
      font-weight: 700;
      max-width: 450px;
      width: calc(100% - 70px);
      margin-bottom: 15px;
      letter-spacing: 0.05em;
  }

  .newsBox .readMore {
      position: absolute;
      bottom: 30px;
      right: 30px;
      text-align: right;
      font-size: 14px;
      font-weight: 700;
  }

  .newsBox .readMore .fa {
      color: #b0aca1;
  }

  .newsBox p {
      font-size: 13px;
      /* display: none; */
      width: calc(100% - 70px);
  }



  #instagramFeed {
      position: relative;
      margin-bottom: 30px;
  }

  #instagramFeed .container > div {
      padding-left: 30px;
      padding-right: 30px;
      margin-top: 0px !important;
  }

  #instagramFeed a {
      display: block;
      min-height: 182px;
      background-size: cover;
      background-position: center;
  }

  #instagramFeed .img {
      display: block;
  }

  #instagramFeed img {
      display: block;
      -webkit-box-shadow: 0 0px 0 0px rgba(0,0,0,0);
      box-shadow: 0 0px 0 0px rgba(0,0,0,0);
      -moz-transform: scale(1);
      -webkit-transform: scale(1);
      -o-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
      visibility: hidden;
      width: 1px !important;
      height: 1px !important;
  }

  #instagramFeed .img:hover:before {
      opacity: 1;
  }

  #instagramFeed .img:hover img {
      -webkit-box-shadow: 0 0px 6px 0px rgba(0,0,0,0.2);
      box-shadow: 0 0px 6px 0px rgba(0,0,0,0.2);
      -moz-transform: scale(0.96);
      -webkit-transform: scale(0.96);
      -o-transform: scale(0.96);
      -ms-transform: scale(0.96);
      transform: scale(0.96);
  }

  #catHead {
      display: flex;
      display: -webkit-flex;
      display: -ms-flex;
      display: -moz-flex;
      justify-content: stretch;
      -webkit-justify-content: stretch;
      -moz-justify-content: stretch;
      -ms-justify-content: stretch;
      align-items: stretch;
      -webkit-align-items: stretch;
      -ms-flex-align: stretch;
      -moz-align-items: stretch;
      align-content: stretch;
      text-align: center;
      flex-wrap: wrap;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      border: 1px solid #dfdfdf;
  }

  #catHead > * {
      width: 100%;
  }

  #catHead .wysiwyg {
      padding: 30px 15px;
      display: flex;
      display: -webkit-flex;
      display: -ms-flex;
      display: -moz-flex;
      flex-direction: column;
      -webkit-justify-flex-direction: column;
      -moz-justify-flex-direction: column;
      -ms-justify-flex-direction: column;
      justify-content: stretch;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      align-items: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      -moz-align-items: center;
      align-content: center;
      text-align: center;
      flex-wrap: wrap;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      font-size: 13px;
  }

  #catHead.fullWidth .wysiwyg > * {
      max-width: calc(100% - 60px);
  }

  #catHead .wysiwyg h1 {
      color: #313131;
  }

  #catHead:not(.fullWidth) .wysiwyg > * {
      max-width: 380px;
  }

  #catHead.fullWidth {
      position: relative;
  }

  #catHead.fullWidth .img,
  #catHead.fullWidth picture {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
  }

  #catHead.fullWidth .wysiwyg {
      width: 100%;
      height: 100%;
      position: absolute;
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
      color: #fff;
  }

  #catHead.fullWidth .wysiwyg h1 {
      display: block;
      border: 1px solid #d9d5d3;
      padding: 15px;
      background: rgba(0,0,0,0.4);
      font-weight: 300;
      line-height: 26px;
      font-size: 23px;
      color: #fff;
  }

  #catHead .ajsBreadcrumb ul {
      font-size: 13px;
      margin-bottom: 10px;
  }

  #catHead.fullWidth .wysiwyg ul li,
  #catHead.fullWidth .wysiwyg ul li a {
      color: #fff;
  }

  .productRanges {
      padding-top: 15px;
      padding-bottom: 15px;
  }

  .rangeWrap {
      padding-top: 15px;
      padding-bottom: 30px;
      text-align: center;
  }

  .rangeWrap h3 {
      font-size: 15px;
      margin: 15px 0 0 0;
      text-align: center;
      font-weight: 400;
      letter-spacing: 0.05em;
  }

  .rangeBox:hover {
      color: #000;
  }


  .rangeBox img {
      -webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0.3);
      box-shadow: 0 0 0 0 rgba(0,0,0,0.3);
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      -ms-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
  }

  .rangeBox:hover img {
      -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
      box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
  }

  .productBox {
      text-align: center;
  }

  .productBox .img {
      border: 1px solid #dfdfdf;
      position: relative;
      overflow: hidden;
      width: 100%;
  }

  .productBox .img img {
      position: relative;
      width: 100%;
  }

  .productBox .img img.hover {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      opacity: 0;
      -webkit-transition: opacity 300ms ease, filter 200ms ease;
      -moz-transition: opacity 300ms ease, filter 200ms ease;
      -ms-transition: opacity 300ms ease, filter 200ms ease;
      -o-transition: opacity 300ms ease, filter 200ms ease;
      transition: opacity 300ms ease, filter 200ms ease;
  }

  .productBox:hover a {
      color: #363635;
  }

  .productBox:hover .img img:not(.hover) {
      filter: blur(5px);
  }

  .productBox:hover .img img.hover {
      opacity: 1;
  }

  .productBox strong {
      margin-top: 15px;
      margin-bottom: 10px;
      display: block;
      font-size: 15px;
      font-weight: 400;
      letter-spacing: 0.05em;
  }

  .productBox .price {
      font-size: 18px;
  }

  #productSingle .productSingle h1 {
      text-transform: none;
      font-size: 28px;
      color: #38373b;
  }

  #attributes {
      color: #a5a4a4;
  }

  #attributes strong {
      color: #363635;
  }

  #attributes a {
      color: #a5a4a4;
  }

  .deliveryTimes .fa-check {
      color: #03c769;
  }

  #productControls {
      padding: 20px 0;
  }

  #productControls .price {
      font-size: 26px;
      color: #363635;
  }

  #productSingle .shortDescription  {
      font-size: 14px;
      color: #363635;
  }

  #productSingle .shortDescription .readMore:before {
      content: 'Read More';
      font-style: italic;
      font-size: 15px;
  }

  nav.social {
      font-size: 20px;
  }

  nav.social li a {
      display: block;
      min-width: 30px;
      line-height: 30px;
      text-align: center;
  }

  #productContent .social.share {
      padding: 15px 0;
  }

  #productContent .social.share ul > li:first-child {
      font-size: 13px;
  }

  #productContent .social.share .fa {
      font-size: 18px;
      margin-right: 3px;
  }

  .productTotal {
      text-align: right;
      color: #363635;
      font-size: 18px;
  }

  #productContent .productTotal .price strong {
      font-size: 26px;
      font-weight: 400;
  }

  #productContent .productTotal {
      display: flex;
      display: -webkit-flex;
      display: -ms-flex;
      display: -moz-flex;
      justify-content: space-between;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      align-items: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      -moz-align-items: center;
      align-content: stretch;
      text-align: center;
      flex-wrap: wrap;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      margin-bottom: 15px;
  }

  #productContent .productTotal .share {
      padding-top: 20px;
      padding-right: 30px;
  }

  #productContent .productTotal .share .fa {
      font-size: 20px;
      line-height: 25px;
  }

  #productContent .productTotal .share .fa-facebook-square {
      color: #013254;
  }

  #productContent .productTotal .share .fa-twitter-square {
      color: #007bd0;
  }

  #productContent .productTotal .share .fa-pinterest {
      color: #c93636350;
  }

  #productContent .productTotal .share .fa-envelope-square {
      color: #ffab00;
  }

  #productContent .productTotal .price {
      font-size: 18px;
      padding-top: 10px;
  }

  #productContent .productTotal .price strong {
      font-size: 26px;
      font-weight: 400;
  }


  #productContent #productControlsMain {
      display: flex;
      display: -webkit-flex;
      display: -ms-flex;
      display: -moz-flex;
      justify-content: space-between;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      align-items: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      -moz-align-items: center;
      align-content: stretch;
      text-align: center;
      flex-wrap: wrap;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      margin-bottom: 30px;
      padding: 15px 0;
      border-top: 1px solid #9d9d9d;
      border-bottom: 1px solid #9d9d9d;
  }

  #productContent #productControlsMain .right {
      display: flex;
      display: -webkit-flex;
      display: -ms-flex;
      display: -moz-flex;
      justify-content: flex-start;
      -webkit-justify-content: flex-start;
      -moz-justify-content: flex-start;
      -ms-justify-content: flex-start;
      align-items: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      -moz-align-items: center;
      align-content: stretch;
      text-align: center;
      flex-wrap: wrap;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
  }

  #productContent #productControlsMain .btn {
      display: block;
      line-height: 25px;
      padding: 10px;
      border: 1px solid #9d9d9d;
      margin: 0;
      background: #fff;
      margin-right: -1px;
      min-width: 45px;
  }

  #productContent #productControlsMain .favorite {
      color: #88898a;

  }



  #productContent #productControlsMain #button-cart {
      background: #9d9d9d;
      color: #fff;
      padding: 10px 45px;
  }

  #productContent #productControlsMain .btn:hover {
      background: #161616 !important;
      color: #fff !important;
  }

  #productContent #productControlsMain .qty {
      display: flex;
      display: -webkit-flex;
      display: -ms-flex;
      display: -moz-flex;
      justify-content: space-between;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      align-items: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      -moz-align-items: center;
      align-content: stretch;
      text-align: center;
      flex-wrap: nowrap;
      -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
      -moz-flex-wrap: nowrap;
  }

  #productContent #productControlsMain .qty label {
      display: block;
      margin: 0;
      font-size: 12px;
      padding-right: 15px;

  }

  #productContent #productControlsMain .qty input[type=text],
  #productContent #productControlsMain .qty input[type=number] {
      display: block;
      background: #fff;
      color: #161616;
      height: 47px;
      width: 90px;
      margin: 0;
      padding: 10px;
      line-height: 25px;
      border: 1px solid #9d9d9d;
      text-align: left;
  }

  #upsellPanel {
      padding: 45px;
      border: 2px solid #eeeeee;
      min-height: 470px;
  }

  #upsellPanel ul {
      display: block;
      margin: 0;
      padding: 0;
  }

  #upsellPanel ul li {
      display: block;
      position: relative;
      min-height: 45px;
      padding: 15px 15px 15px 100px;
      max-width: 500px;
      margin-bottom: 30px;
  }

  #upsellPanel ul li:last-child {
      margin-bottom: 0;
  }

  #upsellPanel ul li img {
      position: absolute;
      left: 0;
      top: calc(50% - 25px);
  }

  .mfp-bg {
      background: #898989;
  }

  #cms article {
      background: #efeeea;
      padding: 15px;
  }

  #gallery .row {
      margin-left: -8px;
      margin-right: -8px;
  }

  #gallery .row > * {
      padding-left: 8px;
      padding-right: 8px;
  }

  #gallery .rowPad {
      padding-top: 8px;
      padding-bottom: 8px;
  }

  #curateContent_top {
      text-align: center;
  }

  #curateContent_top h2 {
      font-size: 26px;
      text-transform: uppercase;
      margin-bottom: 45px;
  }

  #curateContent_top h2:last-child {
      margin-bottom: 0;
  }

  #curateSlider {
      padding-top: 45px;
      padding-bottom: 30px;
  }

  #curateContent {
      padding-top: 45px;
      padding-bottom: 45px;
      text-align: center;
  }

  #curateContent h3 {
      font-size: 34px;
      font-weight: 400;
      text-transform: uppercase;
  }

  #curateContent section {
      background: #d4d0c5;
      padding: 15px;
  }

  #curateContent .img {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #curateContent .img img {
      margin-left: -60px;
      margin-right: -60px;
      margin-top: -60px;
      margin-bottom: -60px;
      width: calc(100% + 120px);
      max-width: calc(100% + 120px);
  }

  #curateContent .readMore {
      font-weight: 700;
  }

  .contactDetails > * {
      display: block;
      position: relative;
      padding-left: 30px;
  }

  .contactDetails .fa {
      position: absolute;
      left: 0;
      width: 25px;
      text-align: center;
      height: 25px;
      line-height: 25px;
      display: block;
  }

  .contactDetails address {
      padding-bottom: 15px;
  }

  #blogArchive .newsGrid .description,
  #blogArchive .curateGrid .description {
      text-align: center;
      margin-bottom: 30px;
  }

  #blogArchive .newsGrid,
  #blogSingle .blogSingle,
  #blogArchive .curateGrid {
      padding: 15px 15px 45px 15px;
      background: #efeeea;
  }

  #blogArchive .newsGrid > .row > .newsWrap:first-child {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
  }

  @media screen and (min-width: 767px) {
    #blogArchive .newsGrid > .row > .newsWrap:first-child .newsBox {
        display: flex;
        display: -webkit-flex;
        display: -ms-flex;
        display: -moz-flex;
        justify-content: space-between;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        -ms-justify-content: space-between;
        align-items: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        -moz-align-items: center;
        align-content: stretch;
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
    }
  
    #blogArchive .newsGrid > .row > .newsWrap:first-child .newsBox .img {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 55%;
        -ms-flex: 0 0 55%;
        flex: 0 0 55%;
        max-width: 55%;
        margin-bottom: 0;
    }
  
    #blogArchive .newsGrid > .row > .newsWrap:first-child .newsBox .text {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 45%;
        -ms-flex: 0 0 45%;
        flex: 0 0 45%;
        max-width: 45%;
        padding-left: 30px;
    }
  
    #blogArchive .newsGrid > .row > .newsWrap:first-child .newsBox .readMore {
        left: calc(55% + 30px);
        text-align: left;
    }
  
    #blogArchive .newsGrid > .row > .newsWrap:first-child .newsBox .text strong {
        display: block;
        margin-bottom: 15px;
    }
  
    #blogArchive .newsGrid > .row > .newsWrap:first-child .newsBox .text p {
        display: block;
    }
  
    #blogArchive .newsGrid > .row > .newsWrap:first-child .newsBox .text .date {
        padding-bottom: 10px;
    }
  }


  #blogSingle article {
      padding: 75px 30px;
      margin: -30px -30px 0 -30px;
      background: #fff;
  }


  .ajsFilters > .title  {
      display: none;
  }

  .applyFilters {
      line-height: 20px;
      padding-bottom: 10px;
      border-bottom: 1px solid #dfdfdf;
      margin-bottom: 15px;
      text-transform: uppercase;
      font-weight: 700;
      display: block;
      position: relative;
  }

  .applyFilters:after {
      position: absolute;
      top: 0;
      right: 0;
      line-height: 20px;
      width: 20px;
      text-align: center;
      content: '+';
      cursor: pointer;

  }

  /* #ajsFilters {
      display: none
  } */

  #ajsFilters .btn-block {
      display: block;
      width: 100%;
      margin: 0;
      border: 0;
      font-size: 14px;
      padding: 0;
      text-align: left;
      font-weight: 700;
      text-transform: uppercase;
  }

  #ajsFilters .btn-block .fa {
      margin-right: 5px;
  }

  .mfp-content #ajsFilters {
      display: block;
      background: #fff;
      max-width: 800px;
      overflow-y: auto;
      padding: 15px 15px 0 15px;
      margin: 15px;
      position: relative;
      margin: 0 auto;
  }

/*    .mfp-content #ajsFilters .btn.apply {
      position: absolute;
      bottom: 15px;
      left: 15px;
      right: 15px;
      height: 45px;
      margin: 0;
  }
*/
  .mfp-content .ajsFiltersWrap {
      max-height: 400px;
      overflow-y: auto;
  }

  .mfp-content .ajsFiltersWrap nav {
      margin-bottom: 30px;
  }

  .mfp-content #ajsFilters:after {
      display: block;
      height: 45px;
      content: '';
      left: 0;
      right: 0;
      pointer-events: none;
      position: absolute;
      bottom: 75px;
      /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
      background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
      background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
  }

  .mfp-content #ajsFilters .title .popup-modal-dismiss {
      position: absolute;
      right: 0;
  }


  .reviewStars label {
      display: inline-block;
  }

  .reviewStars label input[type=radio] {
      display: none;
  }

  .reviewStars label input[type=radio] + span:before {
      content: '\f005 ';
      font-family: Font Awesome\ 5 Pro;
      cursor: pointer;
  }

  .reviewStars label.leading input[type=radio] + span:before {
      content: '\f005 ';
      color: #ffd87b;
  }

  .reviewStars label input[type=radio]:hover + span:before,
  .reviewStars label input[type=radio]:checked + span:before,
  .reviewStars label.checked input[type=radio] + span:before {
      content: '\f005 ';
      color: #ffb400;
      font-weight: 700;
  }

  body > .alert,
  main > .alert {
      position: fixed;
      top: 15px;
      right: 15px;
      max-width: calc(100% - 30px);
      z-index: 10000;
      /*min-height: 90px;*/
      display: block;
      justify-content: center;
      align-items: center;
  }

  .form-group.required > label:after {
      content: '*';
      color: #db3533;
  }

  #searchDefine {
      border: 1px solid #efeeea;
      background: #fff;
      margin-bottom: 30px;
      /* padding: 15px 30px 30px 30px; */
  }

  #searchDefine > .top {
      padding: 15px 30px 30px 30px;
  }

  #searchDefine > .bottom {
      padding: 15px 185px 15px 30px;
      position: relative;
      background: #efeeea;
  }

  #searchDefine > .bottom .btn {
      position: absolute;
      top: 15px;
      right: 15px;
      margin:0;
  }

  #searchDefine > .bottom .ajsCheckbox {
      line-height: 15px;
      padding-top: 15px;
      padding-bottom: 15px;
      display: block;
  }


  .table-responsive .wrap{
      overflow-x: auto;
      padding-bottom: 70px;
  }

  .table-responsive .wrap .table {
      min-width: 825px;
  }

  #ajsCart>thead>tr>th:first-child,
  #ajsCart>tbody>tr>td:first-child {
      text-align: left;
      width: 180px;
  } 

  #ajsCart>thead>tr>th {
      text-align: left;
  }

  .list-group > a {
      display: block;
  }

/*    .table-responsive input[type=text] {
      padding: 5px;
      text-align: center;
  }*/


  #newsletterSignupSide {
      background: #dcd9d0;
      color: #fff;
      padding: 75px 16px 16px 16px;
      display: none;
  }

  #newsletterSignupSide > div > span {
      font-size: 16px;
      margin-bottom: 30px;
      display: block;
      text-transform: uppercase;
  }

  #newsletterSignupSide strong {
      font-weight: 700;
      display: block;
  }

  #newsletterSignupSide_wrap {
      position: relative;
  }

  #newsletterSignupSide_wrap input {
      padding-right: 55px;
      border: 0;
      margin: 0;

  }

  #newsletterSignupSide_wrap button {
      position: absolute;
      right: 0;
      top: 0;
      background: #5e5d58;
      color: #fff;
      width: 45px;
      height: 45px;
      text-align: center;
      line-height: 45px;
      border: 0;

  }

  @media screen and (min-width:380px) {
      #services .row > .service > a blockquote {
          font-size: 26px;
      }
  }

  @media screen and (min-width:480px) {
      #sidebar nav ul {
          -moz-column-count: 2;
          -moz-column-gap: 30px;
          -webkit-column-count: 2;
          -webkit-column-gap: 30px;
          column-count: 2;
          column-gap: 30px;
      }

      #services .row > .service > a blockquote {
          font-size: 32px;
      }


      #catHead.fullWidth .wysiwyg h1 {
          line-height: 45px;
          font-size: 34px;
      }


      .mfp-content #ajsFilters .ajsFiltersWrap ul {
          display: flex;
          flex-wrap: wrap;
      }

      .mfp-content #ajsFilters .ajsFiltersWrap nav ul li {
          -webkit-box-flex: 0;
          -webkit-flex: 0 0 calc(50% - 10px);
          -ms-flex: 0 0 calc(50% - 10px);
          flex: 0 0 calc(50% - 10px);
          max-width: calc(50% - 10px);
      }
  }

  @media screen and (min-width:576px) {
      .tabs > nav > ul {
          display: flex;
          flex-wrap: nowrap;
          align-items: flex-end;
          border-bottom: 1px solid transparent;
          background: #eeeeee;
      }

      .tabs > nav > ul > li.tab {
          margin-bottom: -1px;
          text-transform: uppercase;
      }

      .tabs > nav > ul > li.tab a {
          padding: 15px 45px;
          background: #eeeeee;
          border: 1px solid transparent;
          border-bottom-color: transparent;
      }

      .tabs > nav > ul > li.tab a:hover {
          /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f7f5f5+0,eeeeee+100 */
          background: rgb(247,245,245); /* Old browsers */
          background: -moz-linear-gradient(-45deg, rgba(247,245,245,1) 0%, rgba(238,238,238,1) 100%); /* FF3.6-15 */
          background: -webkit-linear-gradient(-45deg, rgba(247,245,245,1) 0%,rgba(238,238,238,1) 100%); /* Chrome10-25,Safari5.1-6 */
          background: linear-gradient(135deg, rgba(247,245,245,1) 0%,rgba(238,238,238,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f5f5', endColorstr='#eeeeee',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
          border: 1px solid transparent;
      }

      .tabs > nav > ul > li.tab.active a {
          background: #f7f5f5;
          border: 1px solid transparent;
          border-bottom-color: transparent;
      }

      .tabs > nav > ul > li section {
          display: none;
      }

      .tabs #tabsContent {
          display: block;
          padding: 30px 45px;
          /*max-width: 700px;*/
          background: #f7f5f5;
          min-height: 413px;
      }

      #ajsCart img {
          max-width: 150px;
          display: inline-block;
      }


      #services .row > .service blockquote:before {
          font-size: 30px;
          line-height: 30px;
      }

      #services .row > .service > a blockquote {
          font-size: 20px;
      }

      #newsletterSignup input[type=email] {
          max-width: calc(100% - 180px);
      }

      #newsletterSignup button {
          width: 180px;
      }


      .mfp-content #ajsFilters .ajsFiltersWrap nav ul li {
          -webkit-box-flex: 0;
          -webkit-flex: 0 0 calc(33.33% - 10px);
          -ms-flex: 0 0 calc(33.33% - 10px);
          flex: 0 0 calc(33.33% - 10px);
          max-width: calc(33.33% - 10px);
      }
  }

  #productTopDesktop {
    display:  none;
  }

  #productContent {
    padding-top:  15px;
    padding-bottom:  15px;
  }

  @media screen and (min-width:768px) {
    #productContent {
      padding-top:  0;
      padding-bottom:  0;
    }

    #productTopDesktop {
    display:  block;
  }

      #productTop {
        display:  none;
      }
     #heroSlider .slide > div > div strong,
     #catHead.fullWidth .wysiwyg h1 {
          font-size: 44px;
          line-height: 55px;
      }

      #heroSlider .slide > div > div p span {
          display: block;
          padding: 0 15px;
          font-size: 22px;
      }

      #services .row > .service > a blockquote {
          font-size: 22px; 
      }

      /* #catHead:not(.fullWidth) .img {
          display: none;
      }*/

      #catHead > * {
          width: 50%;
      }
      #catHead > .wysiwyg {
          -webkit-box-ordinal-group: 1;
          -webkit-order: 0;
          -ms-flex-order: 0;
          order: -1;
      }

      #catHead .wysiwyg {
          padding-top: 45px;
      }

      #sidebar nav ul {
          -moz-column-count: 3;
          -moz-column-gap: 30px;
          -webkit-column-count: 3;
          -webkit-column-gap: 30px;
          column-count: 3;
          column-gap: 30px;
      }

      /*
      #productSingle .productSingle > .row {
          padding-left: calc(50% + 15px);
      }
      */

      /*
      #productSingle .productSingle #productImg {
          position: absolute;
          left: 0;
      }
      */

      #productSingle .productSingle #productImg img {
          width: auto;
          display: block;
          margin: 0 auto;
      }

      #cms article {
          padding: 30px;
      }

      #curateContent .img img {
          margin-right: 0;
          width: calc(100% + 30px);
          max-width: calc(100% + 30px);
      }

      #curateContent {
          text-align: left;
      }

      #blogArchive .newsGrid,
      #blogArchive .curateGrid {
          padding: 15px 30px 45px 30px;
      }

      #blogArchive .curateGrid p {
          display: block;
      }

      .mfp-content #ajsFilters .ajsFiltersWrap nav ul li {
          -webkit-box-flex: 0;
          -webkit-flex: 0 0 calc(25% - 10px);
          -ms-flex: 0 0 calc(25% - 10px);
          flex: 0 0 calc(25% - 10px);
          max-width: calc(25% - 10px);
      }
  }

  @media screen and (min-width:992px) {
     #heroSlider .slide > div > div strong,
     #catHead.fullWidth .wysiwyg h1 {
          padding: 20px 45px;
          font-size: 54px;
          line-height: 65px;
      }

      #heroSlider .slide > div > div p span {
          display: block;
          padding: 0 15px;
          font-size: 22px;
      }

      #catHead .img {
          -webkit-box-flex: 0;
          -webkit-flex: 0 0 60%;
          -ms-flex: 0 0 60%;
          flex: 0 0 60%;
          max-width: 60%;
          display: block;
      }

      #catHead .wysiwyg {
          -webkit-box-flex: 0;
          -webkit-flex: 0 0 40%;
          -ms-flex: 0 0 40%;
          flex: 0 0 40%;
          max-width: 40%;
          padding: 30px;
      }

      #sidebar nav ul {
          -moz-column-count: 1;
          -moz-column-gap: 0;
          -webkit-column-count: 1;
          -webkit-column-gap: 0;
          column-count: 1;
          column-gap: 0;
      }

      /*
      #productSingle .productSingle > .row {
          padding-left: calc(58.333333% + 15px);
      }
      */

      #cms article {
          padding: 45px 60px;
      }

      #catHead .ajsBreadcrumb ul {
          margin-bottom: 40px;
      }
/*        #catHead:not(.fullWidth) .img {
          display: block;
      }*/

      #blogArchive .newsGrid,
      #blogArchive .curateGrid {
          padding: 15px 45px 45px 45px;
      }

      #blogSingle article {
          padding: 75px 60px;
      }

      #services .service:nth-child(1) {
          order: 2;
      }

      #services .service:nth-child(2) {
          order: 1;
      }

      #services .service:nth-child(n+3) {
          order: 3;
      }


      body > .alert,
      main > .alert {
          top: 30px;
          right: 30px;
          max-width: calc(100% - 60px);
      }


      #ajsFilters {
          display: block;
      }

      .applyFilters,
      #ajsFilters .btn.apply {
          display: none;
      }

      #newsletterSignupSide {
          display: block;
      }
  }

  @media screen and (min-width:1200px) {
     #heroSlider .slide > div > div strong,
     #catHead.fullWidth .wysiwyg h1 {
          font-size: 64px;
          line-height: 75px;
          letter-spacing: 0.05em;
      }

      #heroSlider .slide > div > div p span {
          display: block;
          padding: 0 15px;
          font-size: 26px;
          letter-spacing: 0.05em;
      }

          #services .row > .service > a blockquote {
              font-size: 28px;
          }

          #services .row > .service blockquote:before {
              font-size: 44px;
          }

      #catHead .img {
          -webkit-box-flex: 0;
          -webkit-flex: 0 0 66.666666%;
          -ms-flex: 0 0 66.666666%;
          flex: 0 0 66.666666%;
          max-width: 66.666666%;
      }

      #catHead .wysiwyg {
          -webkit-box-flex: 0;
          -webkit-flex: 0 0 33.333333%;
          -ms-flex: 0 0 33.333333%;
          flex: 0 0 33.333333%;
          max-width: 33.333333%;
      }

      #blogArchive .newsGrid,
      #blogArchive .curateGrid {
          padding: 15px 90px 45px 90px;
      }

      #newsletterSignupSide > div > span {
          font-size: 20px;
      }        
  }

  @media screen and (min-width:1280px) { 
      #newsletterSignup label {
          -webkit-flex: 0 0 auto;
          -ms-flex: 0 0 auto;
          flex: 0 0 auto;
          max-width: auto;
      }

      #newsletterSignup label {
          padding: 10px 30px;
      }
  }

  @media screen and (min-width:1600px) {
      #heroSlider .slide > div > div {
          max-width: 650px;
      }

      #heroSlider .slide > div > div strong,
      #catHead.fullWidth .wysiwyg h1 {
          padding: 30px 60px;
      }

      #services .row > .service > a blockquote {
          font-size: 34px;
          padding: 30px;
      }

      #services .row > .service blockquote:before {
          font-size: 44px;
      }

      #newsletterSignup label {
          padding: 10px 45px;
      }

      .tabs #tabsContent {
          padding-right: 175px;
      }

      #newsletterSignupSide {
          padding: 75px 30px 30px 30px;
      }

      #newsletterSignupSide > div > span {
          font-size: 24px;
      }

      .specialTitle > div > * {
          font-size: 26px;
      }

      .newsBox strong {
          font-size: 18px;
      }
  }

  @media screen and (min-width:1900px) {

  }

  @media screen and (min-width: 2363635px) {
 
  }

  @media screen and (max-width: 1600px) {
      
  }

  @media screen and (max-width: 1200px) {

  }

  @media screen and (max-width: 991px) {

      #sidebar nav {
          margin-bottom: 0;
      }

      #sidebar nav.open {
          margin-bottom: 30px;
      }

      #sidebar nav ul {
          display: none;
      }

      #sidebar nav.open ul {
          display: block;
      }

      #sidebar nav .title {
          position: relative;
          padding-right: 20px;
          cursor: pointer;
      }

      #sidebar nav .title:after {
          position: absolute;
          top: 0;
          right: 0;
          line-height: 20px;
          width: 20px;
          text-align: center;
          content: '+';
          cursor: pointer;
      }

      #sidebar nav.open .title:after {
          content: '-'
      }
  }

  @media screen and (max-width: 767px) {
      #sidebar #services {
          display: none;
      }


      #ajsCart th {
          display: none;
      }

      #ajsCart tr {
          display: block;
          margin-bottom: 30px;
       }

      #ajsCart tr td {
          display: block;
      }

      #ajsCart .total {
          font-size: 18px;
      }

      #ajsCart .model,
      #ajsCart .unit {
          display: none !important;
      }

  }

  @media screen and (max-width: 575px) {
      .tabs {
          margin: 0 -15px 30px -15px;
      }

      .tabs > nav > ul > li.tab > a {
          display: block;
          border-bottom: 1px solid #f3f3f3;
          padding: 10px 45px 10px 15px;
          line-height: 25px;
          font-size: 16px;
          position: relative;
          text-transform: uppercase;
      }

      .tabs > nav > ul > li.tab > a:after {
          content: '+';
          position: absolute;
          right: 0;
          top: 0;
          text-align: center;
          line-height: 45px;
          height: 45px;
          width: 30px;
      }

      .tabs > nav > ul > li.tab.active > a:after {
          content: '-';
      }

      .tabs > nav > ul > li > section {
          display: none;
          padding: 30px 15px;
          background: #efefef;
      }

      .tabs > nav > ul > li.active > section {
          display: block;
      }

      .tabs #tabsContent {
          display: none;
      }
  }

  @media screen and (max-width:480px) {
      .col-xxs-12 {
          -webkit-box-flex: 0;
          -webkit-flex: 0 0 100%;
          -ms-flex: 0 0 100%;
          flex: 0 0 100%;
          max-width: 100%;
      }

      #productContent #productControlsMain #button-cart span {
          display: none;
      }
  }

  @media screen and (max-width: 574px) {
      #searchDefine > .bottom {
          padding-top: 75px;
          padding-right: 15px;
      }

      #searchDefine > .bottom .btn {
          width: calc(100% - 30px);
      }
  }

  @media screen and (min-width: 575px) and (max-width: 1199px) {

  }

  @media screen and (min-width:1200px) and (max-width: 1599px) {

  }

  @media screen and (min-width:1600px) {

  }

  @keyframes fadein {
      from { opacity: 0; }
      to   { opacity: 1; }
  }

  /* Firefox < 16 */
  @-moz-keyframes fadein {
      from { opacity: 0; }
      to   { opacity: 1; }
  }

  /* Safari, Chrome and Opera > 12.1 */
  @-webkit-keyframes fadein {
      from { opacity: 0; }
      to   { opacity: 1; }
  }

  /* Internet Explorer */
  @-ms-keyframes fadein {
      from { opacity: 0; }
      to   { opacity: 1; }
  }

  /* Opera < 12.1 */
  @-o-keyframes fadein {
      from { opacity: 0; }
      to   { opacity: 1; }
  }
  
/*   body {
      min-width: 320px;
  }*/

/* ==========================================================================
 Helper classes
 ========================================================================== */

/*
* Hide visually and from screen readers
*/

.hidden {
  display: none !important;
}

/*
* Hide only visually, but have it available for screen readers:
* http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*/

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
* Extends the .visuallyhidden class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
* Hide visually and from screen readers, but maintain layout
*/

.invisible {
  visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/
.clearfix,
.clearfix:before,
.clearfix:after {
  content: ''; /* 1 */
  display: block; /* 2 */
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  clear: both;
}

/* ==========================================================================
 EXAMPLE Media Queries for Responsive Design.
 These examples override the primary ('mobile first') styles.
 Modify as content requires.
 ========================================================================== */


@media print,
     (-webkit-min-device-pixel-ratio: 1.25),
     (min-resolution: 1.25dppx),
     (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
 Print styles.
 Inlined to avoid the additional HTTP request:
 http://www.phpied.com/delay-loading-your-print-css/
 ========================================================================== */

@media print {
  *,
  *:before,
  *:after,
  *:first-letter,
  *:first-line {
      background: transparent !important;
      color: #161616 !important; /* Black prints faster:
                                 http://www.sanbeiji.com/archives/953 */
      box-shadow: none !important;
      text-shadow: none !important;
  }

  a,
  a:visited {
      text-decoration: underline;
  }

  a[href]:after {
      content: " (" attr(href) ")";
  }

  abbr[title]:after {
      content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */

  a[href^="#"]:after,
  a[href^="javascript:"]:after {
      content: "";
  }

  pre,
  blockquote {
      border: 1px solid #999;
      page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */

  thead {
      display: table-header-group;
  }

  tr,
  img {
      page-break-inside: avoid;
  }

  img {
      max-width: 100% !important;
  }

  p,
  h2,
  h3 {
      orphans: 3;
      widows: 3;
  }

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

#relatedProducts .specialTitle {
  text-transform: uppercase;
  font-size: 20px;
}

#relatedProducts .specialTitle > div > * {
  font-size: 20px;
}

.newsWrap {
  margin-bottom: 15px;
}

#singleHeader .ajsBreadcrumb ul {
  margin-bottom: 0;
}

.registerLink {
  text-align: right;
}

.panel-collapse:not(.in) {
  display: none !important;
  opacity: 0;
  visibility: hidden;
}

a.btn-signup-prices {
margin-left: auto;
margin-right: 0px;
}

a.btn-signup-prices .fa {
display: inline-block;
margin-right: 10px;
}

a.btn-signup-prices span {
display: inline-block;
}

.wishlist-expired {
margin: 60px 0px;
background-color: #eee;
padding: 32px;
box-sizing: border-box;
}

.wishlist-expired h1 {
  text-align: center;
  margin: 0px;
  margin-bottom: 50px;
  position: relative;
}

.wishlist-expired h1:after {
  position: absolute;
  bottom: -25px;
  left: calc(50% - 50px);
  width: 100px;
  height: 1px;
  background-color: #000;
  content: '';
}

.wishlist-expired p a {
  font-weight: 700;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
#curateContent .rowPad_md {
    margin-top: 50px;
}
.newsBox p {

    width: calc(100%);
}
}


/* 2022 additions */
@media screen and (max-width:767px) {
    #blogSingle .blogSingle {
        padding-bottom: 0px;
    }
}
