/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
/*
 * 12-column grid system
 */
/* Grid units
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*/
.grid12-1,
.grid12-2,
.grid12-3,
.grid12-4,
.grid12-5,
.grid12-6,
.grid12-7,
.grid12-8,
.grid12-9,
.grid12-10,
.grid12-11,
.grid12-12,
.grid-full,
.grid-col2-sidebar,
.grid-col2-main {
  /*position:relative;*/
  display: inline;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
}
/* Basic grid units width */
.grid12-1 {
  width: 6.33%;
}
.grid12-2 {
  width: 14.66%;
}
.grid12-3 {
  width: 23%;
}
.grid12-4 {
  width: 31.33%;
}
.grid12-5 {
  width: 39.67%;
}
.grid12-6 {
  width: 48%;
}
.grid12-7 {
  width: 56.33%;
}
.grid12-8 {
  width: 64.67%;
}
.grid12-9 {
  width: 73%;
}
.grid12-10 {
  width: 81.33%;
}
.grid12-11 {
  width: 89.67%;
}
.grid12-12,
.grid-full {
  width: 98%;
}
/* Grid units without left gutter (margin) */
.no-left-gutter.grid12-1 {
  margin-left: 0;
  width: 7.33%;
}
.no-left-gutter.grid12-2 {
  margin-left: 0;
  width: 15.66%;
}
.no-left-gutter.grid12-3 {
  margin-left: 0;
  width: 24%;
}
.no-left-gutter.grid12-4 {
  margin-left: 0;
  width: 32.33%;
}
.no-left-gutter.grid12-5 {
  margin-left: 0;
  width: 40.67%;
}
.no-left-gutter.grid12-6 {
  margin-left: 0;
  width: 49%;
}
.no-left-gutter.grid12-7 {
  margin-left: 0;
  width: 57.33%;
}
.no-left-gutter.grid12-8 {
  margin-left: 0;
  width: 65.67%;
}
.no-left-gutter.grid12-9 {
  margin-left: 0;
  width: 74%;
}
.no-left-gutter.grid12-10 {
  margin-left: 0;
  width: 82.33%;
}
.no-left-gutter.grid12-11 {
  margin-left: 0;
  width: 90.67%;
}
.no-left-gutter.grid12-12,
.no-left-gutter.grid-full {
  margin-left: 0;
  width: 99%;
}
/* Grid units without right gutter (margin) */
.no-right-gutter.grid12-1 {
  margin-right: 0;
  width: 7.33%;
}
.no-right-gutter.grid12-2 {
  margin-right: 0;
  width: 15.66%;
}
.no-right-gutter.grid12-3 {
  margin-right: 0;
  width: 24%;
}
.no-right-gutter.grid12-4 {
  margin-right: 0;
  width: 32.33%;
}
.no-right-gutter.grid12-5 {
  margin-right: 0;
  width: 40.67%;
}
.no-right-gutter.grid12-6 {
  margin-right: 0;
  width: 49%;
}
.no-right-gutter.grid12-7 {
  margin-right: 0;
  width: 57.33%;
}
.no-right-gutter.grid12-8 {
  margin-right: 0;
  width: 65.67%;
}
.no-right-gutter.grid12-9 {
  margin-right: 0;
  width: 74%;
}
.no-right-gutter.grid12-10 {
  margin-right: 0;
  width: 82.33%;
}
.no-right-gutter.grid12-11 {
  margin-right: 0;
  width: 90.67%;
}
.no-right-gutter.grid12-12,
.no-right-gutter.grid-full {
  margin-right: 0;
  width: 99%;
}
/* Grid units without any gutter (margin) */
.no-gutter.grid12-1 {
  margin-left: 0;
  margin-right: 0;
  width: 8.33%;
}
.no-gutter.grid12-2 {
  margin-left: 0;
  margin-right: 0;
  width: 16.66%;
}
.no-gutter.grid12-3 {
  margin-left: 0;
  margin-right: 0;
  width: 25%;
}
.no-gutter.grid12-4 {
  margin-left: 0;
  margin-right: 0;
  width: 33.33%;
}
.no-gutter.grid12-5 {
  margin-left: 0;
  margin-right: 0;
  width: 41.67%;
}
.no-gutter.grid12-6 {
  margin-left: 0;
  margin-right: 0;
  width: 50%;
}
.no-gutter.grid12-7 {
  margin-left: 0;
  margin-right: 0;
  width: 58.33%;
}
.no-gutter.grid12-8 {
  margin-left: 0;
  margin-right: 0;
  width: 66.67%;
}
.no-gutter.grid12-9 {
  margin-left: 0;
  margin-right: 0;
  width: 75%;
}
.no-gutter.grid12-10 {
  margin-left: 0;
  margin-right: 0;
  width: 83.33%;
}
.no-gutter.grid12-11 {
  margin-left: 0;
  margin-right: 0;
  width: 91.67%;
}
.no-gutter.grid12-12,
.no-gutter.grid-full {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
/* Special grid units: basic structure of pages with 1 and 2 sidebars
-------------------------------------------------------------- */
/* 2 columns: fixed-width sidebar unit and fluid main unit.
   Sidebar unit has the same width for all screen sizes equal or greater than 1280px.
   Width of the main unit is fluid.
*/
.grid-col2-sidebar {
  width: 23%;
}
.grid-col2-main {
  width: 73%;
}
.no-gutter.grid-col2-sidebar {
  margin-left: 0;
  margin-right: 0;
  width: 25%;
}
.no-gutter.grid-col2-main {
  margin-left: 0;
  margin-right: 0;
  width: 75%;
}
/* Another 2 columns inside ".grid-col2-main": fixed-width sidebar unit and fluid main unit */
.grid-col3-sidebar {
  width: 31.52%;
}
.grid-col3-main {
  width: 65.90%;
}
.no-gutter.grid-col3-sidebar {
  margin-left: 0;
  margin-right: 0;
  width: 31.52%;
}
.no-gutter.grid-col3-main {
  margin-left: 0;
  margin-right: 0;
  width: 65.90%;
}
/* Vertically aligned grid
-------------------------------------------------------------- */
.v-grid-container {
  display: table;
  width: 100%;
}
.v-grid {
  float: none;
  display: table-cell;
  vertical-align: middle;
}
/* Utility classes
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*/
/* Units with no gutter (margin): alpha - first unit in a row, omega - last unit in a row */
.alpha {
  margin-left: 0;
}
.omega {
  margin-right: 0;
}
/* Hide element if screen width is lower than the width specified in the class name */
.hide-below-1680 {
  display: none !important;
}
.hide-below-1440 {
  display: none !important;
}
.hide-below-1360 {
  display: none !important;
}
.hide-below-1280 {
  display: none !important;
}
/* Containers
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*/
/* Main container for page content.
   Max width of the page is applied to elements with this class.
-------------------------------------------------------------- */
.container {
  margin-left: auto;
  margin-right: auto;
}
.nested-container {
  width: 102%;
  margin-left: -1%;
}
/* Deprecated */
/* Inner container.
   Additional container, horizontal padding is applied to elements with this class.
-------------------------------------------------------------- */
.inner-container {
  padding-left: 15px;
  padding-right: 15px;
  /* Clear floats */
  *zoom: 1;
  clear: both;
}
/* Clear floats */
.inner-container:before,
.inner-container:after {
  display: table;
  line-height: 0;
  content: "";
}
.inner-container:after {
  clear: both;
}
/* Full width container
-------------------------------------------------------------- */
.container.full-width {
  width: 100%;
  max-width: none;
}
/* Expanded container (without inner side padding)
-------------------------------------------------------------- */
.container.no-side-padding > .inner-container {
  padding-left: 0;
  padding-right: 0;
}
/* Grid units containers
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*/
/* Grid units container:
   clears floats (place grid units inside "div" with this class)
-------------------------------------------------------------- */
.grid-container {
  *zoom: 1;
  clear: both;
}
.grid-container:before,
.grid-container:after {
  display: table;
  line-height: 0;
  content: "";
}
.grid-container:after {
  clear: both;
}
/* Grid unit container:
   clears floats and adds vertical margin between units
-------------------------------------------------------------- */
.grid-container-spaced {
  *zoom: 1;
  clear: both;
}
.grid-container-spaced:before,
.grid-container-spaced:after {
  display: table;
  line-height: 0;
  content: "";
}
.grid-container-spaced:after {
  clear: both;
}
.grid-container-spaced .grid12-1,
.grid-container-spaced .grid12-2,
.grid-container-spaced .grid12-3,
.grid-container-spaced .grid12-4,
.grid-container-spaced .grid12-5,
.grid-container-spaced .grid12-6,
.grid-container-spaced .grid12-7,
.grid-container-spaced .grid12-8,
.grid-container-spaced .grid12-9,
.grid-container-spaced .grid12-10,
.grid-container-spaced .grid12-11,
.grid-container-spaced .grid12-12,
.grid-container-spaced .grid-full {
  margin-bottom: 2%;
}
/* Grid presentation
-------------------------------------------------------------- */
.show-grid [class*="grid12-"] {
  background-color: #eee;
  text-align: center;
  min-height: 40px;
  line-height: 40px;
  transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}
.show-grid [class*="grid12-"]:hover {
  background-color: #F08080;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Black.eot');
  src: url('../fonts/Roboto-Black.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Black.woff2') format('woff2'), url('../fonts/Roboto-Black.woff') format('woff'), url('../fonts/Roboto-Black.ttf') format('truetype'), url('../fonts/Roboto-Black.svg#Roboto-Black') format('svg');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Light.eot');
  src: url('../fonts/Roboto-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Light.woff2') format('woff2'), url('../fonts/Roboto-Light.woff') format('woff'), url('../fonts/Roboto-Light.ttf') format('truetype'), url('../fonts/Roboto-Light.svg#Roboto-Light') format('svg');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Bold.eot');
  src: url('../fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Bold.woff2') format('woff2'), url('../fonts/Roboto-Bold.woff') format('woff'), url('../fonts/Roboto-Bold.ttf') format('truetype'), url('../fonts/Roboto-Bold.svg#Roboto-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Medium.eot');
  src: url('../fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Medium.woff2') format('woff2'), url('../fonts/Roboto-Medium.woff') format('woff'), url('../fonts/Roboto-Medium.ttf') format('truetype'), url('../fonts/Roboto-Medium.svg#Roboto-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.eot');
  src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Regular.woff2') format('woff2'), url('../fonts/Roboto-Regular.woff') format('woff'), url('../fonts/Roboto-Regular.ttf') format('truetype'), url('../fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Thin.eot');
  src: url('../fonts/Roboto-Thin.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Thin.woff2') format('woff2'), url('../fonts/Roboto-Thin.woff') format('woff'), url('../fonts/Roboto-Thin.ttf') format('truetype'), url('../fonts/Roboto-Thin.svg#Roboto-Thin') format('svg');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: 'Roboto', sans-serif;
  color: #121212;
}
h1,
.h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #121212;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}
h2,
.h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #121212;
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}
h3,
.h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #121212;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}
h4,
.h4 {
  margin: 0;
  margin-bottom: 10px;
  color: #121212;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}
h5,
.h5 {
  margin: 0;
  margin-bottom: 10px;
  color: #121212;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}
h6,
.h6 {
  margin: 0;
  margin-bottom: 5px;
  color: #121212;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}
a,
.alink {
  color: #e53d46;
  text-decoration: none;
}
a:visited,
.alink:visited {
  color: #e53d46;
  text-decoration: none;
}
a:hover,
.alink:hover {
  color: #2e8ab8;
  text-decoration: underline;
}
ul,
ol {
  padding-left: 0;
  list-style: none;
}
input[type="text"],
input[type="password"],
input[type="url"],
input[type="tel"],
input[type="search"],
input[type="number"],
input[type="datetime"],
input[type="email"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #FFFFFF;
  font-size: 15px;
  border: 1px solid #524a48;
  border-radius: 0;
  height: 32px;
  padding: 0 12px;
  font-family: 'Roboto', sans-serif;
}
textarea {
  overflow: none;
  vertical-align: top;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: normal;
}
::-webkit-input-placeholder {
  color: #a0a0a0 !important;
}
input:-moz-placeholder {
  color: #a0a0a0 !important;
  opacity: 1;
}
input[type=number] {
  -moz-appearance: textfield;
}
._keyfocus *:focus {
  box-shadow: none;
}
input:not([disabled]):focus {
  box-shadow: none;
}
textarea:not([disabled]):focus {
  box-shadow: none;
}
select:not([disabled]):focus {
  box-shadow: none;
}
.cms-page-view .column.main p {
  color: #121212;
  font-size: 14px;
  line-height: 24px;
  margin: 0 0 10px;
}
.cms-page-view .page-main ul {
  padding-left: 0;
}
.cms-page-view .page-main ul li {
  list-style: disc;
  margin-left: 20px;
}
.cms-page-view .page-main ol {
  padding-left: 0;
  list-style: decimal;
}
.cms-page-view .page-main ol li {
  list-style: inherit;
  margin-left: 20px;
  padding-left: 0;
}
@media (min-width: 768px) {
  .page-header .header.panel,
  .header.content,
  .footer.content,
  .page-wrapper > .widget,
  .page-wrapper > .page-bottom,
  .block.category.event,
  .top-container,
  .page-main,
  .cust-inner-container {
    max-width: 1280px !important;
    margin: 0 auto;
  }
  .cms-home .page-main {
    max-width: 100% !important;
  }
  .breadcrumbs {
    max-width: 1280px !important;
  }
  .navigation {
    max-width: 1310px !important;
  }
}
@media print {
  .navigation,
  .page-header .header.panel,
  .header.content,
  .footer.content,
  .page-wrapper > .widget,
  .page-wrapper > .page-bottom,
  .block.category.event,
  .top-container,
  .page-main,
  .cust-inner-container {
    max-width: 1280px !important;
    margin: 0 auto;
  }
  .cms-home .page-main {
    max-width: 100% !important;
  }
  .breadcrumbs {
    max-width: 1280px !important;
  }
  .navigation {
    max-width: 1310px !important;
  }
}
.navigation,
.page-header .header.panel,
.header.content,
.footer.content,
.page-wrapper > .widget,
.page-wrapper > .page-bottom,
.block.category.event,
.top-container,
.page-main,
.cust-inner-container {
  padding: 0 15px !important;
  box-sizing: border-box;
}
.header.panel > .header.links {
  display: block !important;
  font-size: 12px !important;
  float: none !important;
}
.header.panel > .header.links > li {
  display: none !important;
}
.page-header .panel.wrapper {
  padding: 4px 0 !important;
  background: #E8ECEE;
  border-bottom: 0 !important;
}
.header-top-left {
  float: right;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}
.header-top-left li {
  float: left;
  margin-right: 11px;
  margin-bottom: 0;
  line-height: 22px !important;
}
.header-top-left li:first-child:before {
  content: "\f03e";
  font-size: 20px;
  font-family: FontAwesome;
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
  margin-top: 2px;
}
.header-top-left li:last-child {
  margin-right: 0;
}
.header-top-left li:last-child:after {
  display: none;
}
.header-top-left li:after {
  content: "";
  width: 1px;
  height: 13px;
  background: #112743;
  display: inline-block;
  vertical-align: middle;
  margin-left: 11px;
}
.header-top-left li a {
  font: 13px 'Roboto', arial, helvetica, sans-serif;
  font-weight: 400;
  color: #112743;
  text-transform: none;
  transition: all 0.5s;
  vertical-align: middle;
}
.header-top-left li a:hover {
  color: #e53d46;
  text-decoration: none;
}
.header-top-left li .fa {
  font-size: 20px;
  vertical-align: top;
  margin-right: 5px;
  margin-top: 2px;
}
.header-top-right {
  float: left;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}
.header-top-right li {
  float: left;
  margin-left: 22px !important;
  margin-bottom: 0;
  line-height: 22px !important;
}
.header-top-right li a {
  font: 13px 'Roboto', arial, helvetica, sans-serif;
  font-weight: 400;
  color: #112743;
  text-transform: none;
  transition: all 0.5s;
}
.header-top-right li a:hover {
  color: #e53d46;
  text-decoration: none;
}
.header-top-right li .fa {
  font-size: 20px;
  vertical-align: middle;
  margin-right: 5px;
}
.breadcrumbs {
  overflow: hidden;
  margin-bottom: 15px;
  padding: 5px 15px !important;
  border-bottom: 1px solid #e8ecee;
}
.breadcrumbs .items > li {
  line-height: normal;
}
.breadcrumbs .item:not(:last-child):after {
  width: 9px;
  text-indent: -7px;
}
.breadcrumbs a {
  float: left;
  color: #121212;
  font: 13px 'Roboto', sans-serif;
  text-transform: none;
}
.breadcrumbs a:hover {
  color: #3399cc;
}
.breadcrumbs strong {
  color: #3190c4;
  font: 13px 'Roboto', sans-serif;
  text-transform: none;
}
.page-main > .page-title-wrapper .page-title {
  font-size: 24px;
  font-weight: 400;
  color: #121212;
  margin-bottom: 15px;
}
.nav-sections {
  margin-bottom: 0 !important;
  background: #232830;
  /** background: #dc6e92; OCT**/
  /** background: #e53d46; XMAS**/
}
.page-header-container .navigation .level0.active > a:not(.ui-state-active) {
  border-left: 0;
  border-bottom: 1px solid #cccccc;
}
.page-header-container .navigation .level0.active > a:not(.ui-state-active) span:not(.ui-menu-icon) {
  margin-left: 0;
}
.page-header-container .navigation .level0.has-active > a:not(.ui-state-active) {
  border-left: 0;
  border-bottom: 1px solid #cccccc;
}
.page-header-container .navigation .level0.has-active > a:not(.ui-state-active) span:not(.ui-menu-icon) {
  margin-left: 0;
}
/*============================= Navigation Start ==================================*/
@media (min-width: 768px) {
  .nav-sections-item-content .page-header-container {
    position: relative;
    max-width: 1310px !important;
    margin: 0 auto;
    padding: 0 !important;
    background: transparent;
  }
  .nav-sections-item-content .page-header-container .menuLinksTrigger {
    display: none;
  }
  .nav-sections-item-content #desktop_nav {
    display: block;
  }
  .nav-sections-item-content .cats .navigation {
    display: none;
  }
  .nav-sections-item-content .page-header.menu-bar {
    display: block;
  }
}
@media print {
  .nav-sections-item-content .page-header-container {
    position: relative;
    max-width: 1310px !important;
    margin: 0 auto;
    padding: 0 !important;
    background: transparent;
  }
  .nav-sections-item-content .page-header-container .menuLinksTrigger {
    display: none;
  }
  .nav-sections-item-content #desktop_nav {
    display: block;
  }
  .nav-sections-item-content .cats .navigation {
    display: none;
  }
  .nav-sections-item-content .page-header.menu-bar {
    display: block;
  }
}
.navigation .cats {
  float: left;
}
.navigation .browse-prod {
  background: #3190c4;
  height: 44px;
  display: inline-block;
  line-height: 44px;
  padding: 0 0 0 15px;
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  cursor: pointer;
  width: 182px;
  white-space: nowrap;
  text-align: left;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-sizing: border-box;
}
.navigation .browse-prod:hover {
  background: #e53d46;
  /** background: #7cb642; XMAS**/
}
.navigation .browse-prod .fa {
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 13px;
}
.navigation .menuLinks {
  float: right;
  margin: 0;
  width: calc(100% - 210px);
  text-align: left;
}
.navigation .menuLinks a {
  font-size: 16px;
  color: #fff;
  display: inline-block;
  margin-left: calc((100% - 700px) / 4);
  line-height: 44px;
  font-weight: normal;
}
.navigation .menuLinks a:hover {
  color: #7CB642;
  text-decoration: none;
}
.navigation .menuLinks a:first-child {
  margin-left: 0;
}
#catDiv {
  position: absolute;
  left: 15px;
  top: 44px;
  z-index: 200;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
  background: #fff;
  width: 230px;
}
.nav-primary {
  padding: 0;
}
.nav-primary li {
  display: block !important;
  width: 100%;
  margin: 0;
}
.nav-primary li:hover a {
  color: #7cb642;
}
.nav-primary li a {
  font: 14px 'Roboto', sans-serif;
  color: #121212;
  padding: 10px 10px !important;
  border-bottom: 1px solid #e8ecee;
  display: block !important;
  text-transform: none;
  text-decoration: none;
  position: relative;
}
.nav-primary li a:hover {
  color: #e53d46;
}
.nav-primary li ul.level0 {
  position: absolute;
  left: 100%;
  top: 0;
  width: 420px;
  padding: 0;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
  background: #fff;
  font-size: 0;
  border: 0;
}
.nav-primary li ul.level0 li {
  float: none;
  width: 50%;
  display: inline-block !important;
  vertical-align: top;
}
.nav-primary li ul.level0 li:nth-child(even) {
  float: right;
  border-left: 2px solid #fff;
}
.nav-primary li.browse_all_cat {
  width: 100%;
}
.nav-primary li.browse_all_cat .mega-menu {
  height: 720px !important;
  background: #232830 !important;
}
.nav-primary li.browse_all_cat .mega-menu ul {
  padding-left: 0 !important;
  padding-right: 0 !important;
  column-count: auto !important;
}
.nav-primary li.browse_all_cat .mega-menu .mega-menu-inner {
  padding-top: 0 !important;
  padding-left: 15px;
  padding-right: 15px;
}
.nav-primary li.browse_all_cat .mega-menu .mega-menu-inner li {
  padding: 0 0 0 10px;
  position: relative;
}
.nav-primary li.browse_all_cat .mega-menu .mega-menu-inner li a {
  border: 0 !important;
  padding: 5.5px 10px !important;
}
.nav-primary li.browse_all_cat .mega-menu .mega-menu-inner li a:hover {
  color: #7cb642;
  background: transparent;
}
.nav-primary li.browse_all_cat .mega-menu .mega-menu-inner li a:after {
  display: none;
}
.nav-primary li.browse_all_cat .mega-menu .mega-menu-inner li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}
.nav-primary li.browse_all_cat .mega-menu .mega-menu-inner div.start {
  width: 100%;
  display: block !important;
}
.nav-primary li.browse_all_cat .mega-menu .mega-menu-inner div.start a {
  color: #3190c4 !important;
  border: 0 !important;
  padding-left: 0 !important;
}
.nav-primary li.browse_all_cat .mega-menu .mega-menu-inner li.nodisplay {
  visibility: hidden !important;
}
.nav-primary li.browse_all_cat .mega-menu .mega-menu-inner li.nodisplay:before {
  visibility: hidden !important;
}
.nav-primary li.level0 .mob-arrow {
  display: none;
}
.nav-primary li.parent a:after {
  content: "\f054";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  color: #434444;
  vertical-align: middle;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.nav-primary li.parent.browse_all_cat a:after {
  color: #e7e7e7;
}
.nav-primary li.parent.browse_all_cat .mega-menu-inner a:after {
  display: none;
}
.nav-primary li.browse_all_cat a {
  background: #232830;
  color: #fff;
}
.nav-primary li.browse_all_cat:hover a {
  background: #232830;
}
@media (min-width: 992px) {
  .nav-primary li.browse_all_cat .mega-menu ul {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(24, 1fr);
    grid-auto-columns: max-content;
    justify-content: space-between;
  }
  .nav-primary li.browse_all_cat .mega-menu ul li a {
    background: transparent !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .nav-primary li.browse_all_cat .mega-menu {
    height: auto !important;
    padding-bottom: 20px;
  }
  .nav-primary li.browse_all_cat .mega-menu ul {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(40, 1fr);
    grid-auto-columns: max-content;
    justify-content: space-between;
  }
  .nav-primary li.browse_all_cat .mega-menu ul li a {
    background: transparent !important;
  }
}
/*============================== Mega Menu ==================================*/
@media only screen and (min-width: 1367px) {
  .nav-primary .mega-menu {
    width: 1050px;
  }
  .nav-primary .mega-menu .mega-menu-inner {
    min-height: 298px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1366px) {
  .nav-primary .mega-menu {
    width: 77vw;
  }
}
@media only screen and (min-width: 768px) {
  #catDiv #nav {
    display: none;
  }
  .nav-primary .mega-menu {
    position: absolute;
    left: 230px;
    top: 0;
    right: 0;
    height: 100%;
    background: #fff;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
    display: none;
  }
  .nav-primary .mega-menu .mega-menu-inner:after {
    content: "";
    display: table;
    clear: both;
  }
  .nav-primary li.level0 {
    position: static;
  }
  .nav-primary li.level0 .mob-arrow {
    display: none;
  }
  .nav-primary li.level0 ul {
    display: block;
    width: 25%;
    float: left;
    padding-left: 25px;
    position: static;
    border: 0;
    background: transparent;
    box-sizing: border-box;
  }
  .nav-primary li.level0:hover .mega-menu {
    display: block;
  }
}
.nav-primary {
  margin-bottom: 0 !important;
}
.nav-primary .mega-menu .mega-menu-inner {
  padding-top: 12px;
  padding-bottom: 37px;
  height: 367px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.nav-primary .mega-menu .mega-menu-inner ul li.level1 {
  margin-bottom: 10px;
  float: left;
}
.nav-primary .mega-menu .mega-menu-inner ul li.level1 a {
  border: 0;
  padding: 0 !important;
  font-size: 16px;
  color: #3190c4;
}
.nav-primary .mega-menu .mega-menu-inner ul li.level1 a:hover {
  color: #7cb642;
}
.nav-primary .mega-menu .mega-menu-inner ul li.level1 a:after {
  display: none;
}
.nav-primary .mega-menu .mega-menu-inner ul li.level1:hover a {
  color: #7cb642;
}
.nav-primary .mega-menu .mega-menu-inner ul li.level1 ul {
  width: 100%;
  padding: 0;
  padding-left: 15px;
  margin: 8px 0 0;
}
.nav-primary .mega-menu .mega-menu-inner ul li.level1 ul li.level2 {
  margin-bottom: 3px;
}
.nav-primary .mega-menu .mega-menu-inner ul li.level1 ul li.level2 a {
  font-size: 14px;
  color: #121212;
  line-height: normal;
}
.nav-primary .mega-menu .mega-menu-inner ul li.level1 ul li.level2 a:hover {
  color: #e53d46;
}
.nav-primary .mega-menu .mega-menu-inner .browse_all_cat {
  float: left;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 240px;
}
.nav-primary .mega-menu .mega-menu-inner .browse_all_cat a {
  background: #e8ecee;
  color: #121212;
  text-align: center;
  border-bottom: 0;
}
.nav-primary .mega-menu .mega-menu-inner .browse_all_cat a:hover {
  background: #e53d46;
  color: #fff;
}
.nav-primary .mega-menu .mega-menu-inner .browse_all_cat a:after {
  display: none;
}
.nav-primary .mega-menu .mega-menu-bottom {
  border-bottom: 0;
  height: 240px;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0 !important;
}
.nav-primary .mega-menu .mega-menu-bottom a {
  padding: 0 !important;
  font-size: 0;
  border-bottom: 0;
}
.nav-primary .mega-menu .mega-menu-bottom a img {
  width: 100%;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
}
.nav-primary .mega-menu .mega-menu-bottom a:after {
  display: none;
}
.nav-primary .mega-menu .mega-menu-bottom img {
  width: 100%;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 1199px) {
  .nav-primary .mega-menu {
    width: 74vw;
  }
  .nav-primary .mega-menu .mega-menu-bottom img {
    height: 100%;
    width: auto;
    max-width: none;
  }
  .nav-primary .mega-menu .mega-menu-bottom a img {
    height: 100%;
    width: auto;
    max-width: none;
  }
  .nav-primary .mega-menu .mega-menu-inner ul li.level1 a {
    font-size: 14px;
  }
  .nav-primary .mega-menu .mega-menu-inner ul li.level1 ul li.level2 a {
    font-size: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #catDiv {
    width: 185px;
  }
  .nav-primary .mega-menu {
    width: 72vw;
    left: 185px;
  }
}
@media only screen and (max-width: 767px) {
  .nav-sections-item-content .page-header-container #nav {
    display: block;
  }
  .nav-primary .mega-menu {
    width: auto;
  }
  .nav-primary li {
    float: left;
  }
  .nav-primary ul.level0 {
    position: relative !important;
    left: 0 !important;
    float: left !important;
    width: 100% !important;
    padding-bottom: 40px !important;
  }
  .nav-primary ul.level0 li.level1 a {
    padding: 7px 10px 7px 20px !important;
    border-bottom: 0;
  }
  .nav-primary ul.level0 li.level1 ul.level1 li.level2 a {
    padding: 3px 10px 3px 30px !important;
    border-bottom: 0;
    font-size: 13px;
    color: #666;
  }
  .nav-primary ul.level0 li.level1 ul.level1 li.level2.view-all {
    display: none !important;
  }
  .nav-primary ul.level0 li.level1.view-all {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 200;
  }
  .nav-primary ul.level0 li.level1.view-all a {
    background: #e8ecee;
    color: #121212;
    text-align: center;
    padding-left: 10px;
  }
  .nav-primary ul.level0 li.level1.view-all a:hover {
    background: #e53d46;
    color: #ffffff;
  }
  #catDiv #desktop_nav {
    display: none;
  }
  .cats .navigation .level0 {
    border-top: 0;
  }
  .cats .navigation .level0 > .level-top {
    line-height: normal;
    font: 14px 'Roboto', sans-serif;
    color: #121212;
    border-bottom: 1px solid #cccccc;
    padding-top: 10px;
    padding-bottom: 10px;
    text-transform: none;
  }
  .cats .navigation .level0 > .level-top:hover {
    background: transparent;
    color: #e53d46;
  }
  .cats .navigation .level0.has-active a {
    border-left: 0 !important;
    border-bottom: 1px solid #ccc !important;
  }
  .cats .navigation .level0.has-active a span {
    margin: 0 !important;
  }
  .cats .navigation .level0:first-child .submenu {
    padding-bottom: 0 !important;
  }
  .cats .navigation .level0:first-child .submenu .all-category {
    display: none;
  }
  .cats .navigation .parent .level-top:after {
    top: 50%;
    right: 10px;
    margin-top: -8px;
    content: "\f054";
    font: normal normal normal 14px/1 FontAwesome;
  }
  .cats .navigation .parent .level-top.ui-state-active:after {
    content: "\f078";
  }
  .cats .navigation .submenu {
    background: #fff;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
    padding-left: 0 !important;
    padding-bottom: 40px !important;
  }
  .cats .navigation .submenu a {
    padding: 7px 10px 7px 20px;
    font: 14px 'Roboto', sans-serif;
    color: #121212;
  }
  .cats .navigation .submenu li.all-category {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
  }
  .cats .navigation .submenu li.all-category a {
    background: #e8ecee;
    color: #121212;
    text-align: center;
  }
  .cats .navigation .submenu li.all-category a:hover {
    background: #e53d46;
    color: #fff;
  }
  .cats .navigation .submenu li.level1 a {
    padding-left: 25px !important;
    position: relative;
    border-bottom: 0 !important;
  }
  .cats .navigation .submenu li.level1 a:hover {
    color: #e53d46;
  }
  .cats .navigation .submenu li.level1:not(.parent) a {
    point-events: none;
  }
  .cats .navigation .submenu li.level1 .submenu {
    display: none;
    box-shadow: none;
  }
  .cats .navigation .submenu li.level1 .submenu li a {
    border-bottom: 0 !important;
    padding: 3px 10px 3px 30px !important;
    font-size: 13px;
    color: #666 !important;
  }
  .cats .navigation .submenu li.level1 .submenu li a:hover {
    background: #f4f4f4;
    color: #e53d46;
  }
  .cats .navigation .submenu li.level1 .submenu.expanded {
    padding-bottom: 0 !important;
  }
}
/*============================= Navigation End ==================================*/
.minicart-wrapper {
  float: right;
  margin: 11px 0 0 !important;
}
.minicart-wrapper .block-minicart {
  padding: 10px;
  width: 320px !important;
  border-color: #ccc !important;
  margin-top: 0;
}
.minicart-wrapper .block-minicart .subtitle.empty {
  padding: 0;
  font-weight: normal;
  text-transform: none !important;
  line-height: normal !important;
  padding: 0 15px !important;
  margin-bottom: 0 !important;
}
.minicart-wrapper .block-minicart:before,
.minicart-wrapper .block-minicart:after {
  display: none;
}
.minicart-wrapper .action.showcart {
  display: inline-block;
  vertical-align: middle;
  padding: 18px 5px;
  width: 100px;
  white-space: normal;
  border-radius: 8px;
  margin-left: 21px;
  text-align: center;
  text-decoration: none;
  color: #121212;
  line-height: normal;
  font-size: 14px;
  transition: all .5s;
  box-sizing: border-box;
  position: relative;
}
.minicart-wrapper .action.showcart:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.minicart-wrapper .action.showcart:before {
  content: "";
  width: 21px;
  height: 28px;
  background: url("../images/icon-quotelist.svg") 0 0 no-repeat;
  background-size: auto 100%;
  vertical-align: middle;
  margin-right: 3px;
}
.minicart-wrapper .action.showcart .text {
  position: static;
  clip: auto;
  width: 40px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
}
.minicart-wrapper .action.showcart.active:before {
  content: "";
  margin-right: 3px;
}
.minicart-wrapper .action.showcart .counter.qty {
  color: #fff;
  position: absolute;
  left: 9px;
  top: 11px;
  background: #e53d46;
  width: 13px;
  height: 13px;
  min-width: 0;
  border-radius: 50%;
  text-align: center;
  line-height: 13px;
  transform: translateY(-50%);
  padding: 0;
  font-size: 0;
}
.minicart-wrapper .action.close:before {
  font-weight: bold !important;
  color: #636363 !important;
}
.skip-links {
  float: right;
  margin-top: 11px;
}
.skip-links .header-tab {
  display: inline-block;
  vertical-align: middle;
  padding: 15px 5px;
  width: 100px;
  white-space: nowrap;
  border-radius: 8px;
  margin-left: 21px;
  text-align: center;
  text-decoration: none;
  color: #121212;
  line-height: normal;
  font-size: 14px;
  transition: all 0.5s;
  box-sizing: border-box;
}
.skip-links .header-tab:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.skip-links .header-tab.livechat_button {
  margin-left: 0;
}
.skip-links .header-tab.livechat_button img {
  display: inline-block;
  vertical-align: top;
  visibility: visible !important;
  width: 72px;
  height: auto;
  max-width: none;
}
.skip-links .header-tab .fa {
  display: inline-block;
  font-size: 32px;
  margin-right: 7px;
  vertical-align: middle;
}
.skip-links .header-tab .fa.fa-envelope {
  color: #7cb642;
}
.skip-links .header-tab .fa.fa-home {
  color: #434446;
  font-size: 34px;
}
.skip-links .header-tab span {
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  line-height: normal;
}
.header-callus {
  float: right;
  text-align: center;
  margin: 25px 1.5% 0 0;
}
.header-callus .fa {
  font-size: 29.8px;
  color: #7cb642;
  vertical-align: middle;
}
.header-callus .call-left {
  display: inline-block;
  vertical-align: middle;
  margin-top: 2px;
}
.header-callus .call-left a {
  display: inline-block;
  margin: 0 5px;
  font-size: 23.8px;
  color: #121212;
  text-decoration: none;
}
.header-callus .call-left a:hover {
  color: #e53d46;
}
.page-main {
  padding: 0 15px 30px !important;
}
.cms-home .page-main {
  padding: 0 !important;
}
.logo {
  max-width: 182px;
  padding: 15px 9px 10px;
  margin: 0 !important;
  width: 100%;
}
.logo img {
  width: 100% !important;
}
.block-search {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 983px) !important;
  height: 36px;
  padding: 0 !important;
  margin: 24px 0 0 4.4%;
  float: none !important;
}
.block-search .control {
  padding-bottom: 0 !important;
}
.block-search input {
  width: 100%;
  height: 36px;
  padding-left: 55px;
  padding-right: 12px !important;
  font-family: 'Roboto', sans-serif;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.block-search input:focus {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.block-search .action.search {
  left: 0;
  width: 40px;
  height: 100%;
  border: 0;
  background: #e53d46 !important;
  border-radius: 8px 0 0 8px;
  padding: 0 !important;
  line-height: 39px !important;
  opacity: 1 !important;
}
.block-search .action.search:before {
  font-size: 28px !important;
  font-weight: bold !important;
  line-height: 36px !important;
  color: #fff !important;
}
.homepage-banner {
  position: relative;
  overflow: hidden;
  background: #000;
}
.homepage-banner.no-banner .banner-image {
  height: 400px;
}
.homepage-banner.no-banner .banner-image img {
  width: auto;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: none;
}
.homepage-banner .owl-item {
  margin-left: 0;
}
.homepage-banner .owl-item .banner-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  display: block;
}
.homepage-banner .owl-item .banner-image img {
  width: auto;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: none;
}
.homepage-banner .owl-item .banner-image img.mobile-banner {
  display: none !important;
}
.homepage-banner .owl-nav {
  margin: 0 !important;
}
.homepage-banner .owl-nav .owl-prev {
  font: 30px FontAwesome;
  color: #121212 !important;
  border-radius: 0 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
  left: -25px;
  box-shadow: none;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
}
.homepage-banner .owl-nav .owl-prev span {
  display: none;
}
.homepage-banner .owl-nav .owl-prev:hover {
  color: #3190C4 !important;
  background: transparent;
}
.homepage-banner .owl-nav .owl-prev:focus {
  outline: 0;
}
.homepage-banner .owl-nav .owl-prev:before {
  content: "\f053";
}
.homepage-banner .owl-nav .owl-next {
  font: 30px FontAwesome;
  color: #121212 !important;
  border-radius: 0 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
  right: -25px;
  box-shadow: none;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
}
.homepage-banner .owl-nav .owl-next span {
  display: none;
}
.homepage-banner .owl-nav .owl-next:hover {
  color: #3190C4 !important;
  background: transparent;
}
.homepage-banner .owl-nav .owl-next:focus {
  outline: 0;
}
.homepage-banner .owl-nav .owl-next:before {
  content: "\f054";
}
.homepage-banner:hover .owl-nav .owl-prev {
  left: 0;
  height: 100%;
  width: 50px;
  display: table;
}
.homepage-banner:hover .owl-nav .owl-prev:before {
  display: table-cell;
  vertical-align: middle;
}
.homepage-banner:hover .owl-nav .owl-next {
  right: 0;
  height: 100%;
  width: 50px;
  display: table;
}
.homepage-banner:hover .owl-nav .owl-next:before {
  display: table-cell;
  vertical-align: middle;
}
.homepage-banner.owl-theme .owl-nav.disabled + .owl-dots {
  display: none;
}
.homepage-banner + p {
  margin: 0;
}
.homepage-banner + script + p {
  margin: 0;
}
@media (min-width: 600px) {
  .homepage-banner.no-banner.mobile {
    display: none;
  }
}
@media (max-width: 599px) {
  .homepage-banner.no-banner {
    display: none;
  }
  .homepage-banner.no-banner.mobile {
    display: block;
  }
  .homepage-banner.no-banner.mobile .banner-image {
    height: auto;
    font-size: 0;
  }
  .homepage-banner.no-banner.mobile .banner-image img {
    position: static;
    height: auto;
    width: 100%;
    transform: none;
  }
}
@media only screen and (min-width: 1367px) {
  .homepage-banner .owl-item .banner-image {
    height: auto;
  }
  .homepage-banner .owl-item .banner-image img {
    width: 100%;
    height: auto;
    position: static;
    left: auto;
    transform: none;
  }
  .homepage-banner.no-banner .banner-image {
    height: auto;
    font-size: 0;
  }
  .homepage-banner.no-banner .banner-image img {
    width: 100%;
    height: auto;
    position: static;
    left: auto;
    transform: none;
  }
}
@media only screen and (max-width: 1280px) {
  .homepage-banner .owl-item .banner-image {
    height: 29.28vw;
  }
}
@media only screen and (max-width: 599px) {
  .homepage-banner .owl-item .banner-image {
    height: auto;
  }
  .homepage-banner .owl-item .banner-image img.desktop-banner {
    display: none !important;
  }
  .homepage-banner .owl-item .banner-image img.mobile-banner {
    display: block !important;
    position: static;
    transform: none;
    width: 100%;
  }
}
.home-block {
  padding: 35px 0 15px;
}
.home-block h2 {
  margin-bottom: 15px;
  text-align: center;
}
.home-block.welcome-sec {
  text-align: center;
  background-color: #e8ecee;
  padding-top: 0;
  padding-bottom: 15px;
}
.home-block.welcome-sec h1 {
  font-size: 24px;
  text-align: center;
  background: #e8ecee;
  padding-top: 4px;
  margin-bottom: 12px;
}
.home-block.home-now-trending {
  background: #FFFFFF;
  padding-bottom: 0;
  position: relative;
}
.home-block.home-our-designteam {
  background: #E8ECEE;
  padding: 25px 0 0;
  text-align: left;
}
.home-block.home-our-designteam:after {
  content: "";
  display: table;
  clear: both;
}
.home-block.home-our-designteam h2 {
  text-align: left;
  margin-bottom: 30px;
}
.home-block.home-our-designteam img {
  float: left;
  margin: 0 25px 25px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.home-top-banner {
  font-size: 24px;
  text-align: center;
  background: #e8ecee;
  padding-top: 15px;
  margin: 0;
}
.home-accordion .cust-accordion {
  padding: 0;
}
.home-accordion .cust-accordion > li {
  list-style: none !important;
  padding: 0;
  margin: 0 0 1px 0;
  position: relative;
}
.home-accordion .cust-accordion > li .tab-toggle {
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  right: 15px;
  top: 12px;
  font-size: 20px;
  color: #e53d46;
  cursor: pointer;
  pointer-events: none;
}
.home-accordion .cust-accordion > li h3 {
  background: #E8ECEE;
  padding: 10px 50px 10px 15px;
  text-align: left;
  margin: 0;
  cursor: pointer;
}
.home-accordion .cust-accordion > li .tab-content {
  display: none;
  border: 1px solid #eaedf2;
  border-top: 0;
  padding: 12px;
}
.home-accordion .cust-accordion > li .tab-content ul {
  padding-left: 0;
}
.home-accordion .cust-accordion > li:first-child .tab-content {
  display: block;
}
.home-we-are-right {
  padding: 25px 0 0;
  text-align: left;
}
.home-we-are-right:after {
  content: "";
  display: table;
  clear: both;
}
.home-we-are-right h2 {
  text-align: left;
  margin-bottom: 30px;
}
.home-we-are-right iframe {
  float: left;
  margin: 0 25px 25px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.what-people-say {
  text-align: center;
  background: #E8ECEE;
}
.home_review_sec {
  background: #fff;
  margin: 0;
  padding: 25px 0 10px;
}
.home_review_sec:after {
  content: "";
  display: table;
  clear: both;
}
.home_review_sec h2 {
  font-weight: 400;
  color: #111111;
  font-size: 26px;
  margin-bottom: 20px;
}
.home-review {
  max-width: 1295px;
  margin: 0 auto;
  padding: 0 15px;
}
.home-review ul {
  margin: 0 28px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.home-review ul:after {
  content: "";
  display: table;
  clear: both;
}
.home-review ul li {
  list-style: none;
  float: left;
  width: calc((100% - (26px * 3)) / 4);
  margin: 0 26px 26px 0;
  padding: 15px 10px;
  margin-bottom: 28px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
  background: #fff;
  text-align: left;
  box-sizing: border-box;
}
.home-review ul li p {
  margin: 10px 0 0;
  line-height: normal;
  font-size: 14px;
}
.home-review .review-starbox a {
  display: inline-block;
  text-decoration: none;
}
.home-review .review-starbox span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.home-review .review-starbox span.icon {
  float: right;
  margin-right: 0;
}
@media only screen and (min-width: 992px) {
  .home-review ul li:nth-child(4n) {
    margin-right: 0;
  }
}
/*========================== Home Now Tranding with slider start =========================*/
.home-now-trending {
  background: #FFFFFF;
  padding-bottom: 0;
}
.home-now-trending:after {
  content: "";
  display: table;
  clear: both;
}
.home-now-trending .dummy {
  display: flex;
  padding-top: 10px;
}
.home-now-trending ul li {
  list-style: none;
  margin: 0 20px 20px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
  background: #fff;
  text-align: center;
  overflow: hidden;
}
.home-now-trending ul li a {
  position: relative;
  padding-bottom: 52px;
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}
.home-now-trending ul li a img {
  height: auto;
  width: auto !important;
}
.home-now-trending ul li a .home-cat-featured-info {
  background: #3190c4;
  position: absolute;
  left: 0;
  display: table;
  bottom: 0;
  padding: 0 8px;
  transition: all 0.3s;
  width: 100%;
  height: 52px;
  box-sizing: border-box;
}
.home-now-trending ul li a .home-cat-featured-info span {
  font: 300 15px 'Montserrat', arial, helvetica, sans-serif;
  color: #fff;
  display: table-cell;
  vertical-align: middle;
}
.home-now-trending .owl-carousel .owl-stage-outer {
  padding-top: 10px;
}
.home-now-trending .owl-carousel .owl-nav {
  margin: 0 !important;
}
.home-now-trending .owl-carousel .owl-nav .owl-prev {
  font: 30px FontAwesome !important;
  color: #121212;
  border-radius: 0 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
  left: -10px;
  box-shadow: none;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
}
.home-now-trending .owl-carousel .owl-nav .owl-prev span {
  display: none;
}
.home-now-trending .owl-carousel .owl-nav .owl-prev:hover {
  color: #3190C4;
  background: transparent;
}
.home-now-trending .owl-carousel .owl-nav .owl-prev:focus {
  outline: 0;
}
.home-now-trending .owl-carousel .owl-nav .owl-prev:before {
  content: "\f053";
}
.home-now-trending .owl-carousel .owl-nav .owl-next {
  font: 30px FontAwesome !important;
  color: #121212;
  border-radius: 0 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
  right: -10px;
  box-shadow: none;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
}
.home-now-trending .owl-carousel .owl-nav .owl-next span {
  display: none;
}
.home-now-trending .owl-carousel .owl-nav .owl-next:hover {
  color: #3190C4;
  background: transparent;
}
.home-now-trending .owl-carousel .owl-nav .owl-next:focus {
  outline: 0;
}
.home-now-trending .owl-carousel .owl-nav .owl-next:before {
  content: "\f054";
}
@media (max-width: 1023px) {
  .home-now-trending .dummy {
    display: block;
    white-space: nowrap;
    overflow: hidden;
  }
  .home-now-trending .dummy li {
    display: inline-block;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .home-now-trending .dummy li {
    width: calc((100% - (20px * 2)) / 5);
    white-space: normal;
  }
}
@media (min-width: 399px) and (max-width: 767px) {
  .home-now-trending .dummy li {
    width: calc((100% - (40px * 2)) / 2);
    white-space: normal;
  }
}
@media (max-width: 398px) {
  .home-now-trending .dummy li {
    width: calc(100% - (20px * 2));
    white-space: normal;
  }
}
@media (max-width: 767px) {
  .home-now-trending ul li a img {
    width: 100% !important;
  }
}
/*========================== Home Now Tranding with slider end =========================*/
/*========================== Home Now Tranding without slider start =========================*/
/*========================== Home Now Tranding without slider end =========================*/
.home-cat-sect ul {
  margin: 0;
  font-size: 0;
  text-align: center;
}
.home-cat-sect ul:after {
  content: "";
  display: table;
  clear: both;
}
.home-cat-sect ul li {
  position: relative;
  list-style: none;
  float: none;
  display: inline-block;
  vertical-align: top;
  width: 250px;
  margin: 0 40px 40px 0;
  background: #fff;
  text-align: center;
  overflow: hidden;
  height: 260px;
  border-radius: 1mm;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
  z-index: 190;
}
.home-cat-sect ul li a {
  display: block;
  overflow: hidden;
  font-size: 0;
}
.home-cat-sect ul li a img {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  max-width: 150%;
}
.home-cat-sect ul li a:before {
  opacity: 0;
  transition: all 0.5s;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 70px inset rgba(0, 0, 0, 0.7);
}
.home-cat-sect ul li:hover a:before {
  opacity: 1;
}
.home-cat-sect ul li:hover .home-cat-featured-info a {
  color: #3190c4;
  text-shadow: 0 0 5px #ffffff, 0 0 12px #ffffff, 0 0 8px #ffffff, 0 0 20px #ffffff, 0 0 3px #ffffff, 0 0 11px #ffffff, 0 0 7px #ffffff, 0 0 5px #ffffff, 2px 2px 15px #ffffff;
  overflow: visible;
}
.home-cat-sect ul li .home-cat-featured-info {
  padding: 4px 8px;
  transition: all 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  min-height: 50px;
  box-sizing: border-box;
  display: table;
  width: 100%;
}
.home-cat-sect ul li .home-cat-featured-info a {
  font: 600 18px 'Roboto', arial, helvetica, sans-serif;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  height: auto;
  border-radius: 0;
  display: table-cell;
  vertical-align: middle;
}
.home-cat-sect ul li .home-cat-featured-info a:before {
  display: none;
}
@media only screen and (min-width: 1150px) {
  .home-cat-sect ul li:nth-child(4n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1149px) {
  .home-cat-sect ul li {
    width: calc((100% - (40px * 3)) / 4);
    margin-right: 40px;
    margin-bottom: 40px;
  }
  .home-cat-sect ul li:nth-child(4n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home-cat-sect ul li {
    width: calc((100% - (25px * 2)) / 3);
    margin-right: 25px;
    margin-bottom: 25px;
  }
  .home-cat-sect ul li:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .home-cat-sect ul li {
    width: calc((100% - 25px) / 2);
    margin-right: 25px;
    margin-bottom: 25px;
  }
  .home-cat-sect ul li:nth-child(even) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 480px) {
  .home-cat-sect ul li {
    width: 100%;
    margin-right: 0;
  }
}
/*====================== CMS Pages =========================*/
.cms-page-view .column.main ul {
  margin-bottom: 15px;
  padding: 0;
}
.cms-page-view .column.main ul li {
  color: #121212;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  position: relative;
}
.cms-page-view .home-accordion .cust-accordion {
  padding-left: 0 !important;
}
.cms-page-view .home-accordion .cust-accordion li:before {
  display: none !important;
}
.data-table {
  width: 100%;
}
.data-table td {
  padding: 10px;
  vertical-align: top;
}
.data-table th {
  padding: 10px;
  vertical-align: top;
  background: #f4f4f4;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  line-height: 1.4;
  white-space: nowrap;
  font-weight: normal;
}
.data-table thead th {
  border-bottom: 1px solid silver;
}
.data-table tbody td {
  border-bottom: 1px solid silver;
  font-family: 'Roboto', sans-serif;
  line-height: normal;
}
.data-table tbody td .item-options {
  margin-left: 0;
  margin-top: 10px;
}
.data-table tbody td .item-options dt:after {
  content: ':';
}
.data-table tfoot td {
  font-family: 'Roboto', sans-serif;
}
.data-table tfoot tr {
  background: #f4f4f4;
}
.cms-home .columns .column.main {
  padding-bottom: 0;
}
.page-footer {
  padding: 0px;
  background: #232830;
}
.footer.content {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
  border-top: 0;
}
.footer.content .block.newsletter {
  float: none;
  max-width: none;
  width: 90%;
  padding-top: 7px;
  margin-bottom: 30px;
}
.footer.content .block.newsletter .form.subscribe {
  padding-top: 7px;
}
.footer.content .block.newsletter .field {
  margin-right: 0 !important;
  max-width: 100%;
}
.footer.content .block.newsletter .field .control:before {
  display: none;
}
.footer.content .block.newsletter .field .mage-error {
  float: left !important;
}
.footer.content .block.newsletter input {
  float: left;
  border: 0;
  height: 40px;
  font-size: 15px;
  border-radius: 8px 0 0 8px;
  padding: 0 8px;
  margin: 0;
}
.footer.content .block.newsletter .action.subscribe {
  max-width: none !important;
  height: 40px;
  line-height: 17px;
  float: left;
  background: #e53d46;
  border-radius: 0 8px 8px 0;
  font-size: 17px;
  padding: 0 !important;
  margin: 0 !important;
  border: 0;
  font-weight: normal;
  text-transform: uppercase;
  min-width: 90px;
  font-family: 'Roboto', sans-serif;
}
.footer.content .links {
  font: 13px 'Roboto', sans-serif;
  color: #fff;
  width: 22%;
  padding-right: 30px !important;
  box-sizing: border-box;
}
.footer.content .links h2,
.footer.content .links h3 {
  font-weight: normal;
  font-size: 21px;
  text-transform: none;
  color: #fff;
  margin-bottom: 0.5em;
}
.footer.content .links.col-1 {
  width: 33%;
}
.footer.content .links.col-4 {
  width: auto;
  float: right;
  padding-right: 0 !important;
}
.footer.content .links.col-4 img {
  margin-top: 8px;
}
.footer.content .links.col-2 span {
  display: inline-block;
  margin: 0 0 20px;
  color: #fff;
  position: relative;
  padding: 0 0 0 30px;
}
.footer.content .links.col-2 a {
  display: inline-block;
  margin: 0 0 20px;
  color: #fff;
  position: relative;
  padding: 0 0 0 30px;
}
.footer.content .links.col-2 .fa {
  color: #fff;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
}
.footer.content .links.col-2 p {
  margin-bottom: 0;
}
.footer.content .links a {
  color: #fff;
}
.footer.content .links a:hover {
  color: #e53d46;
  text-decoration: none;
}
.footer.content .links li {
  padding: 0 0 0 17px;
  margin: 0 0 1px;
  position: relative;
  line-height: 1.4;
  color: #fff;
}
.footer.content .links li:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 5px;
}
.footer.content .links .social li {
  padding: 0;
  float: left;
  margin-right: 22px;
  list-style: none;
}
.footer.content .links .social li:before {
  display: none;
}
.footer.content .links .social li a {
  width: 41px;
  height: 40px;
  display: block;
}
.footer.content .links .social li.insta a {
  background: url("../images/instagram-icon-round-rect.svg") 0 0 no-repeat;
}
.footer.content .links .social li.twt a {
  background: url("../images/twitter-icon-round-rect.svg") 0 0 no-repeat;
}
.footer.content .links .social li.gpl a {
  background: url("../images/icon-sprite-new.png") -93px 0 no-repeat;
}
.footer.content .links .social li.fbk a {
  background: url("../images/facebook-icon-round-rect.svg") 0 0 no-repeat;
}
.footer.content .links .social li.pint a {
  background: url("../images/pinterest-icon-round-rect.svg") 0 0 no-repeat;
}
.footer.content .links .social li.yout a {
  background: url("../images/youtube-icon-round-rect.svg") 0 0 no-repeat;
}
.footer .copyright {
  display: none;
}
.to-top {
  display: inline-block;
  height: 5em;
  position: fixed;
  bottom: 0.25em;
  left: 0.125em;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: url("..//images/new_top_arrow.png") no-repeat center 50%;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  -o-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
  z-index: 2;
  opacity: 0.5;
}
.to-top:hover {
  opacity: 1;
}
/*============================ Category and Product list page =============================*/
@media (min-width: 768px) {
  .page-layout-2columns-right .column.main {
    width: calc(100% - 320px) !important;
  }
  .page-layout-2columns-right .sidebar-main {
    width: 256px !important;
    float: right !important;
    padding-left: 10px !important;
    padding-top: 35px;
  }
  .page-products .columns {
    padding-top: 45px !important;
  }
  .category-page-left {
    width: 100%;
    float: left;
  }
  .catalog-category-view .columns {
    float: right;
    padding-top: 0 !important;
    width: 100%;
  }
}
@media print {
  .page-layout-2columns-right .column.main {
    width: calc(100% - 320px) !important;
  }
  .page-layout-2columns-right .sidebar-main {
    width: 256px !important;
    float: right !important;
    padding-left: 10px !important;
    padding-top: 35px;
  }
  .page-products .columns {
    padding-top: 45px !important;
  }
  .category-page-left {
    width: 100%;
    float: left;
  }
  .catalog-category-view .columns {
    float: right;
    padding-top: 0 !important;
    width: 100%;
  }
}
.form-list {
  list-style: none;
  padding: 0;
}
.category-total {
  padding-top: 45px;
}
.category-total:after {
  content: "";
  display: table;
  clear: both;
}
.category-description {
  margin-top: 5px !important;
}
.column.main .category-description {
  padding: 15px;
  border: 1px solid #cccccc;
  text-align: left;
}
.column.main .category-description p {
  margin-bottom: 1em;
}
.subcat-listing {
  font-size: 0;
  padding: 0;
  margin-bottom: 0;
}
.subcat-listing li {
  position: relative;
  list-style: none;
  float: none;
  display: inline-block;
  vertical-align: top;
  width: 280px;
  margin: 0 40px 40px 0;
  background: #fff;
  text-align: center;
  overflow: hidden;
  height: auto;
  padding-bottom: 54px;
  border-radius: 1mm;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
}
.subcat-listing li a {
  display: block;
  overflow: hidden;
  font-size: 0;
  position: static !important;
}
.subcat-listing li a img {
  position: static;
  left: 0;
  top: 0;
  transform: none;
  max-width: 100%;
  width: 100%;
}
.subcat-listing li a .home-cat-featured-info {
  display: block;
  padding: 4px 8px;
  transition: all 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  min-height: 54px;
  display: table;
  width: 100%;
  box-sizing: border-box;
}
.subcat-listing li a .home-cat-featured-info span {
  font: 600 18px 'Roboto', arial, helvetica, sans-serif;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  height: auto;
  border-radius: 0;
  display: table-cell;
  vertical-align: middle;
}
.subcat-listing li a:before {
  opacity: 0;
  transition: all 0.5s;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 70px inset rgba(0, 0, 0, 0.7);
}
.subcat-listing li:hover .home-cat-featured-info span {
  color: #3190c4;
  text-shadow: 0 0 5px #ffffff, 0 0 12px #ffffff, 0 0 8px #ffffff, 0 0 20px #ffffff, 0 0 3px #ffffff, 0 0 11px #ffffff, 0 0 7px #ffffff, 0 0 5px #ffffff, 2px 2px 15px #ffffff;
  overflow: visible;
}
.subcat-listing li:hover a:before {
  opacity: 1;
}
@media only screen and (min-width: 1300px) {
  .subcat-listing li:nth-child(4n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1299px) {
  .subcat-listing li {
    width: calc((100% - (40px * 2)) / 3);
  }
  .subcat-listing li:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .subcat-listing li {
    width: calc((100% - 40px) / 2);
  }
  .subcat-listing li:nth-child(even) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 480px) {
  .subcat-listing li {
    width: 100%;
    margin-right: 0;
  }
}
.category-description {
  margin-top: 20px;
  margin-bottom: 1.5em;
  text-align: center;
}
.category-description:after {
  content: "";
  display: table;
  clear: both;
}
.category-description h1 {
  margin-bottom: 5px !important;
}
.category-description p {
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .category-description h1 {
    font-size: 32px;
  }
  .category-description .cat_des_readmore {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .category-description {
    margin-top: -10px;
  }
  .category-description h1 {
    margin-bottom: 10px;
  }
  .category-description p {
    height: 50px;
    overflow: hidden;
    position: relative;
  }
  .category-description p:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 30px;
    background: -moz-linear-gradient(top, rgba(30, 87, 153, 0) 0%, #ffffff 82%);
    background: -webkit-linear-gradient(top, rgba(30, 87, 153, 0) 0%, #ffffff 82%);
    background: linear-gradient(to bottom, rgba(30, 87, 153, 0) 0%, #ffffff 82%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#001e5799', endColorstr='#ffffff', GradientType=0);
  }
  .category-description .cat_des_readmore {
    color: #3190c4;
  }
  .category-description.cat-text-open p {
    height: auto;
  }
  .category-description.cat-text-open p:after {
    display: none;
  }
  .category-description.cat-text-open .cat_des_readmore {
    display: none;
  }
  .column.main .category-description p {
    height: auto;
  }
  .column.main .category-description p:after {
    display: none;
  }
}
.products-grid .product-item {
  transition: all 0.5s;
  text-align: center;
  position: relative;
  padding-bottom: 80px !important;
}
.products-grid .product-item .product-item-details {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  z-index: 100;
}
.products-grid .product-item .price-box {
  margin-bottom: 0;
}
.products-grid .product-item:hover {
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
}
.products-grid .product-item .price-box .price {
  color: #3eaf29;
  font-weight: 400;
}
.products-grid .product-item-actions {
  margin: 0 !important;
}
.products-grid .product-item-name,
.products-grid .product.name a {
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}
.products-grid .product-item-name:hover,
.products-grid .product.name a:hover {
  color: #E53D46;
}
.sidebar .fieldset > .field:not(.choice):not(:last-child) {
  margin: 0 0 3px;
}
.sidebar .fieldset .fields > .field:not(:last-child) {
  margin: 0 0 3px;
}
.page-layout-2columns-right .sidebar .block-title {
  text-align: center;
  border-top: 0;
  padding: 0;
}
.page-layout-2columns-right .sidebar .block-title strong {
  color: #000;
  text-transform: none;
  font-weight: normal;
  font-size: 14px;
}
.quick-question {
  margin-bottom: 20px;
}
.quick-question .titlebar {
  background: #3190c4;
  height: 43px;
  line-height: 43px;
  padding: 0 10px;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  text-align: center;
}
.quick-question .titlebar .fa {
  font-size: 20px;
  display: inline-block;
  vertical-align: top;
  margin-right: 22px;
  margin-top: 11px;
}
.quick-question .titlebar .fa.ques-toggle {
  margin: 15px 4px 0 0;
  float: right;
  font-size: 14px;
}
.quick-question .titlebar .fa.fa-envelope {
  display: none;
}
.quick-question .titlebar span {
  display: inline-block;
  vertical-align: top;
}
.quick-question .form-content {
  padding: 10px 8px 10px;
  background: #fff;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
  text-align: left;
}
.quick-question .form-content p {
  color: #121212;
  margin-bottom: 12px;
  text-align: center;
}
.quick-question .form-content ul li {
  margin: 0 0 3px;
}
.quick-question .form-content ul li label {
  font: 13px 'Roboto', sans-serif;
  color: #121212;
  margin: 0 0 3px;
}
.quick-question .form-content ul li label em {
  color: #e53d46;
}
.quick-question .form-content ul li .input-text {
  max-width: 100%;
  width: 100%;
  border: 1px solid #524a48;
  border-radius: 0;
  height: 32px;
  padding: 0 12px;
}
.quick-question .form-content ul li textarea.input-text {
  height: 77px;
  padding-top: 7px;
  padding-bottom: 7px;
  resize: none;
}
.quick-question .form-content .buttons-set {
  border: 0;
  padding-top: 0;
  margin-top: 3px;
  text-align: center;
  font-size: 0;
}
.quick-question .form-content .buttons-set .send-enq {
  margin: 0;
  float: none;
  background: #3190c4;
  font: 16px 'Roboto', sans-serif;
  height: 36px;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  color: #fff;
  border: 0;
  border-radius: 0;
  min-width: 140px;
  padding: 0 12px;
  margin-right: 10px;
  margin-bottom: 8px;
}
.quick-question .form-content .buttons-set .send-enq span {
  display: inline-block;
  vertical-align: middle;
}
.quick-question .form-content .buttons-set .send-enq .fa {
  font-size: 19px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}
.quick-question .form-content .buttons-set .send-enq:hover {
  background: #e53d46;
}
.quick-question .form-content .buttons-set .add-to-list {
  margin: 0;
  float: none;
  background: #3190c4;
  font: 16px 'Roboto', sans-serif;
  height: 36px;
  display: inline-block;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.quick-question .form-content .buttons-set .add-to-list .fa {
  font-size: 19px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}
.quick-question .form-content .buttons-set .add-to-list:hover {
  background: #e53d46;
}
.quick-question .form-content .action.primary {
  margin: 12px 0 0 10px;
  float: none;
  background: #3190c4;
  font: 16px 'Roboto', sans-serif;
  height: 36px;
  display: inline-block;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  color: #fff;
  text-transform: uppercase;
}
.quick-question .form-content .action.primary:hover {
  background: #e53d46;
}
#customQuoteForm .form-list li .logo-attchment {
  position: relative;
  margin-bottom: 12px;
}
#customQuoteForm .form-list li .logo-attchment:before {
  content: "Browse";
  background: #3190c4;
  height: 32px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 10px;
  color: #fff;
  line-height: 32px;
  cursor: pointer;
  z-index: 3;
}
#customQuoteForm .form-list li .logo-attchment input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 3;
  opacity: 0;
  cursor: pointer;
  box-sizing: border-box;
}
#customQuoteForm .form-list li .logo-attchment .uploaded-file-name {
  width: 100%;
  border: 1px solid #524a48;
  border-radius: 0;
  height: 32px;
  line-height: 32px;
  padding: 0 70px 0 12px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}
#customQuoteForm .form-list li .logo-attchment .uploaded-file-name.file_uploaded {
  background: #fff;
}
#customQuoteForm .form-list li .logo-attchment .default-text {
  position: absolute;
  left: 12px;
  top: 50%;
  color: #aaa;
  font-size: 15px;
  z-index: 1;
  transform: translateY(-50%);
}
#customQuoteForm .form-list li .uploaded-file-size {
  display: block;
  text-align: center;
  margin: 0 0 15px;
  color: #e53d46;
  font-weight: bold;
}
#customQuoteForm .form-list li .g-recaptcha {
  text-align: center;
}
#customQuoteForm .form-list li .g-recaptcha > div {
  display: inline-block;
}
.sidebar .block.block-cart {
  margin-bottom: 18px;
}
.sidebar .block.block-cart .block-title {
  background: #3190c4;
  height: 43px;
  line-height: 43px;
  padding: 0 10px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  margin-bottom: 0;
  border-top: 0;
}
.sidebar .block.block-cart .block-title strong {
  font: 16px 'Roboto', sans-serif;
  font-weight: 400;
  text-transform: none;
  color: #fff;
}
.sidebar .block.block-cart .block-title .fa.fa-shopping-cart {
  font-size: 20px;
  display: inline-block;
  vertical-align: top;
  margin-right: 22px;
  margin-top: 11px;
  display: none;
}
.sidebar .block.block-cart .block-title .fa.block-cart-toggle {
  margin: 15px 4px 0 0;
  float: right;
  font-size: 14px;
}
.sidebar .block.block-cart .block-content {
  padding: 6px 8px 12px;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.3) 1px 2px 5px;
  margin-top: 0;
  height: 330px;
  overflow-y: auto;
}
.sidebar .block.block-cart .block-content p {
  text-align: center;
}
.shpoing-cart-msg-suc {
  display: none;
}
@media only screen and (min-width: 769px) {
  .catalog-category-view.page-layout-2columns-right .sidebar-main {
    position: sticky;
    right: 0;
    top: 0;
    padding-top: 15px;
  }
  .catalogsearch-result-index.page-layout-2columns-right .sidebar-main {
    position: sticky;
    right: 0;
    top: 0;
    padding-top: 15px;
  }
}
@media only screen and (max-width: 1600px) and (min-width: 921px) {
  #customQuoteForm .form-list li .input-text {
    height: 22px;
  }
  #customQuoteForm .form-list li textarea.input-text {
    height: 50px;
  }
  #customQuoteForm .form-list li .logo-attchment:before {
    height: 22px;
    line-height: 22px;
  }
  #customQuoteForm .form-list li .logo-attchment .uploaded-file-name {
    height: 22px;
    line-height: 22px;
  }
}
.ias-spinner em {
  display: block;
  margin: auto;
  font-weight: 400;
  font-style: normal;
  padding: 10px;
  font-size: 16px;
  width: 250px;
  background-color: #cccccc;
  color: #111111;
  box-sizing: border-box;
}
.ias-trigger a {
  display: block;
  margin: auto;
  font-weight: 400;
  font-style: normal;
  padding: 10px;
  font-size: 16px;
  width: 250px;
  background-color: #cccccc;
  color: #111111;
  box-sizing: border-box;
  text-decoration: none;
}
.ias-trigger a:hover {
  background: #e53d46;
  color: #fff;
}
.product-image-wrapper {
  padding-bottom: 0 !important;
  height: auto !important;
}
.product-image-photo {
  position: static !important;
}
.page-layout-2columns-right.catalog-category-view .column.main {
  padding-bottom: 0 !important;
}
.page-wrapper > .page-bottom {
  width: 100% !important;
  margin-bottom: 50px !important;
}
.catalog-category-view .quick-question .form-content .buttons-set .send-enq {
  margin-right: 0;
}
.catalog-category-view .quick-question .form-content .form-list {
  margin-bottom: 0 !important;
}
/*============================ Product page =============================*/
@media (min-width: 768px) {
  .page-layout-2columns-right.catalog-product-view .column.main {
    width: calc(100% - 345px) !important;
    padding-right: 10px;
  }
  .page-layout-2columns-right.catalog-product-view .sidebar-additional {
    width: 345px !important;
    float: right !important;
    padding-left: 10px !important;
    margin: 0 0 20px !important;
  }
  .product-info-main {
    float: left !important;
  }
  .product.media {
    float: right !important;
  }
}
@media print {
  .page-layout-2columns-right.catalog-product-view .column.main {
    width: calc(100% - 345px) !important;
    padding-right: 10px;
  }
  .page-layout-2columns-right.catalog-product-view .sidebar-additional {
    width: 345px !important;
    float: right !important;
    padding-left: 10px !important;
    margin: 0 0 20px !important;
  }
  .product-info-main {
    float: left !important;
  }
  .product.media {
    float: right !important;
  }
}
.catalog-product-view .prod_rightside .block-pricing-info {
  display: block;
  margin-bottom: 20px;
}
.catalog-product-view .prod_rightside .block-pricing-info .titlebar {
  background: #e8ecee;
  padding: 0;
  text-align: center;
  border-top: 0;
}
.catalog-product-view .prod_rightside .block-pricing-info .titlebar strong {
  font-size: 20px;
  font-weight: normal;
  color: #000;
  text-transform: none;
  line-height: 43px;
}
.catalog-product-view .prod_rightside .block-pricing-info .block-content {
  padding: 10px 8px;
  background: #fff;
  box-shadow: 1px 5px 5px rgba(0, 0, 0, 0.3);
  text-align: center;
  margin: 0;
}
.catalog-product-view .prod_rightside .block-pricing-info .block-content .as_low_as {
  font-size: 20px;
}
.catalog-product-view .prod_rightside .block-pricing-info .block-content .as_low_as .price {
  color: #7cb642;
}
.catalog-product-view .prod_rightside .block-pricing-info .block-content .spcl-serv_heading {
  font-size: 20px;
}
.catalog-product-view .prod_rightside .block-pricing-info .block-content p {
  font-size: 13px;
  margin-top: 5px;
}
.fotorama-item.fotorama--fullscreen {
  z-index: 10000 !important;
}
.fotorama__stage {
  border: 1px solid #dddee3;
  box-sizing: border-box;
}
.fotorama__stage__shaft {
  border: 0;
  margin-bottom: 0;
  box-sizing: border-box;
}
.fotorama__thumb-border {
  display: none;
}
.fotorama__nav-wrap {
  margin-top: 6px;
}
.fotorama__nav-wrap .fotorama_horizontal_ratio .fotorama__img {
  max-width: 95% !important;
}
.fotorama__nav--thumbs {
  text-align: center;
}
.fotorama__nav--thumbs .fotorama__nav__frame {
  padding: 0 !important;
}
.fotorama__thumb {
  width: auto !important;
  border: 1px solid #dcdee3;
  margin: 0 1.5px 3px;
  background: transparent;
  padding: 3px;
  box-sizing: border-box;
}
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--left,
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--right {
  opacity: 1;
}
.spcl-serv-box {
  float: left;
  width: 100%;
  margin: 0 0 20px;
  line-height: normal;
}
.spcl-serv-box li {
  padding-left: 50px;
  position: relative;
  margin: 0 0 8px;
}
.spcl-serv-box li .fa {
  position: absolute;
  left: 4px;
  top: 0;
  font-size: 30px;
  color: #7cb642;
}
.spcl-serv-box li .fa.fa-clock {
  left: 10px;
}
.spcl-serv-box li .spcl-serv_heading {
  font-size: 21px;
}
.spcl-serv-box li p {
  font-size: 14px;
}
.spcl-serv-box li .fa.fa-trophy:before {
  background: url("../images/competitive.svg") center -5px no-repeat;
  content: "";
  width: 40px;
  height: 67px;
  display: inline-block;
  background-size: auto 100%;
}
.spcl-serv-box li .fa.fa-truck:before {
  background: url("../images/artwork.svg") center -5px no-repeat;
  content: "";
  width: 40px;
  height: 67px;
  display: inline-block;
  background-size: auto 100%;
}
.spcl-serv-box li:last-child .fa.fa-truck:before {
  background: url("../images/turnaround.svg") center -5px no-repeat;
  content: "";
  width: 40px;
  height: 67px;
  display: inline-block;
  background-size: auto 100%;
}
.product-info-main .product.attribute.overview {
  margin-top: 0;
}
.product-info-main .product.attribute.overview .short-description img {
  margin-left: 0 !important;
}
.product-info-main .product.attribute.overview .short-description h2,
.product-info-main .product.attribute.overview .short-description h3 {
  border-bottom: 1px solid #e8ecee;
  padding-bottom: 6px;
  display: inline-block;
  width: 100%;
}
.product-info-main .product.attribute.overview .short-description ul {
  line-height: normal;
}
.product-info-main .product.attribute.overview .short-description ul li {
  list-style: none;
  margin: 0 0 15px;
  padding-left: 40px;
  position: relative;
}
.product-info-main .product.attribute.overview .short-description ul li:before {
  content: "";
  width: 9px;
  height: 9px;
  background: #231f20;
  border-radius: 50%;
  position: absolute;
  left: 14px;
  top: 3px;
}
.product-info-main .product-add-form {
  display: none;
}
.product.data.items {
  background: #e8ecee;
}
.product.data.items > .item.title {
  margin-right: 0 !important;
}
.product.data.items > .item.title > .switch {
  font: 18px 'Roboto', sans-serif !important;
  color: #121212 !important;
  height: 45px !important;
  line-height: 45px !important;
  padding: 0 20px !important;
  display: block !important;
  background: transparent !important;
  border: 0 !important;
}
.product.data.items > .item.title > .switch:hover {
  background: #3190c4 !important;
  color: #fff !important;
}
.product.data.items > .item.title.active > .switch {
  border: 0 !important;
  border-top: 5px solid #e53d46 !important;
  padding: 0 20px !important;
  height: 40px !important;
  font: 18px/35px 'Roboto', sans-serif !important;
  background: #fff !important;
}
.product.data.items > .item.title.active > .switch:hover {
  background: #fff !important;
  color: #121212 !important;
}
.product.data.items > .item.content {
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
  padding: 21px 17px !important;
  border-top: 0 !important;
  margin-top: 45px !important;
  margin-bottom: 0 !important;
}
.fotorama__dot {
  width: 10px !important;
  height: 10px !important;
}
.fotorama__active .fotorama__dot {
  background: #e53d46 !important;
  border-color: #e53d46 !important;
}
.product-social-links {
  display: none !important;
}
.product.info.detailed .product.data.items .short-description > h2 {
  display: none;
}
.product.info.detailed .product.data.items .short-description .value h3 {
  display: block;
}
.product.info.detailed .product.data.items .short-description ul li {
  padding-left: 25px;
  position: relative;
}
.product.info.detailed .product.data.items .short-description ul li:before {
  content: "";
  width: 9px;
  height: 9px;
  background: #231f20;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 4px;
}
.product.info.detailed .product.data.items .short-description ol {
  list-style: decimal;
  margin-left: 20px;
}
.product.info.detailed .product.data.items ul li {
  padding-left: 25px;
  position: relative;
}
.product.info.detailed .product.data.items ul li:before {
  content: "";
  width: 9px;
  height: 9px;
  background: #231f20;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 4px;
}
.product.info.detailed .product.data.items ol {
  list-style: decimal;
  margin-left: 20px;
}
/*============================= Contact Us =============================*/
.contact-index-index .page-main .left-contacts ul {
  padding-left: 0;
}
.contact-index-index .page-main .left-contacts ul li {
  list-style: disc;
  margin-left: 20px;
}
.contact-index-index .page-main .left-contacts ol {
  padding-left: 0;
  list-style: decimal;
}
.contact-index-index .page-main .left-contacts ol li {
  list-style: inherit;
  margin-left: 20px;
  padding-left: 0;
}
.contact-index-index .page-main {
  margin-top: 15px;
}
.contact-index-index .left-contacts {
  float: left;
  width: 50%;
  border: 1px solid #dfe1e5;
  padding: 20px;
  box-sizing: border-box;
}
.contact-index-index .left-contacts strong {
  font-weight: normal;
}
.contact-index-index .right-contacts {
  float: right;
  background: #fbfbfb;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  width: 47%;
  box-sizing: border-box;
}
.contact-index-index .right-contacts .title {
  font-size: 16px;
  background: #3190c4;
  color: #fff;
  padding: 10px 20px;
  margin: -20px -20px 10px -20px;
}
.contact-index-index .right-contacts strong {
  font-weight: normal;
}
.contact-index-index .pre-contacts-wrapper {
  overflow: hidden;
}
.contact-index-index .left-dates-contacts {
  width: 35%;
  float: left;
  font-weight: bold;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 24px;
}
.contact-index-index .right-dates-contacts {
  float: right;
  width: 65%;
  padding-bottom: 0;
  margin-bottom: 0;
}
.contact-index-index .mon-fri {
  display: block;
  height: 122px;
  text-align: center;
  background: #e0f5e0;
  padding: 48px 0;
  box-sizing: border-box;
}
.contact-index-index .sat-sun {
  background: #f5e2e0;
  height: 47px;
  display: block;
  padding: 13px 0;
  text-align: center;
  box-sizing: border-box;
}
.contact-index-index h2 {
  padding-bottom: 0;
}
.contact-index-index .contactForm {
  float: right;
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px 10px 20px 10px;
  margin-bottom: 40px;
  width: 37%;
  float: left;
  text-align: center;
  box-sizing: border-box;
}
.contact-index-index .contactForm .quote_request_red {
  padding: 10px 0;
  background: #3190c4;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  margin: -10px -10px 15px -10px;
  font-size: 18px;
  color: #fff;
}
.contact-index-index .contactForm .quote_img_btm_text {
  padding: 0 10px 10px 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}
.contact-index-index .contactForm button {
  display: block;
  margin: 0 auto;
}
.contact-index-index .contactForm .top_quote_text_sec {
  background: #fff;
  padding: 10px;
  margin-bottom: 20px;
}
.contact-index-index .contactForm .top_quotesmall_text {
  margin-bottom: 0;
}
.contact-index-index .contactForm:after {
  content: "";
  display: table;
  clear: both;
}
.contact-index-index .contactForm .block-title {
  display: none;
}
.contact-index-index .contactForm .quick-question {
  margin-bottom: 0;
}
.contact-index-index .contactForm .quick-question .titlebar {
  display: none;
}
.contact-index-index .contactForm .quick-question .form-content {
  padding-left: 0;
  padding-right: 0;
  box-shadow: none;
  text-align: left;
  padding-bottom: 0;
}
.contact-index-index .contactForm .block.block-cart,
.contact-index-index .contactForm .fb-root,
.contact-index-index .contactForm .fb-page {
  display: none;
}
.contact-index-index .contactForm .form-content .fieldset {
  margin-bottom: 0;
}
.contact-index-index .contactForm .form-content .fieldset .form-list {
  margin-bottom: 20px;
}
.contact-index-index .contactMap {
  width: 60%;
  margin: 0;
  float: right;
}
.contact-index-index .contactMap iframe {
  width: 100%;
}
.contact-index-index .contactMap:after {
  content: "";
  display: table;
  clear: both;
}
.contact-index-index .page-title-wrapper {
  display: none;
}
.page-title-wrapper.contact {
  display: block !important;
}
.page-title-wrapper.contact .page-title {
  font-size: 24px;
  margin-bottom: 15px;
}
/*============================== Blog ============================*/
#mpblog-list-container a.mp-read-more {
  display: inline-block;
  padding: 7px 15px;
  border: 0;
  line-height: 19px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 8px;
  background: #232830;
  color: #fff !important;
  text-decoration: none;
}
#mpblog-list-container a.mp-read-more:hover {
  background: #bf1e2e;
}
.post-list-item {
  padding: 0 !important;
}
.post-list-item .post-item-wraper {
  position: relative;
  clear: both;
  border: 0 !important;
  border-top: 1px solid #ccc !important;
  box-sizing: border-box;
  padding: 0 !important;
}
.post-list-item .post-item-wraper:hover {
  box-shadow: none !important;
}
.post-image img {
  border: 1px solid #c7c7c7 !important;
}
.list-post-tabs .post-left {
  display: none;
}
.list-post-tabs .post-right {
  padding-left: 15px !important;
  position: relative;
  width: 100% !important;
}
.list-post-tabs .post-right:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #242227;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}
.list-post-tabs .post-right span {
  white-space: normal !important;
}
.list-post-tabs a {
  display: block !important;
  background: transparent !important;
}
.list-post-tabs a:hover {
  text-decoration: underline;
}
.list-post-tabs:hover {
  background: transparent !important;
}
.mp-sidebar.product.info .product.data.items {
  background: transparent !important;
}
.mp-sidebar.product.info .product.data.items > .item.content {
  padding-top: 10px !important;
  padding-bottom: 0 !important;
  box-shadow: none;
  border-top: 1px solid #ccc !important;
}
.mp-sidebar.product.info .product.data.items > .item.title > .switch {
  font-size: 20px !important;
  font-weight: normal !important;
  color: #999 !important;
  text-align: left !important;
  border: 0 !important;
  background: transparent !important;
}
.mp-sidebar.product.info .product.data.items > .item.title > .switch div {
  width: auto !important;
  line-height: 40px !important;
}
.mp-sidebar.product.info .product.data.items > .item.title.active > .switch {
  color: #000 !important;
}
.sidebar-main .mp-sidebar .data.item.title .data.switch {
  padding: 0 20px !important;
}
.product.info.detailed {
  margin-bottom: 5px !important;
}
.product.data.items {
  margin-bottom: 0 !important;
}
.block-mp-sidebar-heading {
  font-size: 20px !important;
  font-weight: normal !important;
  color: #000 !important;
  text-align: left;
}
ul.menu-categories li.category-item {
  padding-left: 15px;
  position: relative;
}
ul.menu-categories li.category-item:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #242227;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}
ul.menu-categories li.category-item a.list-categories {
  margin-left: 0 !important;
}
ul.menu-categories li.category-item a.list-categories .fa {
  display: none;
}
ul.menu-categories li.category-item a.list-categories:hover {
  text-decoration: underline;
}
.mp-post-info {
  font-size: 13px !important;
}
.mp-post-info .mp-blog-icon {
  display: none;
}
.mp-post-info .fa {
  display: none;
}
.pager .toolbar-amount {
  float: left;
  padding: 0;
}
.pager .toolbar-amount span.toolbar-number {
  display: inline-block;
}
.pages {
  float: right;
}
.pages .item {
  width: 25px;
  height: 25px;
  line-height: 25px !important;
  border: 1px solid transparent;
  margin: 0;
  vertical-align: middle;
}
.pages .item a {
  color: #0e1a5b !important;
  font-weight: normal !important;
  font-size: 14px !important;
}
.pages .item:hover a {
  text-decoration: underline !important;
}
.pages .item.current {
  border: 1px solid #cccccc;
}
.pages strong.page {
  line-height: 25px !important;
  font-size: 14px !important;
  font-weight: normal !important;
}
.pages .action.next {
  margin-left: 0;
  width: 100%;
  height: 25px;
  line-height: 25px;
  padding: 0;
  text-align: center;
  font-size: 0 !important;
  border: 1px solid transparent;
  margin: 0 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.pages .action.next:before {
  content: "" !important;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent !important;
  border-bottom: 4px solid transparent !important;
  border-left: 4px solid #0e1a5b !important;
  margin: 0 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.pages .action.next:hover {
  border-color: #0e1a5b !important;
}
.pages .action.previous {
  margin-left: 0;
  width: 100%;
  height: 25px;
  line-height: 25px;
  padding: 0;
  text-align: center;
  font-size: 0 !important;
  border: 1px solid transparent;
  margin: 0 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.pages .action.previous:before {
  content: "" !important;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent !important;
  border-bottom: 4px solid transparent !important;
  border-right: 4px solid #0e1a5b !important;
  margin: 0 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.pages .action.previous:hover {
  border-color: #0e1a5b !important;
}
.limiter {
  float: right;
  margin-right: 15px;
}
.limiter-options {
  padding: 0 10px !important;
  height: 26px !important;
}
.toolbar-products .limiter .label {
  display: inline-block;
  vertical-align: middle;
}
.post-list-body + .pager {
  border-top: 1px solid #ccc;
  padding-top: 25px;
}
@media (min-width: 768px) {
  .mpblog-post-index.page-layout-2columns-right .sidebar-main,
  .mpblog-category-view.page-layout-2columns-right .sidebar-main,
  .mpblog-post-view.page-layout-2columns-right .sidebar-main {
    float: left !important;
    width: 25% !important;
    padding-left: 0 !important;
    padding-right: 10px;
    padding-top: 0;
  }
  .mpblog-post-index.page-layout-2columns-right .column.main,
  .mpblog-category-view.page-layout-2columns-right .column.main,
  .mpblog-post-view.page-layout-2columns-right .column.main {
    width: 75% !important;
    padding-right: 0 !important;
    padding-left: 10px !important;
  }
  .mpblog-post-view.page-layout-2columns-left .sidebar-main {
    float: left !important;
    width: 25% !important;
    padding-left: 0 !important;
    padding-right: 10px;
    padding-top: 0;
  }
  .mpblog-post-view.page-layout-2columns-left .column.main {
    width: 75% !important;
    padding-right: 0 !important;
    padding-left: 10px !important;
  }
}
@media print {
  .mpblog-post-index.page-layout-2columns-right .sidebar-main,
  .mpblog-category-view.page-layout-2columns-right .sidebar-main,
  .mpblog-post-view.page-layout-2columns-right .sidebar-main {
    float: left !important;
    width: 25% !important;
    padding-left: 0 !important;
    padding-right: 10px;
    padding-top: 0;
  }
  .mpblog-post-index.page-layout-2columns-right .column.main,
  .mpblog-category-view.page-layout-2columns-right .column.main,
  .mpblog-post-view.page-layout-2columns-right .column.main {
    width: 75% !important;
    padding-right: 0 !important;
    padding-left: 10px !important;
  }
  .mpblog-post-view.page-layout-2columns-left .sidebar-main {
    float: left !important;
    width: 25% !important;
    padding-left: 0 !important;
    padding-right: 10px;
    padding-top: 0;
  }
  .mpblog-post-view.page-layout-2columns-left .column.main {
    width: 75% !important;
    padding-right: 0 !important;
    padding-left: 10px !important;
  }
}
.mpblog-search,
.mp-blog-rss {
  display: none;
}
.default-cmt__content button.default-cmt__content__cmt-block__cmt-box__cmt-btn__btn-submit {
  background: #3399cc !important;
  display: inline-block;
  padding: 7px 15px;
  border: 0;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: normal;
  font-family: 'Roboto', sans-serif;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 0;
}
.default-cmt__content button.default-cmt__content__cmt-block__cmt-box__cmt-btn__btn-submit:hover {
  background: #2e8ab8 !important;
}
.default-cmt__cmt-login {
  display: none !important;
}
.block-blog-related .related-content-container {
  padding: 0 !important;
}
.block-blog-related .related-content-container .col-mp {
  padding: 0 !important;
}
.block-blog-related .related-content-container .default-cmt__content__cmt-block .col-mp {
  width: 100% !important;
}
.block-blog-related .related-content-container .default-cmt__content__cmt-block .col-mp label {
  font-weight: 600;
}
textarea.default-cmt__content__cmt-block__cmt-box__cmt-input {
  border-radius: 0 !important;
  border-color: #000 !important;
}
.default-cmt__content__cmt-block__cmt-box__cmt-btn {
  float: left !important;
}
@media (max-width: 991px) {
  .limiter {
    clear: right;
    margin: 15px 0 0;
  }
}
@media (min-width: 768px) {
  .block-blog-related .related-content-container .default-cmt__content__cmt-block {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .mp-sidebar.product.info .product.data.items {
    border-top: 1px solid #ccc !important;
  }
  .mp-sidebar.product.info .product.data.items > .item.content {
    border: 0 !important;
    border-top: 0 !important;
    border-bottom: 1px solid #d1d1d1 !important;
  }
  .mp-sidebar.product.info .item.title .switch,
  .mp-sidebar.product.info .item.title.active .switch {
    height: 40px !important;
    line-height: 40px !important;
    padding-left: 24px !important;
  }
}
@media (max-width: 480px) {
  .toolbar-amount,
  .pages,
  .limiter {
    width: 100%;
  }
  .pages {
    margin: 10px 0 0;
  }
  .post-list-item .post-item-wraper {
    padding-top: 25px !important;
  }
}
.amblog-index-index .column.main ul li,
.amblog-index-post .column.main ul li,
.amblog-index-category .column.main ul li,
.amblog-post-preview .column.main ul li {
  list-style: disc;
  margin-left: 20px;
}
.amblog-index-index .column.main ol,
.amblog-index-post .column.main ol,
.amblog-index-category .column.main ol,
.amblog-post-preview .column.main ol {
  padding-left: 0;
  list-style: decimal;
}
.amblog-index-index .column.main ol li,
.amblog-index-post .column.main ol li,
.amblog-index-category .column.main ol li,
.amblog-post-preview .column.main ol li {
  list-style: inherit;
  margin-left: 20px;
  padding-left: 0;
}
.amblog-index-index .column.main .amblog-footer ul li,
.amblog-index-post .column.main .amblog-footer ul li,
.amblog-index-category .column.main .amblog-footer ul li,
.amblog-post-preview .column.main .amblog-footer ul li {
  list-style: none;
  margin-left: 0;
}
.amblog-index-index .column.main .amblog-footer ol,
.amblog-index-post .column.main .amblog-footer ol,
.amblog-index-category .column.main .amblog-footer ol,
.amblog-post-preview .column.main .amblog-footer ol {
  padding-left: 0;
}
.amblog-index-index .column.main .amblog-footer ol li,
.amblog-index-post .column.main .amblog-footer ol li,
.amblog-index-category .column.main .amblog-footer ol li,
.amblog-post-preview .column.main .amblog-footer ol li {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
/*================================= Quote section ================================*/
.block-minicart .items-total,
.block-minicart .subtotal {
  display: none;
}
.block-minicart .block-content > .actions {
  margin-top: 0;
}
.block-minicart .block-content > .actions .checkout {
  display: none !important;
}
.block-minicart .block-content > .actions .viewcart {
  line-height: normal;
  text-transform: uppercase;
  font-size: 14px;
  background: #3190c4;
  color: #fff;
  padding: 10px 0;
  width: 120px;
  display: inline-block;
  text-decoration: none;
}
.block-minicart .block-content > .actions .viewcart:hover {
  background: #e53d46;
}
.block-minicart .block-content > .actions .primary {
  margin: 0 !important;
}
.block-minicart .subtitle {
  display: block !important;
  color: #121212;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.block-minicart .product > .product-item-photo {
  width: 50px;
  border: 1px solid #ccc;
  font-size: 0;
}
.block-minicart .product-item-details {
  padding-left: 64px;
}
.block-minicart .product-item-name a {
  color: #121212;
  text-decoration: none;
}
.block-minicart .minicart-items-wrapper {
  margin: 0 0 10px;
  border: 0;
  padding: 8px 5px 8px 11px;
  border-bottom: 1px solid #ccc;
  height: auto !important;
}
.block-minicart li {
  padding-bottom: 0 !important;
}
.block-minicart .product.options .subtitle {
  display: none !important;
}
.block-minicart .product.options dl.product.options {
  margin-bottom: 0;
}
.checkout-cart-index .page-main {
  padding-top: 10px !important;
}
.cart-summary {
  display: none;
}
.form-cart {
  width: 100% !important;
}
.cart.table-wrapper table thead tr th {
  padding-top: 10px !important;
  padding-bottom: 8px !important;
  background: #f4f4f4;
  font-weight: normal;
  text-transform: uppercase;
}
.cart.table-wrapper .items > .item {
  border-color: #c0c0c0 !important;
}
.cart.table-wrapper .col.qty {
  text-align: center;
}
.cart.table-wrapper .item .col {
  padding-top: 10px !important;
}
.cart.table-wrapper .item .col.item {
  padding-top: 10px !important;
  padding-left: 0 !important;
}
.cart.table-wrapper .item .col.qty .input-text {
  margin-top: 0 !important;
  padding: 0;
  width: 3.2em;
  height: 30px;
  border-color: silver;
}
.cart.table-wrapper .price-including-tax .price,
.cart.table-wrapper .price-excluding-tax .price {
  font-size: 1.4rem !important;
}
.cart.table-wrapper .item-actions td {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}
.cart.table-wrapper .item-actions .actions-toolbar {
  text-align: right !important;
}
.cart.table-wrapper .item-actions .actions-toolbar .action-edit {
  box-shadow: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  font-size: 0;
  display: none;
  vertical-align: middle;
}
.cart.table-wrapper .item-actions .actions-toolbar .action-edit:before {
  content: "\f040";
  transform: rotate(-90deg);
  color: #3190c4;
  font-size: 20px;
  display: inline-block;
  margin: 0;
  font-family: 'FontAwesome';
  font-weight: normal;
  vertical-align: middle;
}
.cart.table-wrapper .item-actions .actions-toolbar .action-delete {
  box-shadow: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  font-size: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background: url("../images/icon_sprite.png") 4px -648px no-repeat;
}
.cart.table-wrapper .product-item-photo {
  display: inline-block !important;
  width: 20% !important;
  box-sizing: border-box;
}
.cart.table-wrapper .product-image-container {
  width: 100% !important;
}
.cart.table-wrapper .product-image-photo {
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.cart.table-wrapper .product-item-details {
  display: inline-block !important;
  width: 70% !important;
}
.table-wrapper {
  margin-bottom: 10px !important;
}
.cart.main.actions {
  border-bottom: 1px solid #c0c0c0;
  padding-bottom: 10px;
}
.cart.main.actions:after {
  content: "";
  display: table;
  clear: both;
}
.cart-container .form-cart .action.continue {
  float: right !important;
  margin-left: 0 !important;
  border: 0;
  padding: 0 10px;
  margin: 0;
  background: #3190c4;
  cursor: pointer;
  vertical-align: middle;
  height: 30px;
  border-radius: 0;
  color: #fff;
  font-weight: normal;
  font: 14px/30px 'Roboto', sans-serif;
  text-transform: uppercase;
}
.cart-container .form-cart .action.continue:hover {
  background: #333;
  border: 0;
  color: #fff;
}
.cart-container .form-cart .action.continue:before {
  content: "\f002";
  color: #fff;
  font-size: 17px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  margin-top: 0;
  font-family: FontAwesome;
}
.cart-container .form-cart .custom-empty-cart {
  float: left !important;
  margin-left: 0 !important;
  border: 0;
  padding: 0 10px;
  margin: 0;
  background: #e53d46;
  cursor: pointer;
  vertical-align: middle;
  height: 30px;
  border-radius: 0;
  color: #fff;
  font-weight: normal;
  font: 14px/30px 'Roboto', sans-serif;
  text-transform: uppercase;
  box-sizing: border-box;
}
.cart-container .form-cart .custom-empty-cart:hover {
  background: #333;
}
.cart-container .form-cart .custom-empty-cart:before {
  content: "\f00d";
  color: #fff;
  font-size: 17px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: top;
  margin-top: 0;
  font-family: FontAwesome;
}
.cart-container .form-cart .action.update {
  float: right !important;
  margin-left: 10px !important;
  margin-right: 0 !important;
  border: 0;
  padding: 0 10px;
  margin: 0;
  background: #3190c4;
  cursor: pointer;
  vertical-align: middle;
  height: 30px;
  line-height: 30px;
  border-radius: 0;
  color: #fff;
  font-weight: normal;
  font: 14px 'Roboto', sans-serif;
  text-transform: uppercase;
}
.cart-container .form-cart .action.update:hover {
  background: #333;
}
.cart-container .form-cart .action.update:before {
  content: "\f021";
  color: #fff;
  font-size: 17px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: top;
  margin-top: 0;
  font-family: FontAwesome;
}
.cart-container .form-cart .action.btn-proceed-quote {
  float: right;
  margin-right: 10px;
  border: 0;
  padding: 0 10px;
  margin: 0 0 0 10px;
  background: #7cb642;
  cursor: pointer;
  vertical-align: middle;
  height: 30px;
  line-height: 30px;
  border-radius: 0;
  color: #fff;
  font-weight: normal;
  font: 14px 'Roboto', sans-serif;
  text-transform: uppercase;
}
.cart-container .form-cart .action.btn-proceed-quote:hover {
  background: #333;
}
.cart-container .form-cart .action.btn-proceed-quote:before {
  content: "\f00c";
  color: #fff;
  font-size: 17px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: top;
  margin-top: 0;
  font-family: FontAwesome;
}
.minicart-items .item-qty {
  padding: 0;
  width: 3.2em;
  height: 30px;
}
.minicart-items .item-qty:focus {
  border-color: #3399cc;
}
.minicart-items .update-cart-item {
  background: #3190c4;
  border: 0;
  border-radius: 0;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
}
.minicart-items .action.delete {
  margin-top: -3px;
}
.minicart-items .action.delete:before {
  background: url("../images/icon_sprite.png") 4px -648px no-repeat;
  content: "";
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.minicart-items .action.edit {
  display: none !important;
}
.minicart-items .action.edit:before {
  color: #3190c4 !important;
}
.minicart-items .product-item-pricing .price-container {
  display: none;
}
.minicart-items .product-item:first-child {
  margin-top: 0;
}
.minicart-items .product-item {
  margin: 8px 0 0 !important;
  padding-top: 8px;
}
.checkout-cart-index .white-popup {
  max-width: 500px !important;
}
.checkout-cart-index .fieldset {
  margin-bottom: 0 !important;
}
.checkout-cart-index .form-list {
  margin-bottom: 10px !important;
}
.checkout-cart-index .form-list li.fields {
  margin-bottom: 0 !important;
}
.checkout-cart-index .form-list li.fields .field {
  margin-bottom: 1rem;
}
.checkout-cart-index .form-list li textarea.input-text {
  height: 77px !important;
  padding-top: 7px;
  padding-bottom: 7px;
  resize: none;
  border-color: #524a48;
}
.checkout-cart-index #customQuoteForm .form-list li .input-text {
  height: 32px;
}
.checkout-cart-index #customQuoteForm .form-list li .logo-attchment:before {
  height: 32px;
  line-height: 32px;
}
.checkout-cart-index #customQuoteForm .form-list li .logo-attchment .uploaded-file-name {
  height: 32px;
  line-height: 32px;
}
.checkout-cart-index #customQuoteForm .form-list li label {
  font-weight: bold;
}
.checkout-cart-index #customQuoteForm .form-list li label em {
  color: #df280a;
  font-weight: normal;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-style: normal;
  margin-left: 3px;
}
.checkout-cart-index #customQuoteForm .buttons-set {
  text-align: center;
}
.checkout-cart-index #customQuoteForm .buttons-set .send-enq {
  background: #7cb642;
  margin: 0;
  float: none;
  font: 16px 'Roboto', sans-serif;
  height: 36px;
  display: inline-block;
  color: #fff;
  border: 0;
  border-radius: 0;
  text-transform: uppercase;
  padding: 7px 0;
  min-width: 170px;
}
.checkout-cart-index #customQuoteForm .buttons-set .send-enq .fa {
  font-size: 19px;
  display: inline-block;
  vertical-align: top;
  margin-right: 4px;
}
.checkout-cart-index #customQuoteForm .buttons-set .send-enq:hover {
  background: #3190c4;
}
/*=========================== Search Module design =========================*/
.amsearch-form-container .input-text:focus {
  border: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.amsearch-item-container.recent_searches .amsearch-item {
  border-color: transparent !important;
  background: #3190c4 !important;
  color: #fff;
  word-break: break-word;
}
.amsearch-item-container.recent_searches .amsearch-item:hover {
  background: #e53d46 !important;
}
.amsearch-item-container:not(.recent_searches) .amsearch-highlight {
  color: #7cb642 !important;
  font-weight: 500 !important;
  font-size: 15px !important;
}
.amsearch-item-container.page a.item-name {
  color: #7cb642 !important;
  font-weight: 500 !important;
  font-size: 15px !important;
}
.amsearch-item-container.-large .amsearch-wrapper-content > .amsearch-item:hover {
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3) !important;
  background: #fff !important;
}
.amasty-xsearch-block-header {
  font-weight: 500;
  text-transform: none;
  font-size: 16px;
}
.amsearch-products .amsearch-highlight {
  background-color: #7cb642 !important;
}
.amsearch-item .action.primary {
  display: none;
}
@media (min-width: 768px) {
  .amsearch-form-container.-opened .amsearch-wrapper-input {
    left: 0 !important;
    right: auto !important;
  }
  .search-autocomplete.amsearch-clone-position {
    left: 0 !important;
    right: auto !important;
  }
}
/*========================= Related Products ============================*/
.catalog-product-view .page-bottom {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.catalog-product-view .page-bottom .amrelated-grid-wrapper {
  width: 100%;
  float: left;
  background: #E8ECEE;
  padding: 15px 0 15px;
  margin: 0;
}
.catalog-product-view .page-bottom .amrelated-grid-wrapper .block-title {
  text-align: center;
  margin: 0 0 20px;
}
.catalog-product-view .page-bottom .amrelated-grid-wrapper .block-title strong {
  font-size: 24px;
  font-weight: 400;
}
.catalog-product-view .page-bottom .amrelated-grid-wrapper .block-content {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: border-box;
}
.catalog-product-view .page-bottom .amrelated-grid-wrapper .block-content .products-grid {
  margin: 0;
}
.block.widget.amrelated-grid-wrapper .products-grid .product-item {
  width: calc((100% - (44px * 4)) / 5);
  margin-right: 44px;
  margin-left: 0 !important;
  background: #fff;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
  padding-bottom: 105px !important;
}
.block.widget.amrelated-grid-wrapper .products-grid .product-item .price-box {
  margin-top: 7px;
}
.block.widget.amrelated-grid-wrapper .products-grid .product-item-name {
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  background: #E8ECEE;
  padding: 13px 12px;
  margin-bottom: 0;
  margin-top: 0;
}
.block.widget.amrelated-grid-wrapper .products-grid .product.name a {
  font-size: 16px;
}
@media (min-width: 992px) {
  .block.widget.amrelated-grid-wrapper .products-grid .product-item:nth-child(5n) {
    margin-right: 0;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .block.widget.amrelated-grid-wrapper .products-grid .product-item {
    width: calc((100% - (44px * 2)) / 3);
    margin-bottom: 20px;
  }
  .block.widget.amrelated-grid-wrapper .products-grid .product-item:nth-child(3n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .block.widget.amrelated-grid-wrapper .products-grid .product-item .product-image-wrapper {
    height: auto;
  }
  .block.widget.amrelated-grid-wrapper .products-grid .product-item .product-image-photo {
    position: static;
  }
  .breadcrumbs {
    display: none;
  }
}
@media (max-width: 639px) {
  .block.widget.amrelated-grid-wrapper .products-grid .product-item {
    width: calc((100% - 44px) / 2);
    margin-bottom: 20px;
  }
  .block.widget.amrelated-grid-wrapper .products-grid .product-item:nth-child(even) {
    margin-right: 0;
  }
  .minicart-wrapper .product .actions {
    float: right !important;
    margin-top: 0 !important;
  }
  .page-products .product-item-info {
    width: 100%;
  }
  .products-grid .product-item {
    margin-bottom: 30px;
  }
}
@media (max-width: 399px) {
  .block.widget.amrelated-grid-wrapper .products-grid .product-item {
    width: 100%;
    margin-right: 0;
  }
}
/*========================= Upsell Product =====================*/
.block.upsell {
  margin-top: 25px;
}
.block.upsell .block-title {
  text-align: center;
}
.block.upsell .block-title strong {
  font-size: 24px !important;
  font-weight: 400 !important;
}
.block.upsell .product-item-info {
  width: 100% !important;
}
@media (min-width: 1024px) {
  .block.upsell .products-grid .product-item {
    width: 23.5% !important;
  }
  .block.upsell .products-grid .product-item:nth-child(2n + 1) {
    margin-left: 2%;
  }
  .block.upsell .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0;
  }
}
print .block.upsell .products-grid .product-item {
  width: 23.5% !important;
}
print .block.upsell .products-grid .product-item:nth-child(2n + 1) {
  margin-left: 2%;
}
print .block.upsell .products-grid .product-item:nth-child(4n + 1) {
  margin-left: 0;
}
/*====================== Quote Popup ==============================*/
.white-popup {
  padding: 35px 20px 20px !important;
  max-width: 300px !important;
  box-sizing: border-box;
}
.mfp-close-btn-in .white-popup .mfp-close {
  width: 90px;
  font-weight: normal;
}
.mfp-close-btn-in .white-popup .mfp-close:before {
  content: "CLOSE";
  font-size: 12px;
  vertical-align: top;
  margin-right: 5px;
  font-weight: 700;
}
.mfp-close-btn-in .white-popup .quote_suc_msg span {
  display: block;
  text-align: center;
  font-size: 12px;
}
.mfp-close-btn-in .white-popup .quote_suc_prod_name {
  font-size: 16px !important;
  font-weight: 600;
}
.mfp-close-btn-in .white-popup .quote_suc_btn {
  margin: 15px 0 0;
  text-align: center;
}
.mfp-close-btn-in .white-popup .quote_suc_btn .go_quote_list_link {
  background: #3190c4;
  font: 16px 'Roboto', sans-serif;
  padding: 0 35px 0 13px;
  height: 36px;
  color: #fff;
  display: inline-block;
  line-height: 36px;
  text-decoration: none;
  margin-bottom: 6px;
}
.mfp-close-btn-in .white-popup .quote_suc_btn .go_quote_list_link:hover {
  background: #e53d46;
}
.mfp-close-btn-in .white-popup .quote_suc_btn .go_quote_list_link .fa {
  width: 18px;
  height: 22px;
  background: url("../images/icon-quotelist-1.svg") 0 0 no-repeat;
  background-size: auto 100%;
  vertical-align: top;
  margin-right: 24px;
  margin-top: 6px;
}
.mfp-close-btn-in .white-popup .quote_suc_btn .go_quote_list_link .fa:before {
  content: "";
}
.mfp-close-btn-in .white-popup .quote_suc_btn .continue_browsing_link {
  background: #3190c4;
  font: 16px 'Roboto', sans-serif;
  padding: 0 12px;
  height: 36px;
  color: #fff;
  display: inline-block;
  line-height: 36px;
  text-decoration: none;
  text-transform: uppercase;
}
.mfp-close-btn-in .white-popup .quote_suc_btn .continue_browsing_link:hover {
  background: #e53d46;
}
.mfp-close-btn-in .white-popup .quote_suc_btn .continue_browsing_link .fa {
  font-size: 22px;
  margin-right: 12px;
  margin-top: 6px;
  vertical-align: top;
}
.cms-thanks.page-layout-1column .column.main h1 {
  margin-bottom: 10px !important;
  font-size: 25px !important;
}
.cms-thanks.page-layout-1column .column.main form input.button {
  max-width: 50%;
  background: #3190c4;
  font: 15px 'Roboto', sans-serif;
  border: 0;
  text-transform: uppercase;
  color: #fff;
  min-width: 170px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0.4em !important;
}
.cms-thanks.page-layout-1column .column.main form input.button:hover {
  background: #e53d46;
}
.short-desc-belowbox {
  margin-bottom: 30px;
}
.short-desc-belowbox div {
  background: #ececec;
  padding: 5px 10px;
  line-height: normal;
  border-bottom: 1px solid #ccc;
}
.short-desc-belowbox div strong {
  display: inline-block;
  vertical-align: middle;
  width: 70px;
}
.short-desc-belowbox div:last-child {
  margin-top: 15px;
  background: transparent;
  border-bottom: 0;
  padding: 0;
}
.short-desc-belowbox div:last-child p strong {
  width: auto;
}
.short-desc-belowbox div:last-child p strong:last-child {
  display: block;
  margin-top: 12px;
}
.product.data.items > .item.content .short-desc-belowbox {
  display: none;
}
/*============================ Customer Account and Dashboard ==========================*/
.customer-account-login .page-main {
  margin-top: 20px;
}
.customer-account-login .page-main .page-title-wrapper .page-title {
  font-size: 32px;
}
.customer-account-create .page-main {
  margin-top: 20px;
}
.customer-account-create .page-main .page-title-wrapper .page-title {
  font-size: 32px;
}
.customer-account-forgotpassword .page-main {
  margin-top: 20px;
}
.customer-account-forgotpassword .page-main .page-title-wrapper .page-title {
  font-size: 32px;
}
.account .page-main {
  margin-top: 20px;
}
.account .page-main .page-title-wrapper .page-title {
  font-size: 32px;
}
.login-container .fieldset > .field {
  margin-bottom: 10px;
}
.login-container .fieldset > .field > .control {
  width: 100% !important;
}
.login-container .fieldset > .field:not(.choice) > .label {
  text-align: left !important;
  width: 100% !important;
}
.login-container .fieldset > .actions-toolbar {
  margin-left: 0 !important;
}
.login-container .fieldset:after {
  margin-left: 0 !important;
}
.login-container a {
  color: #121212;
}
.login-container a:hover {
  color: #1979c3;
}
.form.create.account {
  min-width: none !important;
  width: 100% !important;
}
.form-create-account:after {
  content: "";
  display: table;
  clear: both;
}
.form-create-account .fieldset legend {
  margin-left: 0 !important;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 15px;
  padding-bottom: 12px;
  font-size: 1.8rem;
  font-weight: 500;
  width: 100%;
}
.form-create-account .fieldset > .field {
  margin-bottom: 10px;
}
.form-create-account .fieldset > .field > .control {
  width: 100% !important;
}
.form-create-account .fieldset > .field:not(.choice) > .label {
  text-align: left !important;
  width: 100% !important;
}
.form-create-account .fieldset:after {
  margin-left: 0 !important;
}
.form-create-account .actions-toolbar {
  margin-left: 0 !important;
  width: 100%;
  float: left;
}
.form-create-account a {
  color: #121212;
}
.form-create-account a:hover {
  color: #1979c3;
}
.form.password .fieldset legend {
  margin-left: 0 !important;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 15px;
  padding-bottom: 12px;
  font-size: 1.8rem;
  font-weight: 500;
  width: 100%;
}
.form.password .fieldset > .field {
  margin-bottom: 10px;
}
.form.password .fieldset > .field > .control {
  width: 100% !important;
}
.form.password .fieldset > .field:not(.choice) > .label {
  text-align: left !important;
  width: 100% !important;
}
.form.password .fieldset:after {
  margin-left: 0 !important;
}
.form.password .actions-toolbar {
  margin-left: 0 !important;
  width: 100%;
  float: left;
}
.form.password a {
  color: #121212;
}
.form.password a:hover {
  color: #1979c3;
}
.account .page-main a {
  color: #121212;
}
.account .page-main a:hover {
  color: #1979c3;
}
.account .page-main .fieldset legend {
  margin-left: 0 !important;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 15px;
  padding-bottom: 12px;
  font-size: 1.8rem;
  font-weight: 500;
  width: 100%;
}
.account .page-main .fieldset > .field {
  margin-bottom: 10px;
}
.account .page-main .fieldset > .field:not(.choice) > .label {
  text-align: left !important;
  width: 100% !important;
}
.account .page-main .fieldset > .field > .control {
  width: 100% !important;
}
.account .page-main .fieldset > .field.choice:before {
  display: none;
}
.account .page-main .actions-toolbar {
  margin-left: 0 !important;
}
.customer-account-login .page-main .action.primary,
.customer-account-create .page-main .action.primary,
.customer-account-forgotpassword .page-main .action.primary,
.account .page-main .action.primary {
  background: #3190c4;
  font: 500 16px 'Roboto', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  border-radius: 0 !important;
  border: 0;
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}
.customer-account-login .page-main .action.primary:hover,
.customer-account-create .page-main .action.primary:hover,
.customer-account-forgotpassword .page-main .action.primary:hover,
.account .page-main .action.primary:hover {
  background: #e53d46;
  border: 0;
}
@media (min-width: 768px) {
  .form-create-account .fieldset.create.info {
    float: left !important;
    width: 48%;
  }
  .form-create-account .fieldset.create.account {
    float: right !important;
    width: 48%;
  }
  .form-create-account .fieldset > .field.choice:before {
    display: none;
  }
}
.amlabel-position-wrapper {
  z-index: 1 !important;
  height: auto !important;
}
.amlabel-position-wrapper .amasty-label-container {
  height: auto !important;
}
.catalog-product-view .product.media .amlabel-position-wrapper {
  bottom: 120px !important;
  pointer-events: none;
}
@media (max-width: 767px) {
  .catalog-product-view .product.media .amlabel-position-wrapper {
    bottom: 37px !important;
  }
}
.modal-popup.confirm .modal-inner-wrap .modal-content {
  padding-right: 3rem !important;
  text-align: left;
  font-size: 15px;
}
.modal-popup .modal-footer {
  text-align: right;
}
.modal-popup .modal-footer button {
  line-height: normal;
  text-transform: uppercase;
  font-size: 14px;
  background: #2e71ea;
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  text-decoration: none;
  border-color: #2e71ea;
  border-radius: 3px;
  font-weight: normal;
  margin: 0 5px;
}
.modal-popup .modal-footer button.action-dismiss {
  float: right;
  border-color: #ccc;
  background: #fff;
  color: #121212;
}
.modal-popup .modal-footer button.action-dismiss:hover {
  color: #fff;
}
.modal-popup .modal-footer button:hover {
  background: #e53d46;
  border-color: #e53d46;
}
.modal-popup.confirm .modal-inner-wrap {
  border-radius: 4px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
}
.modals-overlay {
  background-color: rgba(51, 51, 51, 0);
}
@media (min-width: 601px) {
  .mobile-cat-banner {
    display: none !important;
  }
}
/* ============================== Home promo banner and tab section ============================*/
.promo-section-content {
  padding-bottom: 0;
  padding-top: 15px;
}
.promo-section-content .promo-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
  font-size: 0;
}
.promo-section-content .promo-section .l-banner {
  width: 48.5%;
  text-align: center;
}
.promo-section-content .promo-section .l-banner p {
  margin-bottom: 0;
}
.promo-section-content .promo-section .l-banner p img {
  height: auto;
}
.promo-section-content .promo-section .r-banner {
  width: 48.5%;
}
.promo-section-content .promo-section .r-banner .myslider {
  padding-top: 40px;
  font-size: 0;
}
.promo-section-content .promo-section .r-banner .myslider.owl-carousel .owl-item .item {
  text-align: center;
  padding: 0;
}
.promo-section-content .promo-section .r-banner .myslider.owl-carousel .owl-item img {
  display: inline-block;
  width: auto;
}
.promo-section-content .promo-section .r-banner .myslider .owl-nav {
  display: none;
}
.promo-section-content .promo-section .r-banner .owl-dots {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  margin-top: 0 !important;
  border-bottom: 2px solid #3190c4;
  padding-bottom: 0;
  display: flex;
  justify-content: space-between;
  height: 40px;
  align-items: center;
}
.promo-section-content .promo-section .r-banner .owl-dots .owl-dot button {
  font: 16px 'Roboto', sans-serif;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: #3190c4;
  box-shadow: none;
  padding: 0 9px;
  line-height: 1;
  height: 38px;
}
.promo-section-content .promo-section .r-banner .owl-dots .owl-dot.active button {
  color: #e53d46;
  position: relative;
}
.promo-section-content .promo-section .r-banner .owl-dots .owl-dot.active button:after {
  content: "";
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 8px solid #3190c4;
  width: 0;
  height: 0;
  line-height: normal;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
@media (min-width: 992px) {
  .promo-section-content .promo-section .l-banner {
    margin-top: 40px;
  }
}
@media (max-width: 1199px) {
  .promo-section-content .promo-section .r-banner .owl-dots .owl-dot button {
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media (max-width: 991px) {
  .promo-section-content {
    padding-top: 0;
  }
  .promo-section-content .promo-section {
    flex-direction: column;
  }
  .promo-section-content .promo-section .l-banner,
  .promo-section-content .promo-section .r-banner {
    width: 100%;
  }
  .promo-section-content .promo-section .r-banner {
    max-width: 620px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .promo-section-content .promo-section .r-banner .myslider {
    padding-top: 35px;
  }
  .promo-section-content .promo-section .r-banner .owl-dots {
    height: 35px;
  }
  .promo-section-content .promo-section .r-banner .owl-dots .owl-dot button {
    font-size: 12px;
  }
  .promo-section-content .promo-section .r-banner .owl-dots .owl-dot.active button:after {
    bottom: 3px;
  }
}
@media (max-width: 499px) {
  .promo-section-content .promo-section .r-banner .myslider {
    padding-top: 31px;
  }
  .promo-section-content .promo-section .r-banner .owl-dots {
    height: 31px;
  }
  .promo-section-content .promo-section .r-banner .owl-dots .owl-dot button {
    padding-left: 4px;
    padding-right: 4px;
    height: 37px;
    line-height: 1;
  }
  .promo-section-content .promo-section .r-banner .owl-dots .owl-dot.active button:after {
    bottom: 4px;
  }
}
.grecaptcha-badge {
  bottom: 155px !important;
  z-index: 2000 !important;
}
/*==================== Product page quote and contact button in mobile view =========================*/
.mobileproduct-button-set {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
}
.mobileproduct-button-set a {
  display: inline-block;
  text-align: center;
  font-size: 18px;
  color: #fff;
  padding: 10px 0;
  max-width: 250px;
  width: 100%;
  text-decoration: none;
  margin: 0 0 15px;
}
.mobileproduct-button-set a .fa {
  margin-right: 17px;
  font-size: 22px;
}
.mobileproduct-button-set a.quote-btn {
  background: #3190c4;
}
.mobileproduct-button-set a.phone-btn {
  background: #7cb642;
  margin-bottom: 0;
  padding: 8px 0;
}
.mobileproduct-button-set a.phone-btn .fa {
  font-size: 25px;
  margin-right: 8px;
}
@media (min-width: 768px) {
  .mobileproduct-button-set {
    display: none;
  }
}
@media (max-width: 767px) {
  .catalog-product-view .product.media {
    max-width: 70%;
    width: 100%;
    margin: 0 auto;
  }
  .product.info.detailed .mobileproduct-button-set {
    display: none;
  }
}
/** .page-wrapper {
  background: url("@{baseDir}images/snowflake_backdrop.jpg") center 0 repeat;
} XMAS**/
/*============================== New Header Search Start ===================================*/
.page-header .amsearch-wrapper-block {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 773px) !important;
  height: 36px;
  padding: 0 !important;
  margin: 24px 0 0 4.4% !important;
  float: none !important;
}
.page-header .amsearch-input-wrapper {
  min-width: 0 !important;
  width: 100% !important;
}
.page-header .amsearch-result-section {
  left: 0;
  right: auto;
}
.amsearch-input-wrapper .amsearch-input {
  width: 100%;
  height: 36px;
  padding-left: 55px;
  padding-right: 12px !important;
  font-family: roboto,sans-serif;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}
.amsearch-input-wrapper .amsearch-input:focus {
  border: 0;
}
.amsearch-input-wrapper .amsearch-button {
  left: 0 !important;
  right: auto !important;
  width: 40px;
  height: 100%;
  border: 0;
  background: #e53d46 !important;
  border-radius: 8px 0 0 8px;
  padding: 0 !important;
  line-height: 39px !important;
  opacity: 1 !important;
}
.amsearch-input-wrapper .amsearch-button:before {
  content: "\e615";
  font-family: 'icons-blank-theme';
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  color: #fff;
}
.amsearch-input-wrapper.-typed .amsearch-input {
  padding-left: 55px;
}
.amsearch-item-container .amsearch-item .amsearch-link {
  color: #121212;
}
.amsearch-item-container .amsearch-item .amsearch-link:hover {
  color: #121212;
}
.amsearch-item-container .amsearch-item .amsearch-link:focus {
  color: #121212;
}
.amsearch-item-container:not(.recent_searches) .amsearch-highlight {
  color: #3190c4 !important;
}
.amsearch-products-section.-grid:not(.-slider) .amsearch-item {
  max-width: 33.33% !important;
  padding: 15px !important;
}
.amsearch-products-section .amsearch-link {
  color: #121212;
  font-weight: bold;
}
.amsearch-products-section .amsearch-link:hover {
  color: #121212;
  font-weight: bold;
}
.amsearch-products-section .product-item-description {
  color: #121212;
  font-size: 1.4rem;
}
.amsearch-products-section .actions-secondary {
  display: none;
}
.amsearch-products-section .product-item .price-box .price {
  font-size: 16px;
}
.amsearch-products-section .product-item .minimal-price-link .price-label {
  font-weight: normal;
}
.amsearch-products-section .product-item .price-wrapper {
  font-weight: normal;
  font-size: 14px;
}
.amsearch-highlight {
  color: #3190c4;
}
.amsearch-item-container.-page a.amsearch-link {
  color: #3190c4;
}
.amsearch-item-container.-recent_searches .amsearch-item {
  background: #3190c4;
  border: 0;
}
.amsearch-item-container.-recent_searches .amsearch-item .amsearch-link {
  color: #fff;
}
.amsearch-item-container.-recent_searches .amsearch-item .amsearch-link:hover {
  background: #e53d46;
}
.amsearch-item-container.-recent_searches .amsearch-item.-match {
  background-color: #3190c4;
}
.amsearch-item-container.-recent_searches .amsearch-highlight {
  color: #9cd365 !important;
}
.amsearch-form-block.-opened {
  max-width: 75vw;
}
.amsearch-result-section {
  width: 100% !important;
}
@media (max-width: 1199px) {
  .page-header .amsearch-wrapper-block {
    width: calc(100% - 740px) !important;
    margin-left: 30px !important;
  }
}
@media (max-width: 991px) {
  .page-header .amsearch-wrapper-block {
    width: calc(100% - 670px) !important;
  }
}
@media (max-width: 767px) {
  .page-header .amsearch-wrapper-block {
    display: none;
  }
  .amsearch-overlay-block {
    display: none !important;
  }
}
/*============================== New Header Search End ===================================*/
.cms-artwork.cms-page-view .column.main img {
  width: 360px;
}
.product.media .amasty-label-image {
  width: 96px !important;
}
.catalog-product-view .product.media .amlabel-position-wrapper {
  bottom: 0 !important;
}
.amsearch-related-terms {
  display: none !important;
}
.amsearch-related-terms > .amsearch-title {
  font-size: 18px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .amsearch-related-terms {
    display: none !important;
  }
}
.footer-subscribe-btn {
  width: 280px;
  display: block;
  text-align: center;
  background: #3190c4;
  font: 21px 'Roboto', sans-serif;
  color: #fff;
  padding: 0.5em 0;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-sizing: border-box;
}
.footer-subscribe-btn:hover {
  background: #e53d46;
  color: #fff !important;
}
.cms-thanks.page-layout-1column .column.main .quote-subscribe-btn {
  width: 280px;
  display: inline-block;
  text-align: center;
  background: #3190c4;
  font: 21px 'Roboto', sans-serif;
  color: #fff;
  padding: 0.5em 0;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-sizing: border-box;
}
.cms-thanks.page-layout-1column .column.main .quote-subscribe-btn:hover {
  background: #e53d46;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .footer-subscribe-btn {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 639px) {
  .footer.content .links.col-4 p {
    text-align: center;
  }
}
/*============================== Product page brand ============================*/
#sm_menu_ham {
  box-sizing: content-box;
}
.product-brands {
  float: left;
  width: 100%;
  text-align: center;
}
.product-brands .brand-item {
  display: inline-block;
  vertical-align: middle;
  width: 65px;
  padding-left: 6px;
  padding-right: 6px;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
}
@media (max-width: 499px) {
  .product-brands .brand-item {
    width: 32%;
  }
  .product-brands .brand-item:nth-child(3n) [data-tooltip]:before {
    right: 0;
    left: auto;
  }
  .product-brands .brand-item [data-tooltip]:before {
    bottom: 135px;
  }
  .product-brands .brand-item [data-tooltip]:after {
    bottom: 130px;
  }
}
.product.data.items > .item.title.active > .switch {
  height: 45px !important;
}
a:hover {
  text-decoration: none;
}
.tooltip {
  margin: 4em 0;
  text-align: center;
}
.tooltip p {
  margin: 4em 0;
  text-align: center;
}
[data-tooltip] {
  position: relative;
  z-index: auto;
  cursor: pointer;
}
[data-tooltip]:before {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  pointer-events: none;
  position: absolute;
  bottom: 75px;
  left: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding: 7px;
  width: 120px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #000;
  background-color: rgba(51, 51, 51, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  text-align: left;
  font-size: 14px;
  line-height: 1.2;
  z-index: 200;
}
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  pointer-events: none;
  position: absolute;
  bottom: 70px;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid rgba(51, 51, 51, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
  z-index: 100;
}
[data-tooltip]:hover:before {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}
.customer-account-logoutsuccess .page-title-wrapper {
  margin-top: 20px;
}
.product-highlight-top {
  font-size: medium;
  line-height: 1.5;
}
.product-highlight-mid {
  float: left;
}
/*================================ Notice CSS ===============================*/
.page-header .header.panel {
  max-width: 100% !important;
  padding: 0 !important;
}
.header-top-linksec {
  max-width: 1280px;
  margin: 0 auto;
}
.notice {
  text-align: center;
  padding: 5px 0;
  margin-bottom: 5px;
  background: #dddddd;
  margin-top: -5px;
}
.notice h3,
.notice p {
  margin: 0;
}
@media (min-width: 768px) {
  .notice-mob {
    display: none;
  }
}
@media (max-width: 767px) {
  .notice {
    display: none;
  }
  .notice-mob {
    display: block;
    margin-bottom: 0;
  }
}
/*===================================== Category Listing bottom button link start ================================*/
.link-block {
  margin-bottom: 50px;
  text-align: center;
}
.link-block a {
  font: 16px 'Roboto', sans-serif;
  display: inline-block;
  text-align: center;
  text-transform: none;
  vertical-align: middle;
  color: #fff;
  border: 0;
  border-radius: 25px;
  padding: 10px 17px;
}
@media (min-width: 769px) {
  .link-block {
    width: calc(100% - 320px);
    float: left;
  }
  .sidebar.sidebar-main .link-block {
    display: none;
  }
}
@media (max-width: 768px) {
  .catalog-category-view .page-main .products {
    margin-bottom: 0;
  }
  .link-block {
    display: none;
  }
  .sidebar.sidebar-main .link-block {
    display: block;
    margin-bottom: 30px;
  }
}
/*===================================== Category Listing bottom button link end ================================*/
/*=============================== Amasty Blog start ===================================*/
@media (min-width: 768px) {
  .amblog-index-index .column.main,
  .amblog-index-post .column.main,
  .amblog-index-category .column.main,
  .amblog-post-preview .column.main {
    width: 75% !important;
    padding-left: 0 !important;
  }
  .amblog-index-index .sidebar,
  .amblog-index-post .sidebar,
  .amblog-index-category .sidebar,
  .amblog-post-preview .sidebar {
    width: 25% !important;
  }
}
.amblog-index-index,
.amblog-index-post,
.amblog-index-category,
.amblog-post-preview {
  background: #fff !important;
}
.amblog-index-index .page-title-wrapper,
.amblog-index-post .page-title-wrapper,
.amblog-index-category .page-title-wrapper,
.amblog-post-preview .page-title-wrapper {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  flex-direction: column;
  align-items: flex-start !important;
}
.amblog-index-index .page-title-wrapper .amblog-aside-left,
.amblog-index-post .page-title-wrapper .amblog-aside-left,
.amblog-index-category .page-title-wrapper .amblog-aside-left,
.amblog-post-preview .page-title-wrapper .amblog-aside-left {
  display: block;
  position: static;
  width: 100%;
  box-shadow: none;
  background: transparent !important;
  padding-top: 0;
}
.amblog-index-index .page-title-wrapper .amblog-aside-left .aside-title,
.amblog-index-post .page-title-wrapper .amblog-aside-left .aside-title,
.amblog-index-category .page-title-wrapper .amblog-aside-left .aside-title,
.amblog-post-preview .page-title-wrapper .amblog-aside-left .aside-title {
  margin-top: 0;
  margin-bottom: 0;
}
.amblog-index-index .page-title-wrapper .amblog-aside-left .aside-title .amblog-close,
.amblog-index-post .page-title-wrapper .amblog-aside-left .aside-title .amblog-close,
.amblog-index-category .page-title-wrapper .amblog-aside-left .aside-title .amblog-close,
.amblog-post-preview .page-title-wrapper .amblog-aside-left .aside-title .amblog-close {
  display: none;
}
.amblog-index-index .page-title-wrapper .amblog-aside-left .mobile-block.amblog-element-block,
.amblog-index-post .page-title-wrapper .amblog-aside-left .mobile-block.amblog-element-block,
.amblog-index-category .page-title-wrapper .amblog-aside-left .mobile-block.amblog-element-block,
.amblog-post-preview .page-title-wrapper .amblog-aside-left .mobile-block.amblog-element-block {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}
.amblog-index-index .page-title-wrapper .amblog-swipe,
.amblog-index-post .page-title-wrapper .amblog-swipe,
.amblog-index-category .page-title-wrapper .amblog-swipe,
.amblog-post-preview .page-title-wrapper .amblog-swipe {
  display: none;
}
.amblog-index-index .sidebar .amblog-widget-container,
.amblog-index-post .sidebar .amblog-widget-container,
.amblog-index-category .sidebar .amblog-widget-container,
.amblog-post-preview .sidebar .amblog-widget-container {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.amblog-index-index .sidebar .amblog-title,
.amblog-index-post .sidebar .amblog-title,
.amblog-index-category .sidebar .amblog-title,
.amblog-post-preview .sidebar .amblog-title,
.amblog-index-index .sidebar .amblog-list,
.amblog-index-post .sidebar .amblog-list,
.amblog-index-category .sidebar .amblog-list,
.amblog-post-preview .sidebar .amblog-list {
  padding: 0;
}
.amblog-title {
  font-weight: 400;
  color: #000;
  margin-bottom: 10px;
}
.amblog-post-container {
  border-radius: 0 !important;
  box-shadow: none !important;
  display: inline-block;
  border-top: 1px solid #ccc;
  padding-top: 25px;
}
.amblog-post-container.-post-page {
  padding-top: 0;
  border-top: 0;
}
.amblog-post-container .post-image {
  width: 250px;
  float: left;
}
.amblog-post-container .post-image img {
  border: 0 !important;
}
.amblog-post-container .amblog-date {
  margin-bottom: 0 !important;
}
.amblog-post-container .amblog-content {
  padding: 0 !important;
  width: calc(100% - 270px);
  float: right;
}
.amblog-post-container .amblog-footer {
  width: calc(100% - 270px);
  float: right;
  padding: 0;
  flex-direction: column;
  align-items: start;
}
.amblog-post-container .amblog-footer .amblog-wrap {
  margin-bottom: 10px;
}
.amblog-post-container .amblog-footer .amblog-wrap .amblog-posted-in {
  color: #999999;
}
.amblog-post-container .amblog-footer .amblog-wrap .amblog-ref {
  font-weight: 400;
  color: #333333;
}
.amblog-post-container .amblog-footer .amblog-wrap .amblog-ref:hover {
  text-decoration: underline;
}
.amblog-post-container .amblog-footer .amblog-read {
  padding: 7px 15px;
  border: 0;
  line-height: 19px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 8px;
  background: #232830;
  font-weight: 400;
  margin: 7px 0 0;
}
.amblog-post-container .amblog-footer .amblog-read:hover {
  background: #bf1e2e;
}
.amblog-post-container.-post-page .amblog-footer {
  float: none;
  width: 100%;
  margin: 0 auto;
}
.amblog-index-post .amblog-post-container .amblog-content,
.amblog-post-preview .amblog-post-container .amblog-content {
  width: 100%;
}
.amblog-post-list .post-title {
  color: #000;
  font-weight: 400;
}
.amblog-post-list .post-title:hover {
  color: #000 !important;
  text-decoration: underline;
}
.amblog-post-list .post-item-info:not(:last-of-type) {
  margin-bottom: 0 !important;
}
.amblog-post-list .post-image {
  margin-bottom: 10px;
  width: 60px;
  float: left;
}
.amblog-post-list .post-image img {
  border: 0 !important;
}
.amblog-post-list .post-item-details {
  padding-left: 0;
  float: right;
  width: calc(100% - 70px);
}
.amblog-post-list .post-item-details .post-title {
  display: inline-block !important;
}
.amblog-post-title {
  margin-bottom: 10px;
}
.amblog-post-title .post-title {
  color: #000 !important;
  font-weight: 400;
  font-size: 21px;
}
.amblog-post-title .post-title:hover {
  color: #bf1e2e !important;
}
.post-item:after {
  content: "";
  display: table;
  clear: both;
}
.amblog-element-block .amblog-categories li {
  position: relative;
  padding-left: 15px;
}
.amblog-element-block .amblog-categories li:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #242227;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}
.amblog-element-block .amblog-categories .amblog-link {
  font-weight: 400 !important;
  color: #000;
  display: inline-block;
}
.amblog-element-block .amblog-categories .amblog-link:hover {
  text-decoration: underline;
  color: #000;
}
.amblog-comments-wrapper {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.amblog-comments-wrapper .amblog-title {
  padding: 0 0 15px;
}
.amblog-comments-wrapper .amblog-comments-action {
  margin: 0;
}
.amblog-element-block .amblog-widget-container {
  padding-bottom: 15px;
  margin-bottom: 15px !important;
  border-bottom: 1px solid #ccc;
}
.amblog-element-block .amblog-widget-container .amblog-title {
  font-size: 2rem !important;
  font-weight: 400 !important;
  color: #000 !important;
}
.amblog-aside-left {
  height: 100% !important;
}
.amblog-aside-left .aside-title {
  font-size: 0;
  margin-top: 0 !important;
}
.amblog-comments-action .amblog-form-comment .amblog-btn {
  background: #39c;
  display: inline-block;
  padding: 7px 15px;
  border: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: roboto,sans-serif;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 0;
  width: auto;
}
.amblog-comments-action .amblog-form-comment .amblog-btn:hover {
  background: #2e8ab8;
}
.featured-block {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.amblog-post-list.featured {
  border-radius: 0 !important;
  box-shadow: none !important;
}
.amblog-pager-container .amblog-link {
  background: #3190c4;
}
.amblog-pager-container .amblog-link:hover {
  background: #e53d46;
}
.alignright {
  float: right;
  margin: 0 0 15px 15px;
}
.alignleft {
  float: left;
  margin: 0 15px 15px 0;
}
.amblog-post-preview .page-title {
  line-height: 4.8rem;
}
.am-powered-by {
  display: none !important;
}
@media (min-width: 992px) {
  .amblog-index-index .page-title-wrapper .amblog-aside-left,
  .amblog-index-post .page-title-wrapper .amblog-aside-left,
  .amblog-index-category .page-title-wrapper .amblog-aside-left,
  .amblog-post-preview .page-title-wrapper .amblog-aside-left {
    display: none;
  }
}
@media (max-width: 991px) {
  .amblog-index-index .column.main,
  .amblog-index-post .column.main,
  .amblog-index-category .column.main,
  .amblog-post-preview .column.main {
    width: 100% !important;
    padding-left: 0 !important;
    order: 2 !important;
  }
  .amblog-index-index .sidebar,
  .amblog-index-post .sidebar,
  .amblog-index-category .sidebar,
  .amblog-post-preview .sidebar {
    width: 100% !important;
    padding-right: 0 !important;
    order: 1 !important;
  }
  .amblog-post-container:first-child {
    border-top: 0;
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .amblog-post-preview h3.amblog-title:before {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAyMCAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuODc2NTYgMC40NTQxMDNMMC45MDkwNTggOC44MDA1NkwyLjM0ODc5IDEwLjI1NzNMOS44NzY1NiAzLjI0OTM4TDE3LjY1MTEgMTAuNDU0MUwxOS4wOTA5IDkuMDM2NzhMMTAuNDExMyAwLjkyNjU0NEw5Ljg3NjU2IDAuNDU0MTAzWiIgZmlsbD0iI0M3QzdDNyIvPgo8L3N2Zz4K);
    content: '';
    cursor: pointer;
    display: block;
    height: 12px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-180deg);
    width: 20px;
  }
}
@media (max-width: 767px) {
  .amblog-element-block {
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }
  .amblog-element-block .amblog-widget-container {
    border-bottom: 1px solid #ccc;
    box-shadow: none !important;
    background: transparent !important;
    border-radius: 0 !important;
  }
  .amblog-element-block .amblog-widget-container .amblog-title {
    padding: 0;
  }
  .amblog-element-block .amblog-list {
    padding: 0;
    margin-top: 20px;
  }
  .amblog-element-block .amblog-list .post-title {
    font-weight: 400;
  }
}
@media (max-width: 599px) {
  .amblog-post-container .post-image {
    width: 100%;
    text-align: center;
  }
  .amblog-post-container .amblog-content,
  .amblog-post-container .amblog-footer {
    width: 100%;
  }
}
/*=============================== Amasty Blog end ===============================*/
.header.links .notice {
  font-size: 12px;
  font-weight: 400;
  padding: 5px 10px;
}
.notice-mob {
  font-size: 12px !important;
  font-weight: 400 !important;
  padding: 5px 10px;
}
.search_loader {
  display: none;
  width: 100%;
  height: 40px;
  text-align: center;
  background: url("../images/three-bar-loader.gif") center center no-repeat;
  background-size: 150px auto;
  font-size: 0;
}
/*===================== Dashboard Left Menu =======================*/
.account .nav a {
  background: transparent !important;
  font-size: 1.4rem !important;
}
@media (min-width: 1025px) {
  .header .ammenu-button {
    display: none !important;
  }
}
/*=============================== Amasty Sitemap ===============================*/
.amsitemap-index-index .page-main .page-title-wrapper {
  margin-top: 20px;
}
.sitemapSection ul {
  padding-left: 0;
  margin-right: 20px;
}
.sitemapSection ul li {
  margin-left: 0 !important;
}
.sitemapSection ul li a {
  color: #1979c3;
  font-weight: 500;
}
.sitemapSection ul li a:hover {
  color: #7cb642;
}
.am-sitemap-cell {
  padding-right: 15px !important;
}
.am-sitemap-cell > li a {
  color: #1979c3;
}
.am-sitemap-cell > li a:hover {
  color: #7cb642;
}
.am-sitemap-cell li.lavel-2 {
  background: #E8ECEE;
  padding: 8px 10px !important;
  margin-bottom: 10px;
  margin-top: 10px;
}
.am-sitemap-cell li.lavel-2 a {
  color: #000;
  font-weight: 500;
}
.am-sitemap-cell > li.lavel-2 a:hover {
  color: #7cb642;
}
.am-sitemap-cell li.lavel-3 {
  padding-left: 10px !important;
  padding-right: 10px !important;
  margin-bottom: 8px;
  margin-top: 8px;
}
.am-sitemap-cell li.lavel-3 a {
  font-weight: 500;
}
.am-sitemap-cell li.lavel-4 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.am-sitemap-cell li.lavel-4 a {
  color: #000;
}
.am-sitemap-cell > li.lavel-4 a:hover {
  color: #7cb642;
}
.am-sitemap-cell li.lavel-5 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}
.am-sitemap-cell li.lavel-5 a {
  color: #000;
}
.am-sitemap-cell > li.lavel-5 a:hover {
  color: #7cb642;
}
.am-sitemap-list dl dt {
  background: #E8ECEE;
  padding: 8px 10px !important;
  margin-bottom: 10px;
  margin-top: 10px;
}
/*============================ Header Fixed Sidebanner start ===============================*/
.header-fixed-banner-outer {
  position: absolute;
  display: inline-flex;
  max-width: 100%;
  width: 100%;
  height: auto;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  z-index: 2000 !important;
}
.header-fixed-banner-outer .header-fixed-banner {
  display: none;
}
.header-fixed-banner-outer .header-fixed-banner.right {
  width: calc((100% - 1340px) / 2);
  height: 60px;
  position: absolute;
  top: 40px;
  right: 30px;
}
.header-fixed-banner-outer .header-fixed-banner img {
  width: 100%;
}
@media (min-width: 1600px) {
  .header-fixed-banner-outer {
    display: flex;
  }
  .header-fixed-banner-outer .header-fixed-banner {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1600px) and (max-width: 1916px) {
  .header-fixed-banner-outer .header-fixed-banner img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 1917px) {
  .header-fixed-banner-outer .header-fixed-banner img {
    width: auto;
    height: 100%;
  }
}
@media (min-width: 2360px) {
  .header-fixed-banner-outer .header-fixed-banner.right {
    align-items: normal;
  }
}
/*============================ Header Fixed Sidebanner end ===============================*/
.message.success {
  font-size: 21px;
  line-height: 1.5;
}
.message.error {
  font-size: 21px;
  line-height: 1.5;
}
.message.error > *:first-child:before {
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
}
.message.success > *:first-child:before {
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
}
/*============================== Category Page Quote Form Popup ================================*/
html {
  overflow-x: hidden;
}
.page-products.catalog-category-view {
  overflow-x: hidden;
  position: relative;
}
.page-products.catalog-category-view .columns {
  position: static;
}
.quote-form-container .overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 20000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}
.quote-form {
  position: absolute;
  right: -371px;
  top: 200px;
  background: #fff;
  padding: 0;
  width: 370px;
  box-sizing: border-box;
  z-index: 2000000;
  transition: all 0.5s;
}
.quote-form .heading {
  background: #e53d46;
  font-size: 23px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  border-radius: 10px 10px 0 0;
  padding: 10px 0;
  line-height: normal;
  width: 210px;
  transform: rotate(-90deg);
  position: absolute;
  left: -129px;
  top: 82px;
  cursor: pointer;
}
.quote-form .block-title {
  text-align: center;
  font-weight: normal;
  margin-bottom: 10px;
  display: none;
}
.quote-form .block-title strong {
  font-weight: normal;
}
.quote-form .form-content .block-title {
  display: block;
}
.quote-form .fieldset {
  margin-bottom: 25px;
}
.quote-form .quick-question .form-content {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 0;
  box-shadow: none;
}
.quote-form .quick-question .titlebar {
  pointer-events: none;
}
.quote-form .quick-question .titlebar .fa.ques-toggle {
  display: none;
}
.quote-form-container.open .quote-form {
  right: 0;
}
.quote-form-container.open .overlay {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 1500px) {
  .quote-form {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 1499px) {
  .quote-form-container .quote-form {
    position: fixed;
    top: 120px;
  }
}
@media (max-width: 767px) {
  .quote-form-container.open .quote-form {
    right: 15px;
    width: calc(100% - 35px);
    top: 55px;
  }
  .quote-form-container.open .quote-form .heading {
    width: 45px;
    left: 0;
    top: -47px;
    cursor: pointer;
    font-size: 0;
    transform: none;
    border-radius: 10px 10px 0 0;
  }
  .quote-form-container.open .quote-form .heading:before {
    content: "X";
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
  }
}
.sorter-action.sort-desc:before,
.sorter-action.sort-asc:before {
  color: #3190c4;
}
.sorter-action.sort-desc:hover:before,
.sorter-action.sort-asc:hover:before {
  color: #e53d46;
}
/*============================ Category Page Modified Grid ============================*/
.page-products.catalog-category-view .product-item-info {
  width: 294px;
}
@media (min-width: 1024px) {
  .catalog-category-view .products-grid .product-item {
    width: calc((100% - 6%) / 4) !important;
    margin-left: 2% !important;
  }
  .catalog-category-view .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0 !important;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .catalog-category-view .products-grid .product-item {
    width: calc((100% - 4%) / 3) !important;
    margin-left: 2% !important;
  }
  .catalog-category-view .products-grid .product-item:nth-child(3n + 1) {
    margin-left: 0 !important;
  }
}
@media (max-width: 539px) {
  .catalog-category-view .products-grid .product-item {
    width: calc((100% - 2%) / 2) !important;
    margin-left: 2% !important;
  }
  .catalog-category-view .products-grid .product-item:nth-child(2n + 1) {
    margin-left: 0 !important;
  }
}
/*==================================== Responsive ==================================*/
@media (max-width: 1199px) {
  .logo {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  .logo img {
    max-width: 90%;
    display: inline-block;
  }
  .skip-links .header-tab {
    margin-left: 0;
  }
  .minicart-wrapper .action.showcart {
    margin-left: 0;
  }
  .block-search {
    width: calc(100% - 740px) !important;
    margin-left: 30px;
  }
}
@media (max-width: 991px) {
  .block-search {
    width: calc(100% - 670px) !important;
  }
  .header-callus {
    margin-top: 30px;
  }
  .header-callus .fa {
    font-size: 27px;
  }
  .header-callus a {
    font-size: 20px !important;
  }
  .minicart-wrapper .action.showcart {
    width: auto;
  }
  .minicart-wrapper .action.showcart .text {
    width: 40px;
    white-space: normal;
  }
  .skip-links .header-tab {
    width: auto;
  }
  .skip-links .header-tab.email-team span,
  .skip-links .header-tab.visit-office span {
    width: auto;
  }
  .home-review ul {
    margin: 0;
  }
  .home-review ul li {
    width: calc((100% - 26px) / 2);
  }
  .home-review ul li:nth-child(even) {
    margin-right: 0;
  }
  .footer.content .links {
    width: 33%;
    float: left;
  }
  .footer.content .links.col-1 {
    width: 100%;
    text-align: center;
    padding-right: 0 !important;
    padding-bottom: 20px;
    margin: 0 auto;
  }
  .footer.content .links.col-4 {
    width: 33%;
    padding-right: 0 !important;
  }
  .footer.content .links .social {
    display: inline-block;
  }
  .footer.content .links .social li:last-child {
    margin-right: 0;
  }
  .footer.content .block.newsletter {
    margin: 0 auto 30px;
    max-width: 500px;
  }
  .navigation .menuLinks a {
    margin-left: 17px;
    font-size: 13px;
  }
}
@media (min-width: 768px) {
  .top-lnk-toggle {
    display: none;
  }
}
@media (max-width: 767px) {
  .page-header {
    padding-bottom: 12px;
  }
  .logo {
    clear: left;
    padding: 0;
    margin-left: 35px !important;
    margin-top: 17px !important;
    max-width: 170px !important;
  }
  .logo img {
    display: inline-block !important;
  }
  .minicart-wrapper .action.showcart:before {
    content: "" !important;
  }
  .top-lnk-toggle {
    display: block;
    font: 14px 'Roboto', arial, helvetica, sans-serif;
    color: #112743;
    text-transform: none;
    padding: 5px 14px;
  }
  .top-lnk-toggle:before {
    content: "";
    border-left: 12px solid #112743;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
  }
  .top-lnk-toggle.open:before {
    transform: rotate(90deg);
  }
  .header-top-linksec .custom-inner-box {
    display: none;
  }
  .header-top-linksec .custom-inner-box.open {
    display: block;
    position: absolute;
    padding: 0;
    left: 0;
    right: 0;
    top: 27px;
    z-index: 3000;
    background: #e8ecee;
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.2);
  }
  .header-top-left,
  .header-top-right {
    float: none;
  }
  .header-top-left li,
  .header-top-right li {
    float: left;
    width: 100%;
    margin-right: 0;
    margin-left: 0 !important;
  }
  .header-top-left li a,
  .header-top-right li a {
    display: block;
    padding: 6px 10px;
    border-top: 1px solid #d3d6dc;
  }
  .header-top-left li:after {
    display: none;
  }
  .header-top-left li .fa {
    vertical-align: middle;
  }
  .header-top-left li:first-child {
    position: relative;
  }
  .header-top-left li:first-child .fa {
    position: absolute;
    left: 10px;
    top: 5px;
    margin: 0;
  }
  .header-top-left li:first-child a {
    padding-left: 40px;
  }
  .page-header {
    position: relative;
    margin-bottom: 5px !important;
    border-bottom: 0 !important;
  }
  .page-header:after {
    content: "";
    width: 100%;
    height: 40px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
  }
  .page-header .panel.wrapper {
    padding: 0 !important;
  }
  .page-header .header.panel {
    padding: 0 !important;
  }
  .header.panel > .header.links {
    margin-bottom: 0;
  }
  .block-search .control {
    position: absolute !important;
    margin: 0 !important;
    left: 0;
    right: 0;
    bottom: -111px;
    box-sizing: border-box;
    z-index: 200;
    border-top: 0 !important;
    background: #EDEDED;
  }
  .block-search .form.minisearch.active .action.search {
    display: block;
    position: absolute;
    left: 14px;
    bottom: -96px;
    z-index: 201;
    height: 36px;
    font-size: 0;
  }
  .block-search .form.minisearch.active .action.search:before {
    content: '\e615';
    font-family: 'icons-blank-theme';
  }
  .block-search .label:before {
    color: #434446 !important;
    font-weight: bold !important;
  }
  .footer .copyright {
    display: none !important;
  }
  .footer.content {
    border-top: 0 !important;
    margin-top: 0 !important;
  }
  .header.content {
    padding-top: 70px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    z-index: 2000 !important;
  }
  .logo {
    position: absolute !important;
    left: 10px;
    top: 0;
    margin-left: 0 !important;
    margin-top: 12px !important;
    text-align: left;
  }
  .minicart-wrapper {
    width: 28%;
    text-align: center;
    margin-top: 0 !important;
    line-height: 30px;
  }
  .minicart-wrapper .action.showcart {
    padding: 16px 5px;
    width: 100px;
  }
  .minicart-wrapper .action.showcart:hover {
    background: #fff;
  }
  .skip-links {
    float: right;
    width: 60%;
    margin-top: 0;
    text-align: center;
    font-size: 0;
    display: flex;
    justify-content: space-around;
  }
  .skip-links .header-tab {
    width: 100px;
    padding: 14px 5px;
    text-align: center;
  }
  .skip-links .header-tab:hover {
    background: #fff;
  }
  .block-search {
    width: 12% !important;
    float: left !important;
    margin: 0;
    text-align: center;
    padding: 13px 0 !important;
  }
  .block-search .label {
    float: none !important;
  }
  .header-callus {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 18px;
  }
  .nav-toggle {
    display: none !important;
  }
  .nav-toggle:before {
    color: #434446 !important;
    font-weight: bold !important;
  }
  .contact-index-index .left-contacts,
  .contact-index-index .right-contacts,
  .contact-index-index .contactForm,
  .contact-index-index .contactMap {
    width: 100%;
    margin-bottom: 20px;
  }
  .contact-index-index .contactMap {
    margin-bottom: 0;
  }
  .nav-open .nav-sections {
    z-index: 10000 !important;
  }
  .nav-sections-item-title {
    display: none;
  }
  .nav-sections-item-content {
    margin: 0 !important;
    padding: 0 !important;
  }
  .nav-sections-item-content:last-child {
    display: none;
  }
  .nav-sections-item-content .page-header {
    border-bottom: 0;
  }
  .navigation {
    background: transparent !important;
    padding: 0 !important;
  }
  .navigation .menuLinksTrigger {
    display: inline-block;
    float: right;
    font-size: 0;
    border-left: 12px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin: 14px 12px 0 0;
    height: 0;
  }
  .navigation .menuLinksTrigger.open {
    border-top: 12px solid #fff;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    margin: 17px 12px 0 0;
  }
  .navigation .menuLinks {
    display: none;
    width: 100%;
    margin: 0;
    background: #fff;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
  }
  .navigation .menuLinks.open {
    display: block;
  }
  .navigation .menuLinks a {
    font-size: 14px;
    color: #121212;
    display: block;
    padding: 7px 12px;
    border-bottom: 1px solid #ccc;
    margin-left: 0;
    text-align: left;
    line-height: normal;
  }
  #catDiv {
    width: 100%;
    left: 0;
  }
  .nav-sections-item-content .page-header-container #nav ol li a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    color: #121212;
    line-height: normal;
    text-decoration: none;
  }
  .nav-sections-item-content .page-header-container #nav ol li a:hover {
    color: #e53d46;
  }
  .nav-sections-item-content .page-header-container #nav ol li ul {
    column-count: auto !important;
  }
  .nav-sections-item-content .page-header-container #nav ol li ul li a {
    padding: 7px 10px 7px 20px;
    color: #121212;
    line-height: normal;
    border-bottom: 0;
  }
  .nav-sections-item-content .page-header-container #nav ol li ul li a:hover {
    color: #e53d46;
  }
  .product.data.items > .item.title {
    margin-bottom: 0 !important;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
  .product.data.items > .item.title > .switch {
    position: relative;
    padding-left: 24px !important;
  }
  .product.data.items > .item.title > .switch:before {
    content: "" !important;
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -6px;
    width: 0;
    height: 0;
    display: block !important;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #121212;
    border-right: none;
  }
  .product.data.items > .item.title.active > .switch {
    padding-left: 24px !important;
  }
  .product.data.items > .item.title.active > .switch:before {
    content: "";
    position: absolute;
    left: 7px;
    top: 50%;
    margin-top: -4px;
    width: 0;
    height: 0;
    display: block;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #121212;
  }
  .product.data.items > .item.content {
    margin-top: 0 !important;
    box-shadow: none;
    border: 1px solid #ccc !important;
    border-top: 0 !important;
  }
  .product.data.items .data.item iframe {
    width: 100% !important;
  }
  .cart.table-wrapper table thead {
    display: none;
  }
  .cart.table-wrapper .product-item-photo {
    max-width: 100% !important;
    width: 100px !important;
  }
  .cart.table-wrapper .product-item-details {
    float: right;
    text-align: left;
    width: calc(100% - 115px) !important;
  }
  .minicart-wrapper .action.showcart .counter.qty {
    color: #fff !important;
    position: absolute;
    left: -15px;
    top: 0;
    background: #e53d46 !important;
    width: 13px;
    height: 13px !important;
    min-width: 0 !important;
    border-radius: 50% !important;
    text-align: center !important;
    line-height: 13px !important;
    transform: translateY(-50%);
    padding: 0 !important;
    font-size: 0;
  }
  .minicart-wrapper .block-minicart {
    padding: 10px !important;
  }
  .minicart-items .product-item-details {
    padding-left: 64px !important;
    text-align: left !important;
  }
  .minicart-items .product-item-name {
    line-height: normal !important;
  }
  .minicart-items .product-item-name a {
    color: #121212 !important;
  }
  .minicart-items .action.delete:before {
    content: "" !important;
  }
  .form .search-autocomplete {
    width: 100% !important;
    text-align: left;
    margin: 0 !important;
  }
  .amsearch-autocomplete-image .product-image-wrapper {
    height: auto !important;
  }
  .amsearch-autocomplete-image .product-image-photo {
    position: static !important;
  }
  .cart.table-wrapper .product-item-photo {
    position: static !important;
  }
  .cart.main.actions {
    padding-bottom: 0;
  }
  .mfp-bg {
    z-index: 20000 !important;
  }
  .mfp-wrap {
    z-index: 20001 !important;
  }
  .minicart-wrapper .product .actions {
    line-height: normal !important;
  }
  .minicart-items .product-item {
    padding: 8px 0 0!important;
    margin: 8px 0 0 !important;
  }
  .sidebar .fieldset .fields > .field:not(:last-child) {
    margin-bottom: 3px !important;
  }
  .modal-popup._show {
    z-index: 10000 !important;
  }
  .modals-overlay {
    z-index: 9999 !important;
  }
  .page-with-filter .columns .sidebar-main {
    order: 2 !important;
    -ms-flex-order: 2 !important;
    -webkit-order: 2 !important;
  }
  .to-top {
    display: none;
  }
  .grecaptcha-badge {
    bottom: 15px !important;
  }
}
@media (max-width: 699px) {
  .home-block.home-our-designteam img {
    float: none;
    margin-right: 0;
  }
  .home-we-are-right iframe {
    float: none;
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 639px) {
  .home-review ul li {
    width: 100%;
    margin-right: 0;
  }
  .footer .links,
  .footer .links.col-4 {
    width: 220px !important;
    clear: both;
    float: none;
    display: inline-block;
    vertical-align: top;
    margin: 20px calc((100% - 220px) / 2) 0;
    padding-right: 0 !important;
  }
  .footer .links.col-1 {
    width: 100% !important;
  }
  .block-search {
    margin-top: 0 !important;
  }
  .minicart-wrapper .product .actions {
    margin-top: -24px !important;
  }
}
@media (max-width: 600px) {
  .desktop-cat-banner {
    display: none !important;
  }
}
@media (max-width: 599px) {
  .cart.main.actions {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .cart-container .form-cart .action.btn-proceed-quote {
    order: 4;
    margin-left: 0;
    width: 100%;
    margin-right: 0;
  }
  .cart-container .form-cart .action.continue {
    order: 2;
    margin-right: 0;
    margin-left: 0;
    width: 100%;
  }
  .cart-container .form-cart .custom-empty-cart {
    order: 1;
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    margin-bottom: 10px;
  }
  .cart-container .form-cart .action.update {
    order: 3;
    margin-right: 0;
    margin-left: 0 !important;
    width: 100%;
  }
}
@media (max-width: 479px) {
  .cms-page-view .data-table th {
    white-space: normal;
    word-break: break-word;
  }
  .cart-container .form-cart .action.continue,
  .cart-container .form-cart .custom-empty-cart,
  .cart-container .form-cart .action.update {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
/*========================= Customized Menu ========================*/
@media (min-width: 768px) {
  .nav-sections-item-content > .navigation.mobile-menu {
    display: none;
  }
}
@media (max-width: 767px) {
  .logo {
    left: 50% !important;
    transform: translateX(-50%);
  }
  .navigation .browse-prod {
    display: none;
  }
}
@media (min-width: 768px) {
  .sm_menu_outer {
    display: none;
  }
  #sm_menu_ham {
    display: none;
  }
}
@media (max-width: 767px) {
  .nav-toggle {
    display: none !important;
  }
  .header-top-linksec {
    display: none;
  }
  .skip-links,
  .header-callus,
  .block.block-search {
    display: none !important;
  }
  .minicart-wrapper {
    display: inline-block !important;
    margin: -67px 12px 0 0 !important;
    width: auto;
    padding: 12px 5px;
  }
  .minicart-wrapper .block-minicart:before {
    right: 12px !important;
  }
  .minicart-wrapper .block-minicart:after {
    right: 11px !important;
  }
  .minicart-wrapper .action.showcart {
    width: auto;
    padding: 0;
  }
  .minicart-wrapper .action.showcart:hover {
    box-shadow: none;
  }
  .minicart-wrapper .action.showcart:before {
    width: 30px;
    height: 40px;
  }
  .minicart-wrapper .action.showcart .text {
    display: none;
  }
  .logo {
    left: 70px;
  }
  .logo img {
    max-width: 100%;
  }
  .sm_menu_outer .block-search {
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
    height: auto;
    position: relative;
  }
  .sm_menu_outer .block-search .control {
    position: static !important;
    background: transparent;
  }
  .sm_menu_outer .block-search input {
    position: static;
    padding-left: 15px;
    padding-right: 55px !important;
  }
  .sm_menu_outer .block-search .actions {
    position: absolute;
    right: 15px;
    left: auto;
    top: 15px;
  }
  .sm_menu_outer .block-search .actions .action.search {
    display: block;
    background: #e53d46 !important;
    border-radius: 0 8px 8px 0;
    height: 36px;
    font-size: 0;
  }
  .sm_menu_outer .block-search .actions .action.search:before {
    content: '\e615';
    font-size: 28px !important;
    font-weight: bold !important;
    line-height: 36px !important;
    color: #fff !important;
    font-family: 'icons-blank-theme';
  }
  .sm_menu_outer .minicart-wrapper {
    float: none;
    width: auto;
    padding: 10px 15px;
    line-height: normal;
    font-size: 16px;
    font-weight: 500;
  }
  .sm_menu_outer .block-minicart li {
    border-bottom: 0 !important;
  }
  .sm_menu_outer .block-minicart .no-product {
    padding: 15px 15px 0;
    text-align: center;
  }
  .sm_menu_outer .block-minicart .product {
    padding: 12px 15px 15px;
    border-bottom: 0.5px solid #d4d4d4;
  }
  .sm_menu_outer .block-minicart .product:after {
    content: "";
    display: table;
    clear: both;
  }
  .sm_menu_outer .block-minicart .product .actions {
    float: left;
    padding: 0;
    width: auto;
    margin-top: 0;
    text-align: left;
    border-bottom: 0;
  }
  .sm_menu_outer .block-minicart .product-item-photo {
    padding: 0;
    float: left;
  }
  .sm_menu_outer .block-minicart .product-item-name a {
    padding: 0;
  }
  .sm_menu_outer .block-minicart .product-item-pricing {
    float: left;
  }
  .sm_menu_outer .block-minicart .product-item-pricing .label {
    display: inline-block;
  }
  .sm_menu_outer .block-minicart .product-item-pricing .cart-item-qty {
    display: inline-block;
    width: 3.2em;
  }
  .sm_menu_outer .block-minicart .action.delete {
    font-size: 0;
    padding: 0;
  }
  .sm_menu_outer .block-minicart .action.delete:before {
    display: inline-block;
    background: url("../images/icon_sprite.png") 4px -648px no-repeat;
    content: "";
    width: 20px;
    height: 20px;
    vertical-align: middle;
  }
  .sm_menu_outer .block-minicart .actions {
    width: 100%;
    margin-top: 15px;
    text-align: center;
  }
  .sm_menu_outer .block-minicart .actions .viewcart {
    line-height: normal;
    text-transform: uppercase;
    font-size: 14px;
    background: #3190c4;
    color: #fff;
    padding: 10px 0;
    width: 120px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
  }
  .sm_menu_outer .mobile-contact h2 {
    padding: 10px 15px 0;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
  }
  .sm_menu_outer .mobile-contact p:not(:last-child) {
    margin-bottom: 0;
  }
  .sm_menu_outer .mobile-contact a {
    font-weight: normal !important;
    padding-bottom: 0 !important;
  }
  .sm_menu_outer .mobile-contact span {
    color: #3190c4;
    display: inline-block;
    margin-right: 5px;
  }
}
body.mmactive {
  overflow: hidden;
}
/*========================== New Mobile Menu Start =============================*/
@media (max-width: 768px) {
  .nav-sections-item-content .page-header {
    display: none;
  }
  .page-header {
    z-index: 100;
  }
  .page-wrapper .nav-sections {
    position: relative;
    width: 100%;
    left: auto;
    z-index: 200;
    overflow: visible;
  }
  .page-wrapper .header.links {
    display: none !important;
  }
  .nav-sections-items {
    position: static !important;
  }
  .cms-home .page-wrapper .nav-sections {
    margin-top: 0;
    margin-bottom: 0 !important;
  }
  .nav.mobile {
    display: none;
  }
  .nav.mobile.show-menu {
    display: block;
  }
  .minicart-wrapper {
    padding-top: 20px;
    padding-bottom: 0;
  }
}
@media (min-width: 769px) {
  .hamburger-menu {
    display: none;
  }
}
.hamburger-menu {
  display: block;
  width: 30px;
  position: absolute;
  left: 15px;
  top: -56px;
}
.hamburger-menu:before {
  content: "";
  display: block;
  width: 30px;
  height: 22px;
  background: url("../images/menu_icon.png") 0 0 no-repeat;
  background-size: 100% auto;
}
.hamburger-menu.active {
  top: -60px;
}
.hamburger-menu.active:before {
  background: url("../images/icon-close.svg") 0 0 no-repeat;
  height: 30px;
  background-size: 100% auto;
}
.nav__list {
  margin-bottom: 0;
  border-top: 1px solid #c3c3c3;
}
.nav__list li {
  margin-bottom: 0;
  float: left;
  width: 100%;
}
.nav__list li.mob-contact .group-list {
  max-height: inherit;
}
.nav__list li.mob-contact .group-list li {
  border-bottom: 0;
}
.nav__list li.mob-contact .group-list li a {
  height: 40px;
}
.nav__list li.mob-contact .group-list li a span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  color: #3190c4;
}
.nav a {
  display: block;
  padding: 15px;
  color: #fff;
  background-color: #ee7002;
  box-shadow: inset 0 -1px #ffffff;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  font: 400 18px 'Roboto', sans-serif;
  position: relative;
}
.nav a:focus {
  background: #ee7002;
  text-decoration: none;
}
.nav a:hover {
  background: #ee7002;
  text-decoration: none;
}
.nav label {
  display: block;
  padding: 15px;
  color: #121212;
  background-color: #fff;
  box-shadow: inset 0 -1px #c3c3c3;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  font: 500 18px 'Roboto', sans-serif;
  position: relative;
  cursor: pointer;
}
.nav label:focus {
  background: #fff;
  text-decoration: none;
}
.nav label:hover {
  background: #fff;
  text-decoration: none;
}
.nav label .fa {
  font-size: 22px;
  position: absolute;
  right: 15px;
  top: 16px;
}
.nav ul > li:last-child label {
  box-shadow: none;
}
.nav ul > li ul li:last-child label {
  box-shadow: inset 0 -1px #ffffff;
}
.group-list {
  height: 100%;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
  padding-left: 0;
}
.group-list li {
  border-bottom: 1px solid #c3c3c3;
}
.group-list a {
  padding-left: 30px !important;
  background: #fff;
  color: #121212;
  box-shadow: inset 0 -1px #ffffff;
  padding: 0 15px;
  height: 52px;
  display: flex;
  align-items: center;
  position: relative;
}
.group-list a:focus {
  background: #fff;
}
.group-list a:hover {
  background: #fff;
}
.group-list label {
  padding-left: 15px;
  background: #fff;
  box-shadow: inset 0 -1px #ffffff;
  padding: 0 15px;
  height: 52px;
  display: flex;
  align-items: center;
  position: relative;
  color: #121212;
}
.group-list label img {
  display: inline-block;
  vertical-align: middle;
  height: 42px;
  margin-right: 10px;
}
.group-list label:focus {
  background: #fff;
}
.group-list label:hover {
  background: #fff;
}
.group-list label a {
  padding-left: 0 !important;
}
.group-list.top a {
  padding-left: 15px !important;
}
.group-list.top label a {
  padding-left: 0 !important;
}
.group-list.top .group-list a {
  padding-left: 30px !important;
}
.group-list.top .group-list label a {
  padding-left: 15px !important;
}
.group-list.top .sub-group-list a {
  padding-left: 45px !important;
}
.group-list.top .sub-group-list label a {
  padding-left: 30px !important;
}
.group-list.top .sub-sub-group-list a {
  padding-left: 60px !important;
}
.group-list.top .sub-sub-group-list label a {
  padding-left: 45px !important;
}
.group-list.top .sub-4thsub-group-list a {
  padding-left: 130px !important;
}
.group-list.top .sub-4thsub-group-list label a {
  padding-left: 115px !important;
}
.sub-group-list {
  height: 100%;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
  padding-left: 0;
}
.sub-group-list li {
  border-bottom: 1px solid #c3c3c3;
}
.sub-group-list li:last-child {
  border-bottom: 0;
}
.sub-group-list li:first-child {
  border-top: 1px solid #c3c3c3;
}
.sub-group-list a {
  padding-left: 45px !important;
  background: #fff;
  box-shadow: inset 0 -1px #ffffff;
  color: #121212;
}
.sub-group-list a:focus {
  background: #fff;
}
.sub-group-list a:hover {
  background: #fff;
}
.sub-group-list label {
  padding-left: 15px;
  background: #fff;
  box-shadow: inset 0 -1px #ffffff;
  color: #5a5a5a;
  font-weight: 500;
}
.sub-group-list label:focus {
  background: #fff;
}
.sub-group-list label:hover {
  background: #fff;
}
.sub-group-list label a {
  padding-left: 0 !important;
}
.sub-sub-group-list {
  height: 100%;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
  padding-left: 0;
}
.sub-sub-group-list a {
  padding-left: 6rem !important;
  background: #fff;
  color: #121212;
}
.sub-sub-group-list a:focus {
  background: #fff;
}
.sub-sub-group-list a:hover {
  background: #fff;
}
.sub-sub-group-list label {
  padding-left: 6rem;
  background: #fff;
}
.sub-sub-group-list label:focus {
  background: #fff;
}
.sub-sub-group-list label:hover {
  background: #fff;
}
.sub-sub-group-list label a {
  padding-left: 0 !important;
}
.sub-4thsub-group-list {
  height: 100%;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
  padding-left: 0;
}
.sub-4thsub-group-list a {
  padding-left: 7.5rem !important;
  background: #fff;
  color: #121212;
}
.sub-4thsub-group-list a:focus {
  background: #fff;
}
.sub-4thsub-group-list a:hover {
  background: #fff;
}
.sub-4thsub-group-list label {
  padding-left: 6rem;
  background: #fff;
}
.sub-4thsub-group-list label:focus {
  background: #fff;
}
.sub-4thsub-group-list label:hover {
  background: #fff;
}
.sub-4thsub-group-list label a {
  padding-left: 0 !important;
}
.nav__list input[type=checkbox]:checked + label + ul {
  max-height: 1000px;
  overflow-y: scroll;
}
.nav__list input[type=checkbox]:checked + label + ul.group-list {
  border-top: 0;
}
.nav__list input[type=checkbox]:checked + label > span {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
label > span {
  float: right;
  -webkit-transition: -webkit-transform 0.65s ease;
  transition: transform .65s ease;
}
.nav__list .block-search {
  width: 100% !important;
  height: auto;
  padding: 0 !important;
  position: relative;
  border-bottom: 1px solid #c3c3c3;
}
.nav__list .block-search .control {
  position: static !important;
  background: #fff;
}
.nav__list .block-search input {
  position: static;
}
.nav__list .block-search .action.search {
  display: block;
  position: absolute;
  left: 15px;
  top: 15px;
  height: 36px;
  font-size: 0;
}
.nav__list .block-search .action.search:after {
  content: "\e615";
  font-family: 'icons-blank-theme';
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
/*========================== New Mobile Menu End =============================*/
/*=========================== Sidebar Fixed Banner ==========================*/
.cms-home .fixed-banner {
  top: 140px !important;
}
.fixed-banner {
  display: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 280px;
  align-items: center;
  justify-content: space-between;
  z-index: 200 !important;
}
.fixed-banner.left-fixed-banner {
  left: 0;
  margin-left: 0;
  width: 10%;
}
.fixed-banner.right-fixed-banner {
  right: 0;
  margin-right: 0;
  width: 10%;
}
.fixed-banner img {
  width: 100%;
}
@media (min-width: 1600px) {
  .fixed-banner {
    display: inline-block;
  }
}
@media (min-width: 1700px) {
  .fixed-banner.left-fixed-banner,
  .fixed-banner.right-fixed-banner {
    width: 12%;
  }
}
@media (min-width: 1800px) {
  .fixed-banner.left-fixed-banner,
  .fixed-banner.right-fixed-banner {
    width: 13%;
  }
}
@media (min-width: 1900px) {
  .cms-home .fixed-banner-outer {
    top: 140px !important;
  }
  .fixed-banner-outer {
    position: absolute;
    display: inline-flex;
    max-width: 1280px;
    width: 100%;
    height: auto;
    left: 50%;
    top: 280px;
    transform: translateX(-50%);
    align-items: center;
    justify-content: space-between;
    z-index: 200 !important;
    pointer-events: none;
  }
  .fixed-banner-outer .fixed-banner {
    position: static;
    transform: none;
    pointer-events: auto;
  }
  .fixed-banner-outer .fixed-banner.left-fixed-banner {
    margin-left: -180px;
  }
  .fixed-banner-outer .fixed-banner.right-fixed-banner {
    margin-right: -180px;
  }
}
/*=========================== Mobile Search bar ==========================*/
@media (max-width: 767px) {
  .page-header:after {
    background: transparent;
  }
  .page-header .amsearch-wrapper-block {
    display: block;
    width: calc(100% - (15px * 2)) !important;
    margin-right: 15px !important;
    margin-left: 15px !important;
  }
  .page-header .amsearch-wrapper-block:before {
    background: transparent !important;
  }
  .page-wrapper .amsearch-form-block.-opened {
    max-width: 100% !important;
  }
  .page-wrapper .amsearch-input-wrapper .amsearch-button.-loupe {
    margin: 0;
    height: 100%;
    width: 40px;
  }
  .page-wrapper .amsearch-input-wrapper .amsearch-input {
    padding-left: 50px;
    display: block !important;
  }
  .page-wrapper .amsearch-input-wrapper.-typed .amsearch-input {
    padding-left: 50px;
  }
  .page-wrapper .nav-sections {
    z-index: 101;
  }
  .page-wrapper .hamburger-menu {
    top: -110px !important;
  }
  .page-wrapper .hamburger-menu.active {
    top: -114px !important;
  }
  .page-wrapper .amsearch-item-container .amsearch-item .amsearch-link {
    color: #121212;
  }
  .page-wrapper .amsearch-item-container .amsearch-item .amsearch-link:hover {
    color: #121212;
  }
  .page-wrapper .amsearch-item-container .amsearch-item .amsearch-link:focus {
    color: #121212;
  }
  .page-wrapper .amsearch-item-container:not(.recent_searches) .amsearch-highlight {
    color: #3190c4 !important;
  }
  .page-wrapper .amsearch-products-section.-grid:not(.-slider) .amsearch-item {
    max-width: 50% !important;
    padding: 15px !important;
  }
  .page-wrapper .amsearch-products-section .amsearch-link {
    color: #121212;
    font-weight: bold;
  }
  .page-wrapper .amsearch-products-section .amsearch-link:hover {
    color: #121212;
    font-weight: bold;
  }
  .page-wrapper .amsearch-products-section .product-item-description {
    color: #121212;
    font-size: 1.4rem;
  }
  .page-wrapper .amsearch-products-section .actions-secondary {
    display: none;
  }
  .page-wrapper .amsearch-products-section .product-item .price-box .price {
    font-size: 16px;
  }
  .page-wrapper .amsearch-products-section .product-item .minimal-price-link .price-label {
    font-weight: normal;
  }
  .page-wrapper .amsearch-products-section .product-item .price-wrapper {
    font-weight: normal;
    font-size: 14px;
  }
  .page-wrapper .amsearch-highlight {
    color: #3190c4;
  }
  .page-wrapper .amsearch-item-container.-page a.amsearch-link {
    color: #3190c4;
  }
  .page-wrapper .amsearch-item-container.-recent_searches .amsearch-item {
    background: #3190c4;
    border: 0;
  }
  .page-wrapper .amsearch-item-container.-recent_searches .amsearch-item .amsearch-link {
    color: #fff;
  }
  .page-wrapper .amsearch-item-container.-recent_searches .amsearch-item .amsearch-link:hover {
    background: #e53d46;
  }
  .page-wrapper .amsearch-item-container.-recent_searches .amsearch-item.-match {
    background-color: #3190c4;
  }
  .page-wrapper .amsearch-item-container.-recent_searches .amsearch-highlight {
    color: #9cd365 !important;
  }
  .page-wrapper .amsearch-form-block.-opened {
    max-width: 75vw;
  }
  .page-wrapper .amsearch-result-section {
    width: 100% !important;
  }
  .-amsearch-overlay-opened .amsearch-overlay-block {
    display: block !important;
  }
}
/*============================= New Amasty Mega Menu  module css start ==============================*/
.page-wrapper .ammenu-header-container .header.content {
  display: block;
}
.page-wrapper .ammenu-menu-wrapper {
  margin-bottom: 0 !important;
}
.page-wrapper .ammenu-nav-sections.-sidebar.-left-menu .ammenu-submenu-wrapper.-full {
  background: #fff;
}
.page-wrapper .ammenu-tabs-list {
  display: none;
}
.page-wrapper .ammenu-button.-hamburger {
  color: #3191c4;
  border-width: 3px;
  height: 17px;
}
.page-wrapper .ammenu-button.-hamburger:before {
  color: #3191c4;
  border-width: 3px;
}
@media (min-width: 1366px) {
  .ammenu-nav-sections.-sidebar.-left-menu {
    max-width: 380px;
  }
  .ammenu-nav-sections.-sidebar.-left-menu .ammenu-submenu-wrapper.-full {
    left: 380px;
    min-width: calc(100vw - 30vw);
  }
}
@media (min-width: 1025px) {
  .header-top-right li {
    margin-left: 38px !important;
  }
  .page-wrapper .logo {
    padding-left: 2px;
    padding-right: 12px;
  }
  .page-wrapper .ammenu-nav-sections.-topmenu.-hamburger {
    background: #232830;
  }
  .page-wrapper .ammenu-nav-sections.-topmenu.-hamburger:not(.-sticky) .ammenu-main-container {
    background: transparent !important;
  }
  .ammenu-nav-sections.-topmenu .ammenu-items {
    justify-content: space-between !important;
  }
  .ammenu-nav-sections.-topmenu .ammenu-items.-root > .ammenu-item {
    padding-left: 25px;
    padding-right: 25px !important;
  }
  .ammenu-nav-sections.-topmenu .ammenu-items.-root > .ammenu-item > .ammenu-link {
    font-size: 1.6rem;
    color: #fff !important;
    padding: 12px 0;
    font-weight: normal !important;
  }
  .ammenu-nav-sections.-topmenu .ammenu-items.-root > .ammenu-item > .ammenu-link:hover {
    color: #7CB642 !important;
    background: transparent !important;
  }
  .ammenu-nav-sections.-topmenu .ammenu-items.-root > .ammenu-item > .ammenu-link:hover > .ammenu-icon-block.-icon {
    background-color: #7cb642 !important;
  }
  .ammenu-main-container > div > span {
    display: none;
  }
  .ammenu-button.-hamburger.-trigger:after {
    content: "Browse Products";
    color: #3191c4;
    position: absolute;
    display: inline-block;
    width: 130px;
    text-align: right;
    left: 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
  }
  .ammenu-button.-hamburger.-trigger:hover {
    filter: none;
    color: #7cb642 !important;
  }
  .ammenu-button.-hamburger.-trigger:hover:before {
    color: #7cb642;
  }
  .ammenu-button.-hamburger.-trigger:hover:after {
    color: #7cb642;
  }
  .ammenu-menu-wrapper .ammenu-icon-block.-icon {
    background-color: #fff !important;
  }
  .ammenu-nav-sections.-sidebar .ammenu-items.-root > .ammenu-item {
    padding: 0 10px;
  }
  .ammenu-nav-sections.-sidebar .ammenu-items.-root > .ammenu-item > .ammenu-link > .ammenu-icon-block.-toggle {
    margin: 0;
    height: 100%;
    width: 70px;
    justify-content: flex-start;
  }
  .ammenu-nav-sections.-sidebar .ammenu-items.-root > .ammenu-item > .ammenu-link > .ammenu-icon-block.-toggle:hover {
    color: #3191c4 !important;
  }
  .ammenu-nav-sections.-sidebar .ammenu-items.-root > .ammenu-item > .ammenu-link:hover {
    color: #7cb642 !important;
  }
  .ammenu-nav-sections.-sidebar .ammenu-items.-root > .ammenu-item > .ammenu-link:hover > .ammenu-icon-block.-icon {
    background-color: #7cb642 !important;
  }
  .ammenu-nav-sections.-sidebar .ammenu-items.-root > .ammenu-item > .ammenu-link > .ammenu-icon-block.-icon {
    background-color: #000 !important;
  }
  .ammenu-nav-sections.-sidebar .ammenu-items.-root > .ammenu-item > .ammenu-link.-active {
    color: #7cb642 !important;
  }
  .ammenu-nav-sections.-sidebar .ammenu-items.-root > .ammenu-item > .ammenu-link.-active > .ammenu-icon-block.-toggle {
    justify-content: flex-end;
  }
  .ammenu-nav-sections.-sidebar .ammenu-items.-root > .ammenu-item > .ammenu-link.-active > .ammenu-icon-block.-icon {
    background-color: #7cb642 !important;
  }
  .ammenu-nav-sections.-sidebar .ammenu-items.-root > .ammenu-item > .ammenu-link.-current {
    color: #ef7b80 !important;
  }
  .ammenu-nav-sections.-sidebar .ammenu-items.-root > .ammenu-item > .ammenu-link.-current > .ammenu-icon-block.-icon {
    background-color: #ef7b80 !important;
  }
  .ammenu-category-tree .ammenu-title {
    color: #3190c4 !important;
    font-weight: 500;
  }
  .ammenu-category-tree .ammenu-title .ammenu-icon-block.-icon {
    background-color: #3190c4 !important;
  }
  .ammenu-category-tree .ammenu-title:hover {
    color: #7cb642 !important;
  }
  .ammenu-category-tree .ammenu-title:hover .ammenu-icon-block.-icon {
    background-color: #7cb642 !important;
  }
  #ammenu-sidebar:before {
    content: "Scroll for More Product Categories";
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #888;
    font-size: 16px;
    position: absolute;
    bottom: 25px;
    left: 0;
    padding: 0 100px;
    box-sizing: border-box;
    background-image: url("../images/menuscroll-indicator.png"), url("../images/menuscroll-indicator.png");
    background-repeat: no-repeat;
    background-position: 19% center, 80% center;
  }
  #ammenu-sidebar .ammenu-menu-title {
    padding-left: 0;
    padding-right: 0;
  }
  #ammenu-sidebar .ammenu-menu-title .ammenu-title {
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
    color: #888 !important;
    font-weight: 400;
  }
  #ammenu-sidebar .ammenu-menu-title .ammenu-button.-close {
    position: absolute;
    right: 20px;
    top: 20px;
  }
}
@media (min-width: 1200px) {
  .ammenu-nav-sections.-topmenu .ammenu-items {
    padding-left: 220px;
  }
}
@media (max-width: 1199px) {
  .ammenu-nav-sections.-topmenu .ammenu-items {
    justify-content: right !important;
  }
  .ammenu-nav-sections.-topmenu .ammenu-items.-root > .ammenu-item {
    padding-left: 20px;
    padding-right: 20px !important;
  }
}
@media (max-width: 1024px) {
  .page-wrapper .ammenu-button.-hamburger {
    position: absolute;
    left: 18px;
    top: 7px;
    border-width: 3px;
  }
  .page-wrapper .ammenu-button.-hamburger:before {
    border-width: 3px;
  }
  .page-wrapper .page-header .amsearch-wrapper-block {
    margin-left: 0 !important;
  }
}
@media (max-width: 991px) {
  .skip-links {
    display: none;
  }
  .header-callus {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-header .amsearch-wrapper-block {
    width: calc(100% - 350px) !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .ammenu-header-container .header.content .ammenu-logo {
    margin-left: 45px !important;
  }
}
@media (max-width: 768px) {
  .page-wrapper .panel.wrapper:after {
    content: "";
    display: table;
    clear: both;
  }
  .page-wrapper .header.panel > .header.links {
    margin: 0;
  }
  .page-wrapper .minicart-wrapper {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .page-wrapper .page-header .amsearch-wrapper-block {
    margin-left: 0 !important;
    margin-top: 12px !important;
    margin-left: 15px !important;
  }
  .page-wrapper .minicart-wrapper {
    margin-top: 0 !important;
    position: absolute;
    right: 0;
    top: 10px;
  }
  .page-wrapper .ammenu-button.-hamburger {
    border-width: 3px;
    width: 30px;
  }
  .page-wrapper .ammenu-button.-hamburger:before {
    border-width: 3px;
  }
}
/*============================= New Amasty Mega Menu  module css end ==============================*/
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
@keyframes loading {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(359.9deg);
  }
}
/* stylelint-disable-line */
._amblog-toggle:before {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAyMCAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuODc2NTYgMC40NTQxMDNMMC45MDkwNTggOC44MDA1NkwyLjM0ODc5IDEwLjI1NzNMOS44NzY1NiAzLjI0OTM4TDE3LjY1MTEgMTAuNDU0MUwxOS4wOTA5IDkuMDM2NzhMMTAuNDExMyAwLjkyNjU0NEw5Ljg3NjU2IDAuNDU0MTAzWiIgZmlsbD0iI0M3QzdDNyIvPgo8L3N2Zz4K);
  content: '';
  cursor: pointer;
  display: block;
  height: 12px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-180deg);
  width: 20px;
}
._amblog-toggle.-active:before {
  transform: translateY(-50%) rotate(0);
}
._amblog-form.amblog-item {
  padding: 0 25px 25px;
}
._amblog-form .amblog-form-container {
  position: relative;
}
._amblog-form .amblog-input {
  border: 1px solid #e5e5e5;
  color: #525252;
  border-radius: 3px;
  font-size: 1.4rem;
  height: 100%;
  padding: 11px 60px 11px 14px;
  width: 100%;
}
._amblog-form .amblog-input:hover {
  border-color: #b3b3b3;
}
._amblog-form .amblog-input::-webkit-input-placeholder,
._amblog-form .amblog-input:-ms-input-placeholder,
._amblog-form .amblog-input::-moz-placeholder {
  color: #707070;
}
._amblog-form .amblog-input:focus {
  border: 1px solid #499bf8;
  box-shadow: none;
}
._amblog-form .amblog-input:focus::-webkit-input-placeholder,
._amblog-form .amblog-input:focus::-moz-placeholder,
._amblog-form .amblog-input:focus:-ms-input-placeholder {
  color: transparent;
}
._amblog-column-form .input-box {
  flex-direction: column;
}
._amblog-column-form .amblog-input {
  margin-bottom: 20px;
  margin-right: 0;
}
._amblog-column-form .amblog-btn,
._amblog-column-form .amblog-input {
  max-width: 100%;
  width: 100%;
}
._amblog-column-form .mage-error[generated='true'] {
  margin-bottom: 10px;
  margin-top: -10px;
  order: 0;
  width: 100%;
  word-break: break-all;
}
._amblog-button {
  background: #1979c2;
  border-color: transparent;
  border-radius: 3px;
  box-sizing: border-box;
  color: #ffffff;
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8rem;
  padding: 12px 30px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
._amblog-button:hover {
  background: #135d95;
  color: #ffffff;
  text-decoration: none;
}
._amblog-button:active {
  background: #0d4168;
  color: #ffffff;
  text-decoration: none;
}
.amblog-word-break {
  word-break: break-word;
  word-wrap: break-word;
}
.ie11 .amblog-word-break {
  word-break: break-all;
}
.am-word-break {
  word-break: break-word;
  word-wrap: break-word;
}
.ie11 .am-word-break {
  word-break: break-all;
}
.ammenu-sticky {
  left: 0;
  max-width: 100%;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}
/* phpcs:disable */
/* phpcs:enable */
/* phpcs:ignore Magento2.Less.SelectorDelimiter.LineBreakAfterDelimiter */
.ammmenu-word-break {
  word-break: break-word;
  word-wrap: break-word;
}
.ie11 .ammmenu-word-break {
  word-break: break-all;
}
._ammenu-link.-first {
  min-height: 60px;
  padding: 17px 0;
}
._ammenu-link.-second {
  font-size: 1.6rem;
  font-weight: 400;
  min-height: 50px;
  padding: 14px 0;
}
@-webkit-keyframes ammenu-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes ammenu-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes ammenu-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes ammenu-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ammenu-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes ammenu-animation__fadeInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@-moz-keyframes ammenu-animation__fadeInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@-ms-keyframes ammenu-animation__fadeInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@-o-keyframes ammenu-animation__fadeInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes ammenu-animation__fadeInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@media (max-width: 1024px + 1) {
  .ammenu-header-container.-sticky .header.content {
    padding: 10px;
  }
}
._ammenu-toggle-buttons:hover {
  filter: brightness(85%);
}
._ammenu-toggle-buttons:active {
  filter: brightness(50%);
}
@keyframes slide-right {
  0% {
    transform: translateX(-500%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-left {
  0% {
    transform: translateX(500%);
  }
  100% {
    transform: translateX(0);
  }
}
._ammenu-animation {
  animation-fill-mode: forwards;
}
@-webkit-keyframes ammenu-animation__fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-moz-keyframes ammenu-animation__fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-ms-keyframes ammenu-animation__fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-o-keyframes ammenu-animation__fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes ammenu-animation__fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-webkit-keyframes ammenu-animation__bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-moz-keyframes ammenu-animation__bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-ms-keyframes ammenu-animation__bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-o-keyframes ammenu-animation__bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes ammenu-animation__bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-webkit-keyframes ammenu-animation__flipInX {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-moz-keyframes ammenu-animation__flipInX {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-ms-keyframes ammenu-animation__flipInX {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-o-keyframes ammenu-animation__flipInX {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes ammenu-animation__flipInX {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-webkit-keyframes ammenu-animation__flipInY {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-moz-keyframes ammenu-animation__flipInY {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-ms-keyframes ammenu-animation__flipInY {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-o-keyframes ammenu-animation__flipInY {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes ammenu-animation__flipInY {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-webkit-keyframes ammenu-animation__rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}
@-moz-keyframes ammenu-animation__rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}
@-ms-keyframes ammenu-animation__rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}
@-o-keyframes ammenu-animation__rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}
@keyframes ammenu-animation__rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}
@-webkit-keyframes ammenu-animation__slideInUp {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-moz-keyframes ammenu-animation__slideInUp {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-ms-keyframes ammenu-animation__slideInUp {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-o-keyframes ammenu-animation__slideInUp {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes ammenu-animation__slideInUp {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-webkit-keyframes ammenu-animation__slideInDown {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-moz-keyframes ammenu-animation__slideInDown {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-ms-keyframes ammenu-animation__slideInDown {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-o-keyframes ammenu-animation__slideInDown {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes ammenu-animation__slideInDown {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-webkit-keyframes ammenu-animation__rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-moz-keyframes ammenu-animation__rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-ms-keyframes ammenu-animation__rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-o-keyframes ammenu-animation__rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes ammenu-animation__rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-webkit-keyframes ammenu-animation__zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-moz-keyframes ammenu-animation__zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-ms-keyframes ammenu-animation__zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-o-keyframes ammenu-animation__zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes ammenu-animation__zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes ammenu-animation__bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(25px, 0, 0);
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-moz-keyframes ammenu-animation__bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(25px, 0, 0);
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-ms-keyframes ammenu-animation__bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(25px, 0, 0);
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-o-keyframes ammenu-animation__bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(25px, 0, 0);
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes ammenu-animation__bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(25px, 0, 0);
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-webkit-keyframes ammenu-animation__slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-moz-keyframes ammenu-animation__slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-ms-keyframes ammenu-animation__slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-o-keyframes ammenu-animation__slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes ammenu-animation__slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.am-word-break {
  word-wrap: break-word;
  word-break: break-word;
}
.ie11 .am-word-break {
  word-break: break-all;
}
.am-word-break {
  word-wrap: break-word;
  word-break: break-word;
}
.ie11 .am-word-break {
  word-break: break-all;
}
.amscroll-arrow-icon {
  width: 14px;
  height: 28px;
  background: url('../Amasty_Scroll/images/arrow.svg');
}
.amscroll-chevron-icon {
  width: 24px;
  height: 24px;
  background: url('../Amasty_Scroll/images/chevron.svg');
}
@-webkit-keyframes amScrollRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.amscroll-arrow-style {
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 100px;
}
.amscroll-arrow-style:before {
  border-radius: 100px;
}
.amscroll-arrow-style:after {
  width: 14px;
  height: 28px;
  background: url('../Amasty_Scroll/images/arrow.svg');
}
.amscroll-arrow-style .amscroll-text {
  display: none;
}
.amscroll-text-style {
  padding-right: 7px;
  border-radius: 100px;
  transform: rotate(-90deg) translate(60px, 60px);
}
.amscroll-text-style:before {
  border-radius: 100px;
}
.amscroll-text-style:after {
  width: 24px;
  height: 24px;
  background: url('../Amasty_Scroll/images/chevron.svg');
}
.amscroll-edge-style {
  right: 0;
  padding: 4px 26px 4px 20px;
  border-radius: 20px 20px 0 0;
  transform: rotate(-90deg) translate(71px, 72px);
}
.amscroll-edge-style .amscroll-text {
  margin-right: 20px;
}
.amscroll-edge-style:before {
  border-radius: 20px 20px 0 0;
}
.amscroll-edge-style:after {
  width: 14px;
  height: 28px;
  background: url('../Amasty_Scroll/images/arrow.svg');
  transform: rotate(90deg) translateX(2px);
}
.am-word-break {
  word-break: break-word;
  word-wrap: break-word;
}
.ie11 .am-word-break {
  word-break: break-all;
}
@-webkit-keyframes amsearch-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes amsearch-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes amsearch-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes amsearch-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes amsearch-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media only screen and (max-width: 768px) {
  .field-tooltip .field-tooltip-content {
    left: auto;
    right: -10px;
    top: 40px;
  }
  .field-tooltip .field-tooltip-content::before,
  .field-tooltip .field-tooltip-content::after {
    border: 10px solid transparent;
    height: 0;
    left: auto;
    margin-top: -21px;
    right: 10px;
    top: 0;
    width: 0;
  }
  .field-tooltip .field-tooltip-content::before {
    border-bottom-color: #999999;
  }
  .field-tooltip .field-tooltip-content::after {
    border-bottom-color: #f4f4f4;
    top: 1px;
  }
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
*/
@media only screen and (min-device-width: 320px) and (max-device-width: 780px) and (orientation: landscape) {
  .product-video {
    height: 100%;
    width: 81%;
  }
}
@media all and (min-width: 769px), print {
  .abs-product-options-list-desktop dt,
  .block-giftregistry-shared .item-options dt {
    clear: left;
    float: left;
    margin: 0 10px 5px 0;
  }
  .block-giftregistry-shared .item-options dt:after {
    content: ': ';
  }
  .abs-product-options-list-desktop dd,
  .block-giftregistry-shared .item-options dd {
    display: inline-block;
    float: left;
    margin: 0 0 5px;
    word-break: break-all;
  }
  .abs-button-desktop {
    width: auto;
  }
  .abs-blocks-2columns,
  .column .block-addbysku .block-content .box,
  .login-container .block,
  .account .column.main .block:not(.widget) .block-content .box,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box,
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content .box,
  .sales-guest-view .column.main .block:not(.widget) .block-content .box {
    width: 48.8%;
  }
  .column .block-addbysku .block-content .box:nth-child(odd),
  .login-container .block:nth-child(odd),
  .account .column.main .block:not(.widget) .block-content .box:nth-child(odd),
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box:nth-child(odd),
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content .box:nth-child(odd),
  .sales-guest-view .column.main .block:not(.widget) .block-content .box:nth-child(odd) {
    clear: left;
    float: left;
  }
  .column .block-addbysku .block-content .box:nth-child(even),
  .login-container .block:nth-child(even),
  .account .column.main .block:not(.widget) .block-content .box:nth-child(even),
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box:nth-child(even),
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content .box:nth-child(even),
  .sales-guest-view .column.main .block:not(.widget) .block-content .box:nth-child(even) {
    float: right;
  }
  .abs-reset-left-margin-desktop,
  .bundle-options-container .legend.title,
  .column.main .cart-summary .actions-toolbar,
  .cart.table-wrapper .item-actions .actions-toolbar,
  .gift-summary .actions-toolbar,
  .cart.table-wrapper .gift-summary .actions-toolbar,
  .column.main .block-giftregistry-shared-items .actions-toolbar,
  .form-new-agreement .fieldset .legend,
  .form-new-agreement .actions-toolbar,
  .column.main .paypal-review .actions-toolbar,
  .wishlist-index-index .main .form-wishlist-items .actions-toolbar {
    margin-left: 0;
  }
  .abs-action-remove-desktop,
  .abs-add-fields-desktop .fieldset .additional .action.remove,
  .form-giftregistry-share .fieldset .additional .action.remove,
  .form-giftregistry-edit .fieldset .additional .action.remove,
  .form-add-invitations .fieldset .additional .action.remove,
  .form-create-return .fieldset .additional .action.remove,
  .form.send.friend .fieldset .additional .action.remove {
    margin-left: 75.8%;
    top: 6px;
  }
  .form-giftregistry-share .fieldset .field:not(.choice) .control,
  .form-giftregistry-edit .fieldset .field:not(.choice) .control,
  .form-add-invitations .fieldset .field:not(.choice) .control,
  .form-create-return .fieldset .field:not(.choice) .control,
  .form.send.friend .fieldset .field:not(.choice) .control {
    width: 50%;
  }
  .abs-margin-for-forms-desktop,
  .fieldset .legend,
  .column:not(.sidebar-main) form .actions-toolbar,
  .column:not(.sidebar-additional) form .actions-toolbar,
  .login-container .fieldset:after {
    margin-left: 25.8%;
  }
  .abs-visually-hidden-desktop,
  .modes-label,
  .block-search .label,
  .dashboard-welcome-toggler,
  .block-collapsible-nav .title {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .abs-add-clearfix-desktop:before,
  .abs-add-clearfix-desktop:after,
  .abs-pager-toolbar:before,
  .abs-pager-toolbar:after,
  .block-cart-failed .block-content:before,
  .block-cart-failed .block-content:after,
  .column .block-addbysku .block-content:before,
  .column .block-addbysku .block-content:after,
  .cart-container:before,
  .cart-container:after,
  .login-container:before,
  .login-container:after,
  .account .column.main .block:not(.widget) .block-content:before,
  .account .column.main .block:not(.widget) .block-content:after,
  .block-addresses-list .items.addresses:before,
  .block-addresses-list .items.addresses:after,
  .block-giftregistry-shared .item-options:before,
  .block-giftregistry-shared .item-options:after,
  .gift-wrapping .nested:before,
  .gift-wrapping .nested:after,
  .table .gift-wrapping .content:before,
  .table .gift-wrapping .content:after,
  .block-wishlist-management:before,
  .block-wishlist-management:after,
  .paypal-review .block-content:before,
  .paypal-review .block-content:after,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content:before,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content:after,
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content:before,
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content:after,
  .sales-guest-view .column.main .block:not(.widget) .block-content:before,
  .sales-guest-view .column.main .block:not(.widget) .block-content:after,
  .header.content:before,
  .header.content:after,
  .page-header .header.panel:before,
  .page-header .header.panel:after,
  .account .toolbar:before,
  .account .toolbar:after,
  .toolbar-giftregistry-results:before,
  .toolbar-giftregistry-results:after,
  .toolbar-wishlist-results:before,
  .toolbar-wishlist-results:after {
    content: '';
    display: table;
  }
  .abs-add-clearfix-desktop:after,
  .abs-pager-toolbar:after,
  .block-cart-failed .block-content:after,
  .column .block-addbysku .block-content:after,
  .cart-container:after,
  .login-container:after,
  .account .column.main .block:not(.widget) .block-content:after,
  .block-addresses-list .items.addresses:after,
  .block-giftregistry-shared .item-options:after,
  .gift-wrapping .nested:after,
  .table .gift-wrapping .content:after,
  .block-wishlist-management:after,
  .paypal-review .block-content:after,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content:after,
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content:after,
  .sales-guest-view .column.main .block:not(.widget) .block-content:after,
  .header.content:after,
  .page-header .header.panel:after,
  .account .toolbar:after,
  .toolbar-giftregistry-results:after,
  .toolbar-wishlist-results:after {
    clear: both;
  }
  .abs-add-box-sizing-desktop,
  .column.main,
  .sidebar-main,
  .sidebar-additional {
    box-sizing: border-box;
  }
  .abs-add-box-sizing-desktop-m,
  .opc-wrapper {
    box-sizing: border-box;
  }
  .abs-revert-field-type-desktop .fieldset > .field,
  .abs-revert-field-type-desktop .fieldset .fields > .field,
  .product-add-form .fieldset > .field,
  .product-add-form .fieldset .fields > .field {
    margin: 0 0 20px;
  }
  .abs-revert-field-type-desktop .fieldset > .field:not(.choice) > .label,
  .abs-revert-field-type-desktop .fieldset .fields > .field:not(.choice) > .label,
  .product-add-form .fieldset > .field:not(.choice) > .label,
  .product-add-form .fieldset .fields > .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .abs-revert-field-type-desktop .fieldset > .field:not(.choice) > .control,
  .abs-revert-field-type-desktop .fieldset .fields > .field:not(.choice) > .control,
  .product-add-form .fieldset > .field:not(.choice) > .control,
  .product-add-form .fieldset .fields > .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .abs-revert-field-type-desktop .fieldset > .field > .label,
  .abs-revert-field-type-desktop .fieldset .fields > .field > .label,
  .product-add-form .fieldset > .field > .label,
  .product-add-form .fieldset .fields > .field > .label {
    margin: 0 0 5px;
    display: inline-block;
  }
  .abs-revert-field-type-desktop .fieldset > .field.choice:before,
  .abs-revert-field-type-desktop .fieldset .fields > .field.choice:before,
  .abs-revert-field-type-desktop .fieldset > .field.no-label:before,
  .abs-revert-field-type-desktop .fieldset .fields > .field.no-label:before,
  .product-add-form .fieldset > .field.choice:before,
  .product-add-form .fieldset .fields > .field.choice:before,
  .product-add-form .fieldset > .field.no-label:before,
  .product-add-form .fieldset .fields > .field.no-label:before {
    display: none;
  }
  .product-add-form .fieldset > .field:not(:first-child):last-of-type,
  .product-add-form .fieldset .fields > .field:not(:first-child):last-of-type {
    margin-bottom: 0;
  }
  .abs-no-display-desktop,
  .opc-estimated-wrapper,
  .sidebar .block.widget .pager .item:not(.pages-item-next):not(.pages-item-previous) {
    display: none;
  }
  .abs-pager-toolbar,
  .account .toolbar,
  .toolbar-giftregistry-results,
  .toolbar-wishlist-results {
    margin-bottom: 20px;
    position: relative;
  }
  .abs-pager-toolbar .limiter,
  .account .toolbar .limiter,
  .toolbar-giftregistry-results .limiter,
  .toolbar-wishlist-results .limiter {
    float: right;
    position: relative;
    z-index: 1;
  }
  .abs-pager-toolbar .toolbar-amount,
  .account .toolbar .toolbar-amount,
  .toolbar-giftregistry-results .toolbar-amount,
  .toolbar-wishlist-results .toolbar-amount {
    float: left;
    line-height: normal;
    padding: 7px 0 0;
    position: relative;
    z-index: 1;
  }
  .abs-pager-toolbar .pages,
  .account .toolbar .pages,
  .toolbar-giftregistry-results .pages,
  .toolbar-wishlist-results .pages {
    position: absolute;
    width: 100%;
    z-index: 0;
  }
  .abs-shopping-cart-items-desktop,
  .block-cart-failed,
  .cart-container .form-cart,
  .cart-container .cart-gift-item {
    float: left;
    position: relative;
    width: 73%;
  }
  .abs-shopping-cart-items-desktop .actions,
  .block-cart-failed .actions,
  .cart-container .form-cart .actions,
  .cart-container .cart-gift-item .actions {
    text-align: right;
  }
  .block-cart-failed .action.clear,
  .block-cart-failed .action.update,
  .cart-container .form-cart .action.clear,
  .cart-container .form-cart .action.update,
  .cart-container .cart-gift-item .action.clear,
  .cart-container .cart-gift-item .action.update {
    margin-left: 10px;
  }
  .block-cart-failed .action.continue,
  .cart-container .form-cart .action.continue,
  .cart-container .cart-gift-item .action.continue {
    float: left;
  }
  h1 {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .navigation,
  .breadcrumbs,
  .page-header .header.panel,
  .header.content,
  .footer.content,
  .page-wrapper > .widget,
  .page-wrapper > .page-bottom,
  .block.category.event,
  .top-container,
  .page-main {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    padding-left: 20px;
    padding-right: 20px;
    width: auto;
  }
  .page-main {
    width: 100%;
  }
  .columns {
    display: block;
  }
  .column.main {
    min-height: 300px;
  }
  .page-layout-1column .column.main {
    width: 100%;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-3columns .column.main {
    width: 66.66666667%;
    display: inline-block;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-left .column.main {
    width: 83.33333333%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-right .column.main {
    width: 83.33333333%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .sidebar-main {
    padding-right: 2%;
  }
  .page-layout-3columns .sidebar-main {
    width: 16.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-left .sidebar-main {
    width: 16.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-right .sidebar-main {
    width: 16.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-right .sidebar-main {
    padding-left: 2%;
    padding-right: 0;
  }
  .sidebar-additional {
    clear: right;
    padding-left: 2%;
  }
  .page-layout-3columns .sidebar-additional {
    width: 16.66666667%;
    float: right;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
  }
  .page-layout-2columns-left .sidebar-additional {
    width: 16.66666667%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-right .sidebar-additional {
    width: 16.66666667%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-left .main {
    padding-left: 2%;
  }
  .page-layout-2columns-left .sidebar-additional {
    clear: left;
    float: left;
    padding-left: 0;
  }
  .panel.header {
    padding: 10px 20px;
  }
  .nav-toggle {
    display: none;
  }
  .nav-sections {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-bottom: 25px;
  }
  .nav-sections-item-title {
    display: none;
  }
  .nav-sections-item-content > * {
    display: none;
  }
  .nav-sections-item-content > .navigation {
    display: block;
  }
  .navigation {
    background: #f5f5f5;
    font-weight: 700;
    height: inherit;
    left: auto;
    overflow: inherit;
    padding: 0;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 3;
  }
  .navigation:empty {
    display: none;
  }
  .navigation ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    position: relative;
  }
  .navigation li.level0 {
    border-top: none;
  }
  .navigation li.level1 {
    position: relative;
  }
  .navigation .level0 {
    margin: 0 10px 0 0;
    display: inline-block;
    position: relative;
  }
  .navigation .level0:last-child {
    margin-right: 0;
    padding-right: 0;
  }
  .navigation .level0:hover:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    width: 10px;
    height: calc(100% + 3px);
    z-index: 1;
  }
  .navigation .level0 > .level-top {
    color: #575757;
    line-height: 53px;
    padding: 0 12px;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
  }
  .navigation .level0 > .level-top:hover,
  .navigation .level0 > .level-top.ui-state-focus {
    color: #333333;
    text-decoration: none;
  }
  .navigation .level0.active > .level-top,
  .navigation .level0.has-active > .level-top {
    border-color: #ff5501;
    border-style: solid;
    border-width: 0 0 3px;
    color: #333333;
    text-decoration: none;
    display: inline-block;
  }
  .navigation .level0.parent:hover > .submenu {
    overflow: visible !important;
  }
  .navigation .level0.parent > .level-top {
    padding-right: 20px;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon {
    position: absolute;
    right: 0;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    line-height: 20px;
    color: inherit;
    content: '\e622';
    font-family: 'icons-blank-theme';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0 .submenu {
    background: #ffffff;
    border: 1px solid #d1d1d1;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.19);
    font-weight: 700;
    min-width: 230px;
    padding: 0;
    display: none;
    left: 0;
    margin: 0 !important;
    position: absolute;
    z-index: 1;
    margin-top: 11px;
  }
  .navigation .level0 .submenu > ul {
    margin-top: 11px;
  }
  .navigation .level0 .submenu > ul:before,
  .navigation .level0 .submenu > ul:after {
    content: '';
    display: block;
    overflow: hidden;
    position: absolute;
  }
  .navigation .level0 .submenu > ul:before {
    color: #ffffff;
    left: 20px;
    top: -20px;
    border: 10px solid transparent;
    height: 0;
    width: 0;
    border-bottom-color: #ffffff;
    z-index: 4;
  }
  .navigation .level0 .submenu > ul:after {
    border: 11px solid transparent;
    height: 0;
    width: 0;
    border-bottom-color: #d1d1d1;
    color: #d1d1d1;
    left: 19px;
    top: -22px;
    z-index: 3;
  }
  .navigation .level0 .submenu:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    top: -4px;
    z-index: 1;
  }
  .navigation .level0 .submenu a {
    display: block;
    line-height: inherit;
    color: #575757;
    padding: 8px 20px;
  }
  .navigation .level0 .submenu a:hover,
  .navigation .level0 .submenu a.ui-state-focus {
    background: #e8e8e8;
    color: #333333;
    text-decoration: none;
  }
  .navigation .level0 .submenu .active > a {
    border-color: #ff5501;
    border-style: solid;
    border-width: 0 0 0 3px;
  }
  .navigation .level0 .submenu .submenu {
    top: -1px !important;
    left: 100% !important;
  }
  .navigation .level0 .submenu .submenu-reverse {
    left: auto !important;
    right: 100%;
  }
  .navigation .level0 .submenu li {
    margin: 0;
    position: relative;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon {
    position: absolute;
    right: 3px;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    line-height: 20px;
    color: inherit;
    content: '\e608';
    font-family: 'icons-blank-theme';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0.more {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0.more:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 26px;
    line-height: inherit;
    color: inherit;
    content: '\e607';
    font-family: 'icons-blank-theme';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0.more:before {
    display: none;
  }
  .navigation .level0.more:after {
    cursor: pointer;
    padding: 8px 12px;
    position: relative;
    z-index: 1;
  }
  .navigation .level0.more:hover > .submenu {
    overflow: visible !important;
  }
  .navigation .level0.more li {
    display: block;
  }
  .panel.header .links,
  .panel.header .switcher {
    display: inline-block;
  }
  .fieldset > .field {
    margin: 0 0 20px;
    box-sizing: border-box;
    margin: 0 0 29px;
  }
  .fieldset > .field > .label {
    margin: 0;
  }
  .fieldset > .field:before,
  .fieldset > .field:after {
    content: '';
    display: table;
  }
  .fieldset > .field:after {
    clear: both;
  }
  .fieldset > .field.choice:before,
  .fieldset > .field.no-label:before {
    padding: 6px 15px 0 0;
    width: 25.8%;
    box-sizing: border-box;
    content: ' ';
    float: left;
    height: 1px;
  }
  .fieldset > .field .description {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .fieldset > .field:not(.choice) > .label {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .fieldset > .field:not(.choice) > .control {
    width: 74.2%;
    float: left;
  }
  .product.data.items {
    position: relative;
    z-index: 1;
  }
  .product.data.items:before,
  .product.data.items:after {
    content: '';
    display: table;
  }
  .product.data.items:after {
    clear: both;
  }
  .product.data.items > .item.title {
    float: left;
    width: auto;
  }
  .product.data.items > .item.title > .switch {
    height: 20px;
    display: block;
    position: relative;
    z-index: 2;
  }
  .product.data.items > .item.content {
    margin-top: 20px;
    box-sizing: border-box;
    float: right;
    margin-left: -100%;
    width: 100%;
  }
  .product.data.items > .item.content:before,
  .product.data.items > .item.content:after {
    content: '';
    display: table;
  }
  .product.data.items > .item.content:after {
    clear: both;
  }
  .product.data.items > .item.content.active {
    display: block;
  }
  .product.data.items > .item.title {
    margin: 0 5px 0 0;
  }
  .product.data.items > .item.title > .switch {
    font-weight: 600;
    line-height: 20px;
    font-size: 1.4rem;
    color: #7d7d7d;
    text-decoration: none;
    background: #f0f0f0;
    border: 1px solid #d1d1d1;
    border-bottom: none;
    height: 20px;
    padding: 5px 20px 5px 20px;
  }
  .product.data.items > .item.title > .switch:visited {
    color: #7d7d7d;
    text-decoration: none;
  }
  .product.data.items > .item.title > .switch:hover {
    color: #7d7d7d;
    text-decoration: none;
  }
  .product.data.items > .item.title > .switch:active {
    color: #333333;
    text-decoration: none;
  }
  .product.data.items > .item.title:not(.disabled) > .switch:focus,
  .product.data.items > .item.title:not(.disabled) > .switch:hover {
    background: #fcfcfc;
  }
  .product.data.items > .item.title:not(.disabled) > .switch:active,
  .product.data.items > .item.title.active > .switch,
  .product.data.items > .item.title.active > .switch:focus,
  .product.data.items > .item.title.active > .switch:hover {
    background: #ffffff;
    color: #333333;
    text-decoration: none;
  }
  .product.data.items > .item.title.active > .switch,
  .product.data.items > .item.title.active > .switch:focus,
  .product.data.items > .item.title.active > .switch:hover {
    padding-bottom: 6px;
  }
  .product.data.items > .item.content {
    background: #ffffff;
    margin-top: 31px;
    padding: 20px 20px 20px 20px;
    border: 0;
    border-top: 1px solid #d1d1d1;
  }
  .actions-toolbar:before,
  .actions-toolbar:after {
    content: '';
    display: table;
  }
  .actions-toolbar:after {
    clear: both;
  }
  .actions-toolbar .primary {
    float: left;
  }
  .actions-toolbar .secondary {
    float: right;
  }
  .actions-toolbar .primary,
  .actions-toolbar .secondary {
    display: inline-block;
  }
  .actions-toolbar .primary a.action,
  .actions-toolbar .secondary a.action {
    display: inline-block;
  }
  .actions-toolbar .primary .action {
    margin: 0 5px 0 0;
  }
  .actions-toolbar .secondary a.action {
    margin-top: 6px;
  }
  .actions-toolbar > .primary,
  .actions-toolbar > .secondary {
    margin-bottom: 0;
  }
  .actions-toolbar > .primary .action,
  .actions-toolbar > .secondary .action {
    margin-bottom: 0;
    width: auto;
  }
  .modal-popup.modal-slide .modal-footer {
    border-top: 1px solid #c1c1c1;
    text-align: right;
  }
  .pagebuilder-mobile-only {
    display: none !important;
  }
  .desktop.three-columns {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .desktop.three-columns section.content {
    padding: 0 30px;
    width: 52%;
  }
  .desktop.three-columns aside.left,
  .desktop.three-columns aside.right {
    width: 24%;
  }
  .desktop.two-columns-right,
  .desktop.two-columns-left {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .desktop.two-columns-right section.content {
    padding-right: 40px;
    width: 76%;
  }
  .desktop.two-columns-left section.content {
    padding-left: 40px;
    width: 76%;
  }
  .desktop.two-columns-right aside.left,
  .desktop.two-columns-left aside.left,
  .desktop.two-columns-right aside.right,
  .desktop.two-columns-left aside.right {
    width: 24%;
  }
  .amblog-container-list {
    padding-top: 0;
  }
  .amblog-main-content {
    padding-top: 0;
  }
  .amblog-pager-container {
    margin: 40px auto 50px;
    width: 290px;
  }
  .amblog-comments-wrapper,
  .amblog-related-wrapper {
    margin-bottom: 0;
  }
  .amblog-form-comment .amblog-svg.comment {
    top: 10px;
  }
  .amblog-form-comment .amblog-customer {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .amblog-form-comment .amblog-wrapper {
    width: 49%;
  }
  .amblog-form-comment .amblog-wrapper:first-child {
    margin-right: 20px;
  }
  .amblog-form-comment .amblog-input.-email + .mage-error,
  .amblog-form-comment .amblog-input.-name + .mage-error {
    margin-bottom: 0;
  }
  .amblog-form-comment .amblog-btn {
    padding: 14px 0;
    width: 230px;
  }
  .amblog-form-comment .amblog-btn:hover {
    background: #185eaf;
  }
  body[class*='amblog-index-'] .page-title-wrapper {
    margin-bottom: 20px;
  }
  body[class*='amblog-index-'] .page-title {
    font-size: 4rem;
    line-height: 4.8rem;
  }
  body[class*='amblog-index-'] .sidebar .block-reorder .block-content:not(.no-display) {
    margin-bottom: 50px;
  }
  body[class*='amblog-index-'] h2.amblog-post-title {
    font-size: 2.4rem;
  }
  body[class*='amblog-index-'] h3.amblog-title.-accordion {
    font-size: 1.6rem;
    padding-right: 40px;
  }
  body[class*='amblog-index-'] h3.amblog-title.-accordion:before {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAyMCAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuODc2NTYgMC40NTQxMDNMMC45MDkwNTggOC44MDA1NkwyLjM0ODc5IDEwLjI1NzNMOS44NzY1NiAzLjI0OTM4TDE3LjY1MTEgMTAuNDU0MUwxOS4wOTA5IDkuMDM2NzhMMTAuNDExMyAwLjkyNjU0NEw5Ljg3NjU2IDAuNDU0MTAzWiIgZmlsbD0iI0M3QzdDNyIvPgo8L3N2Zz4K);
    content: '';
    cursor: pointer;
    display: block;
    height: 12px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-180deg);
    width: 20px;
  }
  body[class*='amblog-index-'] h3.amblog-title.-accordion.-active:before {
    transform: translateY(-50%) rotate(0);
  }
  .amblog-search-block .amblog-list {
    padding: 0;
  }
  .amblog-search-block .amblog-content {
    justify-content: space-between;
    padding-bottom: 25px;
  }
  .amblog-search-block .amblog-content > *:first-child {
    margin-left: 0;
  }
  .amblog-search-block .amblog-content > *:not(:last-child) {
    margin-right: 0;
  }
  .amblog-search-block .amblog-content > *:not(:last-child, :first-child) {
    padding: 0 25px;
  }
  .amblog-search-block .amblog-author-name {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .amblog-search-block .amblog-description {
    flex: 1 0 22%;
  }
  .amblog-search-block .amblog-social-container {
    flex-grow: 1;
    justify-content: flex-end;
  }
  .amblog-search-block .amblog-description + .amblog-social-container {
    flex-grow: initial;
  }
  .amblog-replies-block.-level-top > .amblog-comment,
  .amblog-replies-block.-level-top > .amblog-comment-reply,
  .amblog-comments-action .amblog-replies,
  .amblog-comments-container .amblog-replies {
    box-sizing: border-box;
    margin: 30px 0 0;
    max-width: 768px;
    padding-left: 20px;
  }
  .amblog-post-container.list-item h2.amblog-post-title {
    font-size: 2rem;
    line-height: 3rem;
  }
  .amblog-post-container .amblog-widget-container {
    margin: 30px -25px;
  }
  .amblog-post-container .amblog-features.-post {
    padding: 15px 25px;
  }
  .amblog-post-container .amblog-more {
    text-align: right;
  }
  .amblog-post-container .amblog-arrow {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE1LjY5NyA1LjM2M2wtNS4xMjYtNS4xYS44ODYuODg2IDAgMCAwLTEuMjYgMCAuODc1Ljg3NSAwIDAgMCAwIDEuMjU0bDMuNjEzIDMuNTk1SC44OTFBLjg5NC44OTQgMCAwIDAgMCA1Ljk5OGMwIC40ODUuNDAzLjg4Ni44OS44ODZoMTIuMDE4TDkuMzEgMTAuNDc5YS44NzUuODc1IDAgMCAwIDAgMS4yNTQuOTIuOTIgMCAwIDAgLjYzOS4yNjcuODguODggMCAwIDAgLjYzOC0uMjY4bDUuMTQzLTUuMTE1QS45MTEuOTExIDAgMCAwIDE2IDUuOThhMS4xMzQgMS4xMzQgMCAwIDAtLjMwMy0uNjE4eiIgZmlsbD0iIzJENjlBRSIvPjwvc3ZnPg==);
  }
  .amblog-post-container .amblog-widget-container .amblog-list {
    margin: 0 30px;
  }
  .amblog-post-container .amblog-widget-container.-post .amblog-list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .amblog-post-container .amblog-widget-container.-post .amblog-item {
    box-sizing: border-box;
    width: 47%;
  }
  .desktop.one-column .amblog-post-container .amblog-content .amblog-widget-container.-post .amblog-list {
    justify-content: inherit;
  }
  .desktop.one-column .amblog-post-container .amblog-content .amblog-widget-container.-post .amblog-item {
    margin: 0 20px 20px 0;
    width: 31%;
  }
  .desktop.one-column .amblog-post-container .amblog-content .amblog-widget-container.-post .amblog-item:nth-child(3n) {
    margin-right: 0;
  }
  .amblog-grid-list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    justify-content: space-between;
  }
  .amblog-grid-list > .amblog-item {
    width: 47%;
  }
  .amblog-grid-list .amblog-read:hover {
    background: #185eaf;
    text-decoration: none;
  }
  .amblog-grid-list .amblog-features > .amblog-item {
    margin-right: 10px;
  }
  .amblog-grid-list .amblog-item .amblog-category {
    margin-right: 10px;
  }
  .page-layout-3columns .amblog-grid-list > .amblog-item,
  .page-layout-3columns .amblog-grid-list .slick-slide .amblog-item {
    margin-right: 0;
    width: 100%;
  }
  .column .amblog-newsletter .input-box.-newsletter {
    flex-wrap: wrap;
  }
  .column .amblog-newsletter .mage-error[generated='true'],
  .column .amblog-newsletter .amblog-input {
    max-width: calc(65% - 10px);
  }
  .column .amblog-newsletter .amblog-btn {
    max-width: 35%;
  }
  .column .amblog-newsletter .mage-error[generated='true'] {
    order: 3;
    width: 100%;
  }
  .amblog-search-titles {
    border-bottom: 1px solid #e5e5e5;
  }
  .amblog-search-title {
    position: relative;
    width: auto;
  }
  .amblog-search-title:after {
    background: transparent;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    top: 100%;
    width: 100%;
  }
  .amblog-search-title.open:after {
    background: #1979c2;
  }
  .amblog-search-content {
    margin-top: 40px;
    width: 100%;
  }
  .desktop.three-columns .amblog-related-wrapper.-related-products .amblog-item-product {
    max-width: 129px;
  }
  .amblog-related-wrapper.-related-products .amblog-slick-slider:not(.slick-initialized) {
    justify-content: initial;
  }
  .amblog-related-wrapper.-related-products .amblog-slick-slider:not(.slick-initialized) .amblog-item-product {
    max-width: 25%;
  }
  .amblog-related-wrapper.-related-products .product-reviews-summary {
    margin-bottom: 5px;
  }
  .ammenu-nav-sections .widget-product-carousel,
  .ammenu-nav-sections .widget {
    max-width: initial;
  }
  .ammenu-nav-sections .widget-product-carousel .slick-slide .product-item,
  .ammenu-nav-sections .widget .slick-slide .product-item {
    max-width: initial;
  }
  .amrelated-cart-bundle {
    padding: 0;
    width: 73%;
  }
  .amrelated-pack-wrapper .amrelated-content-wrapper {
    position: unset;
    flex-wrap: nowrap;
    margin-top: 15px;
    padding-top: 0;
    background: #ffffff;
  }
  .amrelated-pack-wrapper .amrelated-content-wrapper .amrelated-pack-item:not(:last-child) {
    border-bottom: none;
  }
  .amrelated-pack-wrapper .amrelated-content-wrapper .amrelated-photo-container .amrelated-discount {
    font-size: 12px;
  }
  .amrelated-pack-wrapper .amrelated-content-wrapper .amrelated-photo-container .amrelated-discount .price {
    font-weight: 400;
  }
  .amrelated-pack-wrapper .amrelated-content-wrapper .amrelated-plus,
  .amrelated-pack-wrapper .amrelated-content-wrapper .amrelated-equal {
    display: flex;
    padding: 10px 5px;
    text-align: center;
    font-size: 50px;
    line-height: 100px;
  }
  .amrelated-pack-wrapper .amrelated-content-wrapper .amrelated-plus {
    color: #1979c3;
  }
  .amrelated-pack-wrapper .amrelated-content-wrapper .amrelated-equal {
    color: #e9f6ff;
  }
  .amrelated-pack-wrapper .amrelated-title:after {
    content: none !important;
  }
  .amrelated-content-wrapper .amrelated-pack-list {
    max-width: 79%;
    width: unset;
  }
  .amrelated-content-wrapper .amrelated-pack-list .amrelated-pack-item.-main {
    display: block;
  }
  .amrelated-pack-list.-wide {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .amrelated-pack-list.-wide .amrelated-pack-items {
    flex-wrap: nowrap;
    justify-content: space-around;
  }
  .amrelated-pack-list.-narrow .amrelated-plus,
  .amrelated-pack-list.-narrow + .amrelated-equal {
    display: block;
    line-height: 100px;
  }
  .amrelated-equal.-second-row {
    align-self: center;
    margin-bottom: 18px;
  }
  .amrelated-pack-list.-second-row {
    border-right: 3px solid #e9f6ff;
  }
  .amrelated-pack-item .amrelated-details {
    display: block;
  }
  .amrelated-pack-item.-wide,
  .amrelated-pack-item.-narrow {
    padding: 10px;
    min-width: 120px;
    width: 14%;
    text-align: center;
  }
  .amrelated-pack-item.-wide .amrelated-info,
  .amrelated-pack-item.-narrow .amrelated-info {
    display: block;
  }
  .amrelated-pack-item.-wide .amrelated-details,
  .amrelated-pack-item.-narrow .amrelated-details {
    margin-left: 0;
  }
  .amrelated-pack-item.-wide .amrelated-photo-container,
  .amrelated-pack-item.-narrow .amrelated-photo-container {
    margin: 0 auto 10px;
  }
  .amrelated-pack-item.-main {
    background: transparent;
  }
  .amrelated-content-wrapper .amrelated-summary-content {
    position: relative;
    display: block;
    margin-top: 16px;
    padding: 0;
    width: 180px;
  }
  .amrelated-content-wrapper .amrelated-summary-content .amrelated-discount {
    right: unset;
    padding: 5px;
  }
  .amrelated-content-wrapper .amrelated-summary-content .amrelated-price-wrapper {
    box-sizing: border-box;
    margin: 0;
    width: 100%;
    height: 95px;
    border: 3px dashed #e9f6ff;
    border-bottom: none;
  }
  .amrelated-content-wrapper .amrelated-summary-content .amrelated-tocart-wrapper {
    margin-right: 0;
  }
  .amrelated-content-wrapper .amrelated-summary-content .amrelated-tocart-wrapper .action {
    width: 100%;
  }
  .amrelated-summary-content.-second-row {
    align-self: center;
  }
  .amrelated-pack-list.-wide .amrelated-pack-items {
    position: relative;
  }
  .amrelated-pack-list.-wide .amrelated-pack-items .amrelated-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    width: 0;
    height: 100%;
    background: #e9f6ff;
    box-shadow: 0 20px 0 -10px #f9f9f9;
    opacity: 1;
    transition: all .3s ease;
  }
  .amrelated-pack-list.-wide .amrelated-pack-items .amrelated-background.rtl {
    right: 0;
    left: unset;
  }
  .amrelated-pack-list.-wide .amrelated-pack-items .amrelated-info,
  .amrelated-pack-list.-wide .amrelated-pack-items .amrelated-plus,
  .amrelated-pack-list.-wide .amrelated-pack-items .amrelated-pack-item {
    z-index: 2;
  }
  .amrelated-pack-item.-wide {
    padding: 30px 0;
  }
  .amrelated-pack-list.-wide .amrelated-pack-items.-selected .amrelated-background {
    width: 100%;
    opacity: 1;
  }
  .amrelated-popup-container .amrelated-bundle-popup {
    max-width: initial;
    min-width: 700px;
  }
  .amrelated-popup-container .amrelated-bundle-popup .amrelated-product-info {
    margin-top: 60px;
    min-height: 450px;
  }
  .amrelated-product-info .amrelated-info.-top {
    float: right;
    margin: 0;
    width: 50%;
  }
  .amrelated-product-info .amrelated-info.-bottom {
    clear: both;
    float: right;
    margin-bottom: 20px;
    width: 50%;
  }
  .amrelated-product-info .amrelated-info.-top,
  .amrelated-product-info .amrelated-info.-bottom {
    box-sizing: border-box;
    padding: 0 20px 0 0;
  }
  .amrelated-info.-top .amrelated-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .amrelated-info.-top .product-reviews-summary {
    margin-bottom: 10px;
  }
  .amrelated-info.-top .product-reviews-summary .action {
    margin-left: 10px;
  }
  .amrelated-info.-bottom .amrelated-description {
    font-size: 14px;
    margin: 5px 0 0;
  }
  .amrelated-info.-bottom .product-add-form {
    margin: 0;
    padding: 0;
  }
  .amrelated-product-info .amrelated-image-container {
    border: 0;
    box-sizing: border-box;
    left: 0;
    margin: 0;
    padding: 0 25px;
    position: absolute;
    width: 50%;
  }
  .amrelated-product-info .amrelated-image-container > .product-item-photo {
    border: 0;
    width: 100%;
  }
  .amrelated-product-info .amrelated-image-container .product-image-container {
    border: 1px solid #b2b2b2;
  }
  .amrelated-products-block {
    margin-left: 27px;
    margin-right: 27px;
  }
  .amscroll-backtotop-block.-desktop-arrow {
    padding: 0;
    width: 50px;
    height: 50px;
    border-radius: 100px;
  }
  .amscroll-backtotop-block.-desktop-arrow:before {
    border-radius: 100px;
  }
  .amscroll-backtotop-block.-desktop-arrow:after {
    width: 14px;
    height: 28px;
    background: url('../Amasty_Scroll/images/arrow.svg');
  }
  .amscroll-backtotop-block.-desktop-arrow .amscroll-text {
    display: none;
  }
  .amscroll-backtotop-block.-desktop-text {
    padding-right: 7px;
    border-radius: 100px;
    transform: rotate(-90deg) translate(60px, 60px);
  }
  .amscroll-backtotop-block.-desktop-text:before {
    border-radius: 100px;
  }
  .amscroll-backtotop-block.-desktop-text:after {
    width: 24px;
    height: 24px;
    background: url('../Amasty_Scroll/images/chevron.svg');
  }
  .amscroll-backtotop-block.-desktop-edge {
    right: 0;
    padding: 4px 26px 4px 20px;
    border-radius: 20px 20px 0 0;
    transform: rotate(-90deg) translate(71px, 72px);
  }
  .amscroll-backtotop-block.-desktop-edge .amscroll-text {
    margin-right: 20px;
  }
  .amscroll-backtotop-block.-desktop-edge:before {
    border-radius: 20px 20px 0 0;
  }
  .amscroll-backtotop-block.-desktop-edge:after {
    width: 14px;
    height: 28px;
    background: url('../Amasty_Scroll/images/arrow.svg');
    transform: rotate(90deg) translateX(2px);
  }
  .action.compare {
    padding: 0 10px;
  }
  .amsearch-wrapper-block {
    order: initial;
    width: auto;
  }
  .page-header .amsearch-wrapper-block {
    float: right;
    margin: 0;
    padding: 0;
    width: auto;
  }
  .page-header .amsearch-wrapper-block:before {
    content: none;
  }
  .amsearch-loader-block {
    right: 30px;
  }
  .amsearch-emptysearch-cms {
    padding: 40px;
  }
  .amsearch-emptysearch-cms .amsearch-content > .amsearch-title {
    font-size: 54px;
  }
  .amsearch-emptysearch-cms .amsearch-text {
    font-size: 22px;
  }
  .amsearch-button.-close:hover,
  .amsearch-button.-close:hover {
    filter: brightness(0%);
  }
  .amsearch-slider-section {
    max-width: 575px;
  }
  .amsearch-slider-section.slick-slider {
    padding: 0 40px;
  }
  .amsearch-products-section {
    border-top: none;
    display: flex;
    flex-wrap: wrap;
  }
  .amsearch-products-section:not(:first-child) {
    border-color: var(--amsearch-color-border, #cccccc);
    border-left: 1px solid;
  }
  .amsearch-products-section .amsearch-description {
    width: auto;
  }
  .amsearch-products-section.-list .amsearch-image {
    max-width: 125px;
  }
  .amsearch-products-section.-list .product-item-actions {
    align-content: flex-start;
    display: flex;
  }
  .amsearch-products-section.-list .amsearch-description {
    padding-left: 20px;
  }
  .amsearch-products-section.-grid:not(.-slider) .amsearch-item {
    max-width: calc(33.33333333%);
  }
  .amsearch-result-tabs .title:hover:before,
  .amsearch-result-tabs .title.active:before {
    background: #ffffff;
    bottom: -1px;
    content: '';
    height: 2px;
    left: 1px;
    position: absolute;
    width: calc(100% - 2px);
  }
  .amsearch-result-tabs.product.data.items .item.title.active .switch {
    padding-bottom: 1px;
  }
  .amsearch-result-section {
    min-width: 100%;
    width: inherit;
  }
  .amsearch-result-section:not(.-small) {
    flex-wrap: nowrap;
  }
  .amsearch-result-block.-preload {
    flex-wrap: nowrap;
  }
  .amsearch-result-block.-preload .amsearch-products-list:not(:first-child) {
    border-left: 1px solid #cccccc;
    width: calc(100% - 283px);
  }
  .page-header:not(.amsearch-full-width) .amsearch-input-wrapper.-dynamic-width {
    width: 100%;
  }
  .page-header .amsearch-input-wrapper {
    min-width: 283px;
    width: auto;
  }
  .amsearch-item-container {
    padding: 0 0 25px;
  }
  .amsearch-item-container .amsearch-link {
    padding: 5px 20px;
  }
  .amsearch-items-section {
    padding: 25px 0;
  }
  .amsearch-items-section:not(:first-child:last-child) {
    max-width: 283px;
    width: 100%;
  }
  .amsearch-full_width-title {
    display: none;
  }
  .page-header.amsearch-full-width.-opened .ammenu-logo,
  .page-header.amsearch-full-width.-opened .logo {
    margin: 0 auto 0 4vw;
    z-index: 11;
  }
  .page-header.amsearch-full-width.-opened .amsearch-wrapper-block {
    z-index: 10;
  }
  .page-header.amsearch-full-width.-opened .amsearch-button.-full-close {
    right: 4vw;
  }
  .page-header.amsearch-full-width .amsearch-input-wrapper {
    flex-grow: initial;
  }
  .page-header.amsearch-full-width .amsearch-button.-search {
    flex-grow: initial;
  }
  .page-header.amsearch-full-width .amsearch-wrapper-block {
    background: #fff;
    display: inline-block;
  }
  .page-header.amsearch-full-width:not(.-opened) .amsearch-wrapper-block {
    position: static;
    width: auto;
  }
  .page-header.amsearch-full-width .amsearch-form-block {
    height: 100%;
    justify-content: center;
    padding: 0;
  }
  .page-header.amsearch-full-width .amsearch-result-section {
    padding: 0 calc(4vw - 15px);
  }
  .page-header.amsearch-full-width .amsearch-products-section.-grid:not(.-slider) .amsearch-item {
    max-width: calc(25%);
  }
  .page-header.amsearch-full-width .amsearch-products-section.-list .amsearch-item {
    width: 50%;
  }
  .page-header.amsearch-full-width .amsearch-button.-full-close {
    margin: auto;
  }
  .page-header .amsearch-button.-loupe-trigger {
    display: none;
  }
  .amsearch-search-page.page-products .columns {
    z-index: 0;
  }
  .block-cart-failed .actions {
    text-align: left;
  }
  .block-cart-failed .actions.primary {
    float: right;
  }
  .bundle-options-container .bundle-options-wrapper,
  .bundle-options-container .product-options-wrapper {
    float: left;
    width: 57%;
  }
  .bundle-options-container .block-bundle-summary {
    float: right;
    position: relative;
    width: 40%;
  }
  .page-layout-2columns-left .bundle-options-container .bundle-options-wrapper,
  .page-layout-2columns-left .bundle-options-container .block-bundle-summary,
  .page-layout-2columns-right .bundle-options-container .bundle-options-wrapper,
  .page-layout-2columns-right .bundle-options-container .block-bundle-summary,
  .page-layout-3columns .bundle-options-container .bundle-options-wrapper,
  .page-layout-3columns .bundle-options-container .block-bundle-summary {
    width: 48%;
  }
  .page-products .products-grid .product-item {
    margin-left: 2%;
    padding: 0;
    width: calc((100% - 4%) / 3);
  }
  .page-products .products-grid .product-item:nth-child(3n + 1) {
    margin-left: 0;
  }
  .page-products.page-layout-1column .products-grid .product-item {
    width: 25%;
  }
  .page-products.page-layout-3columns .products-grid .product-item {
    width: 50%;
  }
  .page-products .columns {
    padding-top: 0;
    position: relative;
    z-index: 1;
  }
  .products.wrapper ~ .toolbar .pages {
    float: left;
  }
  .toolbar-amount {
    float: left;
  }
  .sorter {
    float: right;
  }
  .modes {
    display: inline-block;
    float: left;
    margin-right: 20px;
  }
  .products.wrapper ~ .toolbar .modes {
    display: none;
  }
  .modes-mode {
    color: #7d7d7d;
    border: 1px solid #d1d1d1;
    border-right: 0;
    float: left;
    font-weight: 400;
    line-height: 1;
    padding: 7px 10px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
  }
  .modes-mode:not(.active):hover {
    color: #7d7d7d;
    background: #dedede;
  }
  .modes-mode:last-child {
    border-right: 1px solid #d1d1d1;
  }
  .modes-mode.active {
    color: #a6a6a6;
  }
  .modes-mode > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .modes-mode:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 24px;
    line-height: inherit;
    color: #7d7d7d;
    content: '\e60d';
    font-family: 'icons-blank-theme';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .modes-mode:hover:before {
    color: #7d7d7d;
  }
  .mode-list:before {
    content: '\e60b';
  }
  .products.wrapper ~ .toolbar .limiter {
    display: block;
    float: right;
  }
  .product-info-main .box-tocart,
  .product-options-bottom .box-tocart {
    display: table;
  }
  .product-info-main .box-tocart .field.qty,
  .product-options-bottom .box-tocart .field.qty {
    display: table-cell;
  }
  .product-info-main .box-tocart .actions,
  .product-options-bottom .box-tocart .actions {
    display: table-cell;
    padding-top: 25px;
    text-align: center;
    vertical-align: bottom;
  }
  .product-info-main .page-title-wrapper .page-title {
    margin-top: -13px;
  }
  .sidebar .product-items .product-item-info .product-item-photo {
    float: left;
    left: auto;
    margin: 0 10px 10px 0;
    position: relative;
    top: auto;
  }
  .sidebar .product-items .product-item-details {
    margin: 0;
  }
  .sidebar .product-items .product-item-actions {
    clear: left;
  }
  .product-info-main {
    float: right;
  }
  .product.media {
    float: left;
    margin-bottom: 25px;
  }
  .page-layout-1column .product-info-main {
    width: 40%;
  }
  .page-layout-1column .product.media {
    width: 57%;
  }
  .page-layout-2columns-left .product-info-main,
  .page-layout-2columns-right .product-info-main,
  .page-layout-3columns .product-info-main {
    width: 48%;
  }
  .page-layout-2columns-left .product.media,
  .page-layout-2columns-right .product.media,
  .page-layout-3columns .product.media {
    width: 50%;
  }
  .block-category-event.block:last-child {
    margin-bottom: 30px;
    padding: 10px 0 30px;
  }
  .block-category-event .block-title {
    margin: 0;
  }
  .block-category-event .block-title strong {
    font-size: 2.4rem;
  }
  .block-category-event .ticker li {
    display: none;
    margin: 0 50px;
  }
  .block-category-event .ticker .value {
    font-size: 6rem;
  }
  .block-category-event .ticker .label {
    font-size: 1.4rem;
    text-transform: none;
  }
  .block-category-event .dates .date {
    font-size: 5rem;
  }
  .block-category-event .dates .start {
    padding-right: 50px;
  }
  .block-category-event .dates .start:after {
    font-size: 5rem;
    right: 10px;
  }
  .block-search {
    float: right;
    padding-left: 15px;
    position: relative;
    width: 250px;
    z-index: 4;
  }
  .block-search .control {
    border-top: 0;
    margin: 0;
    padding: 0 0 25px;
  }
  .block-search .nested {
    display: block;
    padding-top: 5px;
    position: absolute;
  }
  .block-search input {
    margin: 0;
    padding-right: 35px;
    position: static;
  }
  .block-search input::-webkit-input-placeholder {
    color: #c2c2c2;
  }
  .block-search input:-moz-placeholder {
    color: #c2c2c2;
  }
  .block-search input::-moz-placeholder {
    color: #c2c2c2;
  }
  .block-search input:-ms-input-placeholder {
    color: #c2c2c2;
  }
  .block-search .action.search {
    display: inline-block;
    background-image: none;
    background: none;
    -moz-box-sizing: content-box;
    border: 0;
    box-shadow: none;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-shadow: none;
    font-weight: 400;
    padding: 5px 0;
    position: absolute;
    right: 10px;
    top: 0;
    z-index: 1;
  }
  .block-search .action.search > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .block-search .action.search:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 22px;
    line-height: 22px;
    color: #8f8f8f;
    content: '\e615';
    font-family: 'icons-blank-theme';
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .block-search .action.search:hover:before {
    color: inherit;
  }
  .block-search .action.search:active:before {
    color: inherit;
  }
  .block-search .action.search:focus,
  .block-search .action.search:active {
    background: none;
    border: none;
  }
  .block-search .action.search:hover {
    background: none;
    border: none;
  }
  .block-search .action.search.disabled,
  .block-search .action.search[disabled],
  fieldset[disabled] .block-search .action.search {
    pointer-events: none;
    opacity: 0.5;
  }
  .block-search .action.search:focus:before {
    color: #333333;
  }
  .search-autocomplete {
    margin-top: 0;
  }
  .cart-container .widget {
    float: left;
  }
  .cart-container .widget.block {
    margin-bottom: 20px;
  }
  .cart-summary {
    float: right;
    position: relative;
    width: 23%;
  }
  .column.main .cart-summary .actions-toolbar > .secondary {
    float: none;
  }
  .cart-summary .block .fieldset .field {
    margin: 0 0 20px;
    margin: 0 0 10px;
  }
  .cart-summary .block .fieldset .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .cart-summary .block .fieldset .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .cart-summary .block .fieldset .field > .label {
    margin: 0 0 5px;
    display: inline-block;
  }
  .cart-summary .block .fieldset .field.choice:before,
  .cart-summary .block .fieldset .field.no-label:before {
    display: none;
  }
  .cart.table-wrapper .items {
    min-width: 100%;
    width: auto;
  }
  .cart.table-wrapper .item .col.item {
    padding: 27px 8px 10px;
  }
  .cart.table-wrapper .item-actions td {
    text-align: right;
  }
  .cart.table-wrapper .product-item-photo {
    display: table-cell;
    max-width: 100%;
    padding-right: 20px;
    position: static;
    vertical-align: top;
    width: 1%;
  }
  .cart.table-wrapper .product-item-details {
    display: table-cell;
    vertical-align: top;
    white-space: normal;
    width: 99%;
  }
  .cart.table-wrapper .item-actions .actions-toolbar {
    text-align: left;
  }
  .cart .action {
    margin-bottom: 10px;
  }
  .cart-products-toolbar .toolbar-amount {
    line-height: 30px;
    margin: 0;
  }
  .cart-products-toolbar .pages {
    float: right;
    margin: 0 0 1px;
  }
  .cart-products-toolbar .pages .item:last-child {
    margin-right: 0;
  }
  .cart.table-wrapper .cart-products-toolbar + .cart thead tr th.col {
    padding-bottom: 7px;
    padding-top: 8px;
  }
  .cart.table-wrapper .cart + .cart-products-toolbar {
    margin-top: 25px;
  }
  .minicart-wrapper {
    margin-left: 13px;
  }
  .minicart-wrapper .block-minicart {
    right: -15px;
    width: 390px;
  }
  .opc-wrapper {
    width: 66.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    padding-right: 30px;
  }
  .checkout-onepage-success .print {
    display: block;
    float: right;
    margin: 22px 0 0;
  }
  .opc-progress-bar-item {
    width: 185px;
  }
  .checkout-index-index .modal-popup .form-shipping-address {
    max-width: 600px;
  }
  .checkout-index-index .modal-popup .modal-footer .action-save-address {
    float: right;
    margin: 0 0 0 10px;
  }
  .checkout-shipping-method .actions-toolbar > .primary {
    float: right;
  }
  .checkout-shipping-method .actions-toolbar .action.primary {
    margin: 0;
  }
  .opc-wrapper .form-login,
  .opc-wrapper .form-shipping-address {
    max-width: 600px;
  }
  .table-checkout-shipping-method {
    width: auto;
  }
  .opc-sidebar {
    margin: 46px 0 20px;
    width: 33.33333333%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .opc-summary-wrapper .modal-header .action-close {
    display: none;
  }
  .authentication-dropdown {
    background-color: #ffffff;
    border: 1px solid #aeaeae;
    -webkit-transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    -webkit-transition: -webkit-transform linear 0.1s, visibility 0s linear 0.1s;
    position: absolute;
    text-align: left;
    top: 100%;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: transform linear .1s, visibility 0s linear .1s;
    visibility: hidden;
    width: 100%;
  }
  .authentication-dropdown._show {
    z-index: 100;
    -webkit-transform: scale(1, 1);
    -webkit-transition: -webkit-transform linear 0.1s, visibility 0s linear 0s;
    transform: scale(1, 1);
    transition: transform linear .1s, visibility 0s linear 0s;
    visibility: visible;
  }
  .authentication-wrapper {
    width: 33.33333333%;
    text-align: right;
  }
  .block-authentication .block-title {
    font-size: 2.6rem;
    border-bottom: 0;
    margin-bottom: 25px;
  }
  .block-authentication .actions-toolbar > .primary {
    display: inline;
    float: right;
    margin-right: 0;
  }
  .block-authentication .actions-toolbar > .primary .action {
    margin-right: 0;
  }
  .block-authentication .actions-toolbar > .secondary {
    float: left;
    margin-right: 2rem;
    padding-top: 1rem;
  }
  .popup-authentication .modal-inner-wrap {
    min-width: 768px;
    width: 60%;
  }
  .popup-authentication .block-authentication {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    border-top: 1px solid #c1c1c1;
  }
  .popup-authentication .block[class],
  .popup-authentication .form-login,
  .popup-authentication .fieldset,
  .popup-authentication .block-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-grow: 1;
    flex-grow: 1;
  }
  .popup-authentication .block[class] {
    box-sizing: border-box;
    float: left;
    padding: 10px 30px 0 0;
    width: 50%;
  }
  .popup-authentication .block[class] + .block {
    border-left: 1px solid #c1c1c1;
    border-top: 0;
    margin: 0;
    padding: 10px 0 0 40px;
  }
  .popup-authentication .block[class] + .block:before {
    left: 0;
    top: 50%;
  }
  .popup-authentication .actions-toolbar {
    margin-bottom: 0;
    margin-top: auto;
  }
  .checkout-payment-method .actions-toolbar .primary {
    float: right;
    margin: 0;
  }
  .checkout-payment-method .fieldset > .field-select-billing > .control {
    float: none;
    width: 100%;
  }
  .checkout-payment-method .payment-method-content .fieldset > .field {
    margin: 0 0 20px;
  }
  .checkout-payment-method .payment-method-content .fieldset > .field.choice:before {
    padding: 0;
    width: 0;
  }
  .checkout-payment-method .payment-method-content .fieldset > .field.type .control {
    margin-left: 25.8%;
  }
  .checkout-payment-method .payment-method-content .fieldset > .field.type.no-detection .control {
    margin-left: 0;
  }
  .checkout-billing-address .action-update {
    float: right;
  }
  .checkout-billing-address .actions-toolbar .action-cancel {
    margin: 6px 20px 0 0;
  }
  .checkout-payment-method .payment-option-title {
    padding-left: 22px;
  }
  .checkout-payment-method .payment-option-content .payment-option-inner + .actions-toolbar {
    margin-left: 0;
  }
  .contact-index-index .column:not(.sidebar-additional) .form.contact {
    min-width: 600px;
  }
  .login-container .block .login .actions-toolbar > .primary {
    margin-bottom: 0;
    margin-right: 30px;
  }
  .login-container .block .login .actions-toolbar > .secondary {
    float: left;
  }
  .fieldset .fullname .field .label {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .fieldset .fullname .field .control {
    width: 74.2%;
    float: left;
  }
  .form.password.reset,
  .form.send.confirmation,
  .form.password.forget,
  .form.create.account,
  .form.search.advanced,
  .form.form-orders-search {
    min-width: 600px;
    width: 50%;
  }
  .account.page-layout-2columns-left .sidebar-main,
  .account.page-layout-2columns-left .sidebar-additional {
    width: 22.3%;
  }
  .account.page-layout-2columns-left .column.main {
    width: 77.7%;
  }
  .block-addresses-list .items.addresses {
    font-size: 0;
  }
  .block-addresses-list .items.addresses > .item {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 20px;
    vertical-align: top;
    width: 48.8%;
  }
  .block-addresses-list .items.addresses > .item:nth-last-child(1),
  .block-addresses-list .items.addresses > .item:nth-last-child(2) {
    margin-bottom: 0;
  }
  .block-addresses-list .items.addresses > .item:nth-child(even) {
    margin-left: 2.4%;
  }
  .control.captcha-image .captcha-img {
    margin: 0 10px 10px 0;
  }
  .page-product-downloadable .product-options-wrapper {
    float: left;
    width: 55%;
  }
  .page-product-downloadable .product-options-bottom {
    float: right;
    width: 40%;
  }
  .page-product-downloadable .product-options-bottom .field.qty + .actions {
    padding-top: 0;
  }
  .gift-message .field {
    margin-bottom: 20px;
  }
  .gift-options {
    position: relative;
    z-index: 1;
  }
  .gift-options .actions-toolbar {
    clear: both;
    float: right;
    position: static;
  }
  .gift-options .actions-toolbar .secondary {
    float: right;
  }
  .gift-options .actions-toolbar .secondary .action {
    float: right;
    margin-left: 20px;
  }
  .gift-options .actions-toolbar .secondary .action-cancel {
    display: block;
    float: left;
    margin-top: 6px;
  }
  .gift-options .actions-toolbar:nth-child(3):before {
    border-left: 1px solid #c1c1c1;
    bottom: 5rem;
    content: '';
    display: block;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 0;
  }
  .gift-options-title {
    font-weight: 300;
    font-size: 1.8rem;
  }
  .cart.table-wrapper .action-gift {
    float: left;
  }
  .order-options .gift-wrapping,
  .table-order-review .gift-wrapping {
    max-width: 50%;
  }
  .form-giftregistry-search .fieldset {
    margin-bottom: 29px;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field {
    margin: 0 0 20px;
    box-sizing: border-box;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field > .label {
    margin: 0;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:before,
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:after {
    content: '';
    display: table;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:after {
    clear: both;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field.choice:before,
  .form-giftregistry-search .fieldset > .fields-specific-options > .field.no-label:before {
    padding: 6px 15px 0 0;
    width: 25.8%;
    box-sizing: border-box;
    content: ' ';
    float: left;
    height: 1px;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field .description {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:not(.choice) > .label {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:not(.choice) > .control {
    width: 74.2%;
    float: left;
  }
  .block-giftregistry-shared-items .product-item-photo {
    display: table-cell;
    max-width: 100%;
    padding: 0 20px 0 0;
    vertical-align: top;
    width: 1%;
  }
  .block-giftregistry-shared-items .product-item-details {
    display: table-cell;
    vertical-align: top;
    width: 99%;
    word-break: normal;
  }
  .block-giftregistry-shared-items .col.product {
    width: 48%;
  }
  .block-giftregistry-shared-items .col:not(.product) {
    text-align: center;
  }
  .block-giftregistry-shared-items .col.price {
    padding-top: 17px;
  }
  .block-giftregistry-shared-items .input-text.qty {
    margin-top: -4px;
  }
  .gift-options-cart-item .gift-wrapping,
  .cart-gift-item .gift-wrapping {
    box-sizing: border-box;
    float: left;
    padding-right: 20px;
    width: 50%;
  }
  .gift-options-cart-item .gift-wrapping + .gift-message,
  .cart-gift-item .gift-wrapping + .gift-message {
    border-left: 1px solid #c1c1c1;
    box-sizing: border-box;
    float: left;
    padding-left: 4.5rem;
    width: 50%;
  }
  .form-add-invitations .additional,
  .form-add-invitations .field.text {
    margin-top: 29px;
  }
  .table-invitations .col {
    width: 50%;
  }
  .wishlist.window.popup {
    bottom: auto;
    top: 20%;
    left: 50%;
    margin-left: -212px;
    width: 380px;
    right: auto;
  }
  .wishlist.window.popup .field {
    margin: 0 0 20px;
  }
  .wishlist.window.popup .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .wishlist.window.popup .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .wishlist.window.popup .field > .label {
    margin: 0 0 5px;
    display: inline-block;
  }
  .wishlist.window.popup .field.choice:before,
  .wishlist.window.popup .field.no-label:before {
    display: none;
  }
  .block-wishlist-management {
    margin-bottom: 20px;
  }
  .block-wishlist-management .wishlist-select {
    border-bottom: 1px solid #e8e8e8;
    display: table;
    margin-bottom: 15px;
    width: 100%;
  }
  .block-wishlist-management .wishlist-select .wishlist-name {
    display: table-cell;
    margin-right: 10px;
    padding: 5px 10px 10px;
    vertical-align: top;
    white-space: nowrap;
    width: 5%;
  }
  .block-wishlist-management .wishlist-select-items {
    display: table-cell;
    padding-right: 160px;
    vertical-align: top;
  }
  .block-wishlist-management .wishlist-select-items .item {
    display: inline-block;
    margin-right: 10px;
    padding: 5px 10px 10px;
  }
  .block-wishlist-management .wishlist-select-items .item:last-child {
    margin-right: 0;
  }
  .block-wishlist-management .wishlist-select-items .current {
    border-bottom: 3px solid #ff5501;
    font-weight: 600;
  }
  .block-wishlist-management .wishlist-select .wishlist-name-current {
    display: none;
  }
  .block-wishlist-management .wishlist-add.item {
    position: absolute;
    right: 0;
    top: 0;
  }
  .block-wishlist-management .wishlist-title strong {
    font-size: 4rem;
  }
  .block-wishlist-management .wishlist-info {
    float: left;
  }
  .block-wishlist-management .wishlist-toolbar {
    float: right;
  }
  .block-wishlist-info-items .product-item-photo {
    margin-left: 0;
  }
  .products-grid.wishlist .product-item-checkbox {
    float: left;
  }
  .products-grid.wishlist .product-item-checkbox + .product-item-name {
    margin-left: 25px;
  }
  .block.newsletter {
    max-width: 44%;
    width: max-content;
  }
  .block.newsletter .field {
    margin-right: 5px;
  }
  .block.newsletter .field.newsletter {
    max-width: 220px;
  }
  .block.newsletter .field .control {
    width: 100%;
  }
  .block.newsletter .action.subscribe {
    border-radius: 3px;
  }
  .paypal-review .paypal-review-title {
    border-bottom: 1px solid #d1d1d1;
  }
  .paypal-review .block-content .box-order-shipping-address,
  .paypal-review .block-content .box-order-shipping-method,
  .paypal-review .block-content .box-order-shipping-method + .box-order-billing-address {
    box-sizing: border-box;
    float: left;
    width: 33%;
  }
  .paypal-review .block-content .box-order-shipping-address {
    padding: 0 5%;
    width: 34%;
  }
  .paypal-review .col.subtotal,
  .paypal-review .mark,
  .paypal-review .amount {
    text-align: right;
  }
  .products.wrapper.list .product-reviews-summary {
    margin: 0;
  }
  .reward-settings + .actions-toolbar {
    margin-top: -32px;
  }
  .form-create-return .additional .field:last-child {
    margin-top: 29px;
  }
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box {
    margin-bottom: 20px;
  }
  .block-returns-tracking .block-title .action {
    margin: 0 0 0 30px;
  }
  .block-returns-tracking .block-title .actions-track {
    float: right;
    margin-top: 12px;
  }
  .table-order-items .subtotal,
  .table-order-items .amount {
    text-align: right;
  }
  .table-order-items.creditmemo .col.qty,
  .table-order-items.creditmemo .col.discount,
  .table-order-items.creditmemo .col.subtotal {
    text-align: center;
  }
  .table-order-items.creditmemo .col.total {
    text-align: right;
  }
  .order-pager-wrapper .order-pager-wrapper-top {
    padding-left: 0;
    padding-right: 0;
  }
  .order-pager-wrapper .pages {
    float: right;
  }
  .order-actions-toolbar .action.print {
    display: block;
    float: right;
  }
  .page-title-wrapper .order-date {
    margin-top: -20px;
  }
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content .box,
  .sales-guest-view .column.main .block:not(.widget) .block-content .box {
    margin-bottom: 20px;
  }
  .page-wrapper > .breadcrumbs,
  .page-wrapper > .top-container,
  .page-wrapper > .widget {
    box-sizing: border-box;
    width: 100%;
  }
  .navigation ul {
    padding: 0 8px;
  }
  .header.panel > .header.links {
    float: right;
    font-size: 0;
    margin: 0;
    padding: 0;
    list-style: none none;
    margin-left: auto;
  }
  .header.panel > .header.links > li {
    display: inline-block;
    vertical-align: top;
  }
  .header.panel > .header.links > li {
    font-size: 14px;
    margin: 0 0 0 15px;
  }
  .header.panel > .header.links > li.welcome,
  .header.panel > .header.links > li a {
    line-height: 1.4;
  }
  .header.panel > .header.links > li.welcome a {
    padding-left: 5px;
  }
  .header.content {
    padding: 30px 20px 0;
  }
  .page-header {
    border: 0;
    margin-bottom: 0;
  }
  .page-header .panel.wrapper {
    border-bottom: 1px solid #e8e8e8;
  }
  .page-header .header.panel {
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .page-header .switcher {
    display: inline-block;
  }
  .page-main > .page-title-wrapper .page-title {
    display: inline-block;
  }
  .page-main > .page-title-wrapper .page-title + .action {
    float: right;
    margin-top: 20px;
  }
  .logo {
    margin: 0 auto 25px 0;
  }
  .logo img {
    max-height: inherit;
  }
  .footer.content .block {
    float: right;
  }
  .footer.content .links {
    display: inline-block;
    margin-bottom: 20px;
    padding: 0 50px 0 0;
    vertical-align: top;
  }
  .footer.content .switcher.store {
    display: inline-block;
    padding-right: 50px;
    vertical-align: top;
  }
  .my-credit-cards .card-type img {
    display: block;
  }
  .products-grid.wishlist .product-item-tooltip {
    display: inline-block;
  }
  .products-grid.wishlist .product-item-actions {
    margin: 10px 0 0;
  }
  .products-grid.wishlist .product-item .fieldset .field.qty {
    margin-bottom: 10px;
    padding-right: 10px;
  }
  .products-grid.wishlist .product-item .fieldset .field.qty .label {
    width: auto;
  }
  .products-grid.wishlist .product-item .box-tocart .actions-primary {
    margin: 0;
  }
  .products-grid.wishlist .product-item .box-tocart .stock {
    margin: 20px 0 0;
  }
  .wishlist-index-index .product-item-info {
    width: 240px;
  }
  .block.widget .products-grid .product-item {
    width: 33.33333333%;
  }
  .sidebar .block.widget .products-grid .product-item {
    margin-left: 0;
    width: 100%;
  }
  .sidebar .block.widget .products-grid .product-item .actions-secondary {
    display: block;
    padding: 10px 0;
  }
  .page-layout-1column .block.widget .products-grid .product-item {
    margin-left: 2%;
    width: calc((100% - 6%) / 4);
  }
  .page-layout-1column .block.widget .products-grid .product-item:nth-child(3n + 1) {
    margin-left: 2%;
  }
  .page-layout-1column .block.widget .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0;
  }
  .page-layout-3columns .block.widget .products-grid .product-item {
    width: 50%;
  }
  .sidebar .block.widget .pager .pages-item-next {
    padding: 0;
  }
  .sidebar .block.widget .pager .pages-item-next .action {
    margin: 0;
  }
}
@media all and (min-width: 1024px), print {
  .desktop.three-columns aside.left,
  .desktop.three-columns aside.right {
    max-width: 271px;
    width: 24%;
  }
  .desktop.three-columns section.content {
    width: 52%;
  }
  .desktop.two-columns-right aside.right,
  .desktop.two-columns-left aside.right {
    max-width: 271px;
    width: 30%;
  }
  .amblog-helpful-wrap {
    margin: 0;
    right: 0;
    top: 0;
  }
  .amblog-tabs-block.-block .amblog-list.-active {
    justify-content: flex-start;
  }
  .amblog-content-tab {
    margin-bottom: 10px;
  }
  .amblog-post-container .amblog-widget-container.-post .amblog-item {
    width: 48%;
  }
  .amblog-grid-list {
    -webkit-box-pack: initial;
    -ms-flex-pack: initial;
    justify-content: initial;
  }
  .amblog-grid-list > .amblog-item,
  .amblog-grid-list .slick-slide .amblog-item {
    margin-right: 3%;
    width: 31%;
  }
  .amblog-grid-list > .amblog-item {
    min-width: 190px;
  }
  .amblog-grid-list .slick-slide .amblog-item {
    min-width: 150px;
  }
  .amblog-grid-list > .amblog-item:nth-child(3n+0),
  .amblog-grid-list .slick-slide .amblog-item:nth-child(3n+0) {
    margin-right: 0;
  }
  .page-layout-3columns .amblog-grid-list {
    justify-content: space-between;
  }
  .page-layout-3columns .amblog-grid-list > .amblog-item,
  .page-layout-3columns .amblog-grid-list .slick-slide .amblog-item {
    margin-right: 20px;
    width: calc(51% - 20px);
  }
  .page-layout-3columns .amblog-grid-list > .amblog-item:nth-child(2n+0),
  .page-layout-3columns .amblog-grid-list .slick-slide .amblog-item:nth-child(2n+0) {
    margin-right: 0;
  }
  .amrelated-pack-wrapper .amrelated-content-wrapper .amrelated-plus,
  .amrelated-pack-wrapper .amrelated-content-wrapper .amrelated-equal {
    padding: 10px;
    font-size: 90px;
  }
  .amrelated-pack-item.-narrow .product-reviews-summary {
    margin: 0 auto 5px;
  }
  .amrelated-popup-container .amrelated-bundle-popup {
    width: 820px;
  }
  .amrelated-product-info .amrelated-info.-top,
  .amrelated-product-info .amrelated-info.-bottom {
    padding: 0 35px 0 0;
  }
  .amrelated-product-info .amrelated-image-container .amrelated-image-container {
    padding: 0 25px 0 35px;
  }
  .amrelated-product-info .amrelated-image-container > .product-item-photo {
    text-align: left;
  }
  .amsearch-emptysearch-cms {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 40px 70px;
  }
  .amsearch-emptysearch-cms > .amsearch-item {
    max-width: 50%;
  }
  .amsearch-emptysearch-cms > .amsearch-content {
    padding-right: 10px;
  }
  .amsearch-emptysearch-cms .amsearch-content > .amsearch-title {
    font-size: 72px;
    margin: 0 0 20px;
  }
  .amsearch-emptysearch-cms .amsearch-text {
    font-size: 28px;
    line-height: 33px;
  }
  .amsearch-emptysearch-cms .amsearch-contacts-block {
    font-size: 22px;
    margin-top: 45px;
  }
  .amsearch-emptysearch-cms .amsearch-image-block {
    margin-top: 0;
  }
  .amsearch-emptysearch-cms .amsearch-contacts-block > .amsearch-title {
    margin-bottom: 10px;
  }
  .amsearch-result-block:not(.-preload) .amsearch-products-section {
    width: calc(100% - 283px);
  }
  .amsearch-products-section.-grid:not(.-slider) .amsearch-item {
    max-width: calc(25%);
  }
  .page-header.amsearch-full-width .amsearch-products-section.-grid:not(.-slider) .amsearch-item {
    max-width: calc(20%);
  }
  .products-grid .product-item {
    width: 20%;
  }
  .page-layout-1column .products-grid .product-item {
    width: 16.66666667%;
  }
  .page-layout-3columns .products-grid .product-item {
    width: 25%;
  }
  .page-products .products-grid .product-items {
    margin: 0;
  }
  .page-products .products-grid .product-item {
    margin-left: 2%;
    padding: 0;
    width: calc((100% - 6%) / 4);
  }
  .page-products .products-grid .product-item:nth-child(3n + 1) {
    margin-left: 2%;
  }
  .page-products .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0;
  }
  .page-products.page-layout-1column .products-grid .product-item {
    margin-left: 0;
    width: 20%;
  }
  .page-products.page-layout-3columns .products-grid .product-item {
    margin-left: 1%;
    width: 32.667%;
  }
  .page-products.page-layout-3columns .products-grid .product-item:nth-child(3n) {
    margin-left: 1%;
  }
  .page-products.page-layout-3columns .products-grid .product-item:nth-child(3n + 1) {
    margin-left: 0;
  }
  .checkout-index-index .modal-popup .modal-inner-wrap {
    margin-left: -400px;
    width: 800px;
    left: 50%;
  }
  .opc-wrapper .shipping-address-item {
    width: 33.33333333%;
  }
  .opc-wrapper .shipping-address-item:before {
    background: #cccccc;
    height: calc(100% - 20px);
    content: '';
    left: 0;
    position: absolute;
    top: 0;
    width: 1px;
  }
  .opc-wrapper .shipping-address-item:nth-child(3n + 1):before {
    display: none;
  }
  .opc-wrapper .shipping-address-item.selected-item:before {
    display: none;
  }
  .opc-wrapper .shipping-address-item.selected-item + .shipping-address-item:before {
    display: none;
  }
  .table-checkout-shipping-method {
    min-width: 500px;
  }
  .wishlist-index-index .products-grid .product-items {
    margin: 0;
  }
  .wishlist-index-index .products-grid .product-item {
    margin-left: calc((100% - 4 * 24.439%) / 3);
    padding: 0;
    width: 24.439%;
  }
  .wishlist-index-index .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0;
  }
  .block.widget .products-grid .product-item {
    width: 20%;
  }
  .page-layout-1column .block.widget .products-grid .product-item {
    margin-left: 2%;
    width: calc((100% - 8%) / 5);
  }
  .page-layout-1column .block.widget .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 2%;
  }
  .page-layout-1column .block.widget .products-grid .product-item:nth-child(5n + 1) {
    margin-left: 0;
  }
  .page-layout-3columns .block.widget .products-grid .product-item {
    width: 25%;
  }
  .block.widget .products-grid .product-items {
    margin: 0;
  }
  .block.widget .products-grid .product-item {
    margin-left: calc((100% - 4 * 24.439%) / 3);
    padding: 0;
    width: 24.439%;
  }
  .block.widget .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0;
  }
}
@media all and (min-width: 1440px), print {
  .amrelated-pack-list.-wide .amrelated-pack-item.-main {
    display: flex;
  }
  .amrelated-pack-list.-wide .amrelated-pack-items {
    position: relative;
    flex-wrap: nowrap;
    max-width: 66%;
    width: unset;
  }
  .amrelated-pack-list.-wide .amrelated-plus,
  .amrelated-pack-list.-wide .amrelated-equal {
    line-height: unset;
  }
  .amrelated-pack-item.-wide {
    padding: 30px;
    width: 270px;
  }
  .amrelated-pack-item.-wide.-main {
    padding-left: 0;
    width: 270px;
  }
  .amrelated-pack-item.-wide .amrelated-info {
    display: flex;
    text-align: left;
  }
  .amrelated-pack-item.-wide .amrelated-details {
    margin-left: 20px;
  }
  .amrelated-pack-item.-wide .amrelated-photo-container {
    margin: 0;
  }
  .sidebar .product-items .product-item-info .product-item-photo {
    float: none;
    left: 0;
    margin: 0;
    position: absolute;
    top: 0;
  }
  .sidebar .product-items .product-item-details {
    margin-left: 85px;
  }
}
