/*
 * jQuery FlexSlider v2.6.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/* ====================================================================================================================
 * FONT-FACE
 * ====================================================================================================================*/

@font-face {
  font-family: 'flexslider-icon';
  src: url('fonts/flexslider-icon.eot');
  src: url('fonts/flexslider-icon.eot?#iefix') format('embedded-opentype'), url('fonts/flexslider-icon.woff') format('woff'), url('fonts/flexslider-icon.ttf') format('truetype'), url('fonts/flexslider-icon.svg#flexslider-icon') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover {
  outline: none;
}
.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.flexslider {
  margin: 0;
  padding: 0;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
.flexslider .slides img {
  width: 100%;
  display: block;
}
.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .flexslider .slides {
  display: block;
}
* html .flexslider .slides {
  height: 1%;
}
.no-js .flexslider .slides > li:first-child {
  display: block;
}
/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
  margin: 0 0 60px;
  background: #ffffff;
  border: 4px solid #ffffff;
  position: relative;
  zoom: 1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
}
.flexslider .slides {
  zoom: 1;
}
.flexslider .slides img {
  height: auto;
  -moz-user-select: none;
}
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}
.carousel li {
  margin-right: 5px;
}
.flex-direction-nav {
  *height: 0;
}
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 40px;
  display: inline-block;
  content: '\f001';
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}
.flex-direction-nav a.flex-next:before {
  content: '\f002';
}
.flex-direction-nav .flex-prev {
  left: -50px;
}
.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}
.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px;
}
.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}
.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px;
}
.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}
.flex-direction-nav .flex-disabled {
  opacity: 0!important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}
.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}
.flex-pauseplay a:hover {
  opacity: 1;
}
.flex-pauseplay a.flex-play:before {
  content: '\f003';
}
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}
.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}
.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}
.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.flex-control-thumbs img:hover {
  opacity: 1;
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}
/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
/* Magnific Popup CSS */

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
* {
  box-sizing: border-box;
}

body, html {
  height: 100%;
  min-height: 100%;
  position: relative;
}

body {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background-color: #FFFFFF;
  color: #111111;
  font-family: "Open Sans", sans-serif;
  line-height: 1;
}
body.standalone {
  background-color: #F7F7F7;
  padding: 100px 15px;
}
@media screen and (max-width: 800px) {
  body.standalone {
    padding: 60px 15px;
  }
}
body.standalone .message_holder {
  border-radius: 2px;
  background-color: #FFFFFF;
  border: 1px solid #d4d4d4;
  margin: 0 auto;
  max-width: 600px;
  padding: 40px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 800px) {
  body.standalone .message_holder {
    padding: 20px;
  }
}
body.standalone .message_holder h1 {
  margin: 0;
  min-height: 0;
}
body.standalone .message_holder p:last-child {
  margin: 15px 0 0;
}

a {
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
  color: #444444;
  text-decoration-color: transparent;
}
a:hover, a:focus {
  color: #111111;
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  color: #135884;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 28px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 800px) {
  h1 {
    text-align: center;
  }
}

img {
  display: block;
  max-width: 100%;
}

p {
  font-size: 16px;
  line-height: 1.5em;
  margin: 0 0 20px;
}

ul, ol {
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

.mobile_nav {
  box-shadow: 0px 1px 3px #d4d4d4;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  background-color: #FFFFFF;
  border-bottom: 1px solid #d4d4d4;
  display: none;
  height: 60px;
  padding: 0 20px;
  position: absolute;
  top: 0;
  width: 100%;
}
@media only screen and (max-width: 945px) {
  .mobile_nav {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    z-index: 11;
  }
}
.mobile_nav button.open_menu {
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  background: none !important;
  height: 14px;
  position: relative;
  width: 22px;
}
.mobile_nav button.open_menu span {
  border-radius: 2px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  display: block;
  background: #135884;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  opacity: 1;
}
.mobile_nav button.open_menu span:nth-child(1) {
  top: 0px;
}
.mobile_nav button.open_menu span:nth-child(2), .mobile_nav button.open_menu span:nth-child(3) {
  top: 50%;
}
.mobile_nav button.open_menu span:nth-child(4) {
  top: 99%;
}
.mobile_nav button.open_menu.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.mobile_nav button.open_menu.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mobile_nav button.open_menu.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.mobile_nav button.open_menu.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.mobile_nav:hover .line-1, .mobile_nav:focus .line-1 {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.mobile_nav:hover .line3, .mobile_nav:focus .line3 {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.mobile_nav .mobile_cart {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-left: auto;
}
.mobile_nav .mobile_cart .cart_icon {
  display: block;
  fill: #444444;
  height: 22px;
  margin-right: 10px;
  width: 22px;
}

.wrap {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0 auto;
  max-width: 1300px;
  padding: 0 20px 80px;
  width: 100%;
}
.wrap:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 945px) {
  .wrap {
    padding-bottom: 40px;
  }
}

_:-ms-fullscreen, :root .wrap {
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

a.skip-link {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #FFFFFF;
  border: 1px solid #444444;
  color: #444444;
  left: 25px;
  padding: 15px 20px;
  position: absolute;
  text-decoration: underline;
  top: -150px;
  z-index: 100;
}
a.skip-link:focus {
  top: 20px;
}

header {
  background: #F7F7F7;
  border-bottom: 1px solid #d4d4d4;
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  padding: 50px 0;
  margin-bottom: 40px;
  text-align: center;
}
@media only screen and (max-width: 945px) {
  header {
    margin: 0 0 40px;
    padding: 100px 20px 40px;
  }
}
header .inner-wrapper {
  padding: 0 20px;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  header .inner-wrapper {
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0;
  }
}

.store_header {
  color: #135884;
  display: inline-block;
  font-size: 44px;
}
.store_header:hover, .store_header:active {
  color: #111111;
}
.store_header.text {
  display: inline-block;
  line-height: 1.2em;
  text-decoration: none;
  white-space: normal;
  word-break: break-word;
}

.store-image {
  display: block;
  max-height: 140px;
  object-fit: contain;
  width: 100%;
}

.hidden {
  display: none;
}

.content {
  float:  right ;
  padding-left:  60px ;
  padding-right:  0 ;
  position: relative;
  max-width: 80%;
  width: 100%;
}
.content:after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (max-width: 945px) {
  .content {
    float: none;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.custom_content {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  margin: 0 ;
  max-width: 700px;
  width: 100%;
}
.custom_content a {
  text-decoration: underline;
}
.custom_content iframe {
  max-width: 100%;
}

aside {
  background-color: #FFFFFF;
  float:  left ;
  width: 20%;
}
@media only screen and (max-width: 945px) {
  aside {
    border-bottom: 1px solid #d4d4d4;
    display: none;
    left: 0;
    padding: 80px 20px 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
  }
  aside.open {
    display: block;
  }
}
aside .nav_title {
  color: #135884;
  border-bottom: 1px solid #d4d4d4;
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  line-height: 1.3em;
  margin-bottom: 4px;
  padding: 0 0 6px;
}
aside .side_cart {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
  border-radius: 2px;
  background-color: #FFFFFF;
  border: 1px solid #135884;
  color: #135884;
  font-family: "Open Sans", sans-serif;
  height: 50px;
  margin-bottom: 40px;
  padding: 0 10px;
  position: relative;
  text-decoration: none !important;
}
@media only screen and (max-width: 945px) {
  aside .side_cart {
    display: none;
  }
}
aside .side_cart .cart_title {
  margin-left: 6px;
}
aside .side_cart .cart_numbers {
  margin-left: auto;
}
@media only screen and (max-width: 1100px) {
  aside .side_cart .cart_numbers {
    display: none;
  }
}
aside .side_cart .cart_icon {
  -webkit-transition: fill 0.2s ease;
  transition: fill 0.2s ease;
  fill: #135884;
  height: 22px;
  width: 22px;
}
aside .side_cart:hover, aside .side_cart:focus, aside .side_cart:active {
  background-color: #235575;
  border: 1px solid #235575;
  color: #FFFFFF;
}
aside .side_cart:hover .cart_icon, aside .side_cart:focus .cart_icon, aside .side_cart:active .cart_icon {
  fill: #FFFFFF;
}
aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
aside ul li {
  display: block;
}
@media screen and (max-width: 945px) {
  aside ul li {
    margin: 4px 0;
  }
}
aside ul li a {
  display: block;
  padding: 6px 0;
  line-height: 1.25em;
}
@media screen and (max-width: 945px) {
  aside ul li a {
    font-size: 18px;
  }
}
aside nav > div {
  margin-bottom: 20px;
}
aside nav > div:first-child {
  margin-top: 0;
}

.search-form {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 32px;
  position: relative;
}
.search-form:focus-within .search-icon {
  display: block;
}

.search-input {
  border: none !important;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  height: auto;
  padding: 4px 32px 4px 0;
  position: absolute;
  width: calc(100% + 4px);
}
@media screen and (max-width: 945px) {
  .search-input {
    font-size: 18px;
  }
}
.search-input:hover, .search-input:focus {
  left: -4px;
  padding-left: 4px;
}
.search-input:hover::-webkit-input-placeholder {
  color: #111111;
}
.search-input:hover::-moz-placeholder {
  color: #111111;
}
.search-input:hover:-ms-input-placeholder {
  color: #111111;
}
.search-input:hover:-moz-placeholder {
  color: #111111;
}
.search-input::-webkit-input-placeholder {
  color: #444444;
}
.search-input::-moz-placeholder {
  color: #444444;
}
.search-input:-ms-input-placeholder {
  color: #444444;
}
.search-input:-moz-placeholder {
  color: #444444;
}

button.search-button {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: none !important;
  height: 20px;
  padding: 0;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}

.search-icon {
  fill: #444444;
  display: none;
  height: 16px;
  width: 16px;
}

.inner-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  height: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  max-width: 1300px;
  width: 100%;
}

footer {
  background: #F7F7F7;
  border-top: 1px solid #d4d4d4;
  text-align: center;
  width: 100%;
}
footer .inner-wrapper {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 40px 20px;
}
footer .social_icons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .social_icons li {
  margin: 0 12px;
}
footer .social_icons li a {
  display: block;
}
footer .social_icons li a svg {
  -webkit-transition: fill 0.2s ease;
  transition: fill 0.2s ease;
  display: block;
  fill: #444444;
  height: 26px;
  width: 26px;
}
footer .social_icons li a svg.tumblr-icon {
  width: 16px;
}
footer .social_icons li:hover svg {
  fill: #111111;
}
footer .social_icons + .footer_credit {
  margin-top: 30px;
}
footer .footer_credit {
  font-size: 14px;
}

.errors {
  border-radius: 2px;
  background: #950f1e;
  color: #FFFFFF;
  list-style: none;
  margin-bottom: 20px;
  padding: 12px 20px;
}
@media only screen and (max-width: 800px) {
  .errors {
    text-align: center;
  }
}

a[href], label[for], select, button, .pointer {
  cursor: pointer;
}

button, input, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  border-radius: 2px;
  color: #111111;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  height: 54px;
  padding: 0;
}

textarea {
  height: auto;
}

input, textarea {
  background: #FFFFFF;
  border: 1px solid #111111;
  color: #111111;
  padding: 8px 10px;
}
input:hover, input:focus, textarea:hover, textarea:focus {
  border: 1px solid #111111;
  color: #111111;
}

button, a.button {
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  background-color: #235575;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  height: 54px;
  line-height: 54px;
  padding: 0;
  text-align: center;
}
button.minimal-button, a.button.minimal-button {
  background: none;
  color: #111111;
  border: none;
  font-size: 15px;
  padding: 0;
}
button.minimal-button:not(:disabled):hover, button.minimal-button:not(:disabled):active, button.minimal-button:not(:disabled):focus, a.button.minimal-button:not(:disabled):hover, a.button.minimal-button:not(:disabled):active, a.button.minimal-button:not(:disabled):focus {
  -webkit-transform: none;
  transform: none;
  box-shadow: none;
  background: none;
  text-decoration: underline;
}
button:hover, button:focus, a.button:hover, a.button:focus {
  background-color: #193648;
}
button:disabled, button.disabled, a.button:disabled, a.button.disabled {
  background-color: #235575 !important;
  cursor: not-allowed;
  opacity: 0.4;
}

.select {
  border-radius: 2px;
  position: relative;
  border: 1px solid #111111;
  color: #111111;
  height: 50px;
  margin-bottom: 15px;
  padding: 0;
  position: relative;
  max-width: 80%;
  width: 100%;
}
.select select {
  background: none;
  border: 0;
  color: #111111;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  height: 100%;
  line-height: 48px;
  padding: 0 38px 0 12px;
  position: relative;
  width: 100%;
  z-index: 2;
}
.select select option {
  background-color: #FFF;
  color: #000;
}
.select select:focus {
  box-shadow: none;
}
.select select::-ms-expand {
  display: none;
}
.select svg {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  fill: #111111;
  height: 8px;
  margin-top: -2px;
  position: absolute;
  right: 14px;
  top: 50%;
  width: 13px;
  z-index: 1;
}
.select:hover, .select:focus, .select:active {
  color: #111111;
  border-color: #111111;
}
.select:hover select, .select:focus select, .select:active select {
  color: #111111;
}
.select:hover svg, .select:focus svg, .select:active svg {
  fill: #111111;
}

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

.blur-up {
  -webkit-transition: filter 0.2s ease;
  transition: filter 0.2s ease;
  filter: blur(5px);
}
.blur-up.lazyloaded {
  filter: blur(0);
}
.product-list-container {
  margin-top: -10px;
}

.product-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin: 0 -10px;
}

.product-list-thumb {
  border-radius: 2px;
  color: #135884;
  display: block;
  font-size: 0;
  padding: 10px;
  padding-bottom: 30px;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: calc(100% / 3);
  word-break: break-word;
}
@media screen and (max-width: 1100px) {
  .product-list-thumb {
    width: calc(100% /  3 );
  }
}
@media screen and (max-width: 800px) {
  .product-list-thumb {
    width: calc(100% / 3);
  }
}
@media screen and (max-width: 640px) {
  .product-list-thumb {
    padding: 10px;
    width: calc(100% / 2);
  }
}

_:-ms-fullscreen, :root .product-list-thumb {
  width: calc(100% / 3 - .1px);
}
@media screen and (max-width: 1100px) {
  _:-ms-fullscreen, :root .product-list-thumb {
    width: calc(100% /  3  - .1px);
  }
}
@media screen and (max-width: 800px) {
  _:-ms-fullscreen, :root .product-list-thumb {
    width: calc(100% / 3 - .1px);
  }
}
@media screen and (max-width: 640px) {
  _:-ms-fullscreen, :root .product-list-thumb {
    padding: 10px;
    width: calc(100% / 2 - .1px);
  }
}

.product-list-link {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  color: #135884;
  text-decoration: none;
}
.product-list-link:hover, .product-list-link:focus {
  color: #111111;
  text-decoration: none;
}
.product-list-link:hover .product-list-thumb-name, .product-list-link:hover .product-list-thumb-price, .product-list-link:focus .product-list-thumb-name, .product-list-link:focus .product-list-thumb-price {
  color: #111111;
}

.product-list-image-container {
  overflow: hidden;
  position: relative;
}
.product-list-image-container.product-list-image-container-default:before {
  display: none;
}
.product-list-image-container:before {
  display: block;
  width: 100%;
  content: "";
  padding-bottom: 100%;
  height: 0;
}

.product-list-image {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product-list-image.grid-default {
  position: relative;
}
.product-list-image.grid-cover {
  object-fit: cover;
}
.product-list-image.grid-contain {
  object-fit: contain;
}

.product-list-thumb-info {
  font-size: 16px;
  line-height: 1.25em;
  padding: 10px 0;
  position: relative;
}

.product-list-thumb-name {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  color: #135884;
  font-family: "Open Sans", sans-serif;
  overflow-wrap: break-word;
  position: relative;
}

.product-list-thumb-price {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  color: #444444;
  font-weight: bold;
  font-size: 15px;
  margin-top: 6px;
}

.product-list-thumb-status {
  display: inline-block;
  font-style: italic;
  font-weight: normal;
}

.pagination {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-top: 1px solid #d4d4d4;
  line-height: 40px;
  padding: 10px 0;
}
@media screen and (max-width: 945px) {
  .pagination {
    font-size: 15px;
  }
}

@media screen and (min-width: 641px) {
  .pagination-caption {
    display: none;
  }
}
.page-numbers {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0 20px;
}
@media screen and (max-width: 640px) {
  .page-numbers {
    display: none;
  }
}
.page-numbers .previous, .page-numbers .next {
  display: none;
}
.page-numbers > a, .page-numbers > span {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 100%;
  color: #444444;
  text-align: center;
  height: 40px;
  margin-right: 8px;
  order: 1;
  position: relative;
  text-decoration: none;
  width: 40px;
}
.page-numbers > a.current, .page-numbers > span.current {
  background: #235575;
  color: #FFFFFF;
}
.page-numbers > a.disabled, .page-numbers > span.disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
.page-numbers > a:hover, .page-numbers > a:focus {
  color: #111111;
  text-decoration: underline;
}

.page-link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #444444;
  line-height: 40px;
  text-align: center;
  height: 40px;
  padding: 0;
  position: relative;
  text-decoration: none;
}
.page-link:not(.disabled):hover, .page-link:not(.disabled):focus {
  background: none;
  color: #111111;
  text-decoration: underline;
}
.page-link:not(.disabled):hover svg, .page-link:not(.disabled):focus svg {
  fill: #111111;
}
.page-link.next-page-link span {
  margin-right: 5px;
}
.page-link.previous-page-link span {
  margin-left: 5px;
}
.page-link.previous-page-link svg {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.page-link.disabled {
  cursor: not-allowed;
  opacity: 0;
  visibility: hidden;
}
.page-link svg {
  display: block;
  fill: #444444;
}

#home-page .pagination {
  display: none;
}

@media only screen and (max-width: 800px) {
  p.no_products {
    text-align: center;
  }
}
.product_images {
  float: left;
  max-width: 55%;
  width: 100%;
}
.product_images a {
  display: block;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 800px) {
  .product_images {
    float: none;
    margin: 20px 0 40px;
    max-width: 100%;
  }
}
.product_images .primary_image {
  border-radius: 2px;
  display: block;
  width: 100%;
}
.product_images .product_thumbnails {
  font-size: 0;
  margin: 10px -5px 0 -5px;
  padding: 0;
  text-align: center;
}
.product_images .product_thumbnails:after {
  content: "";
  display: table;
  clear: both;
}
.product_images .product_thumbnails li {
  display: inline-block;
  padding: 0 5px;
  vertical-align: top;
  width: 25%;
}
.product_images .product_thumbnails li img {
  border-radius: 2px;
  display: block;
  width: 100%;
}

.product_pricing, .product_details {
  float: right;
  padding-left: 40px;
  max-width: 45%;
  width: 100%;
}
@media only screen and (max-width: 945px) {
  .product_pricing, .product_details {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 800px) {
  .product_pricing, .product_details {
    float: none;
    max-width: 100%;
    padding: 0;
  }
}

.product_pricing h1 {
  margin-bottom: 10px;
}
.product_pricing .product_price_status {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #111111;
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .product_pricing .product_price_status {
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.product_pricing .product_price_status .product_price {
  vertical-align: middle;
}
.product_pricing .product_price_status .small_status {
  border-radius: 2px;
  border: 1px solid #444444;
  color: #444444;
  font-size: 13px;
  margin-left: 10px;
  padding: 4px 8px;
  position: relative;
  text-transform: uppercase;
}
.product_pricing h4 {
  border-bottom: none;
  font-size: 20px;
  margin: 0;
  padding: 0 0 6px;
}
@media only screen and (max-width: 800px) {
  .product_pricing {
    margin-bottom: 40px;
    text-align: center;
  }
}

.reset-selection-button-container {
  text-align: center;
  width: 100%;
}

button.reset-selection-button {
  display: none;
  height: auto;
  max-width: 100%;
  line-height: normal;
  margin: 20px auto 0;
  padding: 4px;
  width: auto;
}

.product_details .product_description {
  font-size: 16px;
  line-height: 1.5em;
  margin: 0 0 40px;
}
.product_details .product_description a {
  text-decoration: underline;
}
.product_details .product_description iframe {
  max-width: 100%;
}
.product_details form {
  margin-bottom: 40px;
}
.product_details form .select {
  margin-bottom: 20px;
  max-width: 100%;
}
.product_details form .add-to-cart-button {
  width: 100%;
}
@media only screen and (max-width: 800px) {
  .product_details .share_buttons {
    text-align: center;
  }
}
.product_details .share_buttons li {
  display: inline-block;
  margin-right: 20px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .product_details .share_buttons li {
    margin: 0 10px;
  }
}
.product_details .share_buttons li a {
  cursor: pointer;
  display: block;
}
.product_details .share_buttons li a svg {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  fill: #444444;
  height: 20px;
  width: 20px;
}
.product_details .share_buttons li a:hover svg {
  fill: #111111;
}
.product_details .share_buttons li.social_pinterest a {
  display: inline-block;
  position: relative;
}
.product_details .share_buttons li.social_pinterest a:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.product-form {
  max-width: 350px;
  width: 100%;
}
@media screen and (max-width: 945px) {
  .product-form {
    max-width: 100%;
  }
}
.product-form select span, .product-form select span option {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.mfp-top-bar {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 5px 0;
  position: absolute;
  top: 48px;
  width: 100%;
}

.mfp-title {
  display: none;
}

.mfp-counter {
  color: #F7F7F7;
  font-size: 15px;
  position: relative;
}

.mfp-arrow:before, .mfp-arrow:after {
  display: none;
}

.mfp-image-holder button.mfp-close {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: none !important;
  margin-left: auto;
  opacity: 1;
  padding: 6px;
  right: 0;
  position: relative;
  width: auto !important;
}
.mfp-image-holder button.mfp-close svg {
  fill: #F7F7F7;
  pointer-events: none;
}

img.mfp-img {
  padding: 100px 0 40px;
}

.mfp-figure:after {
  display: none;
}

.mfp-arrow {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #FFF !important;
  height: 65px;
  margin-top: 0;
  opacity: 0.7;
  width: 65px;
}
.mfp-arrow:active {
  margin-top: 0;
}
.mfp-arrow svg {
  display: block;
  fill: #000;
  height: 20px;
  margin: 0 auto;
  pointer-events: none;
  width: 20px;
}
.mfp-arrow:hover {
  opacity: 1;
}
@media (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}

.mfp-container {
  padding: 0 10px !important;
}

.mfp-arrow-left {
  left: 40px;
}
@media (max-width: 945px) {
  .mfp-arrow-left {
    left: 14px;
  }
}

.mfp-arrow-right {
  right: 40px;
}
@media (max-width: 945px) {
  .mfp-arrow-right {
    right: 14px;
  }
}

.mfp-preloader {
  -webkit-animation: loading-animation 1.5s infinite ease-in-out;
  animation: loading-animation 1.5s infinite ease-in-out;
  border-radius: 100%;
  background: #FFF;
  height: 40px;
  margin: 0 auto;
  opacity: 1;
  width: 40px;
}

@-webkit-keyframes loading-animation {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
@keyframes loading-animation {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
#instant-checkout-button {
  margin-top: 12px;
}
.flexslider {
  border-radius: 2px;
  background: none;
  border: 0;
  height: 100%;
}
.flexslider .flex-nav {
  list-style: none;
}
@media screen and (max-width: 800px) {
  .flexslider .flex-nav {
    display: none;
  }
}
.flexslider .flex-nav li {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  border-radius: 2px;
  background: #FFF;
  height: 45px;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: 45%;
  width: 45px;
  z-index: 8;
}
.flexslider .flex-nav li.flex-nav-prev {
  left: 20px;
}
.flexslider .flex-nav li.flex-nav-next {
  right: 20px;
}
.flexslider .flex-nav li button.flex-nav-button {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: none;
  height: 100%;
  width: 100%;
}
.flexslider .flex-nav li button.flex-nav-button svg {
  display: block;
  fill: #000000;
}
.flexslider .slides img {
  width: 99.99999%;
}
.flexslider:hover .flex-nav li {
  opacity: 0.5;
}
.flexslider:hover .flex-nav li:hover {
  opacity: 1;
}
.flexslider .flex-control-paging li a {
  box-shadow: none;
  background: none;
  border: 1px solid #444444;
}
.flexslider .flex-control-paging li a.flex-active {
  background: #444444;
  border: 1px solid #444444;
}

.flex-control-nav {
  bottom: -40px;
}
.flex-control-nav li {
  margin: 0 5px;
}
.flex-control-nav li a {
  height: 9px;
  width: 9px;
}

.welcome_image {
  border-radius: 2px;
  margin-bottom: 40px;
}
.welcome_image img {
  border-radius: 2px;
  width: 100%;
}
.empty-cart-message {
  display: none;
}
.empty-cart-message a {
  text-decoration: underline;
}
.empty-cart .empty-cart-message {
  display: block;
}

.cart-items {
  border-top: 1px solid #d4d4d4;
  padding: 0;
}

.cart-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #d4d4d4;
  padding: 24px 0;
}
@media screen and (max-width: 640px) {
  .cart-item {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    padding: 16px 0;
  }
}

.cart-item-image {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 2px;
  display: block;
  height: 90px;
  margin-right: 16px;
  width: 90px;
}
@media screen and (max-width: 640px) {
  .cart-item-image {
    height: 60px;
    margin-right: 8px;
    width: 60px;
  }
}
.cart-item-image img {
  border-radius: 2px;
  display: block;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.cart-item-details {
  line-height: 1.25em;
  padding-right: 24px;
  width: 55%;
}
@media screen and (max-width: 640px) {
  .cart-item-details {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-flex-basis: 30%;
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    padding-right: 16px;
  }
}

_:-ms-fullscreen, :root .cart-item-details {
  width: calc(55% - 106px);
}

.cart-item-details-name {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
}
@media screen and (max-width: 640px) {
  .cart-item-details-name {
    font-size: 16px;
  }
}

.cart-item-details-option {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  margin-top: 5px;
}

.cart-item-quantity-price {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  width: 45%;
}
@media screen and (max-width: 640px) {
  .cart-item-quantity-price {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    width: 45%;
  }
}

_:-ms-fullscreen, :root .cart-item-quantity-price {
  width: calc(45% - 106px);
}

.cart-item-details-price {
  margin-right: 24px;
  padding-left: 16px;
}
@media screen and (max-width: 640px) {
  .cart-item-details-price {
    margin-right: 0;
    margin-top: 16px;
  }
}

.cart-item-quantity-holder {
  margin-right: auto;
}
@media screen and (max-width: 640px) {
  .cart-item-quantity-holder {
    margin-right: 0;
  }
}
.cart-item-quantity-holder input {
  height: 48px;
  padding: 10px;
  text-align: center;
  width: 64px;
}
@media screen and (max-width: 800px) {
  .cart-item-quantity-holder input {
    height: 40px;
    padding: 5px;
    width: 56px;
  }
}

button.cart-item-remove {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: none;
  border-radius: 50%;
  height: 32px;
  padding: 0;
  width: 32px;
}
@media screen and (max-width: 640px) {
  button.cart-item-remove {
    display: none;
  }
}
button.cart-item-remove:hover, button.cart-item-remove:focus {
  background: none;
}
button.cart-item-remove:hover .cart-item-remove-icon, button.cart-item-remove:focus .cart-item-remove-icon {
  fill: #111111;
}
button.cart-item-remove .cart-item-remove-icon {
  display: block;
  fill: #444444;
  height: 16px;
  width: 16px;
}

button.cart-item-remove-text {
  color: #444444;
  display: none;
  height: auto;
  line-height: normal;
  margin: 0;
  margin-top: 6px;
  padding: 0;
  text-decoration: underline;
  width: auto;
}
@media screen and (max-width: 640px) {
  button.cart-item-remove-text {
    display: inline-block;
  }
}

.cart_footer {
  clear: both;
  text-align: right;
}
.cart_footer:after {
  content: "";
  display: table;
  clear: both;
}
.cart_footer .cart_total {
  color: #135884;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  margin: 0;
  font-size: 24px;
  padding: 30px 0;
  text-align: right;
}
.cart_footer .cart_total > span {
  display: inline-block;
  margin-left: 8px;
}
.cart_footer h4 {
  color: #111111;
  font-size: 14px;
  margin-bottom: 10px;
  text-align: right;
}
.cart_footer h4 > span {
  display: inline-block;
  margin-left: 10px;
}
.cart_footer h4 + h3 {
  margin-top: 20px;
}
.cart_footer .small_message {
  font-size: 13px;
}
.cart_footer button, .cart_footer .button {
  margin-left: 12px;
  padding: 0 35px;
}
@media screen and (max-width: 500px) {
  .cart_footer button, .cart_footer .button {
    float: none;
    margin: 5px 0;
    width: 100%;
  }
}
.cart_footer button.checkout_btn, .cart_footer .button.checkout_btn {
  max-width: 300px;
  width: 48%;
}
@media screen and (max-width: 800px) {
  .cart_footer button.checkout_btn, .cart_footer .button.checkout_btn {
    margin: 0 0 10px;
    max-width: 100%;
    width: 100%;
  }
}

a.button.continue_shopping {
  border-radius: 2px;
  border: 1px solid #444444;
  color: #444444;
  float: left;
  margin-left: 0;
  max-width: 300px;
  width: 48%;
}
a.button.continue_shopping:hover, a.button.continue_shopping:focus {
  border-color: #111111;
  color: #111111;
}
@media screen and (max-width: 800px) {
  a.button.continue_shopping {
    border: 1px solid transparent !important;
    float: none;
    margin: 0;
    max-width: 100%;
    width: 100%;
  }
}

.empty_cart {
  line-height: 1.3em;
}
@media only screen and (max-width: 800px) {
  .empty_cart {
    text-align: center;
  }
}
.contact_form > div {
  margin-bottom: 20px;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .contact_form > div {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 640px) {
  .contact_form .contact_send {
    text-align: center;
  }
  .contact_form .contact_send button {
    margin-left: 0;
  }
}
.contact_form input, .contact_form textarea {
  width: 100%;
}
.contact_form textarea {
  height: 220px;
  display: block;
}
.contact_form label {
  display: block;
  margin-bottom: 10px;
}
.contact_form .contact_name, .contact_form .contact_send, .contact_form .contact_email {
  display: inline-block;
  position: relative;
  width: 48%;
}
@media screen and (max-width: 640px) {
  .contact_form .contact_name, .contact_form .contact_send, .contact_form .contact_email {
    display: block;
    width: 100%;
  }
}
.contact_form .contact_name {
  float: left;
}
@media screen and (max-width: 640px) {
  .contact_form .contact_name {
    float: none;
  }
}
.contact_form .contact_email {
  float: right;
}
@media screen and (max-width: 640px) {
  .contact_form .contact_email {
    float: none;
  }
}
.contact_form .contact_recaptcha {
  width: 100%;
}
.contact_form .recaptcha_note {
  display: block;
  font-size: 14px;
  margin-top: 5px;
}
.contact_form .contact_send {
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .contact_form .contact_send {
    text-align: center;
  }
}
.contact_form .contact_send button {
  margin: 40px auto;
  width: 320px;
}
@media screen and (max-width: 640px) {
  .contact_form .contact_send button {
    width: 100%;
  }
}
/*







*/

/*============================================================
  Custom Styles - add and override styles below.
============================================================*/

