/**
* Variables
*/
/**
  * So dirty css from old version zen-fixed.css + new styles.
  */

@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700&subset=cyrillic,latin');

@font-face {
  font-family: 'Font Awesome';
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url("../fonts/fa-solid-900.eot");
  src: url("../fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-solid-900.woff2") format("woff2"), url("../fonts/fa-solid-900.woff") format("woff"), url("../fonts/fa-solid-900.ttf") format("truetype"), url("../fonts/fa-solid-900.svg#fontawesome") format("svg");
}

@font-face {
  font-family: 'Font Awesome Brand';
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  src: url("../webffontsonts/fa-brands-400.eot");
  src: url("../fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.woff") format("woff"), url("../fonts/fa-brands-400.ttf") format("truetype"), url("../fonts/fa-brands-400.svg#fontawesome") format("svg"); 
}

body {
  font-size: 100%;
  /* Fixes exaggerated text resizing in IE6 and IE7 */
  background: #E8E8D3;
  color: #3C3226;
}

#skip-link,
#page {
  /*
  * To use a 12px font size on the page, delete the 14px declarations.
  * to use a 14px font size on the page, delete the 12px declarations.
  */
  /* Use a 12px base font size with a 16px line height */
  font-size: 0.75em;
  /* 16px x .75 = 12px */
  line-height: 1.333em;
  /* 12px x 1.333 = 16px */
  /* Use a 14px base font size with a 18px line height */
  font-size: 0.875em;
  /* 16px x .875 = 14px */
  line-height: 1.286em;
  /* 14px x 1.286 = 18px */
}

body,
caption,
th,
td,
input,
textarea,
select,
option,
legend,
fieldset {
  /* The following font family declarations are based on the Microsoft core web
  * fonts which are common fonts available on most computer systems. The DejaVu
  * fonts are commonly available on Linux systems where the MS fonts are less
  * common. Tahoma and Helvetica are also widely available.
  *
  * A user's web browser will look at the comma-separated list and will
  * attempt to use each font in turn until it finds one that is available
  * on the user's computer. The final "generic" font (sans-serif or serif)
  * hints at what type of font to use if the web browser doesn't find any
  * of the fonts in the list.

  font-family: "Times New Roman", Times, Georgia, "DejaVu Serif", serif;
  font-family: Times, "Times New Roman", Georgia, "DejaVu Serif", serif;
  font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;

  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-family: Tahoma, Verdana, "DejaVu Sans", sans-serif;
  font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;
  font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif;

  font-family: "Courier New", "DejaVu Sans Mono", monospace;

  */
  font-family: Lucida Grande;
}

input[type="text"],
input[type="password"] {
  width: 100%;
}
@media (min-width: 768px) {
  input[type="text"],
  input[type="password"] {
    width: auto;
  }
}

pre,
code {
  font-size: 1.1em;
  /* Monospace fonts can be hard to read */
  font-family: "Courier New", "DejaVu Sans Mono", monospace;
}

/*
* Headings
*/
h1 {
  font-size: 2em;
  line-height: 1.3em;
  margin-top: 0;
  margin-bottom: 0.5em;
  /* 0.5em is equavalent to 1em in the page's base font.
    Remember, a margin specified in ems is relative to
    the element's font-size, not to the pages' base
    font size. So, for example, if we want a 1em margin
    (relative to the base font), we have to divide that
    length by the element's font-size:
    1em / 2em = 0.5em */
}

h2 {
  font-size: 1.5em;
  line-height: 1.3em;
  margin-top: 0.667em;
  /* Equivalent to 1em in the page's base font: 1 / 1.5 = 0.667em */
  margin-bottom: 0.667em;
}

h3 {
  font-size: 1.3em;
  line-height: 1.3em;
  margin-top: 0.769em;
  /* Equivalent to 1em in the page's base font: 1 / 1.3 = 0.769 */
  margin-bottom: 0.769em;
}

h4,
h5,
h6 {
  font-size: 1.1em;
  line-height: 1.3em;
  margin-top: 0.909em;
  /* Equivalent to 1em in the page's base font: 1 / 1.1 = 0.909 */
  margin-bottom: 0.909em;
}

/*
* Block-level elements
*/
p,
ul,
ol,
dl,
pre,
table,
fieldset {
  margin: 1em 0;
}

blockquote {
  margin: 1em 2em;
}

/*
* Lists
*
* We need to standardize the list item indentation.
*/
ul,
ol {
  margin-left: 0;
  padding-left: 2em;
  /* LTR */
}

.block ul,
.item-list ul {
  margin: 1em 0;
  padding: 0 0 0 2em;
  /* LTR */
}

ul ul, ul ol,
ol ol, ol ul,
.block ul ul, .block ul ol,
.block ol ol, .block ol ul,
.item-list ul ul, .item-list ul ol,
.item-list ol ol, .item-list ol ul {
  margin: 0;
}

li {
  margin: 0;
  padding: 0;
}

.item-list ul li {
  margin: 0;
  padding: 0;
  list-style: inherit;
}

ul.menu li,
li.expanded,
li.collapsed,
li.leaf {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: disc;
}

ul ul {
  list-style-type: circle;
}

ul ul ul {
  list-style-type: square;
}

ul ul ul ul {
  list-style-type: circle;
}

ol {
  list-style-type: decimal;
}

ol ol {
  list-style-type: lower-alpha;
}

ol ol ol {
  list-style-type: decimal;
}

dt {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0 0 0 2em;
  padding: 0;
}

/*
* Links
*
* The order of link states are based on Eric Meyer's article:
* http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
*/
a:link, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:link {
  color: #B74905;
}

a:visited, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:visited {
  color: #893908;
}

a:hover, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:hover,
a:focus,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:focus {
  color: #CD6F36;
}

a:active, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:active {
  color: #757F66;
}

/*
* Tables
*
* Drupal provides table styling which is only useful for its admin section
* forms, so we override this default CSS. (We set it back in forms.css.)
*/
table {
  border-collapse: collapse;
  width: 100%;
  /* Prevent cramped-looking tables */
}

th,
thead th,
tbody th {
  text-align: left;
  /* LTR */
  padding: 0;
  border-bottom: none;
}

tbody {
  border-top: none;
}

td {
  padding: 10px;
}

/*
* Abbreviations
*/
abbr {
  border-bottom: 1px dotted #666;
  cursor: help;
  white-space: nowrap;
}

abbr.created {
  border: none;
  cursor: auto;
  white-space: normal;
}

/*
* Images
*/
img {
  border: 0;
}

/*
* Horizontal rules
*/
hr {
  height: 1px;
  border: 1px solid #666;
}

/*
* Forms
*/
form {
  margin: 0;
  padding: 0;
}

fieldset {
  margin: 1em 0;
  padding: 0.5em;
}

/* wireframes.css */
/**
* @file
* Wireframes Styling
*
* Add wireframes to the basic layout elements.
*/
.with-wireframes #header .section,
.with-wireframes #content .section,
.with-wireframes #navigation .section,
.with-wireframes .region-sidebar-first .section,
.with-wireframes .region-sidebar-second .section,
.with-wireframes #footer .section {
  margin: 1px;
  padding: 2px;
  border: 1px solid #ccc;
}

.with-wireframes .region-page-closure {
  margin-top: 1px;
  padding: 2px;
  border: 1px solid #ccc;
}

/* layout-fixed.css */
/**
* @file
* Layout Styling (DIV Positioning)
*
* Define CSS classes to create a table-free, 3-column, 2-column, or single
* column layout depending on whether blocks are enabled in the left or right
* columns.
*
* This layout is based on the Zen Columns layout method.
*   http://drupal.org/node/201428
*
* Only CSS that affects the layout (positioning) of major elements should be
* listed here.  Such as:
*   display, position, float, clear, width, height, min-width, min-height
*   margin, border, padding, overflow
*/
/*
* Body
*/
#page-wrapper,
.region-page-closure {
  /*
  * If you want to make the page a fixed width and centered in the viewport,
  * this is the standards-compliant way to do that. See also the ie6.css file
  * for the necessary IE5/IE6quirks hack to center a div.
  */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  width: 100%;
}
@media (min-width: 768px) {

  #page-wrapper,
  .region-page-closure {
    width: 740px;
  }
}
@media (min-width: 960px) {

  #page-wrapper,
  .region-page-closure {
    width: 960px;
  }
}

#page-bottom-wrapper {
  position: fixed;
  bottom: 0;
  padding: 0;
  background: #D6CDB6;
  z-index: 9999;
  opacity: .9;
}

#page-bottom-wrapper:hover {
  opacity: .95;
}

#page-bottom {
  margin-left: auto;
  margin-right: auto;
  width: 940px;
  padding: 0 10px;
  border-top: 3px solid #c1c6b1;
}

/*
* Header
*/
/*
* Header
*/
#header {
  margin-bottom: 0;
}
#header #logo {
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  #header #logo {
    float: left;
  }
}
#header #logo img {
  vertical-align: bottom;
}
#header h1#site-name,
#header div#site-name {
  margin: 0;
  font-size: 2em;
  line-height: 1.5em;
  font-family: "Helvetica Neue";
  font-weight: 100;
}
#header h1#site-name a:link, #header h1#site-name .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:link, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li #header h1#site-name .ps-link:link,
#header h1#site-name a:visited,
#header h1#site-name .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:visited,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li #header h1#site-name .ps-link:visited,
#header div#site-name a:link,
#header div#site-name .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:link,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li #header div#site-name .ps-link:link,
#header div#site-name a:visited,
#header div#site-name .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:visited,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li #header div#site-name .ps-link:visited {
  color: #222;
  text-decoration: none;
}
#header h1#site-name a:hover, #header h1#site-name .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:hover, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li #header h1#site-name .ps-link:hover,
#header h1#site-name a:focus,
#header h1#site-name .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:focus,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li #header h1#site-name .ps-link:focus,
#header div#site-name a:hover,
#header div#site-name .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:hover,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li #header div#site-name .ps-link:hover,
#header div#site-name a:focus,
#header div#site-name .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:focus,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li #header div#site-name .ps-link:focus {
  text-decoration: underline;
}
#header #site-slogan {
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
}

#header-wrapper {
  width: 100%;
}

#header {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #header {
    width: 740px;
    padding-bottom: 10px;
  }
}
@media (min-width: 960px) {
  #header {
    width: 960px;
  }
}

#subheader {
  background: #c1c6b1 url(../images/white-paisley.png);
}

#main-wrapper,
#footer {
  margin-bottom: 1em;
}

#subheader {
  margin-bottom: 0;
}

.region-header {
  clear: both;
  /* Clear the logo */
}

#header #header-row-upper,
#header #header-row-lower {
  clear: both;
}

@media (min-width: 768px) {
  #header #header-row-upper {
    height: 70px;
  }
}
#header #header-row-upper #header-branding-upper {
  width: 100%;
  height: 60px;
  float: left;
  vertical-align: middle;
  text-align: center;
}
@media (min-width: 768px) {
  #header #header-row-upper #header-branding-upper {
    width: 225px;
    text-align: left;
  }
}
#header #header-row-upper #header-branding-lower {
  width: 100%;
  float: left;
  margin-top: 17px;
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  #header #header-row-upper #header-branding-lower {
    width: 160px;
    margin-left: 0;
    text-align: left;
    margin-bottom: 0;
  }
}
@media (min-width: 960px) {
  #header #header-row-upper #header-branding-lower {
    width: 225px;
    margin-left: 36px;
  }
}
#header #header-row-upper #header-branding-lower:before {
  content: '';
  position: absolute;
  left: 50%;
  top: -13px;
  width: 60px;
  height: 3px;
  background: #D2C9B1;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  #header #header-row-upper #header-branding-lower:before {
    left: -11px;
    top: 2px;
    bottom: 8px;
    width: 3px;
    height: auto;
    transform: translateX(0);
  }
}

#header-region-upper {
  width: 100%;
  clear: both;
}
@media (min-width: 768px) {
  #header-region-upper {
    width: 220px;
    height: 65px;
    float: right;
    vertical-align: middle;
    clear: none;
  }
}
@media (min-width: 960px) {
  #header-region-upper {
    width: 380px;
  }
}

#header-region-lower {
  /*width:525px;
  float:left;*/
  float: right;
  vertical-align: bottom;
}

#header-region-lower {
  font-size: 1em;
  font-family: Noto Serif;
  font-weight: 300;
  text-align: right;
  color: #f8f8f8;
}

@media (min-width: 768px) {
  #header-branding-upper {
    padding: 5px 5px 5px 0;
  }
}

@media (min-width: 768px) {
  #header-branding-lower {
    padding: 0 5px 5px 0;
  }
}

@media (min-width: 768px) {
  #header-region-upper {
    padding: 5px 0 0 5px;
  }
}

@media (min-width: 768px) {
  #header-region-lower {
    padding: 0 0 5px 5px;
  }
}

/*
* Visuals
*/
#visuals-wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  clear: both;
  float: none;
}
@media (min-width: 768px) {
  #visuals-wrapper {
    width: 740px;
  }
}
@media (min-width: 960px) {
  #visuals-wrapper {
    width: 960px;
  }
}

.region-visuals {
  clear: both;
  float: none;
}

.region-visuals #block-menu-primary-links {
  margin: 0;
  background: url(/sites/all/themes/zen/zen-internals/images/nav-bg.jpg);
  padding: .5em;
  position: relative;
  display: none;
}
@media (min-width: 960px) {
  .region-visuals #block-menu-primary-links {
    display: block;
  }
}

.region-visuals #block-menu-primary-links:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 15px;
  height: 13px;
  background: #E8E8D3;
  border-radius: 0px 0px 100% 0px;
}

.region-visuals #block-menu-primary-links:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 15px;
  height: 13px;
  background: #E8E8D3;
  border-radius: 0px 0px 0px 100%;
}

#page-top {
  height: 56px;
  background: #D7CEB8 url(/sites/all/themes/zen/zen-internals/images/uzor.png);
  margin-bottom: 20px;
}

.region-visuals #block-menu-primary-links ul {
  margin: 0;
  padding: .5em;
  text-align: center;
}

.region-visuals #block-menu-primary-links ul li.leaf {
  list-style: outside;
  list-style-type: none;
  display: inline-block;
  margin-right: 5px;
}

.region-visuals #block-menu-primary-links ul li {
  position: relative;
}

.region-visuals #block-menu-primary-links ul li:after {
  content: '';
  position: absolute;
  top: 5px;
  right: -6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FC0;
}

.region-visuals #block-menu-primary-links ul li:last-child:after {
  display: none;
}

.region-visuals #block-menu-primary-links ul li.leaf a, .region-visuals #block-menu-primary-links .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li.leaf .ps-link, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu .region-visuals #block-menu-primary-links ul li.leaf .ps-link {
  padding: .35em;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1em;
  color: #fff;
}

.region-visuals #block-menu-primary-links ul li.leaf a.active, .region-visuals #block-menu-primary-links .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li.leaf .active.ps-link, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu .region-visuals #block-menu-primary-links ul li.leaf .active.ps-link {
  background: #B74905;
}

/*
* Main (container for everything else)
*/
#main-wrapper {
  position: relative;
}
@media (min-width: 768px) {
  #main-wrapper {
    background: #fff;
    box-shadow: 5px 5px 25px #c1c6b1;
  }
}

/*
* Content
*/
#content,
.no-sidebars #content {
  float: none;
  /* LTR */
}
@media (min-width: 768px) {
  #content,
  .no-sidebars #content {
    width: 740px;
    float: left;
    margin-left: 0;
    margin-right: -960px;
    padding: 0;
  }
}
@media (min-width: 960px) {
  #content,
  .no-sidebars #content {
    width: 960px;
    float: left;
    margin-left: 0;
    /* LTR */
    margin-right: -960px;
    /* LTR */
    /* Negative value of #content's width + left margin. */
    padding: 0;
    /* DO NOT CHANGE. Add padding or margin to #content .section. */
  }
}

.sidebar-first #content {
  width: 100%;
}
@media (min-width: 768px) {
  .sidebar-first #content {
    width: 540px;
    margin-left: 200px;
    margin-right: -960px;
  }
}
@media (min-width: 960px) {
  .sidebar-first #content {
    width: 760px;
  }
}
.sidebar-first #content .section {
  margin-left: 10px;
  margin-right: 20px;
  padding: 10px 20px;
}

.sidebar-second #content {
  width: 100%;
  margin-left: 0;
}
@media (min-width: 768px) {
  .sidebar-second #content {
    width: 540px;
    margin-right: -760px;
  }
}
@media (min-width: 960px) {
  .sidebar-second #content {
    width: 760px;
    margin-right: -760px;
  }
}
@media (min-width: 768px) {
  .sidebar-second #content .section {
    margin-left: 20px;
    margin-right: 10px;
    padding: 20px;
    background: none;
  }
}

.two-sidebars #content {
  width: 100%;
}
@media (min-width: 768px) {
  .two-sidebars #content {
    width: 560px;
    margin-left: 200px;
    /* LTR */
    /* The width of .region-sidebar-first */
    margin-right: -760px;
    /* LTR */
    /* Negative value of #content's width + left margin. */
  }
}
@media (min-width: 960px) {
  .two-sidebars #content {
    width: 560px;
    margin-left: 200px;
    /* LTR */
    /* The width of .region-sidebar-first */
    margin-right: -760px;
    /* LTR */
    /* Negative value of #content's width + left margin. */
  }
}
.two-sidebars #content .section {
  padding: 0 10px;
}

#content .section {
  margin: 0 0 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
  padding: 15px 15px 5px;
}
@media (min-width: 768px) {
  #content .section {
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    margin: 20px 0 20px;
  }
}

.no-sidebars #content .section {
  padding: 0 20px;
}



.sidebar-disable #content {
  width: 100%;
}
@media (min-width: 768px) {

  .sidebar-disable #content {
    width: 100%;
    margin-right: 0;
  }
}
@media (min-width: 960px) {

  .sidebar-disable #content {
    width: 100%;
    margin-right: 0;
  }
}
@media (min-width: 768px) {

  .sidebar-disable #content .section {
    padding: 0 20px;
    margin-left: 0;
    margin-right: 0;
    background: none;
  }
}

/*
* Navigation
*/
#navigation {
  background: #D6CDB6;
  float: left;
  /* LTR */
  width: 100%;
  margin-left: 0;
  /* LTR */
  margin-right: -100%;
  /* LTR */
  /* Negative value of #navigation's width + left margin. */
  padding: 0;
  /* DO NOT CHANGE. Add padding or margin to #navigation .section. */
  height: 3.3em;
}

@media (min-width: 768px) {
  .with-navigation #content,
  .with-navigation .region-sidebar-first,
  .with-navigation .region-sidebar-second {
    margin-top: 3.3em;
  }
}

#navigation .section {
  padding: 0 20px;
  margin: 1em 0 3.3em 0;
}

#navigation ul {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}

#navigation li {
  font-size: 1.1em;
  float: left;
  /* LTR */
  padding: 0;
  margin-right: 5px;
  list-style: outside;
  list-style-type: none;
}

#navigation li a, #navigation .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul #navigation li .ps-link {
  padding: .25em 1em .25em 1em;
  background: transparent;
}

#navigation li a.active, #navigation .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .active.ps-link, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul #navigation li .active.ps-link {
  background: #EBF4DC;
  text-decoration: none;
}

/*
* First sidebar
*/
.region-sidebar-first {
  width: 100%;
}
@media (min-width: 768px) {
  .region-sidebar-first {
    float: left;
    width: 200px;
    margin-left: 0;
    margin-right: -200px;
    padding: 0;
  }
}
.region-sidebar-first .section {
  margin: 0 20px 0 0;
  padding: 0;
}

/*
* Second sidebar
*/
.region-sidebar-second {
  width: 100%;
}
@media (min-width: 768px) {
  .region-sidebar-second {
    float: left;
    width: 200px;
    margin-left: 535px;
    margin-right: -960px;
    padding: 0;
  }
}
@media (min-width: 960px) {
  .region-sidebar-second {
    float: left;
    width: 200px;
    margin-left: 760px;
    margin-right: -960px;
    padding: 0;
  }
}
.region-sidebar-second .section {
  margin: 20px 0;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .region-sidebar-second .section {
    padding: 0 20px 0 0;
  }
}
.region-sidebar-second .section .block {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  padding: 10px 15px;
  border-radius: 0;
  background-color: #ffffff;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .region-sidebar-second .section .block {
    box-shadow: 0px 0px 3px #000000;
    padding: 5px;
    border-radius: 1px;
    border-radius: 1px;
    margin-bottom: 1em;
  }
}

/*
* Closure
*/
/*
* Prevent overflowing content
*/
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer,
.region-page-closure {
  overflow: visible;
  word-wrap: break-word;
  /* A very nice CSS3 property */
}

#navigation {
  overflow: hidden;
  /* May need to be removed if using a dynamic drop-down menu */
}
#block-block-5 {
  display: none;
}



/*
* Footer
*/
#footer {
  margin-bottom: 0;
  background-color: #403726;
  overflow: hidden;
  position: relative;
  font-family: "Arial";
}
#footer .section {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  width: 100%;
}
#footer-message {
  color: #222222;
  text-align: center;
  line-height: 1.5em;
  margin-bottom: 0;
  background-color: #f9ca34;
  height: auto;
  padding: 20px 10px 30px;
  box-sizing: border-box;
  position: relative;
}
#footer-message a {
  color: #222222;
  text-decoration: none;
}
#footer-message a:hover {
  text-decoration: underline;
}
#footer-message .fz152-message {
  margin-top: 10px;
}

@media (min-width: 768px) {

  #footer .section {
    width: 740px;
  }
  #footer::before {
    content: '';
    background: #ab493c;
    display: block;
    position: absolute;
    left: -1000px;
    right: -1000px;
    top: 0;
    height: 70px;
    z-index: 1;
  }
  #footer-message {
    height: 70px;
    padding: 20px 0 30px;
  }
  #footer-message::before {
    content: '';
    background: #f9ca34;
    display: block;
    position: absolute;
    left: -1000px;
    right: -1000px;
    top: 0;
    bottom: 0;
    z-index: 1;
  }
  #footer-message .copyright {
    width: 50%;
    float: left;
    text-align: left;
    position: relative;
    z-index: 2;
  }
  #footer-message .fz152-message {
    width: 50%;
    float: right;
    text-align: right;
    position: relative;
    z-index: 2;
    margin-top: 0;
  }
}

@media (min-width: 960px) {

  #footer .section {
    width: 960px;
  }
}

.region-footer {
  padding: 37px 0 30px;
  overflow: hidden;
  color: #ffffff;
  font-size: 0.9em;
  margin-left: 15px;
  margin-right: 15px;
}
.region-footer .block {
  width: 100%;
  position: relative;
  z-index: 2;
  margin: 30px 0 0;
}
.region-footer .block .title {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 1em;
  border: 0;
  margin: 0 0 15px;
  padding: 0;
  line-height: 1;
}
.region-footer .block ul {
  text-align: left;
  margin: 0;
  padding: 0;
  width: 100%;
  line-height: 1.5em;
}
.region-footer .block ul li {
  display: block;
  margin-right: 1em;
  font-size: 1em;
  margin-bottom: 2px;
}
.region-footer .block ul li a {
  color: #ffffff;
  text-decoration: none;
}
.region-footer .block ul li a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {

  .region-footer {
    margin-left: 0;
    margin-right: 0;
  }
  .region-footer .block {
    width: 25%;
    float: left;
    margin: 0;
  }
  .region-footer .block .title {
    margin: 0 0 40px;
  }
}

#block-block-18 .phone {
  margin-bottom: 20px;
  margin-top: 5px;
}
#block-block-18 .phone a {
  color: #ffffff;
  font-size: 1.3em;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 3px;
}
#block-block-18 .phone a:hover {
  text-decoration: underline;
}
#block-block-18 .phone__icon {
  width: 20px;
  height: 24px;
  display: inline-block;
  position: relative;
}
#block-block-18 .phone__icon::before {
  font-family: 'Font Awesome';
  display: block;
  width: 100%;
  height: 100%;
  content: '\f879';
}
#block-block-18 .phone__number {
  display: inline-block;
}

#block-block-18 .email {
  margin-bottom: 20px;
}
#block-block-18 .email__label {
  margin-bottom: 5px;
}
#block-block-18 .email__mail {
  color: #ffffff;
  text-decoration: none;
  padding-left: 25px;
  position: relative;
}
#block-block-18 .email__mail::before {
  font-family: 'Font Awesome';
  display: block;
  width: 100%;
  height: 100%;
  content: '\f0e0';
  position: absolute;
  top: 0;
  left: 0;
}
#block-block-18 .email__mail:hover {
  text-decoration: underline;
}

#block-block-18 .social__label {
  margin-bottom: 5px;
}
#block-block-18 .social__items {
  overflow: hidden;
}
#block-block-18 .social__item {
  margin-right: 10px;
  float: left;
}
#block-block-18 .social__link {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: relative;
  background-color: #444444;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
}
#block-block-18 .social__link:hover {
  background-color: #666666;
}
#block-block-18 .social__link::before {
  font-family: 'Font Awesome Brand';
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  line-height: 40px;
  font-weight: 400;
}
#block-block-18 .social__link.ins::before {
  content: '\f16d';
  font-size: 1.5em;
}
#block-block-18 .social__link.fb::before {
  content: '\f39e';
  font-size: 1.4em;
}
#block-block-18 .social__link.vk::before {
  content: '\f189';
  font-size: 1.4em;
}



/*
* If a div.clearfix doesn't have any content after it and its bottom edge
* touches the bottom of the viewport, Firefox and Safari will mistakenly
* place several pixels worth of space between the bottom of the div and the
* bottom of the viewport. Uncomment this CSS property to fix this.
* Note: with some over-large content, this property might cause scrollbars
* to appear on the #page-wrapper div.
*/
/*
#page-wrapper {
  overflow-y: hidden;
}
*/
/* page-backgrounds.css */
/**
* @file
* Page Background Styling
*
* The default layout method of Zen doesn't give themers equal-height columns.
* However, equal-height columns are difficult to achieve and totally
* unnecessary. Instead, use the Faux Columns method described in the following
* ALA article:
*   http://www.alistapart.com/articles/fauxcolumns/
*/
#header-stuff-left {
  width: 400px;
}

#header-stuff-right {
  width: 560px;
  float: right;
  padding: 10px 0;
}

#header-stuff-left,
#header-stuff-right {
  float: left;
}

/* tabs.css */
/**
* @file
* Tabs Styling
*
* Adds styles for the primary and secondary tabs.
*
* Compare this with default CSS found in the system module's stylesheet (a copy
* of which is in drupal6-reference.css, line 510.)
*/
div.tabs {
  margin: 0 0 5px 0;
}

ul.primary {
  margin: 0;
  padding: 0 0 0 10px;
  /* LTR */
  border-width: 0;
  list-style: none;
  white-space: nowrap;
  line-height: normal;
  background: url(../images/tab-bar.png) repeat-x left bottom;
}

ul.primary li {
  float: left;
  /* LTR */
  margin: 0;
  padding: 0;
}

ul.primary li a, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.primary li .ps-link {
  display: block;
  height: 24px;
  margin: 0;
  padding: 0 0 0 5px;
  /* width of tab-left.png */
  border-width: 0;
  font-weight: bold;
  text-decoration: none;
  color: #7B7774;
  background-color: transparent;
  background: url(../images/tab-left.png) no-repeat left -38px;
}

ul.primary li a .tab, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.primary li .ps-link .tab {
  display: block;
  height: 20px;
  /* 24px (parent) - 4px (padding) */
  margin: 0;
  padding: 4px 13px 0 6px;
  border-width: 0;
  line-height: 20px;
  background: url(../images/tab-right.png) no-repeat right -38px;
}

ul.primary li a:hover, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.primary li .ps-link:hover,
ul.primary li a:focus,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.primary li .ps-link:focus {
  border-width: 0;
  background-color: transparent;
  background: url(../images/tab-left.png) no-repeat left -76px;
}

ul.primary li a:hover .tab, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.primary li .ps-link:hover .tab,
ul.primary li a:focus .tab,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.primary li .ps-link:focus .tab {
  background: url(../images/tab-right.png) no-repeat right -76px;
}

ul.primary li.active a, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.primary li.active .ps-link,
ul.primary li.active a:hover,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.primary li.active .ps-link:hover,
ul.primary li.active a:focus,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.primary li.active .ps-link:focus {
  border-width: 0;
  color: #000;
  background-color: transparent;
  background: url(../images/tab-left.png) no-repeat left 0;
}

ul.primary li.active a .tab, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.primary li.active .ps-link .tab,
ul.primary li.active a:hover .tab,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.primary li.active .ps-link:hover .tab,
ul.primary li.active a:focus .tab,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.primary li.active .ps-link:focus .tab {
  background: url(../images/tab-right.png) no-repeat right 0;
}

ul.secondary {
  margin: 0;
  padding: 0 0 0 5px;
  /* LTR */
  border-bottom: 1px solid #c0c0c0;
  list-style: none;
  white-space: nowrap;
  background: url(../images/tab-secondary-bg.png) repeat-x left bottom;
}

ul.secondary li {
  float: left;
  /* LTR */
  margin: 0 5px 0 0;
  padding: 5px 0;
  border-right: none;
  /* LTR */
}

ul.secondary a, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.secondary li .ps-link {
  display: block;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 1px solid #c0c0c0;
  text-decoration: none;
  color: #7B7774;
  background: url(../images/tab-secondary.png) repeat-x left -56px;
}

ul.secondary a .tab, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.secondary li .ps-link .tab {
  display: block;
  height: 18px;
  /* 24px (parent) - 6px (padding) */
  margin: 0;
  padding: 3px 8px;
  line-height: 18px;
}

ul.secondary a:hover, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.secondary li .ps-link:hover,
ul.secondary a:focus,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.secondary li .ps-link:focus {
  background: url(../images/tab-secondary.png) repeat-x left bottom;
}

ul.secondary a.active, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.secondary li .active.ps-link,
ul.secondary a.active:hover,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.secondary li .active.ps-link:hover,
ul.secondary a.active:focus,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.secondary li .active.ps-link:focus {
  border: 1px solid #c0c0c0;
  color: #000;
  background: url(../images/tab-secondary.png) repeat-x left top;
}

/* messages.css */
/**
* @file
* Message Styling
*
* Sensible styling for Drupal's error/warning/status messages.
*/
div.messages,
div.status,
div.warning,
div.error {
  min-height: 21px;
  margin: 0 1em 5px 1em;
  border: 2px solid #ff7;
  padding: 5px 5px 5px 35px;
  /* LTR */
  color: #000;
  background-color: #ffc;
  background-image: url(../images/messages-status.png);
  background-repeat: no-repeat;
  background-position: 5px 5px;
  /* LTR */
}

div.warning {
  border-color: #fc0;
  background-image: url(../images/messages-warning.png);
}

div.warning,
tr.warning {
  color: #000;
  /* Drupal core uses #220 */
  background-color: #ffc;
}

div.error {
  /* border: 1px solid #d77; */
  /* Drupal core uses: 1px solid #d77 */
  border-color: #c00;
  background-image: url(../images/messages-error.png);
}

div.error,
tr.error {
  color: #900;
  /* Drupal core uses #200 */
  background-color: #fee;
}

div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}

/* pages.css */
/**
* @file
* Page Styling
*
* Style the markup found in page.tpl.php. Also includes some styling of
* miscellaneous Drupal elements that appear in the $content variable, such as
* ul.links, .pager, .more-link, etc.
*/
/*
* Body
*/
body {
  margin: 0;
  padding: 0;
}

/*
* The skip navigation link will be completely hidden until a user tabs to the
* link. See http://www.webaim.org/techniques/skipnav/
*/
#skip-link a, #skip-link .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li #skip-link .ps-link,
#skip-link a:visited,
#skip-link .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:visited,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li #skip-link .ps-link:visited {
  position: absolute;
  display: block;
  left: 0;
  top: -500px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  text-align: center;
  background-color: #666;
  color: #fff;
}

#skip-link a:hover, #skip-link .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:hover, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li #skip-link .ps-link:hover,
#skip-link a:active,
#skip-link .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:active,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li #skip-link .ps-link:active,
#skip-link a:focus,
#skip-link .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:focus,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li #skip-link .ps-link:focus {
  position: static;
  width: 100%;
  height: auto;
  padding: 2px 0 3px 0;
}

/*
* Main (container for everything else)
*/
/*
* Content
*/
.breadcrumb {
  padding-bottom: 0;
  /* Undo system.css */
}

h1.title,
h2.title,
h3.title,
#product-terms h3,
#product-description h3,
#product-reviews h3 {
  margin: 0;
  font-weight: 700;
}

h1.title {
  font-size: 2em;
  line-height: 1;
}
@media (min-width: 960px) {
  h1.title {
    font-size: 2.5em;
    line-height: 1.5em;
  }
}

tr.even {
  /* background-color: #EBF4DC; */
  /* Drupal core uses a #EBF4DC background */
}

tr.odd {
  /* background-color: #EBF4DC; */
  /* Drupal core uses a #EBF4DC background */
}

div.messages {
  border: 0;
  padding: 0;
  font-size: large;
  margin: 0;
  background: none;
}

div.status {
  background: #fc0;
}

div.warning,
tr.warning {
  /* border: 1px solid #f0c020; */
  /* Drupal core uses: 1px solid #f0c020 */
}

.error {
  /* color: #e55; */
  /* Drupal core uses a #e55 background */
}

.warning {
  /* color: #e09010; */
  /* Drupal core uses a #e09010 background */
}

.help {
  margin: 1em 0;
}

.more-help-link {
  font-size: 0.85em;
  text-align: right;
}

ul.links {
  margin: 1em 0;
  padding: 0;
}

ul.links.inline {
  margin: 0;
  display: inline;
}

ul.links li {
  display: inline;
  list-style-type: none;
  padding: 0 0.4em;
}

.pager {
  clear: both;
  margin: 1em 0;
  text-align: center;
}

.pager a, .pager .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .pager .ps-link,
.pager strong.pager-current {
  padding: 0.5em;
}

.feed-icons {
  margin: 1em 0;
}

.more-link {
  text-align: right;
  /* LTR */
}

/*
* First sidebar (on left in LTR languages, on right in RTL)
*
* Remember to NOT add padding or margin to your .region-sidebar-first
* (see the layout.css file.)
*/
/*
* Second sidebar (on right in LTR languages, on left in RTL)
*
* Remember to NOT add padding or margin to your .region-sidebar-second
* (see the layout.css file.)
*/

/*
* Closure
*/
/*
* Drupal boxes
*
* Wrapper for Comment form, Comment viewing options, Menu admin, and
* Search results.
*/
/*
* Markup free clearing (See: http://www.positioniseverything.net/easyclearing.html )
*/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/**
* Hide elements from all users.
*
* Used for elements which should not be immediately displayed to any user. An
* example would be a collapsible fieldset that will be expanded with a click
* from a user. The effect of this class can be toggled with the jQuery show()
* and hide() functions.
*/
.element-hidden {
  display: none;
}

/**
* Hide elements visually, but keep them available for screen-readers.
*
* Used for information required for screen-reader users to understand and use
* the site where visual display is undesirable. Information provided in this
* manner should be kept concise, to avoid unnecessary burden on the user. Must
* not be used for focusable elements (such as links and form elements) as this
* causes issues for keyboard only or voice recognition users. "!important" is
* used to prevent unintentional overrides.
*/
.element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

/* block-editing.css */
/**
* @file
* Zen's rollover edit links for blocks.
*/
div.block.with-block-editing {
  position: relative;
}

div.block.with-block-editing div.edit {
  display: none;
  position: absolute;
  right: 0;
  /* LTR */
  top: 0;
  z-index: 40;
  border: 1px solid #EBF4DC;
  padding: 0 2px;
  font-size: 0.75em;
  background-color: #fff;
}

div.block.with-block-editing:hover div.edit {
  display: block;
}

/* blocks.css */
/**
* @file
* Block Styling
*/
.block {
  margin-bottom: 1em;
}

.block h2 {
  width: 100%;
  padding-bottom: 3px;
  border-bottom: 3px solid #D6CDB6;
  margin-bottom: 6px;
  font-size: 0.95em;
  color: #333;
}

#visuals .block.block-menu {
  margin-top: 14px;
}

#block-menu-primary-links {
  margin: 0;
  padding: 0;
}

#visuals #block-search-0 {
  padding: 10px 25px;
  margin: 0;
  text-align: right;
  vertical-align: bottom;
  line-height: 1.5em;
  clear: both;
  float: none;
  margin-top: 10px;
}
@media (min-width: 768px) {
  #visuals #block-search-0 {
    margin: 0;
  }
}
#visuals #block-search-0 .form-text {
  width: 79%;
  box-sizing: border-box;
  height: 32px;
}
@media (min-width: 768px) {
  #visuals #block-search-0 .form-text {
    width: auto;
    box-sizing: content-box;
    height: 24px;
  }
}
#visuals #block-search-0 .form-submit {
  width: 19%;
  height: 32px;
  line-height: 34px;
  box-sizing: border-box;
  padding: 0 10px;
}
@media (min-width: 768px) {
  #visuals #block-search-0 .form-submit {
    width: auto;
    box-sizing: content-box;
    height: auto;
    line-height: 1em;
    padding: 4px;
    padding-bottom: 1px;
  }
}

.front #visuals #block-search-0 {
  margin-top: 0;
}

form#search-block-form input#edit-search-block-form-1 {
  float: left;
  font-size: 1.2em;
  font-family: Noto Serif;
  padding-left: 10px;
  height: 24px;
}

form#search-block-form input#edit-submit {
  font-size: 1em;
  width: 60px;
  float: right;
}

#block-uc_cart-0 {
  background-color: #ebf4dc;
  padding: 10px;
}

#block-uc_cart-0 table.cart-block-summary {
  margin: 0 !important;
}

#block-uc_cart-0 ul.links {
  margin: 0 !important;
}

#block-block-4 {
  margin-right: 10px;
  text-align: right;
  padding: 8px;
}

#block-block-4,
#block-om_maximenu-om-maximenu-1 {
  float: right;
}

/* navigation.css */
/**
* @file
* Navigation Styling
*
* Default menu styling (ul.menu) is defined in system-menus.css.
*/
/*
* The active item in a Drupal menu
*/
li a.active, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .active.ps-link {
  color: #000;
}

/*
* Navigation bar
*/
/*
* Primary and Secondary menu links
*/
ul#secondary-menu {
  width: 100%;
  margin: 0 auto;
  line-height: 54px;
  font-family: 'Roboto Condensed', sans-serif;
}
@media (min-width: 768px) {
  ul#secondary-menu {
    width: 740px;
    position: relative;
  }
}
@media (min-width: 960px) {
  ul#secondary-menu {
    width: 960px;
    position: static;
  }
}
ul#secondary-menu li {
  position: relative;
  display: none;
}
@media (min-width: 960px) {
  ul#secondary-menu li {
    display: inline;
  }
}
ul#secondary-menu li.menu-613 {
  display: block;
}
ul#secondary-menu li:after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #B64400;
  display: inline-block;
  position: absolute;
  top: 6px;
  right: -4px;
}
ul#secondary-menu li:last-child:after {
  display: none;
}
ul#secondary-menu li a, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul#secondary-menu li .ps-link {
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif;
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-weight: normal;
}

/*
* Menu blocks
*/
/*
* "Menu block" blocks. See http://drupal.org/project/menu_block
*/
/* views-styles.css */
/**
* @file
* Views Styling
*/
/* nodes.css */
/**
* @file
* Node Styling
*
* Style anything that isn't in the $content variable.
*/
.node {
  padding-top: 1.5em;
}

.node-unpublished {
  /* background-color: #fff4f4; */
  /* Drupal core uses a #fff4f4 background */
}

.node-unpublished div.unpublished,
.comment-unpublished div.unpublished {
  height: 0;
  overflow: visible;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  word-wrap: break-word;
  /* A very nice CSS3 property */
}

/* All nodes are given a node-type-FOO class that describes the type of
* content that it is. If you create a new content type called
* "my-custom-type", it will receive a "node-type-my-custom-type" class.
*/
.node-type-page .node > .content img {
  max-width: 100%;
  height: auto;
}

.marker {
  color: #c00;
}

.node.node-unpublished .picture,
.comment.comment-unpublished .picture {
  position: relative;
  /* Otherwise floated pictures will appear below the "Unpublished" text. */
}

.preview .node {
  /* background-color: #ffffea; */
  /* Drupal core uses a #ffffea background */
}

/* comments.css */
/**
* @file
* Comment Styling
*/
#comments {
  margin: 1em 0;
}

.comment-unpublished {
  /* background-color: #fff4f4; */
  /* Drupal core uses a #fff4f4 background */
}

.new {
  color: #c00;
}

.indented {
  /* margin-left: 25px; */
  /* Drupal core uses a 25px left margin */
}

.preview .comment {
  /* background-color: #ffffea; */
  /* Drupal core uses a #ffffea background */
}

/* forms.css */
/**
* @file
* Form Styling
*/
.form-item,
.form-checkboxes,
.form-radios {
  margin: 1em 0;
}

.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 2px solid #c00;
}

.form-item label {
  display: block;
  font-weight: bold;
}

.form-item label.option {
  display: inline;
  font-weight: normal;
}

.form-required {
  color: #c00;
}

.form-item .description {
  font-size: 0.85em;
}

.form-checkboxes .form-item,
.form-radios .form-item {
  margin: 0.4em 0;
}

.container-inline div,
.container-inline label {
  display: inline;
}

/*
* Search (search-theme-form.tpl.php)
*/
#edit-search-theme-form-1-wrapper label {
  display: none;
}

/*
* Search (search-block-form.tpl.php)
*/
#edit-search-block-form-1-wrapper label {
  display: none;
}

/*
* Drupal's default login form block
*/
#user-login-form {
  text-align: left;
  /* LTR */
}

/*
* OpenID
*
* The default styling for the OpenID login link seems to assume Garland's
* styling of list items.
*/
#user-login-form ul {
  margin-bottom: 0;
  /* Position OpenID's ul next to the rest of the links. */
}

#user-login-form li.openid-link {
  margin-top: 1em;
  margin-left: -20px;
  /* LTR */
  /* Un-do some of the padding on the ul list. */
}

#user-login-form li.user-link {
  margin-top: 1em;
}

#user-login ul {
  margin: 1em 0;
}

#user-login li.openid-link,
#user-login li.user-link {
  margin-left: -2em;
  /* LTR */
  /* Un-do all of the padding on the ul list. */
}

/*
* Drupal admin tables
*
* We overrode these styles in html-elements.css, but restore them for the admin
* section of the site.
*/
form tbody {
  border-top: 1px solid #ccc;
}

form th,
form thead th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}

form tbody th {
  border-bottom: 1px solid #ccc;
}

/* fields.css */
/**
* @file
* Field Styling
*/
/*
* Field types
*/
/*
* Named fields
*/
.view-products,
.view-sale-products.view-display-id-page_1,
.view-new-products.view-display-id-page_1,
.view-products-related,
.view-products-category,
.view-products-manufacturer,
.view-products-application,
.view-product-upsell,
.view-cart-upsell {
  clear: both;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .view-products,
  .view-sale-products.view-display-id-page_1,
  .view-new-products.view-display-id-page_1,
  .view-products-related,
  .view-products-category,
  .view-products-manufacturer,
  .view-products-application,
  .view-product-upsell,
  .view-cart-upsell {
    background: #EBF4DC;
  }
}

.no-sidebars .view-products .view-content,
.no-sidebars .view-sale-products.view-display-id-page_1 .view-content,
.no-sidebars .view-new-products.view-display-id-page_1 .view-content,
.no-sidebars .view-products-related .view-content,
.no-sidebars .view-products-category .view-content,
.no-sidebars .view-products-manufacturer .view-content,
.no-sidebars .view-products-application .view-content,
.no-sidebars .view-product-upsell .view-content,
.no-sidebars .view-cart-upsell .view-content {
  padding: 5px 10px 10px 10px;
  clear: both;
}

.no-sidebars .view-products .views-row,
.no-sidebars .view-sale-products.view-display-id-page_1 .views-row,
.no-sidebars .view-new-products.view-display-id-page_1 .views-row,
.no-sidebars .view-products-related .views-row,
.no-sidebars .view-products-category .views-row,
.no-sidebars .view-products-manufacturer .views-row,
.no-sidebars .view-products-application .views-row,
.no-sidebars .view-product-upsell .views-row,
.no-sidebars .view-cart-upsell .views-row {
  width: 100%;
  padding: 10px;
  margin: 20px 0 0;
  background: #D6CDB6;
  text-align: center;
  display: inline-block;
  clear: left;
  vertical-align: top;
  box-shadow: 0 1px 0 #bbb;
  border-radius: 4px;
  min-height: auto;
  box-sizing: border-box;
  position: relative;
  padding-bottom: 90px;
}

.view-products.view-display-id-page_1 > .view-content {
  display: flex;
  flex-flow: row wrap;
}

@media (min-width: 768px) {

  .no-sidebars .view-products .views-row,
  .no-sidebars .view-sale-products.view-display-id-page_1 .views-row,
  .no-sidebars .view-new-products.view-display-id-page_1 .views-row,
  .no-sidebars .view-products-related .views-row,
  .no-sidebars .view-products-category .views-row,
  .no-sidebars .view-products-manufacturer .views-row,
  .no-sidebars .view-products-application .views-row,
  .no-sidebars .view-product-upsell .views-row,
  .no-sidebars .view-cart-upsell .views-row {
    width: 213px;
    margin: 5px 6px;
    margin-top: 10px;
    min-height: 431px;
    box-sizing: border-box;
    padding-bottom: 90px;
  }
}

.no-sidebars .view-products .views-field-title,
.no-sidebars .view-sale-products.view-display-id-page_1 .views-field-title,
.no-sidebars .view-new-products.view-display-id-page_1 .views-field-title,
.no-sidebars .view-products-related .views-field-title,
.no-sidebars .view-products-category .views-field-title,
.no-sidebars .view-products-manufacturer .views-field-title,
.no-sidebars .view-products-application .views-field-title,
.no-sidebars .view-product-upsell .views-field-title,
.no-sidebars .view-cart-upsell .views-field-title {
  line-height: 1.5em;
  height: 3em;
  overflow: hidden;
}

.no-sidebars .view-products .views-field-buyitnowbutton,
.no-sidebars .view-sale-products.view-display-id-page_1 .views-field-buyitnowbutton,
.no-sidebars .view-new-products.view-display-id-page_1 .views-field-buyitnowbutton,
.no-sidebars .view-products-related .views-field-buyitnowbutton,
.no-sidebars .view-products-category .views-field-buyitnowbutton,
.no-sidebars .view-products-manufacturer .views-field-buyitnowbutton,
.no-sidebars .view-products-application .views-field-buyitnowbutton,
.no-sidebars .view-product-upsell .views-field-buyitnowbutton,
.no-sidebars .view-cart-upsell .views-field-buyitnowbutton {
  height: 3em;
  padding: 1em; 
  position: absolute;
  padding-bottom: 15px;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
}

.no-sidebars .view-products .views-field-buyitnowbutton p,
.no-sidebars .view-sale-products.view-display-id-page_1 .views-field-buyitnowbutton p,
.no-sidebars .view-new-products.view-display-id-page_1 .views-field-buyitnowbutton p,
.no-sidebars .view-products-related .views-field-buyitnowbutton p,
.no-sidebars .view-products-category .views-field-buyitnowbutton p,
.no-sidebars .view-products-manufacturer .views-field-buyitnowbutton p,
.no-sidebars .view-products-application .views-field-buyitnowbutton p,
.no-sidebars .view-product-upsell .views-field-buyitnowbutton p,
.no-sidebars .view-cart-upsell .views-field-buyitnowbutton p {
  margin: 0;
}

.sidebar-second .view-products .view-content,
.sidebar-second .view-sale-products.view-display-id-page_1 .view-content,
.sidebar-second .view-new-products.view-display-id-page_1 .view-content,
.sidebar-second .view-products-related .view-content,
.sidebar-second .view-products-category .view-content,
.sidebar-second .view-products-manufacturer .view-content,
.sidebar-second .view-products-application .view-content,
.sidebar-second .view-product-upsell .view-content,
.sidebar-second .view-cart-upsell .view-content {
  clear: both;
}
@media (min-width: 768px) {
  .sidebar-second .view-products .view-content,
  .sidebar-second .view-sale-products.view-display-id-page_1 .view-content,
  .sidebar-second .view-new-products.view-display-id-page_1 .view-content,
  .sidebar-second .view-products-related .view-content,
  .sidebar-second .view-products-category .view-content,
  .sidebar-second .view-products-manufacturer .view-content,
  .sidebar-second .view-products-application .view-content,
  .sidebar-second .view-product-upsell .view-content,
  .sidebar-second .view-cart-upsell .view-content {
    background: url(../images/paisley.png);
    padding: 5px 10px 10px 10px;
    display: flex;
    flex-wrap: wrap;
  }
}
.sidebar-second .view-products .view-content .views-row,
.sidebar-second .view-sale-products.view-display-id-page_1 .view-content .views-row,
.sidebar-second .view-new-products.view-display-id-page_1 .view-content .views-row,
.sidebar-second .view-products-related .view-content .views-row,
.sidebar-second .view-products-category .view-content .views-row,
.sidebar-second .view-products-manufacturer .view-content .views-row,
.sidebar-second .view-products-application .view-content .views-row,
.sidebar-second .view-product-upsell .view-content .views-row,
.sidebar-second .view-cart-upsell .view-content .views-row {
  width: 100%;
  padding: 10px;
  margin: 20px 0 0;
  background: #D6CDB6;
  text-align: center;
  display: inline-block;
  clear: left;
  vertical-align: top;
  box-shadow: 0 1px 0 #bbb;
  border-radius: 4px;
  min-height: auto;
  box-sizing: border-box;
  position: relative;
  padding-bottom: 90px;
}

.views-row-item-list {
  display: flex;
  flex-flow: wrap row;
}
@media (min-width: 768px) {
  .sidebar-second .view-products .view-content .views-row,
  .sidebar-second .view-sale-products.view-display-id-page_1 .view-content .views-row,
  .sidebar-second .view-new-products.view-display-id-page_1 .view-content .views-row,
  .sidebar-second .view-products-related .view-content .views-row,
  .sidebar-second .view-products-category .view-content .views-row,
  .sidebar-second .view-products-manufacturer .view-content .views-row,
  .sidebar-second .view-products-application .view-content .views-row,
  .sidebar-second .view-product-upsell .view-content .views-row,
  .sidebar-second .view-cart-upsell .view-content .views-row {
    width: 31%;
    margin: 5px 7px;
    margin-top: 10px;
    min-height: 431px;
    box-sizing: border-box;
    padding-bottom: 90px;
  }
}
.sidebar-second .view-products .view-content .views-row .views-field-field-image-cache-fid img,
.sidebar-second .view-sale-products.view-display-id-page_1 .view-content .views-row .views-field-field-image-cache-fid img,
.sidebar-second .view-new-products.view-display-id-page_1 .view-content .views-row .views-field-field-image-cache-fid img,
.sidebar-second .view-products-related .view-content .views-row .views-field-field-image-cache-fid img,
.sidebar-second .view-products-category .view-content .views-row .views-field-field-image-cache-fid img,
.sidebar-second .view-products-manufacturer .view-content .views-row .views-field-field-image-cache-fid img,
.sidebar-second .view-products-application .view-content .views-row .views-field-field-image-cache-fid img,
.sidebar-second .view-product-upsell .view-content .views-row .views-field-field-image-cache-fid img,
.sidebar-second .view-cart-upsell .view-content .views-row .views-field-field-image-cache-fid img {
  max-width: 100%;
  height: auto;
  width: 100%;
}
@media (min-width: 768px) {
  .sidebar-second .view-products .view-content .views-row .views-field-field-image-cache-fid img,
  .sidebar-second .view-sale-products.view-display-id-page_1 .view-content .views-row .views-field-field-image-cache-fid img,
  .sidebar-second .view-new-products.view-display-id-page_1 .view-content .views-row .views-field-field-image-cache-fid img,
  .sidebar-second .view-products-related .view-content .views-row .views-field-field-image-cache-fid img,
  .sidebar-second .view-products-category .view-content .views-row .views-field-field-image-cache-fid img,
  .sidebar-second .view-products-manufacturer .view-content .views-row .views-field-field-image-cache-fid img,
  .sidebar-second .view-products-application .view-content .views-row .views-field-field-image-cache-fid img,
  .sidebar-second .view-product-upsell .view-content .views-row .views-field-field-image-cache-fid img,
  .sidebar-second .view-cart-upsell .view-content .views-row .views-field-field-image-cache-fid img {
    width: auto;
  }
}
.sidebar-second .view-products .view-content .views-row .views-field-title,
.sidebar-second .view-sale-products.view-display-id-page_1 .view-content .views-row .views-field-title,
.sidebar-second .view-new-products.view-display-id-page_1 .view-content .views-row .views-field-title,
.sidebar-second .view-products-related .view-content .views-row .views-field-title,
.sidebar-second .view-products-category .view-content .views-row .views-field-title,
.sidebar-second .view-products-manufacturer .view-content .views-row .views-field-title,
.sidebar-second .view-products-application .view-content .views-row .views-field-title,
.sidebar-second .view-product-upsell .view-content .views-row .views-field-title,
.sidebar-second .view-cart-upsell .view-content .views-row .views-field-title {
  line-height: 1.5em;
  height: auto;
  overflow: hidden;
  font-weight: 300;
  font-size: 1.2em;
  line-height: 1.2em;
  text-shadow: 0 1px 0 #eee;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .sidebar-second .view-products .view-content .views-row .views-field-title,
  .sidebar-second .view-sale-products.view-display-id-page_1 .view-content .views-row .views-field-title,
  .sidebar-second .view-new-products.view-display-id-page_1 .view-content .views-row .views-field-title,
  .sidebar-second .view-products-related .view-content .views-row .views-field-title,
  .sidebar-second .view-products-category .view-content .views-row .views-field-title,
  .sidebar-second .view-products-manufacturer .view-content .views-row .views-field-title,
  .sidebar-second .view-products-application .view-content .views-row .views-field-title,
  .sidebar-second .view-product-upsell .view-content .views-row .views-field-title,
  .sidebar-second .view-cart-upsell .view-content .views-row .views-field-title {
    margin-bottom: 20px;
  }
}


.sidebar-disable .view-products .view-content .views-row,
.sidebar-disable .view-sale-products.view-display-id-page_1 .view-content .views-row,
.sidebar-disable .view-new-products.view-display-id-page_1 .view-content .views-row,
.sidebar-disable .view-products-related .view-content .views-row,
.sidebar-disable .view-products-category .view-content .views-row,
.sidebar-disable .view-products-manufacturer .view-content .views-row,
.sidebar-disable .view-products-application .view-content .views-row,
.sidebar-disable .view-product-upsell .view-content .views-row,
.sidebar-disable .view-cart-upsell .view-content .views-row {
  width: 100%;
  padding: 10px;
  margin: 20px 0 0;
  background: #D6CDB6;
  text-align: center;
  display: inline-block;
  clear: left;
  vertical-align: top;
  box-shadow: 0 1px 0 #bbb;
  border-radius: 4px;
  min-height: auto;
  box-sizing: border-box;
  position: relative;
  padding-bottom: 90px;
}

@media (min-width: 768px) {
  .sidebar-disable .view-products .view-content .views-row,
  .sidebar-disable .view-sale-products.view-display-id-page_1 .view-content .views-row,
  .sidebar-disable .view-new-products.view-display-id-page_1 .view-content .views-row,
  .sidebar-disable .view-products-related .view-content .views-row,
  .sidebar-disable .view-products-category .view-content .views-row,
  .sidebar-disable .view-products-manufacturer .view-content .views-row,
  .sidebar-disable .view-products-application .view-content .views-row,
  .sidebar-disable .view-product-upsell .view-content .views-row,
  .sidebar-disable .view-cart-upsell .view-content .views-row {
    width: 213px;
    margin: 5px 6px;
    margin-top: 10px;
    min-height: 431px;
    box-sizing: border-box;
    padding-bottom: 90px;
  }
}



.sidebar-second .view-products .view-content .views-row .views-field-title a, .sidebar-second .view-products .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-products .view-content .views-row .views-field-title .ps-link,
.sidebar-second .view-sale-products.view-display-id-page_1 .view-content .views-row .views-field-title a,
.sidebar-second .view-sale-products.view-display-id-page_1 .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-sale-products.view-display-id-page_1 .view-content .views-row .views-field-title .ps-link,
.sidebar-second .view-new-products.view-display-id-page_1 .view-content .views-row .views-field-title a,
.sidebar-second .view-new-products.view-display-id-page_1 .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-new-products.view-display-id-page_1 .view-content .views-row .views-field-title .ps-link,
.sidebar-second .view-products-related .view-content .views-row .views-field-title a,
.sidebar-second .view-products-related .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-products-related .view-content .views-row .views-field-title .ps-link,
.sidebar-second .view-products-category .view-content .views-row .views-field-title a,
.sidebar-second .view-products-category .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-products-category .view-content .views-row .views-field-title .ps-link,
.sidebar-second .view-products-manufacturer .view-content .views-row .views-field-title a,
.sidebar-second .view-products-manufacturer .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-products-manufacturer .view-content .views-row .views-field-title .ps-link,
.sidebar-second .view-products-application .view-content .views-row .views-field-title a,
.sidebar-second .view-products-application .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-products-application .view-content .views-row .views-field-title .ps-link,
.sidebar-second .view-product-upsell .view-content .views-row .views-field-title a,
.sidebar-second .view-product-upsell .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-product-upsell .view-content .views-row .views-field-title .ps-link,
.sidebar-second .view-cart-upsell .view-content .views-row .views-field-title a,
.sidebar-second .view-cart-upsell .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-cart-upsell .view-content .views-row .views-field-title .ps-link {
  text-decoration: none;
  color: #5a2301;
  text-shadow: none;
}
.sidebar-second .view-products .view-content .views-row .views-field-title a:hover, .sidebar-second .view-products .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:hover, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-products .view-content .views-row .views-field-title .ps-link:hover, .sidebar-second .view-products .view-content .views-row .views-field-title a:focus, .sidebar-second .view-products .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:focus, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-products .view-content .views-row .views-field-title .ps-link:focus,
.sidebar-second .view-sale-products.view-display-id-page_1 .view-content .views-row .views-field-title a:hover,
.sidebar-second .view-sale-products.view-display-id-page_1 .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:hover,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-sale-products.view-display-id-page_1 .view-content .views-row .views-field-title .ps-link:hover,
.sidebar-second .view-sale-products.view-display-id-page_1 .view-content .views-row .views-field-title a:focus,
.sidebar-second .view-sale-products.view-display-id-page_1 .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:focus,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-sale-products.view-display-id-page_1 .view-content .views-row .views-field-title .ps-link:focus,
.sidebar-second .view-new-products.view-display-id-page_1 .view-content .views-row .views-field-title a:hover,
.sidebar-second .view-new-products.view-display-id-page_1 .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:hover,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-new-products.view-display-id-page_1 .view-content .views-row .views-field-title .ps-link:hover,
.sidebar-second .view-new-products.view-display-id-page_1 .view-content .views-row .views-field-title a:focus,
.sidebar-second .view-new-products.view-display-id-page_1 .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:focus,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-new-products.view-display-id-page_1 .view-content .views-row .views-field-title .ps-link:focus,
.sidebar-second .view-products-related .view-content .views-row .views-field-title a:hover,
.sidebar-second .view-products-related .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:hover,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-products-related .view-content .views-row .views-field-title .ps-link:hover,
.sidebar-second .view-products-related .view-content .views-row .views-field-title a:focus,
.sidebar-second .view-products-related .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:focus,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-products-related .view-content .views-row .views-field-title .ps-link:focus,
.sidebar-second .view-products-category .view-content .views-row .views-field-title a:hover,
.sidebar-second .view-products-category .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:hover,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-products-category .view-content .views-row .views-field-title .ps-link:hover,
.sidebar-second .view-products-category .view-content .views-row .views-field-title a:focus,
.sidebar-second .view-products-category .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:focus,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-products-category .view-content .views-row .views-field-title .ps-link:focus,
.sidebar-second .view-products-manufacturer .view-content .views-row .views-field-title a:hover,
.sidebar-second .view-products-manufacturer .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:hover,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-products-manufacturer .view-content .views-row .views-field-title .ps-link:hover,
.sidebar-second .view-products-manufacturer .view-content .views-row .views-field-title a:focus,
.sidebar-second .view-products-manufacturer .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:focus,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-products-manufacturer .view-content .views-row .views-field-title .ps-link:focus,
.sidebar-second .view-products-application .view-content .views-row .views-field-title a:hover,
.sidebar-second .view-products-application .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:hover,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-products-application .view-content .views-row .views-field-title .ps-link:hover,
.sidebar-second .view-products-application .view-content .views-row .views-field-title a:focus,
.sidebar-second .view-products-application .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:focus,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-products-application .view-content .views-row .views-field-title .ps-link:focus,
.sidebar-second .view-product-upsell .view-content .views-row .views-field-title a:hover,
.sidebar-second .view-product-upsell .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:hover,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-product-upsell .view-content .views-row .views-field-title .ps-link:hover,
.sidebar-second .view-product-upsell .view-content .views-row .views-field-title a:focus,
.sidebar-second .view-product-upsell .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:focus,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-product-upsell .view-content .views-row .views-field-title .ps-link:focus,
.sidebar-second .view-cart-upsell .view-content .views-row .views-field-title a:hover,
.sidebar-second .view-cart-upsell .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:hover,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-cart-upsell .view-content .views-row .views-field-title .ps-link:hover,
.sidebar-second .view-cart-upsell .view-content .views-row .views-field-title a:focus,
.sidebar-second .view-cart-upsell .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:focus,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-cart-upsell .view-content .views-row .views-field-title .ps-link:focus {
  color: #CD6F36;
  outline: none;
}
.sidebar-second .view-products .view-content .views-row .views-field-title a:active, .sidebar-second .view-products .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:active, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-products .view-content .views-row .views-field-title .ps-link:active,
.sidebar-second .view-sale-products.view-display-id-page_1 .view-content .views-row .views-field-title a:active,
.sidebar-second .view-sale-products.view-display-id-page_1 .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:active,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-sale-products.view-display-id-page_1 .view-content .views-row .views-field-title .ps-link:active,
.sidebar-second .view-new-products.view-display-id-page_1 .view-content .views-row .views-field-title a:active,
.sidebar-second .view-new-products.view-display-id-page_1 .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:active,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-new-products.view-display-id-page_1 .view-content .views-row .views-field-title .ps-link:active,
.sidebar-second .view-products-related .view-content .views-row .views-field-title a:active,
.sidebar-second .view-products-related .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:active,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-products-related .view-content .views-row .views-field-title .ps-link:active,
.sidebar-second .view-products-category .view-content .views-row .views-field-title a:active,
.sidebar-second .view-products-category .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:active,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-products-category .view-content .views-row .views-field-title .ps-link:active,
.sidebar-second .view-products-manufacturer .view-content .views-row .views-field-title a:active,
.sidebar-second .view-products-manufacturer .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:active,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-products-manufacturer .view-content .views-row .views-field-title .ps-link:active,
.sidebar-second .view-products-application .view-content .views-row .views-field-title a:active,
.sidebar-second .view-products-application .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:active,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-products-application .view-content .views-row .views-field-title .ps-link:active,
.sidebar-second .view-product-upsell .view-content .views-row .views-field-title a:active,
.sidebar-second .view-product-upsell .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:active,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-product-upsell .view-content .views-row .views-field-title .ps-link:active,
.sidebar-second .view-cart-upsell .view-content .views-row .views-field-title a:active,
.sidebar-second .view-cart-upsell .view-content .views-row .views-field-title .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:active,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .sidebar-second .view-cart-upsell .view-content .views-row .views-field-title .ps-link:active {
  color: #757F66;
}
.sidebar-second .view-products .view-content .views-row .views-field-buyitnowbutton,
.sidebar-second .view-sale-products.view-display-id-page_1 .view-content .views-row .views-field-buyitnowbutton,
.sidebar-second .view-new-products.view-display-id-page_1 .view-content .views-row .views-field-buyitnowbutton,
.sidebar-second .view-products-related .view-content .views-row .views-field-buyitnowbutton,
.sidebar-second .view-products-category .view-content .views-row .views-field-buyitnowbutton,
.sidebar-second .view-products-manufacturer .view-content .views-row .views-field-buyitnowbutton,
.sidebar-second .view-products-application .view-content .views-row .views-field-buyitnowbutton,
.sidebar-second .view-product-upsell .view-content .views-row .views-field-buyitnowbutton,
.sidebar-second .view-cart-upsell .view-content .views-row .views-field-buyitnowbutton {
  height: 3em;
  padding: 1em;
}
.sidebar-second .view-products .view-content .views-row .views-field-buyitnowbutton p,
.sidebar-second .view-sale-products.view-display-id-page_1 .view-content .views-row .views-field-buyitnowbutton p,
.sidebar-second .view-new-products.view-display-id-page_1 .view-content .views-row .views-field-buyitnowbutton p,
.sidebar-second .view-products-related .view-content .views-row .views-field-buyitnowbutton p,
.sidebar-second .view-products-category .view-content .views-row .views-field-buyitnowbutton p,
.sidebar-second .view-products-manufacturer .view-content .views-row .views-field-buyitnowbutton p,
.sidebar-second .view-products-application .view-content .views-row .views-field-buyitnowbutton p,
.sidebar-second .view-product-upsell .view-content .views-row .views-field-buyitnowbutton p,
.sidebar-second .view-cart-upsell .view-content .views-row .views-field-buyitnowbutton p {
  margin: 0;
}

.one-sidebar .view-products .views-field-php, .one-sidebar .view-products .views-field-buyitnowbutton,
.one-sidebar .view-sale-products .views-field-php,
.one-sidebar .view-sale-products .views-field-buyitnowbutton,
.one-sidebar .view-products-related .views-field-php,
.one-sidebar .view-products-related .views-field-buyitnowbutton,
.one-sidebar .view-products-category .views-field-php,
.one-sidebar .view-products-category .views-field-buyitnowbutton,
.one-sidebar .view-products-manufacturer .views-field-php,
.one-sidebar .view-products-manufacturer .views-field-buyitnowbutton,
.one-sidebar .view-products-application .views-field-php,
.one-sidebar .view-products-application .views-field-buyitnowbutton,
.one-sidebar .view-product-upsell .views-field-php,
.one-sidebar .view-product-upsell .views-field-buyitnowbutton,
.one-sidebar .view-cart-upsell .views-field-php,
.one-sidebar .view-cart-upsell .views-field-buyitnowbutton {
  position: absolute;
  padding-bottom: 15px;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
}
.one-sidebar .view-products .views-field-buyitnowbutton,
.one-sidebar .view-sale-products .views-field-buyitnowbutton,
.one-sidebar .view-products-related .views-field-buyitnowbutton,
.one-sidebar .view-products-category .views-field-buyitnowbutton,
.one-sidebar .view-products-manufacturer .views-field-buyitnowbutton,
.one-sidebar .view-products-application .views-field-buyitnowbutton,
.one-sidebar .view-product-upsell .views-field-buyitnowbutton,
.one-sidebar .view-cart-upsell .views-field-buyitnowbutton {
  bottom: 15px;
}

.no-sidebars .view-products .views-field-php, 
.no-sidebars .view-products .views-field-buyitnowbutton,
.no-sidebars .view-sale-products .views-field-php,
.no-sidebars .view-sale-products .views-field-buyitnowbutton,
.no-sidebars .view-products-related .views-field-php,
.no-sidebars .view-products-related .views-field-buyitnowbutton,
.no-sidebars .view-products-category .views-field-php,
.no-sidebars .view-products-category .views-field-buyitnowbutton,
.no-sidebars .view-products-manufacturer .views-field-php,
.no-sidebars .view-products-manufacturer .views-field-buyitnowbutton,
.no-sidebars .view-products-application .views-field-php,
.no-sidebars .view-products-application .views-field-buyitnowbutton,
.no-sidebars .view-product-upsell .views-field-php,
.no-sidebars .view-product-upsell .views-field-buyitnowbutton,
.no-sidebars .view-cart-upsell .views-field-php,
.no-sidebars .view-cart-upsell .views-field-buyitnowbutton {
  position: absolute;
  padding-bottom: 15px;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
}

.item-list ul.pager {
  padding: 1.5em 0;
  margin: .075em 0;
  font-family: Lucida Grande;
  font-weight: 900;
  font-size: 1.2em;
}

.item-list ul.pager a, .item-list .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.pager li .ps-link, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu .item-list ul.pager li .ps-link {
  text-decoration: none;
}

.item-list ul.pager a:hover, .item-list .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.pager li .ps-link:hover, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu .item-list ul.pager li .ps-link:hover {
  padding: .5em;
  background: #D6CDB6;
  border-radius: 3px;
  box-shadow: 0 -1px 0 #fff;
}

.item-list ul.pager li.pager-current {
  padding: .5em;
  background: #c1c6b1;
  border-radius: 3px;
  box-shadow: 0 -1px 0 #fff;
}

.item-list ul.pager li.pager-item {
  padding: .5em;
}

#header-stuff-right #block-menu-secondary-links {
  margin: 0;
}

#header-stuff-right #block-menu-secondary-links ul.menu {
  margin: 0;
  padding: 0;
  text-align: right;
}

#header-stuff-right #block-menu-secondary-links ul.menu li {
  display: inline;
  margin-right: 10px;
}

#block-om_maximenu-om-maximenu-1 .om-maximenu ul.om-menu li.om-leaf .om-link {
  height: inherit;
  line-height: inherit;
  padding: .5em 1em 0 1em;
  margin: 0;
  text-decoration: underline;
  background: #C1C6B1;
}

#om-maximenu-modal-links ul.om-menu li a, #om-maximenu-modal-links .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.om-menu li .ps-link, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu #om-maximenu-modal-links ul.om-menu li .ps-link {
  color: #333;
}

.node-type-product .field-field-image-cache {
  display: inline-block;
  float: left;
  margin-right: 20px;
}

.cloud-zoom-big {
  margin-left: 18px;
  width: 264px !important;
  margin-top: -3px !important;
}

#om-maximenu-modal-widows .om-maximenu-modal-content {
  background: #d6cdb6;
  padding: 10px;
}

.om-maximenu-middle,
.om-maximenu-middle-left,
.om-maximenu-middle-right {
  background: #ebf4dc;
}

#om-maximenu-modal-widows .om-maximenu-modal-content .om-maximenu-close {
  background: #ebf4dc;
  padding: 3px 6px;
  color: #888;
  font-weight: 100;
  font-size: 8px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .node-type-product #product-images {
    width: 400px;
    float: left;
    margin-right: 20px;
  }
}
.node-type-product #product-images img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .node-type-product #product-images img {
    max-width: auto;
  }
}

.node-type-product #cart-elements {
  text-align: right;
}

.node-type-product #cart-elements .uc-cost,
.uc-price.uc-original-price {
  text-decoration: line-through;
}

.node-type-product #cart-elements #price,
.node-type-product #cart-elements .price {
  font-size: 2em;
  line-height: 2em;
  text-align: center;
}
@media (min-width: 768px) {
  .node-type-product #cart-elements #price,
  .node-type-product #cart-elements .price {
    text-align: left;
  }
}

.node-type-product #cart-elements .add-to-cart {
  text-align: center;
}
@media (min-width: 768px) {
  .node-type-product #cart-elements .add-to-cart {
    text-align: right;
  }
}
.node-type-product #cart-elements .add-to-cart input.form-submit.node-add-to-cart {
  border-radius: 5px;
  margin: 10px 0 30px 0;
  border-bottom: 5px solid #5C8229;
  background: #5da301;
  color: #fff;
  text-shadow: 0 -1px 1px #222;
  width: 60%;
  padding: 0;
  height: 40px;
  line-height: 42px;
  font-size: 24px;
}
@media (min-width: 768px) {
  .node-type-product #cart-elements .add-to-cart input.form-submit.node-add-to-cart {
    width: auto;
    padding: .5em;
    padding-bottom: .25em;
    font-size: 2em;
    height: auto;
    line-height: 1em;
    border-radius: 10px;
  }
}

.node-type-product #cart-elements .product-info.model {
  font-weight: 100;
}

@media (min-width: 768px) {
  .node-type-product #product-left {
    width: 400px;
    float: left;
    padding-right: 20px;
  }
}

@media (min-width: 768px) {
  .node-type-product #product-right {
    width: 470px;
    float: left;
  }
}
@media (min-width: 960px) {
  .node-type-product #product-right {
    width: 270px;
    float: left;
  }
}

.node-type-product #product-images {
  margin-bottom: 1.5em;
}

.node-type-product #product-terms {
  text-align: left;
  padding: .5em;
  margin-bottom: 1.5em;
}
@media (min-width: 768px) {
  .node-type-product #product-terms {
    text-align: right;
  }
}
.node-type-product #product-terms h3 {
  font-size: .95em;
  color: #7B7774;
  width: 100%;
  border-bottom: 3px solid #D6CDB6;
  margin-bottom: 0;
  margin-top: 1.5em;
}
.node-type-product #product-terms ul {
  padding: 0;
  margin: 0;
}
.node-type-product #product-terms ul li {
  list-style-type: none;
  padding: .5em 0;
  font-family: Lucida Grande;
  border-bottom: 1px solid #D6CDB6;
}
@media (min-width: 768px) {
  .node-type-product #product-terms ul li {
    padding: 0.5em;
  }
}
.node-type-product #product-terms ul li a, .node-type-product #product-terms .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu .node-type-product #product-terms ul li .ps-link {
  text-decoration: none;
  border-bottom: 1px solid;
}

.view-empty {
  padding: 1.5em;
  text-align: center;
}

#visuals .block {
  margin: 0;
}

#views_slideshow_singleframe_teaser_section_slides-block_1 {
  height: 180px;
}
@media (min-width: 768px) {
  #views_slideshow_singleframe_teaser_section_slides-block_1 {
    height: 420px;
  }
}

input.form-submit {
  background: #5da301;
  color: #f0f0f0;
  font-size: .75em;
  vertical-align: top;
  font-family: Bebas Neue;
  color: #fff;
  font-size: 20px;
  line-height: 42px;
  border-radius: 4px;
  cursor: pointer !important;
  padding: 0 40px;
  border: 0;
  border-bottom: 3px solid #5C8229;
  height: 40px;
}
@media (min-width: 768px) {
  input.form-submit {
    padding: 4px;
    padding-bottom: 1px;
    line-height: 1em;
    height: auto;
    border-width: 2px;
    border-style: outset;
    border-color: buttonface;
    border-image: initial;
    border-bottom: 3px solid #5C8229;
    text-shadow: 0 -1px 0 #444;
    font-size: 1.2em;
  }
}

#edit-panes-quotes-quote-button.form-submit, #checkout-form-bottom .form-button, #checkout-form-bottom .form-submit, #uc-cart-checkout-review-form .form-submit {
  font-size: 1.5em;
}

#block-form.block-request {
  background: #ebf4dc;
  padding: 20px;
  margin-top: 10px;
}

#block-form.block-request fieldset {
  display: none;
}

#block-form.block-request .resizable-textarea,
#block-form.block-request textarea {
  width: 100%;
}

#block-form.block-request #edit-field-request-name-0-value-wrapper,
#block-form.block-request #edit-field-request-phone-0-value-wrapper {
  width: 410px;
  display: inline-block;
  vertical-align: top;
}

.view-requests ul {
  padding: 0;
}

.view-requests ul li {
  display: inline;
}

.view-requests .views-row {
  padding: 10px 5px;
  border-bottom: 1px dotted #c1c6b1;
}

.view-requests .views-row-last {
  border: none;
}

.view-requests .views-row .name {
  font-weight: 600;
}

element.style {
  z-index: 10 !important;
}

#block-nice_menus-1 ul {
  margin: .5em 0;
  padding: 0 20px;
}

#block-nice_menus-1 ul li ul {
  padding: .5em 0;
  box-shadow: 5px 5px 20px #bbb;
}

#block-nice_menus-1 ul li {
  border: none;
  background-color: transparent;
  padding: 0 .5em;
}

#block-nice_menus-1 ul li.active-trail {
  background-color: #ebf4dc;
}

#block-nice_menus-1 ul li:hover {
  background-color: #d6cdb6;
}

#block-nice_menus-1 ul li ul,
#block-nice_menus-1 ul li ul li {
  background-color: #c1c6b1;
  border: none;
}

.node .content {
  margin-bottom: 3em;
}

.node ul.links {
  padding: 1em 0;
  width: 100%;
}

.node-type-product ul.links.inline li {
  display: list-item !important;
  text-align: center;
  margin-bottom: 10px;
}

.node ul.links li.statistics_counter {
  clear: both;
}

.node ul.links li.review_field_review_product a, .node .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul.links li.review_field_review_product .ps-link, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu .node ul.links li.review_field_review_product .ps-link {
  background-color: #3E93DD;
  padding: 10px 20px;
  margin: 10px 0;
  color: #fff;
  text-shadow: 0 -2px 0 #2C6FB7;
  text-decoration: none;
  clear: both;
  box-shadow: 0 3px 0 #2C6FB7;
  border-radius: 4px;
  font-family: Bebas Neue;
  font-size: 1.4em;
  padding-bottom: 6px;
}

.node-type-product ul.links.inline li.statistics_counter {
  padding: 10px 0;
}

.node-type-product #product-links {
  margin-bottom: 30px;
}

.node {
  margin-bottom: 3em;
}

#product-images #wrap {
  margin-bottom: 1em;
}

#block-block-1 {
  font-family: 'Roboto Condensed', sans-serif;
  margin-top: 0;
  background: url("/sites/all/themes/zen/zen-internals/images/nav-bg.jpg");
  margin-bottom: 0;
  padding: 10px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  #block-block-1 {
    margin-top: -9px;
    background: none;
    margin-bottom: 1em;
    padding: 0;
    color: #3C3226;
    overflow: visible;
  }
}
#block-block-1:before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  top: -7px;
  left: -6px;
  background: #E8E8D3;
}
@media (min-width: 768px) {
  #block-block-1:before {
    display: none;
  }
}
#block-block-1:after {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  top: -7px;
  right: -6px;
  background: #E8E8D3;
}
@media (min-width: 768px) {
  #block-block-1:after {
    display: none;
  }
}
#block-block-1 .content::before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  bottom: -7px;
  left: -6px;
  background: #E8E8D3;
}
@media (min-width: 768px) {
  #block-block-1 .content::before {
    display: none;
  }
}
#block-block-1 .content:after {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  bottom: -7px;
  right: -6px;
  background: #E8E8D3;
}
@media (min-width: 768px) {
  #block-block-1 .content:after {
    display: none;
  }
}
@media (min-width: 768px) {
  #block-block-1 .content {
    padding-left: 54px;
    background-image: url("../images/phone-green.jpg");
    background-repeat: no-repeat;
    background-position: 8px center;
  }
}
@media (min-width: 960px) {
  #block-block-1 .content {
    background-position: 8px 5px;
  }
}
#block-block-1 .content p {
  text-align: center !important;
  margin: 0;
}
@media (min-width: 768px) {
  #block-block-1 .content p {
    text-align: right !important;
    margin: 1em 0;
  }
}
#block-block-1 .content p > span:last-child {
  display: none;
}
@media (min-width: 960px) {
  #block-block-1 .content p > span:last-child {
    display: inline;
  }
}

.front #block-block-1 .content:before, .front #block-block-1 .content:after {
  display: none;
}

.region-visuals #block-search-0 {
  padding: 10px 25px;
  background: #fc0 url(../images/paisley.png);
  height: 34px;
}

@media (min-width: 768px) {
  .region-visuals #edit-search-block-form-1-wrapper,
  .region-visuals #block-search-0 input#edit-search-block-form-1 {
    width: 580px !important;
  }
}
@media (min-width: 960px) {
  .region-visuals #edit-search-block-form-1-wrapper,
  .region-visuals #block-search-0 input#edit-search-block-form-1 {
    width: 805px !important;
  }
}

#block-views-articles-block_2 .view-articles .views-row {
  border-bottom: 1px solid #ccc;
  margin-top: 10px;
  padding-bottom: 10px;
}

.view-reviews .views-row {
  border-bottom: 1px solid #ccc;
  margin-top: 10px;
  padding-bottom: 10px;
}

.view-reviews .views-row {
  border-bottom: none;
}

.poll .bar .foreground {
  background-color: #fc0;
}

.poll .title {
  font-size: 1.2em;
  color: #444;
  text-align: center;
  line-height: 2em;
  font-style: italic;
}

.node-type-product .service-links ul.links {
  text-align: center;
}

.node-type-product .product-reviews {
  padding: 20px;
  padding-top: 10px;
  background-color: #ebf4dc;
}

.node-type-exclusive .field-field-exclusive-brief {
  line-height: 1.6em;
  font-style: italic;
  font-size: 1.4em;
  font-family: "Georgia", serif;
  color: #444;
}

.node-type-exclusive .field-field-exclusive-brief .list-item,
.node-type-exclusive .field-field-exclusive-cta {
  margin-bottom: 2em;
  background: #f8f8f8;
  padding: 20px;
}

.node-type-exclusive .field-field-exclusive-cost {
  text-align: center;
  font-size: 150%;
  margin: 40px 0;
}

.node-type-exclusive .field-field-exclusive-benefits .field-item,
.node-type-exclusive .field-field-exclusive-cost-includes .field-item,
.node-type-exclusive .field-field-exclusive-cost-excludes .field-item {
  display: list-item;
  list-style-position: outside;
}

.node-type-exclusive .field-field-exclusive-benefits .field-items,
.node-type-exclusive .field-field-exclusive-cost-includes .field-items,
.node-type-exclusive .field-field-exclusive-cost-excludes .field-items {
  margin: 1em 0;
  padding-left: 2em;
}

.node-type-exclusive .field-field-exclusive-footnotes .field-items {
  border-top: 1px solid #777;
  margin-top: 2em;
  padding: 2em;
}

.node-type-exclusive .field-field-exclusive-footnotes .field-item {
  margin-bottom: 1em;
}

.node-type-exclusive .field-field-exclusive-paylink {
  text-align: center;
}

.float-right {
  float: right;
  margin: 10px 0 10px 10px;
}

.float-left {
  float: left;
  margin: 10px 10px 10px 0;
}

.page-yoga .view-exclusives .view-header {
  background: #f9f9f9;
  padding: 20px;
  font-size: 1.1em;
  line-height: 1.5em;
}

.large {
  font-size: 1.6em;
}

.center {
  text-align: center;
}

.page-yoga .view-exclusives .views-row {
  padding-bottom: 1.5em;
  border-bottom: 1px solid #ddd;
  margin-top: 1.5em;
  clear: both;
}

.page-yoga .view-exclusives .views-row-last {
  border: none;
}

.page-yoga .view-exclusives .views-field-field-exclusive-image-fid,
.page-yoga .view-exclusives .views-field-field-exclusive-image-fid .field-content,
.page-yoga .view-exclusives .views-field-field-exclusive-image-fid .field-content a.imagecache,
.page-yoga .view-exclusives .views-field-field-exclusive-image-fid .field-content .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .imagecache.ps-link,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .page-yoga .view-exclusives .views-field-field-exclusive-image-fid .field-content .imagecache.ps-link,
.page-yoga .view-exclusives .views-field-field-exclusive-image-fid .field-content a.imagecache img,
.page-yoga .view-exclusives .views-field-field-exclusive-image-fid .field-content .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .imagecache.ps-link img,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .page-yoga .view-exclusives .views-field-field-exclusive-image-fid .field-content .imagecache.ps-link img {
  display: inline;
  width: 170px;
  float: left;
}

.page-yoga .view-exclusives .views-field-field-exclusive-image-fid {
  margin-right: 20px;
}

.page-yoga .view-exclusives .views-field-title {
  line-height: 1.5em;
  margin-bottom: 0.75em;
}

.page-yoga .view-exclusives .views-field-field-exclusive-brief-value {
  color: #444;
  line-height: 1.5em;
  margin-bottom: 0.75em;
}

.page-yoga .view-exclusives .views-field-view-node {
  width: 100%;
  text-align: right;
}

.view-products .uc-price,
.view-sale-products.view-display-id-page_1 .uc-price,
.view-new-products.view-display-id-page_1 .uc-price,
.view-products-category .uc-price,
.view-products-related .uc-price,
.view-product-upsell .uc-price {
  font-weight: 900;
  font-size: 1.2em;
  text-shadow: 0 1px 0 #fff;
}

.uc_out_of_stock_html {
  font-size: .9em;
  font-family: Noto Serif;
  font-weight: 700;
  line-height: 1.2em;
}

.breadcrumb {
  font-family: Noto Serif;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .breadcrumb {
    margin-bottom: 0;
  }
}

.community_head {
  background: url(../images/white-paisley.png) !important;
}

option {
  font-size: 1.2em;
  font-family: Noto Serif;
}

.view-articles .article-teaser {
  margin: 10px 0;
}

.more-link,
.links ul {
  text-align: right;
}

.field-label {
  vertical-align: top;
}

.uc_stock_html {
  font-size: .9em;
  font-family: Noto Serif;
  font-weight: 700;
  line-height: 1.2em;
  margin-top: -14px;
}

.products-stock {
  padding: 10px;
  background-color: #ebf4dc;
}

.products-stock-elem {
  text-align: right;
}

.uc-sales-table td:nth-child(2), .uc-sales-table th:nth-child(2) {
  overflow-x: hidden;
  max-width: 450px;
}

.uc-orders-table td:nth-child(1) a:nth-child(2), .uc-orders-table td:nth-child(1) .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:nth-child(2), .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .uc-orders-table td:nth-child(1) .ps-link:nth-child(2) {
  display: none;
}

.uc-orders-table td.marked {
  background: #ff7400;
  color: #fff;
}

.order-bulk-status-form {
  float: left;
  width: 148px;
  padding: 0em 2em 1em 0em;
}

.order-bulk-status-form label {
  width: 200px;
}

.uc-orders-table td:nth-child(2) a:nth-child(2), .uc-orders-table td:nth-child(2) .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:nth-child(2), .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .uc-orders-table td:nth-child(2) .ps-link:nth-child(2) {
  display: none;
}

.order-invoice td {
  padding: 2px;
}

.view-sale-products.view-display-id-block_1 .views-row,
.view-new-products.view-display-id-block_1 .views-row {
  margin-bottom: 15px;
}

#block-block-11 {
  moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#search-block-form [name="search_block_form"] {
  background: url(../images/search.png) no-repeat;
  background-position: right;
  background-size: 25px;
  background-color: white;
  padding-right: 24px;
}

.view-products-category .views-row,
.view-new-products .views-row,
#product-images {
  position: relative;
}

.views-field-field-product-new-value,
#product-images .new_product {
  display: block;
  background: url(../images/new_label.png) no-repeat;
  text-indent: -9999px;
  height: 102px;
  position: absolute;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100px;
}

.views-field-field-product-new-value {
  background: url(../images/new_label_small.png) no-repeat;
}

.views-field-field-product-new-value:before {
  content: '';
  position: absolute;
}

input.phone-part {
  margin-right: 5px;
}

#delivery-pane .address-pane-table:not(.email-moved) tr:nth-child(-n+7),
#delivery-pane .address-pane-table.email-moved tr:nth-child(-n+8) {
  border-left: 3px solid #EEE;
  border-right: 3px solid #EEE;
}

#delivery-pane .address-pane-table {
  width: 95%;
}

#delivery-pane .address-pane-table tr:first-child {
  border-top: 3px solid #EEE;
}

#delivery-pane .address-pane-table:not(.email-moved) tr:nth-child(7),
#delivery-pane .address-pane-table.email-moved tr:nth-child(8) {
  border-bottom: 3px solid #EEE;
}

#delivery-pane .address-pane-table:not(.email-moved) tr:nth-child(7) td,
#delivery-pane .address-pane-table.email-moved tr:nth-child(9) td {
  padding-top: 20px;
}

ul#secondary-menu li:last-child {
  float: right;
  background: rgba(0, 0, 0, 0.35);
  padding: 0px 5px 1px;
  width: 30%;
  text-align: center;
  line-height: 1.2;
  height: 55px;
  display: flex;
  align-items: center;
  position: absolute;
  left: 51%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  ul#secondary-menu li:last-child {
    padding: 0px 15px 1px;
    width: auto;
    text-align: left;
    line-height: 54px;
    display: inline;
    position: static;
    box-sizing: content-box;
    position: absolute;
    top: -56px;
    left: 254px;
  }
}
@media (min-width: 960px) {
  ul#secondary-menu li:last-child {
    position: static;
  }
}
ul#secondary-menu li:last-child a, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul#secondary-menu li:last-child .ps-link {
  color: white;
  font-size: 14px;
}
@media (min-width: 768px) {
  ul#secondary-menu li:last-child a, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul#secondary-menu li:last-child .ps-link {
    font-size: 16px;
  }
}

ul#secondary-menu li:nth-child(5):after {
  display: none;
}

.region.region-page-top {
  width: 100%;
}
@media (min-width: 768px) {
  .region.region-page-top {
    width: 740px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    height: 56px;
  }
}
@media (min-width: 960px) {
  .region.region-page-top {
    width: 960px;
    right: 50%;
    margin: 0 -480px;
    position: absolute;
    overflow: visible;
    height: auto;
  }
}

#block-site-0 .cart-block-count a, #block-site-0 .cart-block-count .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li #block-site-0 .cart-block-count .ps-link {
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif;
  text-decoration: none;
  font-size: 15px;
  background: rgba(160, 40, 0, 0.72);
  height: 55px;
  line-height: 1.2;
  padding: 0px 5px 0px 38px;
  position: absolute;
  right: auto;
  color: white;
  font-weight: 500;
  width: 50%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  #block-site-0 .cart-block-count a, #block-site-0 .cart-block-count .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li #block-site-0 .cart-block-count .ps-link {
    left: 0;
    padding: 0px 15px 0px 46px;
    font-size: 17px;
    line-height: 56px;
    width: auto;
    display: inline-block;
    box-sizing: content-box;
  }
}
@media (min-width: 960px) {
  #block-site-0 .cart-block-count a, #block-site-0 .cart-block-count .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li #block-site-0 .cart-block-count .ps-link {
    right: 182px;
    left: auto;
  }
}

#block-site-0 .cart-block-count a:before, #block-site-0 .cart-block-count .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:before, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li #block-site-0 .cart-block-count .ps-link:before {
  content: '';
  position: absolute;
  background: url("/sites/all/themes/zen/zen-internals/images/cart.png") no-repeat;
  left: 5px;
  top: 14px;
  display: block;
  width: 28px;
  height: 28px;
}
@media (min-width: 768px) {
  #block-site-0 .cart-block-count a:before, #block-site-0 .cart-block-count .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:before, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li #block-site-0 .cart-block-count .ps-link:before {
    left: 15px;
  }
}

.field-label-checkout-inline {
  display: inline-block;
  min-width: 12%;
}

.uc-orders-table td.order-address {
  white-space: normal;
  font-size: 12px;
  line-height: normal;
}

/* Views slides block */
#block-views-slides-block_1 .views-row img {
  max-width: 100%;
  height: auto;
}

/* Vk on frontpage */
#vk_groups {
  width: 100% !important;
}
#vk_groups iframe {
  width: 100% !important;
}
#vk_groups iframe #main > div {
  width: 100% !important;
}

/* block 15 */
#block-block-15 #vedapuls_content {
  height: 250px;
}
@media (min-width: 768px) {
  #block-block-15 #vedapuls_content {
    height: 490px;
  }
}
#block-block-15 #vedapuls_content ul {
  height: auto;
}
#block-block-15 #vedapuls_content ul .header_baner {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}
#block-block-15 #vedapuls_content ul .header_baner h3 {
  font-size: 16px !important;
  line-height: 1 !important;
}
#block-block-15 #vedapuls_content ul .header_baner p {
  font-size: 14px !important;
  margin-top: 10px !important;
}

/* Frontpage pager */
.view-products-category .pager .pager-item,
.view-products-category .pager .pager-ellipsis,
.view-products-category .pager .pager-last,
.view-products-category .pager .pager-current,
.view-products-category .pager .pager-first,
.view-products .pager .pager-item,
.view-products .pager .pager-ellipsis,
.view-products .pager .pager-last,
.view-products .pager .pager-current,
.view-products .pager .pager-first {
  display: none;
}
@media (min-width: 768px) {
  .view-products-category .pager .pager-item,
  .view-products-category .pager .pager-ellipsis,
  .view-products-category .pager .pager-last,
  .view-products-category .pager .pager-current,
  .view-products-category .pager .pager-first,
  .view-products .pager .pager-item,
  .view-products .pager .pager-ellipsis,
  .view-products .pager .pager-last,
  .view-products .pager .pager-current,
  .view-products .pager .pager-first {
    display: inline;
  }
}
.view-products-category .pager .pager-previous,
.view-products .pager .pager-previous {
  float: left;
  padding: 0;
}
@media (min-width: 768px) {
  .view-products-category .pager .pager-previous,
  .view-products .pager .pager-previous {
    float: none;
    padding: 0.5em;
  }
}
.view-products-category .pager .pager-previous a, .view-products-category .pager .pager-previous .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .view-products-category .pager .pager-previous .ps-link,
.view-products .pager .pager-previous a,
.view-products .pager .pager-previous .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .view-products .pager .pager-previous .ps-link {
  height: 40px;
  background-color: #c1c6af;
  display: inline-block;
  padding: 0 20px;
  border-radius: 5px;
  text-align: center;
  white-space: nowrap;
  line-height: 40px;
}
@media (min-width: 768px) {
  .view-products-category .pager .pager-previous a, .view-products-category .pager .pager-previous .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .view-products-category .pager .pager-previous .ps-link,
  .view-products .pager .pager-previous a,
  .view-products .pager .pager-previous .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link,
  .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .view-products .pager .pager-previous .ps-link {
    height: auto;
    background-color: transparent;
    display: inline;
    padding: 0.5em;
    border-radius: 0;
    line-height: 1.286em;
  }
}
.view-products-category .pager .pager-next,
.view-products .pager .pager-next {
  float: right;
  padding: 0;
}
@media (min-width: 768px) {
  .view-products-category .pager .pager-next,
  .view-products .pager .pager-next {
    float: none;
    padding: 0.5em;
  }
}
.view-products-category .pager .pager-next a, .view-products-category .pager .pager-next .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .view-products-category .pager .pager-next .ps-link,
.view-products .pager .pager-next a,
.view-products .pager .pager-next .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link,
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .view-products .pager .pager-next .ps-link {
  height: 40px;
  background-color: #c1c6af;
  display: inline-block;
  padding: 0 20px;
  border-radius: 5px;
  text-align: center;
  white-space: nowrap;
  line-height: 40px;
}
@media (min-width: 768px) {
  .view-products-category .pager .pager-next a, .view-products-category .pager .pager-next .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .view-products-category .pager .pager-next .ps-link,
  .view-products .pager .pager-next a,
  .view-products .pager .pager-next .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link,
  .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .view-products .pager .pager-next .ps-link {
    height: auto;
    background-color: transparent;
    display: inline;
    padding: 0.5em;
    border-radius: 0;
    line-height: 1.286em;
  }
}

/* Oter block on sidebar (with img) */
#block-views-exclusives-block_1 .views-field-field-exclusive-image-fid {
  text-align: center;
}
@media (min-width: 768px) {
  #block-views-exclusives-block_1 .views-field-field-exclusive-image-fid {
    text-align: left;
  }
}

#block-block-13 img,
#block-block-14 img {
  margin: auto;
  display: block;
}
@media (min-width: 768px) {
  #block-block-13 img,
  #block-block-14 img {
    margin: 0;
    display: inline;
  }
}

/* Map block */
#block-store_map-0 #map {
  width: 100% !important;
  height: 400px !important;
}
@media (min-width: 768px) {
  #block-store_map-0 #map {
    width: 690px !important;
    height: 690px !important;
  }
}

/* Partners table */
.view-linkpartners .view-content h3 {
  text-align: center;
}
@media (min-width: 768px) {
  .view-linkpartners .view-content h3 {
    text-align: left;
  }
}
.view-linkpartners table {
  display: block;
}
@media (min-width: 768px) {
  .view-linkpartners table {
    display: table;
  }
}
.view-linkpartners table tbody {
  display: block;
}
@media (min-width: 768px) {
  .view-linkpartners table tbody {
    display: table-row-group;
  }
}
.view-linkpartners table tr {
  display: block;
}
@media (min-width: 768px) {
  .view-linkpartners table tr {
    display: table-row;
  }
}
.view-linkpartners table tr td {
  display: block;
  text-align: center;
  padding: 0;
}
@media (min-width: 768px) {
  .view-linkpartners table tr td {
    display: table-cell;
    text-align: left;
    padding: 10px;
  }
}
.view-linkpartners table tr td img {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .view-linkpartners table tr td img {
    margin-bottom: 0;
  }
}

/* Node imgs */
.node img {
  max-width: 100%;
  height: auto;
}

/* Cart */
.page-cart .messages.error {
  padding: 15px 20px;
  background-color: #ffb0b0;
  border-radius: 5px;
  margin-bottom: 20px;
  display: block;
  line-height: 1.2;
}
.page-cart #cart-form-products .sticky-header {
  display: none;
}
.page-cart #cart-form-products thead {
  display: none;
}
@media (min-width: 768px) {
  .page-cart #cart-form-products thead {
    display: table-header-group;
  }
}
.page-cart #cart-form-products td {
  padding: 10px 5px;
}
@media (min-width: 768px) {
  .page-cart #cart-form-products td {
    padding: 10px;
  }
}
.page-cart #cart-form-products .image {
  display: none;
}
@media (min-width: 768px) {
  .page-cart #cart-form-products .image {
    display: table-cell;
  }
}
.page-cart #cart-form-products .remove {
  vertical-align: middle;
}
@media (min-width: 768px) {
  .page-cart #cart-form-products .remove {
    vertical-align: top;
  }
}
.page-cart #cart-form-products .remove .form-submit {
  text-indent: -999em;
  padding: 0;
  width: 20px;
  height: 20px;
  border: 0;
  background: url("../images/remove.svg") no-repeat center center/cover;
  border-radius: 0;
}
@media (min-width: 768px) {
  .page-cart #cart-form-products .remove .form-submit {
    text-indent: 0;
    width: auto;
    height: auto;
    border-width: 2px;
    border-style: outset;
    border-color: buttonface;
    border-image: initial;
    border-bottom: 3px solid #5C8229;
    padding: 4px;
    padding-bottom: 1px;
    background: #5da301;
    border-radius: 4px;
  }
}
.page-cart #cart-form-buttons #update-checkout-buttons {
  text-align: center;
  float: none;
  margin: 10px 0 0;
}
@media (min-width: 768px) {
  .page-cart #cart-form-buttons #update-checkout-buttons {
    text-align: left;
    float: right;
    margin: 0;
  }
}
.page-cart #cart-form-buttons #update-checkout-buttons .form-submit {
  margin: 0 0 10px;
}
@media (min-width: 768px) {
  .page-cart #cart-form-buttons #update-checkout-buttons .form-submit {
    margin: 0.5em 0.5em 0.5em 0;
  }
}
.page-cart #cart-form-buttons #continue-shopping-button {
  text-align: center;
  margin: 0;
}
@media (min-width: 768px) {
  .page-cart #cart-form-buttons #continue-shopping-button {
    text-align: left;
    margin: 0 100% 0 0.5em;
  }
}
.page-cart #cart-form-buttons #continue-shopping-button .form-submit {
  margin: 0 0 10px;
}
@media (min-width: 768px) {
  .page-cart #cart-form-buttons #continue-shopping-button .form-submit {
    margin: 0.5em 0.5em 0.5em 0;
  }
}

/* Menu sandwich */
.menu-sandwich {
  width: 50px;
  height: 60px;
  background: url("../images/sandwich.png") no-repeat center center rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
}
@media (min-width: 768px) {
  .menu-sandwich {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(370px);
  }
}
@media (min-width: 768px) {
  .menu-sandwich {
    position: static;
    display: none;
    transform: none;
  }
}

body.sandwich-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  .menu-sandwich__wrapper {
    display: none;
  }
}
.menu-sandwich__wrapper .menu-sandwich__layout {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  visibility: hidden;
  transition: all 0.6s;
  opacity: 0;
}
.menu-sandwich__wrapper.open .menu-sandwich__layout {
  opacity: 1;
  visibility: visible;
}
.menu-sandwich__wrapper.open .menu-sandwich__wrapper-menu {
  right: 0;
}
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu {
  width: 60%;
  height: 100%;
  position: fixed;
  z-index: 1001;
  top: 0;
  right: -100%;
  background-color: #ffffff;
  transition: right 0.6s;
  padding: 40px 0;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .menu-sandwich__wrapper .menu-sandwich__wrapper-menu {
    width: 300px;
  }
}
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul {
  padding: 0;
  margin: 0;
  float: none;
  text-align: center;
}
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul#menu-mobile {
  overflow-y: auto;
  height: 100%;
}
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li {
  display: block;
  padding: 5px 0;
  margin: 0;
}
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li.active-trail {
  border-right: 3px solid #CD6F36;
  background-color: #eeeeee;
}
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li a, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link {
  color: #323232;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  text-decoration: none;
}
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link {
  position: relative;
  cursor: pointer;
}
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link:after {
  content: '';
  border-top: 5px solid #323232;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  width: 0;
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
}
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link + .sf-menu {
  transition: max-height 0.6s;
  overflow: hidden;
  height: auto;
  max-height: 0;
  display: block !important;
  border: 0;
}
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link + .sf-menu.open {
  max-height: 500px;
}
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link + .sf-menu li {
  height: auto;
  display: block;
  width: 100%;
  border: 0;
  padding: 5px 0;
  position: relative;
}
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link + .sf-menu li:hover {
  background: none;
  border: 0;
}
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link + .sf-menu li:hover a, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li:hover .ps-link + .sf-menu li:hover .ps-link {
  background: none;
  border: 0;
}
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link + .sf-menu li a, .menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link + .sf-menu li .ps-link {
  padding: 0;
  margin: 0;
  border: 0;
  font-weight: normal;
  color: #373737;
  text-shadow: none;
  text-transform: none;
  font-size: 14px;
}
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link + .sf-menu li span.menuparent {
  padding: 0;
  margin: 0;
  border: 0;
  font-weight: normal;
  color: #373737;
  text-shadow: none;
  text-transform: none;
  font-family: 'Roboto Condensed', sans-serif;
  position: relative;
}
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link + .sf-menu li span.menuparent:after {
  content: '';
  border-top: 5px solid #323232;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  width: 0;
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
}
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link + .sf-menu li span.menuparent + ul {
  transition: all 0.6s;
  overflow: hidden;
  height: auto;
  max-height: 0;
  display: block !important;
  border: 0;
  visibility: visible !important;
  background: #eeeeee;
  position: static;
  padding: 0 !important;
}
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link + .sf-menu li span.menuparent + ul.open {
  max-height: 500px;
  margin: 5px 0 0 !important;
}
.menu-sandwich__wrapper .menu-sandwich__wrapper-menu ul li .ps-link + .sf-menu li span.menuparent + ul li {
  background: none;
}

/* Page checkout */
.page-cart-checkout #delivery-pane .address-pane-table {
  width: 100%;
}
@media (min-width: 768px) {
  .page-cart-checkout #delivery-pane .address-pane-table {
    width: 95%;
  }
}
.page-cart-checkout #delivery-pane .address-pane-table select {
  width: 100%;
}
@media (min-width: 768px) {
  .page-cart-checkout #delivery-pane .address-pane-table select {
    width: auto;
  }
}
.page-cart-checkout #delivery-pane .address-pane-table input {
  box-sizing: border-box;
}
.page-cart-checkout #quotes-pane .fieldset-wrapper {
  text-align: center;
}
@media (min-width: 768px) {
  .page-cart-checkout #quotes-pane .fieldset-wrapper {
    text-align: left;
  }
}
.page-cart-checkout #quotes-pane input.form-submit {
  padding: 0 25px;
}
@media (min-width: 768px) {
  .page-cart-checkout #quotes-pane input.form-submit {
    padding: 4px;
  }
}
.page-cart-checkout #checkout-form-bottom {
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .page-cart-checkout #checkout-form-bottom {
    text-align: right;
    margin-bottom: 0;
  }
}
.page-cart-checkout #checkout-form-bottom input.form-submit {
  margin-bottom: 0;
  margin-right: 0;
  padding: 0 25px;
}
@media (min-width: 768px) {
  .page-cart-checkout #checkout-form-bottom input.form-submit {
    padding: 4px;
    margin: 0;
  }
}

/* Page review */
.page-cart-checkout-review #uc-cart-checkout-review-form {
  text-align: center;
}
.page-cart-checkout-review #uc-cart-checkout-review-form > div {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .page-cart-checkout-review #uc-cart-checkout-review-form > div {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .page-cart-checkout-review #uc-cart-checkout-review-form {
    text-align: right;
  }
}
.page-cart-checkout-review #uc-cart-checkout-review-form input.form-submit {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .page-cart-checkout-review #uc-cart-checkout-review-form input.form-submit {
    margin-bottom: 0;
  }
}

/* Page user order history */
body.uc-order-history #content #content-area {
  overflow-x: auto;
}

/* Admin orders */
.page-admin-store-orders-view #content .uc-orders-table {
  display: block;
  overflow-x: auto;
}

/* Block payments */
.page-delivery .payments-block .payments {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.page-delivery .payments-block .payments .payment {
  margin-right: 12px;
}
.page-delivery .payments-block .payments .payment img {
  height: 30px;
  width: auto;
}

.views-field-weight ~ .views-field-sell-price, .views-field-field-expiration-value ~ .views-field-sell-price {
  margin-top: 20px;
}

.views-field-field-expiration-value {
  margin-top: 20px;
}

.views-field-weight {
  margin-top: 20px;
}
.views-field-weight + .views-field-field-expiration-value {
  margin-top: 0;
}

/*Start view attachment*/
.sidebar-second .view-products-category.view-display-id-attachment_1 .view-content .views-row {
  width: 100%;
  margin-right: 23px;
  min-height: auto;
}
@media (max-width: 960px) {
  .sidebar-second .view-products-category.view-display-id-attachment_1 .view-content .views-row {
    margin-right: auto;
  }
}
/*End view attachment*/

.custom-user-login {
  display: none;
}
@media (min-width: 960px) {
  body ul#secondary-menu li.menu-613 {
    display: none;
  }
  .page-top-inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  body ul#secondary-menu {
    width: 530px;
    margin: 0;
  }
  body #block-site-0 .cart-block-count a {
    position: static;
  }
  body ul#secondary-menu li {
    padding: 0 0.3em;
  }
  .region.region-page-top {
    position: static;
    margin: 0;
    width: 430px;
    display: inline-flex;
  }
  .page-top-inner {
    max-width: 960px;
    margin: auto;
  }
  .block .custom-user-login {
    display: inline-block;
    height: 55px;
    line-height: 55px;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    text-decoration: none;
    padding: 0 15px;
    background: rgba(0, 0, 0, 0.35);

  }
}

.menu .expanded {
  position: relative;
  list-style-image: none;
  list-style: none;
  display: inline-block;

}
.region-visuals #block-menu-primary-links ul li.expanded a {
  padding-top: 0.35em;
}

.menu .expanded > a {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1em;
  color: #fff;
  padding: .35em;
}
.menu .expanded > .menu {
  max-height: 0px;
  overflow: hidden;
  position: absolute;
  top: 48px;
  left: 4px;
  z-index: 100;
  transition: max-height 0.5s ease;
  width: 200px;

}
.menu .expanded:hover > .menu {
  max-height: 400px;
}

.region-visuals #block-menu-primary-links ul {
  padding: 0;
}

#block-menu-primary-links ul li {
  padding: 8px 5px;
}
#block-menu-primary-links .content > ul > li > a {
  border: 1px solid transparent;
}
#block-menu-primary-links .content > ul > li:hover > a {
  background: #ab493c;
  border: 1px solid #8c3b08;
  outline: 1px solid #fb7421;
}
#block-menu-primary-links .content > ul > li > a {
  display: inline-block;

}

#block-menu-primary-links ul li.expanded li {
  padding: 7px 0px 4px 10px;
  background-color: #ab493c;
  width: 100%;
  border-bottom: 1px solid #fff;
  transition: all 0.5s ease;
  text-align: left;
  font-size: 14px;
  box-sizing: border-box;
}

#block-menu-primary-links ul li.expanded li.first {
  border-top: 1px solid #fff;
}

#block-menu-primary-links ul li.expanded li.active-trail {
  background: #8d8779;
}
.region-visuals #block-menu-primary-links ul li.expanded ul li:hover {
  background: #8d8779;
}
.region-visuals #block-menu-primary-links ul li.expanded a.active {
  background: transparent;
}
.region-visuals #block-menu-primary-links {
  padding: 0;
}
.region-visuals #block-menu-primary-links ul li:after {
  top: 20px;
  right: -5px;
}
.region-visuals #block-menu-primary-links ul li.first:after {
  top: 14px;
}

#block-superfish-1 {
  background: url(/sites/all/themes/zen/zen-internals/images/nav-bg.jpg);
  padding: 0 33px;
  box-sizing: border-box;
}

#block-superfish-1:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 15px;
  height: 13px;
  background: #E8E8D3;
  border-radius: 0px 0px 0px 100%;
}

#block-superfish-1:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 15px;
  height: 13px;
  background: #E8E8D3;
  border-radius: 0px 0px 100% 0px;
}

.sf-menu.sf-style-ayurveda li.sf-depth-1 {
  border: none;
}

.sf-primary-links {
  border: none;
}

.sf-menu.sf-style-ayurveda li.sf-depth-1:after {
  content: '';
  position: absolute;
  top: 19px;
  right: -6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FC0;
}
.sf-menu.sf-style-ayurveda li.sf-depth-1.last::after {
  content: none;
}
.sf-menu.sf-style-ayurveda a, .sf-menu.sf-style-ayurveda a:visited {
  text-shadow: none;
}

.region-visuals #block-menu-primary-links {
  display: none;
}
.menu-sandwich {
  height: 55px;
  top: 16px;
}
@media (max-width: 960px) {
  #block-superfish-1 {
    margin: 0;
    width: 740px;
    overflow: hidden;
  }

}
@media (max-width: 768px) {
  #block-superfish-1 {
    display: none;
  }
}


#block-views-reviews-block_2 {
  margin-top: 30px;
}


/* Banner */
#block-views-banner-block_1 {
  position: relative;
  padding: 10px;
  height: 130px;
  color: #ffffff;
  overflow: hidden;
}
#block-views-banner-block_1 .views-field-field-not-img-fid {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
#block-views-banner-block_1 .views-field-field-not-img-fid::before {
  content: "";
  background: rgba(0,0,0,0.6);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
}
#block-views-banner-block_1 .views-field-field-front-text-value {
  position: relative;
  z-index: 3;
  margin-bottom: 10px;
  clear: both;
}
#block-views-banner-block_1 .views-field-created {
  display: none;
}
#block-views-banner-block_1 .views-field-view-node {
  display: none;
}
#block-views-banner-block_1 .title {
  position: relative;
  z-index: 3;
  color: #ffffff;
  margin-bottom: 15px;
}
#block-views-banner-block_1 .views-field-view-node-1 a {
  text-indent: -999px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  text-decoration: none;
}

@media (min-width: 768px) {

  #block-views-banner-block_1 {
    height: 100px;
  }

  .one-sidebar #block-views-banner-block_1 {
    height: 120px;
  }
}

@media (min-width: 960px) {

  #block-views-banner-block_1 {
    position: relative;
    padding: 10px;
    height: 100px;
    color: #ffffff;
    overflow: hidden;
  }
  #block-views-banner-block_1 .views-field-created {
    position: relative;
    z-index: 3;
    color: #aeaaa1;
    float: left;
    display: block;
  }
  #block-views-banner-block_1 .views-field-view-node {
    position: relative;
    z-index: 3;
    float: right;
    display: block;
  }
  #block-views-banner-block_1 .views-field-view-node a {
    color: #cb8257;
    font-weight: 600;
  }
}

.node-type-banner .field-field-front-text {
  margin-top: 10px;
  margin-bottom: 20px;
}
