/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
.noUi-connect {
  height: 100%;
  width: 100%;
}
.noUi-origin {
  height: 10%;
  width: 10%;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 5px;
}
.noUi-horizontal .noUi-handle {
  width: 15px;
  height: 15px;
  right: -8px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  top: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3FB8AF;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #009640;
  border-radius: 8px;
  background: #009640;
  cursor: default;
  /*box-shadow: inset 0 0 1px #FFF,
				inset 0 1px 7px #EBEBEB,
				0 3px 6px -3px #BBB;*/
}
.noUi-handle.noUi-active {
  border: 1px solid #a42346;
  background: #a42346;
}
.noUi-active {
  /*box-shadow: inset 0 0 1px #FFF,
				inset 0 1px 7px #DDD,
				0 3px 6px -3px #BBB;*/
}
/* Handle stripes;
 */
/*
.@{noUi-css-prefix}-handle:before,
.@{noUi-css-prefix}-handle:after {
	content: "";
	display: block;
	position: absolute;
	height: 14px;
	width: 1px;
	background: #E8E7E6;
	left: 14px;
	top: 6px;
}
.@{noUi-css-prefix}-handle:after {
	left: 17px;
}
.@{noUi-css-prefix}-vertical .@{noUi-css-prefix}-handle:before,
.@{noUi-css-prefix}-vertical .@{noUi-css-prefix}-handle:after {
	width: 14px;
	height: 1px;
	left: 6px;
	top: 14px;
}
.@{noUi-css-prefix}-vertical .@{noUi-css-prefix}-handle:after {
	top: 17px;
}
*/
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  top: 0;
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 2px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 2px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 5px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: -38px;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}
.mgh-range-filter {
  margin: 20px 5px 50px 5px;
}
.filter-options,
.mgh-range-filter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@font-face {
  font-family: 'Journal Regular';
  src: url('/static/fonts/journal-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
.vertical-align {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.item-image {
  border-radius: 6px;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  border-color: #F0F0F0;
  overflow: hidden;
}
.shop-font-metrics {
  font-size: 16.2px;
  line-height: 1.4em;
  font-family: 'Source Sans Pro', sans-serif;
}
.shop-font {
  font-size: 16.2px;
  line-height: 1.4em;
  font-family: 'Source Sans Pro', sans-serif;
  color: #555555;
}
body.account .modals-wrapper {
  display: block;
}
body.account h3 {
  font-size: 18px;
  line-height: 18px;
  color: #3a3a3a;
  margin-bottom: 25px;
  border-bottom: 1px solid #ddd;
  margin-top: 25px;
  font-weight: 600;
}
body.account dl.payment-method,
body.account address {
  font-size: 16.2px;
  line-height: 1.4em;
  font-family: 'Source Sans Pro', sans-serif;
  color: #555555;
}
body.account .add-address button {
  margin-top: 25px;
}
body.account .order-details-items .actions-toolbar .secondary {
  padding: 0 15px 15px 25px;
}
body.account .actions-toolbar .secondary,
body.account .add-address {
  padding: 5px;
}
body.account .address-shipping,
body.account .address-billing {
  padding: 15px;
}
body.account .address-shipping a.action,
body.account .address-billing a.action,
body.account .actions-toolbar .secondary a.action,
body.account .item.actions a.action,
body.account .add-address a.action {
  font-size: 16.2px;
  line-height: 1.4em;
  font-family: 'Source Sans Pro', sans-serif;
  cursor: pointer;
  text-decoration: none;
}
body.account .address-shipping a.action .fa,
body.account .address-billing a.action .fa,
body.account .actions-toolbar .secondary a.action .fa,
body.account .item.actions a.action .fa,
body.account .add-address a.action .fa {
  margin-right: 5px;
}
body.account label input[type="checkbox"] {
  top: 5px;
}
body.account .table-responsive {
  padding: 15px;
}
body.account .table-responsive table.table {
  font-size: 16.2px;
  line-height: 1.4em;
  font-family: 'Source Sans Pro', sans-serif;
  color: #555555;
}
body.account .table-responsive table.table .mark,
body.account .table-responsive table.table mark {
  background-color: transparent;
}
body.account form #country {
  display: block;
  width: 100%;
  height: 36px;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
body.account form .form-group.checkbox {
  margin: 15px 0;
}
body.account form .form-group.checkbox input {
  float: left;
  margin: 10px 5px;
}
body.account form .form-group.checkbox label {
  color: black;
  margin-left: 10px;
}
body.account .form-actions {
  margin-top: 25px;
}
body.account .sidebar {
  margin-top: 0;
}
body.account .sidebar .account-nav {
  background-color: white;
}
body.account .sidebar .account-nav ul {
  margin-bottom: 0;
  padding: 0;
}
body.account .sidebar .account-nav ul li {
  border-top: 2px solid #F0F0F0;
}
body.account .sidebar .account-nav ul li:first-child {
  border-top: none;
}
body.account .sidebar .account-nav ul li strong {
  color: #009640;
}
body.account .sidebar .account-nav ul li a,
body.account .sidebar .account-nav ul li strong {
  padding: 10px 15px 8px 15px;
  cursor: pointer;
  font-weight: normal;
  display: block;
}
body.account .sidebar .account-nav ul li a {
  color: #333;
  text-decoration: none;
}
body.account .sidebar .account-nav ul li a:hover,
body.account .sidebar .account-nav ul li a:active,
body.account .sidebar .account-nav ul li a:focus {
  background-color: white;
}
body.account .sidebar .account-nav ul li a strong {
  padding: 0;
}
body.account #main_content #password-strength-meter {
  font-size: 16px;
}
body.account #main_content .content-wrapper {
  margin-bottom: 25px;
  background-color: white;
  border-radius: 4px;
}
body.account #main_content .content-wrapper h2 {
  font-size: 18px;
  line-height: 21.6px;
  color: #3a3a3a;
  border-bottom: 1px solid #ddd;
  margin-top: 25px;
  margin-bottom: 25px;
}
body.account #main_content .content-wrapper h2.first {
  margin: 0;
  border-bottom: 2px solid #f0f0f0;
  line-height: 49px;
  padding-left: 15px;
}
body.account #main_content .content-wrapper .addresses-list h2 {
  margin-left: 15px;
  margin-right: 15px;
}
body.account #main_content .content-wrapper form {
  padding: 15px;
}
body.account #main_content .content-wrapper form label {
  font-size: 18px;
}
body.account #main_content .content-wrapper .add-address {
  padding-bottom: 30px;
}
body.account #main_content .content-wrapper .block-order-details-view,
body.account #main_content .content-wrapper .addresses-list,
body.account #main_content .content-wrapper .add-address,
body.account #main_content .content-wrapper .addresses-default,
body.account #main_content .content-wrapper .shipping-address,
body.account #main_content .content-wrapper .shipping-method,
body.account #main_content .content-wrapper .billing-address,
body.account #main_content .content-wrapper .billing-method {
  overflow: hidden;
}
body.account #main_content .content-wrapper .message {
  font-size: 18px;
}
body.account #main_content .content-wrapper .message.info.empty {
  padding: 15px;
}
body.account #main_content .content-wrapper .order-details-items ul.items-qty {
  list-style-type: none;
}
.sidebar {
  border-radius: 6px;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  border-color: #F0F0F0;
  overflow: hidden;
  font-size: 18px;
  background-color: transparent;
  margin-top: 39px;
  padding: 0;
}
.sidebar a:hover,
.sidebar dt:hover {
  color: #009640 !important;
}
.sidebar .panel-body {
  padding: 0;
}
.sidebar .panel-default {
  margin: 0;
  padding: 0;
  background-color: white;
}
.sidebar .panel-default ul {
  margin-bottom: 0;
}
.sidebar .panel-default ul li {
  border-top: 2px solid #F0F0F0;
}
.sidebar .panel-default ul li:first-child {
  border-top: none;
}
.sidebar .panel-default dd ul li {
  border-top: none;
}
/*!
 * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
 *
 * Copyright 2013-2017 bootstrap-select
 * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
 */
select.bs-select-hidden,
select.selectpicker {
  display: none !important;
}
.control .btn-group.bootstrap-select {
  width: 100%;
}
.bootstrap-select {
  width: 220px;
}
.bootstrap-select > .dropdown-toggle {
  width: 100%;
  padding-right: 25px;
  z-index: 1;
}
.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
  color: #999;
}
.bootstrap-select > select {
  position: absolute !important;
  bottom: 0;
  left: 50%;
  display: block !important;
  width: .5px !important;
  height: 100% !important;
  padding: 0 !important;
  opacity: 0 !important;
  border: none;
}
.bootstrap-select > select.mobile-device {
  top: 0;
  left: 0;
  display: block !important;
  width: 100% !important;
  z-index: 2;
}
.error .bootstrap-select .dropdown-toggle,
.has-error .bootstrap-select .dropdown-toggle {
  border-color: #b94a48;
}
.bootstrap-select.fit-width {
  width: auto !important;
}
.bootstrap-select:not ([class*=col-] ):not ([class*=form-control] ):not (.input-group-btn ) {
  width: 220px;
}
.bootstrap-select .dropdown-toggle:focus {
  outline: thin dotted #333 !important;
  outline: 5px auto -webkit-focus-ring-color !important;
  outline-offset: -2px;
}
.bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none;
}
.bootstrap-select.form-control:not ([class*=col-] ) {
  width: 100%;
}
.bootstrap-select.form-control.input-group-btn {
  z-index: auto;
}
.bootstrap-select.form-control.input-group-btn:not (:first-child ):not (:last-child ) > .btn {
  border-radius: 0;
}
.bootstrap-select.btn-group:not (.input-group-btn ),
.bootstrap-select.btn-group[class*=col-] {
  float: none;
  display: inline-block;
  margin-left: 0;
}
.bootstrap-select.btn-group.dropdown-menu-right,
.bootstrap-select.btn-group[class*=col-].dropdown-menu-right,
.row .bootstrap-select.btn-group[class*=col-].dropdown-menu-right {
  float: right;
}
.form-group .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.form-inline .bootstrap-select.btn-group {
  margin-bottom: 0;
}
.form-group-lg .bootstrap-select.btn-group.form-control,
.form-group-sm .bootstrap-select.btn-group.form-control {
  padding: 0;
}
.form-group-lg .bootstrap-select.btn-group.form-control .dropdown-toggle,
.form-group-sm .bootstrap-select.btn-group.form-control .dropdown-toggle {
  height: 100%;
  font-size: inherit;
  line-height: inherit;
  border-radius: inherit;
}
.form-inline .bootstrap-select.btn-group .form-control {
  width: 100%;
}
.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group > .disabled {
  cursor: not-allowed;
}
.bootstrap-select.btn-group.disabled:focus,
.bootstrap-select.btn-group > .disabled:focus {
  outline: 0 !important;
}
.bootstrap-select.btn-group.bs-container {
  position: absolute;
  height: 0 !important;
  padding: 0 !important;
}
.bootstrap-select.btn-group.bs-container .dropdown-menu {
  z-index: 1060;
}
.bootstrap-select.btn-group .dropdown-toggle {
  text-align: left;
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  display: inline;
  overflow: hidden;
  width: 100%;
  text-align: left;
}
.bootstrap-select.btn-group .dropdown-toggle .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -2px;
  vertical-align: middle;
}
.bootstrap-select.btn-group[class*=col-] .dropdown-toggle {
  width: 100%;
}
.bootstrap-select.btn-group .dropdown-menu {
  min-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrap-select.btn-group .dropdown-menu.inner {
  position: static;
  float: none;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.bootstrap-select.btn-group .dropdown-menu li {
  position: relative;
}
.bootstrap-select.btn-group .dropdown-menu li.active small {
  color: #fff;
}
.bootstrap-select.btn-group .dropdown-menu li.disabled {
  color: #a42346;
  text-decoration: line-through;
}
.bootstrap-select.btn-group .dropdown-menu li.disabled a {
  cursor: not-allowed;
  color: #a42346;
  text-decoration: none;
}
.bootstrap-select.btn-group .dropdown-menu li.disabled a span.text {
  display: block;
}
.bootstrap-select.btn-group .dropdown-menu li a {
  cursor: pointer;
  -webkit-user-select: none;
  text-decoration: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.bootstrap-select.btn-group .dropdown-menu li a.opt {
  position: relative;
  padding-left: 2.25em;
}
.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
  display: none;
}
.bootstrap-select.btn-group .dropdown-menu li small {
  padding-left: 0.5em;
}
.bootstrap-select.btn-group .dropdown-menu .notify {
  position: absolute;
  bottom: 5px;
  width: 96%;
  margin: 0 2%;
  min-height: 26px;
  padding: 3px 5px;
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  opacity: .9;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrap-select.btn-group .no-results {
  padding: 3px;
  background: #f5f5f5;
  margin: 0 5px;
  white-space: nowrap;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
  position: static;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
  position: static;
  top: auto;
  margin-top: -1px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  margin-top: 5px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
  z-index: 1061;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
  content: '';
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(204, 204, 204, 0.2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
  bottom: auto;
  top: -3px;
  border-top: 7px solid rgba(204, 204, 204, 0.2);
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
  bottom: auto;
  top: -3px;
  border-top: 6px solid #fff;
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
  right: 12px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
  right: 13px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before {
  display: block;
}
.bs-actionsbox,
.bs-donebutton,
.bs-searchbox {
  padding: 4px 8px;
}
.bs-actionsbox {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bs-actionsbox .btn-group button {
  width: 50%;
}
.bs-donebutton {
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bs-donebutton .btn-group button {
  width: 100%;
}
.bs-searchbox + .bs-actionsbox {
  padding: 0 8px 4px;
}
.bs-searchbox .form-control {
  margin-bottom: 0;
  width: 100%;
  float: none;
}
.nav-tabs-wrapper {
  text-align: center;
}
.nav-tabs-wrapper ul.nav.nav-tabs {
  display: inline-flex;
  border: none;
}
.nav-tabs-wrapper ul.nav.nav-tabs li {
  margin-bottom: 0px;
}
.nav-tabs-wrapper ul.nav.nav-tabs li.active a {
  color: #a42346;
  background: rgba(164, 35, 70, 0.1);
}
.nav-tabs-wrapper ul.nav.nav-tabs li a {
  text-decoration: none;
  border: none;
  background: transparent;
  color: #555555;
}
.nav-tabs-wrapper ul.nav.nav-tabs li a:hover {
  border: none;
}
.nav-tabs-wrapper .tab-content {
  text-align: left;
}
.nav-tabs-wrapper .tab-content h3 {
  font-size: 19.44px;
}
.nav-tabs-wrapper .tab-content .tab-pane {
  overflow: hidden;
  background: rgba(164, 35, 70, 0.1);
  padding: 2.5em 2.5em;
}
.nav-tabs-wrapper .tab-content .tab-pane .active {
  background: rgba(164, 35, 70, 0.1);
}
.nav-tabs-wrapper .tab-content .tab-pane .description {
  font-family: 'Source Sans Pro', sans-serif;
}
.fotorama-stretch,
.fotorama-focus-overlay:after,
.fotorama__stage__shaft,
.fotorama__stage__frame,
.fotorama__html,
.fotorama__video iframe {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.fotorama-grab-cursor,
.fotorama__wrap .fotorama__grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.fotorama-grabbing-cursor,
.fotorama__grabbing * {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.fotorama-gpu,
.fotorama--fullscreen,
.fotorama__caption,
.fotorama__wrap--css3 .fotorama__stage,
.fotorama__wrap--css3 .fotorama__nav,
.fotorama__wrap--css3 .fotorama__stage__frame,
.fotorama__wrap--css3 .fotorama__html,
.fotorama__stage:before,
.fotorama__nav:before,
.fotorama__stage:after,
.fotorama__nav:after,
.fotorama--fullscreen .fotorama__stage__frame .fotorama__img--full {
  transform: translateZ(0);
}
.fotorama-focus,
.fotorama__nav__frame,
.fotorama__fullscreen-icon:focus,
.fotorama__zoom-out:focus,
.fotorama__zoom-in:focus {
  outline: 0;
}
.fotorama-focus-overlay:after {
  background-color: #006bb4;
  border-radius: inherit;
  content: '';
}
.fotorama-transform-disabled,
.fotorama__wrap--video .fotorama__stage__shaft,
.fotorama__wrap--video .fotorama__stage,
.fotorama__wrap--video .fotorama__stage__frame--video,
.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__img,
.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__html {
  transform: none !important;
}
.fotorama-transition-for-slide,
.fotorama__wrap--css3 .fotorama__stage__shaft,
.fotorama__wrap--css3 .fotorama__nav__shaft,
.fotorama__wrap--css3 .fotorama__thumb-border {
  transition-duration: 0ms;
  transition-property: transform, width;
  transition-timing-function: cubic-bezier(0.1, 0, 0.25, 1);
}
.fotorama-no-select,
.fotorama__wrap,
.fotorama__no-select,
.fotorama__arr,
.fotorama__fullscreen-icon,
.fotorama__video-close {
  user-select: none;
}
.fotorama-select,
.fotorama__select {
  user-select: text;
}
.fotorama-empty-bg {
  background: url(data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=);
}
.fotorama-auto-margin,
.fotorama__nav,
.fotorama__nav__frame {
  margin: auto;
  padding: 0;
}
.fotorama-inline-block,
.fotorama__nav__shaft,
.fotorama__nav__frame,
.fotorama__caption__wrap {
  *display: inline;
  *zoom: 1;
  -moz-box-orient: vertical;
  display: -moz-inline-box;
  display: inline-block;
  vertical-align: middle;
}
.fotorama-content-box,
.fotorama__nav__frame {
  box-sizing: content-box;
}
.fotorama-border-box,
.fotorama__thumb-border,
.fotorama__caption__wrap,
.fotorama__arr {
  box-sizing: border-box;
}
.fotorama-hidden,
.fotorama--hidden,
.fotorama__load {
  left: -99999px;
  position: absolute;
  top: -99999px;
  z-index: -1000;
}
.fotorama-visible {
  left: auto;
  opacity: 1;
  position: relative;
  top: auto;
  z-index: auto;
}
.fotorama-no-tap,
.fotorama__stage__shaft,
.fotorama__stage__frame,
.fotorama__nav,
.fotorama__nav__shaft,
.fotorama__nav__frame,
.fotorama__arr,
.fotorama__fullscreen-icon,
.fotorama__video-close {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.transitionDuration {
  transition-duration: 333ms;
}
.transitionDurationZero {
  transition-duration: 0ms;
}
.fotorama-sprite,
.fotorama__fullscreen .fotorama__zoom-out,
.fotorama__fullscreen .fotorama__zoom-in,
.fotorama__arr .fotorama__arr__arr,
.fotorama__fullscreen-icon,
.fotorama__video-play,
.fotorama__thumb--icon,
.fotorama__video-close {
  background-image: url('../images/gallery.png');
  background-repeat: no-repeat;
}
@media print {
  .fotorama-print-background,
  .fotorama-sprite,
  .fotorama__thumb-border,
  .fotorama__fullscreen .fotorama__zoom-out,
  .fotorama__fullscreen .fotorama__zoom-in,
  .fotorama__arr .fotorama__arr__arr,
  .fotorama__fullscreen-icon,
  .fotorama__video-play,
  .fotorama__thumb--icon,
  .fotorama__video-close {
    background: none !important;
  }
}
.fotorama__fullscreen-icon:focus,
.fotorama__zoom-out:focus,
.fotorama__zoom-in:focus,
.fotorama__arr:focus,
.fotorama__stage__shaft:focus,
.fotorama__nav__frame--thumb:focus .fotorama__thumb,
.fotorama__nav__frame--dot:focus .fotorama__dot {
  box-shadow: none;
}
.fotorama__fullscreen-icon:focus:after,
.fotorama__zoom-out:focus:after,
.fotorama__zoom-in:focus:after,
.fotorama__arr:focus:after,
.fotorama__stage__shaft:focus:after,
.fotorama__nav__frame--thumb:focus .fotorama__thumb:after,
.fotorama__nav__frame--dot:focus .fotorama__dot:after {
  border-radius: inherit;
  bottom: 3px;
  content: '';
  left: 3px;
  position: absolute;
  right: 3px;
  top: 3px;
  z-index: 1000;
}
.fotorama__nav__frame--thumb:focus .fotorama__thumb:after,
.fotorama__nav__frame--dot:focus .fotorama__thumb:after,
.fotorama__nav__frame--thumb:focus .fotorama__dot:after,
.fotorama__nav__frame--dot:focus .fotorama__dot:after {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
.fotorama__nav__frame--thumb:focus .fotorama__thumb.fotorama_vertical_ratio:after,
.fotorama__nav__frame--dot:focus .fotorama__thumb.fotorama_vertical_ratio:after {
  left: 2px;
  right: 2px;
}
.fotorama__nav__frame--thumb:focus .fotorama__thumb,
.fotorama__nav__frame--dot:focus .fotorama__thumb {
  overflow: inherit;
}
.fotorama__nav__frame:nth-child(2):focus .fotorama__thumb:after {
  left: 1px;
}
.fotorama__nav__frame:nth-child(2):focus .fotorama__thumb.fotorama_vertical_ratio:after {
  top: 1px;
}
.fotorama__nav__frame:last-child:focus .fotorama__thumb:after {
  right: 1px;
}
.fotorama__nav__frame:last-child:focus .fotorama__thumb.fotorama_vertical_ratio:after {
  bottom: 1px;
}
.fotorama__thumb__arr {
  box-shadow: none;
}
.fotorama--fullscreen {
  background: #ffffff;
  bottom: 0 !important;
  float: none !important;
  left: 0 !important;
  margin: 0 !important;
  position: fixed !important;
  right: 0 !important;
  top: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
}
.fotorama--fullscreen .fotorama__wrap {
  max-width: 100% !important;
}
.fotorama__fullscreen {
  overflow: hidden;
  position: relative;
}
.fotorama__fullscreen .fotorama__zoom-in,
.fotorama__fullscreen .fotorama__zoom-out {
  cursor: pointer;
  display: block;
  height: 80px;
  overflow: hidden;
  position: absolute;
  width: 80px;
}
.fotorama__fullscreen .fotorama__zoom-out {
  background-position: 0 -80px !important;
  top: 80px;
}
.fotorama__fullscreen .fotorama__zoom-out.fotorama__zoom-out--disabled {
  display: none;
}
.fotorama__fullscreen .fotorama__zoom-in {
  background-position: 0 0 !important;
  top: 0;
}
.fotorama__fullscreen .fotorama__zoom-in.fotorama__zoom-in--disabled {
  display: none;
}
.fotorama__fullscreen .fotorama__video-close {
  display: none;
}
.fotorama--fullscreen .fotorama__loaded--full .fotorama__img {
  display: none;
}
.fotorama--fullscreen .fotorama__loaded--full .fotorama__img--full {
  display: block;
}
.fotorama__zoom-in,
.fotorama__zoom-out {
  display: none;
}
.fotorama {
  min-width: 1px;
  overflow: hidden;
}
.fotorama__wrap {
  -webkit-text-size-adjust: 100%;
  direction: ltr;
  position: relative;
  z-index: 0;
}
.fotorama__wrap--rtl .fotorama__stage__frame {
  direction: rtl;
}
.fotorama__stage,
.fotorama__nav {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.fotorama__wrap--pan-y {
  -ms-touch-action: pan-y;
}
.fotorama__stage__shaft {
  position: relative;
}
.fotorama__wrap .fotorama__pointer {
  cursor: pointer;
}
.fotorama__wrap--slide .fotorama__stage__frame {
  opacity: 1 !important;
}
.fotorama__stage__frame {
  overflow: hidden;
}
.fotorama__stage__frame.fotorama__active {
  z-index: 8;
}
.fotorama__wrap--fade .fotorama__stage__frame {
  display: none;
}
.fotorama__wrap--fade .fotorama__stage__frame.fotorama__active,
.fotorama__wrap--fade .fotorama__fade-front,
.fotorama__wrap--fade .fotorama__fade-rear {
  display: block;
  left: 0;
  top: 0;
}
.fotorama__wrap--fade .fotorama__fade-front {
  z-index: 8;
}
.fotorama__wrap--fade .fotorama__fade-rear {
  z-index: 7;
}
.fotorama__wrap--fade .fotorama__fade-rear.fotorama__active {
  z-index: 9;
}
.fotorama__wrap--fade .fotorama__stage .fotorama__shadow {
  display: none;
}
.fotorama__img {
  border: none !important;
  max-width: inherit;
  opacity: 0;
}
.fotorama__loaded .fotorama__img,
.fotorama__error .fotorama__img {
  opacity: 1;
}
.fotorama__img--full {
  display: none;
}
.fotorama__nav {
  display: none;
  font-size: 0;
  line-height: 0;
  white-space: nowrap;
  z-index: 5;
}
.fotorama__nav__shaft {
  left: 0;
  position: relative;
  text-align: left;
  top: 0;
}
.fotorama__nav__frame {
  position: relative;
}
.fotorama__nav--dots {
  display: block;
  text-align: center;
}
.fotorama__nav--dots .fotorama__nav__frame {
  height: 30px;
  width: 18px;
}
.fotorama__nav--dots .fotorama__nav__frame--thumb,
.fotorama__nav--dots .fotorama__thumb-border {
  display: none;
}
.fotorama__nav--thumbs {
  display: block;
}
.fotorama__nav--thumbs .fotorama__nav__frame {
  padding-left: 0 !important;
}
.fotorama__nav--thumbs .fotorama__nav__frame:last-child {
  padding-right: 0 !important;
}
.fotorama__nav--thumbs .fotorama__nav__frame--dot {
  display: none;
}
.fotorama__active .fotorama__dot {
  background-color: #a42346;
  border-color: #a42346;
}
.fotorama__nav__frame.fotorama__active .fotorama__nav__frame {
  border-width: 3px;
  height: 0;
  width: 0;
}
.fotorama__nav__frame.fotorama__active .fotorama__nav__frame:after {
  left: -3px;
  padding: 3px;
  top: -3px;
}
.fotorama__nav__frame:focus {
  box-shadow: none;
}
.fotorama__nav__frame:focus :after {
  left: -1px;
  padding: 1px;
  top: -1px;
}
.fotorama__dot {
  border-radius: 6px;
  border: 1px solid #858585;
  display: block;
  height: 4px;
  left: 6px;
  position: relative;
  top: 12px;
  width: 4px;
}
.fotorama__thumb {
  background-color: #ebebeb;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.fotorama__nav__frame:focus .fotorama__thumb {
  z-index: 2;
}
.fotorama__thumb-border {
  backface-visibility: hidden;
  background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.25), rgba(64, 64, 64, 0.1));
  border: 1px solid #a42346;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 9;
}
.fotorama__caption {
  bottom: 0;
  color: #000000;
  font-size: 14px;
  left: 0;
  line-height: 1.5;
  position: absolute;
  right: 0;
  z-index: 12;
}
.fotorama__caption a {
  border-bottom: 1px solid;
  border-color: rgba(0, 0, 0, 0.005);
  color: #000000;
  text-decoration: none;
}
.fotorama__caption a:hover {
  border-color: rgba(0, 0, 0, 0.005);
  color: #000000;
}
.fotorama__wrap--rtl .fotorama__caption {
  left: auto;
  right: 0;
}
.fotorama__wrap--video .fotorama__caption,
.fotorama__wrap--no-captions .fotorama__caption {
  display: none;
}
.fotorama__caption__wrap {
  background-color: #ffffff;
  padding: 5px 10px;
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fotorama__wrap--css3 .fotorama__html {
  transition-duration: 0.3s;
  transition-property: opacity;
  transition-timing-function: linear;
}
.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__img,
.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__html {
  opacity: 0;
}
.fotorama__select {
  cursor: auto;
}
.fotorama__video {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 32px;
  z-index: 10;
}
@-moz-document url-prefix() {
  .fotorama__active {
    box-shadow: 0 0 0 transparent;
  }
}
.fotorama__arr,
.fotorama__fullscreen-icon,
.fotorama__video-close {
  cursor: pointer;
  position: absolute;
}
.fotorama__arr {
  z-index: 900;
}
.fotorama__fullscreen-icon,
.fotorama__zoom-out,
.fotorama__zoom-in,
.fotorama__video-close {
  z-index: 1000;
}
.fotorama__arr {
  bottom: 0;
  position: absolute;
  top: 0;
  width: 80px;
}
.fotorama__arr .fotorama__arr__arr {
  -webkit-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  left: 50%;
  position: absolute;
  top: 50%;
  height: 80px;
  width: 80px;
}
.ie9 .fotorama__arr .fotorama__arr__arr {
  margin: -40px 0 0 -40px;
}
.fotorama__arr--prev {
  left: 0;
}
.fotorama__arr--prev .fotorama__arr__arr {
  background-position: -80px -80px;
}
.fotorama__arr--next {
  right: 0;
}
.fotorama__arr--next .fotorama__arr__arr {
  background-position: -160px -80px;
}
.fotorama__arr--disabled {
  *display: none;
  cursor: default;
  opacity: 0.1;
  pointer-events: none;
}
.fotorama__fullscreen-icon {
  background-position: 0 0;
  display: none;
  height: 80px;
  right: 0;
  top: 0;
  width: 80px;
  z-index: 1000;
}
.fotorama--fullscreen-icons .fotorama__fullscreen-icon {
  display: none;
}
.fotorama--fullscreen .fotorama__fullscreen-icon {
  background-position: -80px 0;
  display: inline-block;
}
.fotorama__video-play {
  -webkit-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  left: 50%;
  position: absolute;
  top: 50%;
  background-position: -80px -160px;
  height: 160px;
  width: 160px;
}
.fotorama__wrap--css2 .fotorama__video-play,
.fotorama__wrap--video .fotorama__stage .fotorama__video-play {
  display: none;
}
.fotorama__loaded .fotorama__video-play,
.fotorama__error .fotorama__video-play,
.fotorama__nav__frame .fotorama__video-play {
  display: block;
  opacity: 1;
}
.fotorama__nav__frame .fotorama__video-play {
  background-position: 0 -240px;
  height: 80px;
  width: 80px;
}
.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr,
.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon {
  opacity: 0;
}
.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr:focus,
.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon:focus {
  opacity: 1;
}
.fotorama__wrap--toggle-arrows:not(.fotorama__wrap--video) .fotorama__video-close {
  display: none;
}
.fotorama__wrap--toggle-arrows.fotorama__wrap--video .fotorama__video-close {
  opacity: 1;
  right: 93px;
  top: 97px;
}
.fotorama__wrap--toggle-arrows:not(.fotorama__wrap--video) .fotorama__video-close {
  display: none;
}
.fotorama__wrap--toggle-arrows.fotorama__wrap--video .fotorama__video-close {
  opacity: 1;
  right: 93px;
  top: 97px;
}
.fotorama__wrap--toggle-arrows:not(.fotorama__wrap--video) .fotorama__video-close {
  display: none;
}
.fotorama__wrap--toggle-arrows.fotorama__wrap--video .fotorama__video-close {
  opacity: 1;
  right: 93px;
  top: 97px;
}
.fotorama__wrap--video .fotorama__arr,
.fotorama__wrap--video .fotorama__fullscreen-icon {
  opacity: 0 !important;
}
.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr,
.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon {
  display: none;
}
.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr:focus,
.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon:focus {
  display: block;
}
.fotorama__wrap--css2.fotorama__wrap--video .fotorama__arr,
.fotorama__wrap--css2.fotorama__wrap--video .fotorama__fullscreen-icon {
  display: none !important;
}
.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon:not(:focus) {
  -webkit-transform: translate3d(80px, -80px, 0);
  -ms-transform: translate3d(80px, -80px, 0);
  -o-transform: translate3d(80px, -80px, 0);
  transform: translate3d(80px, -80px, 0);
}
.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__arr--prev:not(:focus) {
  -webkit-transform: translate3d(-120px, 0, 0);
  -ms-transform: translate3d(-120px, 0, 0);
  -o-transform: translate3d(-120px, 0, 0);
  transform: translate3d(-120px, 0, 0);
}
.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__arr--next:not(:focus) {
  -webkit-transform: translate3d(120px, 0, 0);
  -ms-transform: translate3d(120px, 0, 0);
  -o-transform: translate3d(120px, 0, 0);
  transform: translate3d(120px, 0, 0);
}
.fotorama__wrap--css3.fotorama__wrap--video .fotorama__fullscreen-icon {
  -webkit-transform: translate3d(80px, -80px, 0) !important;
  -ms-transform: translate3d(80px, -80px, 0) !important;
  -o-transform: translate3d(80px, -80px, 0) !important;
  transform: translate3d(80px, -80px, 0) !important;
}
.fotorama__wrap--css3.fotorama__wrap--video .fotorama__arr--prev {
  -webkit-transform: translate3d(-120px, 0, 0) !important;
  -ms-transform: translate3d(-120px, 0, 0) !important;
  -o-transform: translate3d(-120px, 0, 0) !important;
  transform: translate3d(-120px, 0, 0) !important;
}
.fotorama__wrap--css3.fotorama__wrap--video .fotorama__arr--next {
  -webkit-transform: translate3d(120px, 0, 0) !important;
  -ms-transform: translate3d(120px, 0, 0) !important;
  -o-transform: translate3d(120px, 0, 0) !important;
  transform: translate3d(120px, 0, 0) !important;
}
.fotorama__wrap--css3 .fotorama__arr:not(:focus),
.fotorama__wrap--css3 .fotorama__fullscreen-icon:not(:focus),
.fotorama__wrap--css3 .fotorama__video-play:not(:focus),
.fotorama__wrap--css3 .fotorama__video-close:not(:focus) {
  transition-duration: 0.3s;
  transition-property: transform, opacity, background-color;
}
.fotorama__stage:before,
.fotorama__nav:before,
.fotorama__stage:after,
.fotorama__nav:after {
  background-repeat: no-repeat;
  content: '';
  display: block;
  pointer-events: none;
  position: absolute;
  text-decoration: none;
  z-index: 10;
}
.fotorama__stage:before,
.fotorama__nav:before {
  left: -10px;
  top: -10px;
}
.fotorama__stage:after,
.fotorama__nav:after {
  right: -10px;
  bottom: -10px;
}
.fotorama__stage.fotorama__shadows--left:before,
.fotorama__nav.fotorama__shadows--left:before,
.fotorama__stage.fotorama__shadows--right:after,
.fotorama__nav.fotorama__shadows--right:after {
  background-size: 1px 100%, 5px 100%;
  bottom: 0;
  height: auto;
  top: 0;
  width: 10px;
}
.fotorama__stage.fotorama__shadows--top:before,
.fotorama__nav.fotorama__shadows--top:before,
.fotorama__stage.fotorama__shadows--bottom:after,
.fotorama__nav.fotorama__shadows--bottom:after {
  background-size: 100% 1px, 100% 5px ;
  height: 10px;
  left: 0;
  right: 0;
  width: auto;
}
.fotorama__stage.fotorama__shadows--left:before,
.fotorama__nav.fotorama__shadows--left:before {
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.3) 75%, transparent), radial-gradient(farthest-side at 0 50%, rgba(0, 0, 0, 0.4), transparent);
  background-position: 0 0, 0 0;
  left: 0;
}
.fotorama__stage.fotorama__shadows--right:after,
.fotorama__nav.fotorama__shadows--right:after {
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.3) 75%, transparent), radial-gradient(farthest-side at 100% 50%, rgba(0, 0, 0, 0.4), transparent);
  background-position: 100% 0, 100% 0;
  right: 0;
}
.fotorama__stage.fotorama__shadows--top:before,
.fotorama__nav.fotorama__shadows--top:before {
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.3) 75%, transparent), radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.4), transparent);
  background-position: 0 0, 0 0;
  top: 0;
}
.fotorama__stage.fotorama__shadows--bottom:after,
.fotorama__nav.fotorama__shadows--bottom:after {
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.3) 75%, transparent), radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, 0.4), transparent);
  background-position: 0 100%, 0 100%;
  bottom: 0;
}
.fotorama--fullscreen .fotorama__stage:before,
.fotorama--fullscreen .fotorama__nav:before,
.fotorama__wrap--no-shadows .fotorama__stage:before,
.fotorama__wrap--no-shadows .fotorama__nav:before,
.fotorama__wrap--fade .fotorama__stage:before,
.fotorama--fullscreen .fotorama__stage:after,
.fotorama--fullscreen .fotorama__nav:after,
.fotorama__wrap--no-shadows .fotorama__stage:after,
.fotorama__wrap--no-shadows .fotorama__nav:after,
.fotorama__wrap--fade .fotorama__stage:after {
  display: none;
}
.fotorama__nav-wrap .fotorama_vertical_ratio .fotorama__img {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: auto;
  position: absolute;
  top: 50%;
  width: 100%;
}
.fotorama__nav-wrap .fotorama_horizontal_ratio .fotorama__img {
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
  left: 50%;
  position: absolute;
  width: auto;
}
.magnifier-thumb-wrapper {
  display: block;
  left: 0;
  position: relative;
  top: 0;
}
.magnifier-lens {
  border: solid 1px #bbbbbb;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 800;
}
.magnify-lens {
  background: rgba(255, 255, 255, 0.5);
  border: solid 1px #bbbbbb;
  color: #ffffff;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  z-index: 1000;
}
.magnifier-loader-text {
  margin-top: 10px;
}
.magnifier-large {
  position: absolute;
  width: 32%;
  z-index: 100;
}
.magnifier-preview {
  bottom: 0;
  left: 58%;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: 215px;
}
.magnifier-preview:not(.hidden) {
  background-color: #ffffff;
}
.magnifier-preview img {
  left: 0;
  max-width: inherit;
  position: absolute;
  top: 0;
}
.fotorama__stage__frame {
  text-align: center;
}
.fotorama__stage__frame .fotorama__img {
  height: auto;
  left: 50%;
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  transition-duration: 0.3s;
  transition-property: width, height, top, left;
  vertical-align: middle;
  width: auto;
}
.magnify-opaque {
  opacity: .5;
}
.magnify-hidden {
  display: none;
}
.fotorama__nav-wrap--vertical.fotorama__nav-wrap {
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
}
.fotorama__nav-wrap--vertical .fotorama__nav__shaft {
  background-color: white;
  width: 100%;
}
.fotorama__nav-wrap--vertical .fotorama__nav__shaft .fotorama__nav__frame--thumb {
  display: block;
  padding-bottom: inherit !important;
}
.fotorama--fullscreen .fotorama__stage__frame .fotorama__img {
  display: none;
}
.fotorama--fullscreen .fotorama__stage__frame .fotorama__img,
.fotorama--fullscreen .fotorama__stage__frame .fotorama__img--full {
  bottom: 0;
  left: 0;
  margin: auto;
  max-height: inherit;
  max-width: inherit;
  position: absolute;
  right: 0;
  top: 0;
}
.fotorama--fullscreen .fotorama__stage__frame .fotorama__img--full {
  cursor: default;
  display: block;
  height: auto;
  left: 0;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  top: 0;
  transition: 0.3s linear;
  vertical-align: middle;
  width: auto;
}
.fotorama--fullscreen .fotorama__stage__frame .fotorama__img--full.fotorama__img--zoommable {
  cursor: pointer;
  max-height: none;
  max-width: none;
  transition-property: width, height, bottom, right, top, left;
}
.fotorama--fullscreen .fotorama__stage__frame .fotorama__img--full.fotorama__img--draggable {
  cursor: move;
  transition-property: none;
}
.fotorama--fullscreen .fotorama__stage__frame iframe {
  left: 80px;
  width: calc(-60%);
}
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--left,
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--right {
  bottom: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  width: 30px;
  z-index: 1000;
}
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--left .fotorama__thumb--icon,
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--right .fotorama__thumb--icon {
  -webkit-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -o-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  left: 50%;
  position: absolute;
  top: 50%;
  width: 100%;
}
.ie9 .fotorama__nav-wrap--horizontal .fotorama__thumb__arr--left .fotorama__thumb--icon,
.ie9 .fotorama__nav-wrap--horizontal .fotorama__thumb__arr--right .fotorama__thumb--icon {
  margin: -15px 0 0 -15px;
}
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--left {
  left: 0;
}
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--right {
  right: 0;
}
.fotorama__nav-wrap--vertical .fotorama__thumb__arr--left,
.fotorama__nav-wrap--vertical .fotorama__thumb__arr--right {
  cursor: pointer;
  height: 30px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1000;
}
.fotorama__nav-wrap--vertical .fotorama__thumb__arr--left .fotorama__thumb--icon,
.fotorama__nav-wrap--vertical .fotorama__thumb__arr--right .fotorama__thumb--icon {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  margin: auto;
  width: 30px;
}
.fotorama__nav-wrap--vertical .fotorama__thumb__arr--left {
  top: 0;
}
.fotorama__nav-wrap--vertical .fotorama__thumb__arr--right {
  bottom: 0;
}
.fotorama__wrap--only-active .fotorama__stage,
.fotorama__wrap--only-active .fotorama__nav {
  max-width: 99999px !important;
}
.fotorama__wrap--only-active .fotorama__stage__frame {
  visibility: hidden;
}
.fotorama__wrap--only-active .fotorama__stage__frame.fotorama__active {
  visibility: visible;
}
.fotorama__thumb--icon {
  font-size: 0.001px;
  padding-bottom: 30px;
}
.fotorama__thumb__arr--left .fotorama__thumb--icon {
  background-position: -25px -265px;
}
.fotorama__thumb__arr--right .fotorama__thumb--icon {
  background-position: -25px -350px;
}
.magnify-fullimage {
  display: none;
}
.fotorama__arr,
.fotorama__thumb__arr {
  background-color: rgba(255, 255, 255, 0.3);
  transition: background-color 0.3s ease-in-out;
}
.fotorama__arr:hover,
.fotorama__thumb__arr:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.fotorama__arr:active,
.fotorama__thumb__arr:active {
  background-color: rgba(213, 213, 213, 0.5);
}
.fotorama__wrap:not(.fotorama__wrap--toggle-arrows) .fotorama__fullscreen-icon,
.fotorama__wrap:not(.fotorama__wrap--toggle-arrows) .fotorama__zoom-out,
.fotorama__wrap:not(.fotorama__wrap--toggle-arrows) .fotorama__zoom-in {
  background-color: rgba(255, 255, 255, 0.3);
  transition: background-color 0.3s ease-in-out;
}
.fotorama__wrap:not(.fotorama__wrap--toggle-arrows) .fotorama__fullscreen-icon:hover,
.fotorama__wrap:not(.fotorama__wrap--toggle-arrows) .fotorama__zoom-out:hover,
.fotorama__wrap:not(.fotorama__wrap--toggle-arrows) .fotorama__zoom-in:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.fotorama__wrap:not(.fotorama__wrap--toggle-arrows) .fotorama__fullscreen-icon:active,
.fotorama__wrap:not(.fotorama__wrap--toggle-arrows) .fotorama__zoom-out:active,
.fotorama__wrap:not(.fotorama__wrap--toggle-arrows) .fotorama__zoom-in:active {
  background-color: rgba(213, 213, 213, 0.5);
}
.fotorama__video-close {
  background-position: -80px 0;
  height: 80px;
  opacity: 0;
  right: 0;
  top: 0;
  transform: translate3d(80px, -80px, 0);
  transition: opacity 0.3s ease-in-out;
  width: 80px;
}
@media all and (max-width: 768px) {
  .fotorama__video-close {
    background-position: -100px -20px;
    top: 10px;
    height: 40px;
    width: 40px;
  }
}
.fotorama__video-close.fotorama-show-control {
  opacity: 1;
  transform: translate3d(0, -10px, 0);
}
.gallery-placeholder {
  background-color: white;
  border-radius: 6px;
}
.gallery-placeholder .loading-mask {
  padding: 0 0 50%;
  position: static;
}
.gallery-placeholder .loader img {
  position: absolute;
}
.fotorama__product-video--loaded .fotorama__img,
.fotorama__product-video--loaded .fotorama__img--full {
  display: none !important;
}
.fotorama__stage .fotorama__arr--shown {
  display: block !important;
}
.fotorama__stage .fotorama__arr--hidden {
  display: none !important;
}
/**
 * Copyright © 2017 Gea All rights reserved.
 */
.swatch-attribute-label {
  position: relative;
}
.swatch-attribute-label:after {
  content: ':';
}
.swatch-attribute-label.required {
  padding-right: 10px;
}
.swatch-attribute-label[data-required="1"]:after {
  content: '*';
  color: red;
  position: absolute;
  right: -11px;
  top: -2px;
  font-weight: bold;
  font-size: 1em;
}
.swatch-attribute-selected-option {
  padding-left: 5px;
}
.swatch-attribute-options {
  margin-top: 10px;
}
.swatch-option {
  padding: 1px 2px;
  float: left;
  margin: 0 10px 5px 0;
  text-align: center;
  cursor: pointer;
  position: relative;
  border: 2px solid #dadada;
  overflow: hidden;
  text-overflow: ellipsis;
}
.swatch-option.image {
  height: 55px;
  width: 55px;
}
.swatch-option.text {
  background: #F2F2F2;
  color: #7F7F7F;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  padding: 4px 8px;
  min-width: 22px;
  margin-right: 7px;
  /*background-color: #F2F2F2;*/
}
.swatch-attribute:not(.visual-swatch) .swatch-attribute-label,
.swatch-attribute:not(.visual-swatch) .swatch-attribute-selected-option {
  display: none;
}
.swatch-option.selected {
  border: 2px solid #a42346;
}
.swatch-option.text.selected {
  background-color: #FFF !important;
}
.clearfix:after {
  content: " ";
  /* Older browser do not support empty content */
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}
.swatch-attribute.size .swatch-option,
.swatch-attribute.manufacturer .swatch-option {
  background: #f0f0f0;
  color: #949494;
}
.swatch-attribute.size .swatch-option.selected,
.swatch-attribute.manufacturer .swatch-option.selected {
  color: black;
  background: #fff;
  border: 1px solid #fff;
}
.swatch-option:not(.disabled):hover {
  border: 1px solid #fff;
  color: #333;
}
.swatch-option.image:not(.disabled):hover,
.swatch-option.color:not(.disabled):hover {
  background-color: #a42346;
  border: 1px solid #fff;
}
.swatch-option.disabled {
  cursor: default;
}
.swatch-option.disabled:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -moz-linear-gradient(to left top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 42%, #ffffff 43%, #ffffff 46%, #a42346 47%, #a42346 53%, #ffffff 54%, #ffffff 57%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(42%, rgba(255, 255, 255, 0)), color-stop(43%, #ffffff), color-stop(46%, #ffffff), color-stop(47%, #a42346), color-stop(53%, #a42346), color-stop(54%, #ffffff), color-stop(57%, #ffffff), color-stop(58%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(to left top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 42%, #ffffff 43%, #ffffff 46%, #a42346 47%, #a42346 53%, #ffffff 54%, #ffffff 57%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(to left top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 42%, #ffffff 43%, #ffffff 46%, #a42346 47%, #a42346 53%, #ffffff 54%, #ffffff 57%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(to left top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 42%, #ffffff 43%, #ffffff 46%, #a42346 47%, #a42346 53%, #ffffff 54%, #ffffff 57%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to left top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 42%, #ffffff 43%, #ffffff 46%, #a42346 47%, #a42346 53%, #ffffff 54%, #ffffff 57%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#00ffffff', GradientType=1);
}
.tile-wrapper .tile.disabled:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -moz-linear-gradient(to left top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 42%, #ffffff 43%, #ffffff 46%, #a42346 47%, #a42346 53%, #ffffff 54%, #ffffff 57%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(42%, rgba(255, 255, 255, 0)), color-stop(43%, #ffffff), color-stop(46%, #ffffff), color-stop(47%, #a42346), color-stop(53%, #a42346), color-stop(54%, #ffffff), color-stop(57%, #ffffff), color-stop(58%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(to left top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 42%, #ffffff 43%, #ffffff 46%, #a42346 47%, #a42346 53%, #ffffff 54%, #ffffff 57%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(to left top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 42%, #ffffff 43%, #ffffff 46%, #a42346 47%, #a42346 53%, #ffffff 54%, #ffffff 57%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(to left top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 42%, #ffffff 43%, #ffffff 46%, #a42346 47%, #a42346 53%, #ffffff 54%, #ffffff 57%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to left top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0) 43%, rgba(255, 255, 255, 0) 46%, #a42346 47%, #a42346 53%, rgba(255, 255, 255, 0) 54%, rgba(255, 255, 255, 0) 57%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#00ffffff', GradientType=1);
}
.swatch-attribute.visual-swatch {
  width: 100%;
}
.swatch-attribute .tile-wrapper .tile {
  position: relative;
  float: left;
  background-color: white;
  padding: 5px 7px;
  margin-right: 7px;
  margin-bottom: 7px;
  border: 2px solid white;
  cursor: pointer;
  min-width: 40px;
  text-align: center;
}
.swatch-attribute .tile-wrapper .tile.selected {
  border: 2px solid #a42346;
}
.swatch-attribute .tile-wrapper .tile.disabled:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.swatch-option-tooltip {
  max-width: 140px;
  /*max-height: 160px;*/
  max-height: 100%;
  min-height: 20px;
  min-width: 20px;
  position: absolute;
  padding: 5px;
  background: #fff;
  color: #949494;
  border: 1px solid #adadad;
  display: none;
  z-index: 999;
  text-align: center;
  margin-top: 15px;
}
.swatch-option-tooltip .corner,
.swatch-option-tooltip-layered .corner {
  left: 40%;
  position: absolute;
  bottom: 0;
  height: 16px;
}
.swatch-option-tooltip .corner:after,
.swatch-option-tooltip-layered .corner:after {
  content: '';
  position: relative;
  top: 1px;
  left: -15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 7.5px 0 7.5px;
  border-color: #fff transparent transparent transparent;
  font-size: 1px;
}
.swatch-option-tooltip .corner:before,
.swatch-option-tooltip-layered .corner:before {
  content: '';
  position: relative;
  top: 2px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8.5px 0 8.5px;
  border-color: #adadad transparent transparent transparent;
  font-size: 1px;
}
.swatch-option-tooltip .image,
.swatch-option-tooltip-layered .image {
  display: block;
  height: 130px;
  width: 130px;
  /*margin: 0 0 5px;*/
  margin: 0 auto;
  background-size: contain!important;
}
.swatch-option-tooltip .title {
  max-width: 140px;
  min-height: 20px;
  max-height: 200px;
  color: #282828;
  text-align: center;
  display: block;
  overflow: hidden;
  font-size: 16px;
}
.swatch-opt {
  margin: 20px 0;
}
.swatch-more {
  display: inline-block;
  margin: 2px 0;
  text-decoration: none !important;
  position: static;
  z-index: 1;
}
/* Layered Features */
.swatch-option-link-layered {
  position: relative;
  margin: 0;
  padding: 0;
}
.swatch-option-tooltip-layered {
  width: 140px;
  position: absolute;
  background: #fff;
  color: #949494;
  border: 1px solid #adadad;
  display: none;
  z-index: 999;
  left: -47px;
}
.swatch-visual-tooltip-layered {
  height: 160px;
  top: -170px;
}
.swatch-textual-tooltip-layered {
  height: 30px;
  top: -40px;
}
.swatch-option-link-layered:hover > .swatch-option-tooltip-layered {
  display: block;
}
.swatch-attribute-options .swatch-option-tooltip-layered .title {
  width: 100%;
  height: 20px;
  position: absolute;
  bottom: -5px;
  left: 0;
  color: #282828;
  text-align: center;
  margin-bottom: 10px;
}
.swatch-option-disabled:after {
  content: '';
  position: absolute;
  width: 42px;
  height: 2px;
  background: red;
  transform: rotate(-30deg);
  -o-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  -webkit-transform: rotate(-30deg);
  z-index: 995;
  left: -4px;
  top: 10px;
}
.swatch-option-disabled {
  outline: none !important;
  cursor: default;
  border: 0;
}
/* Bugfix for Add To Cart button */
.swatch-opt-listing {
  margin-bottom: 10px;
}
.swatch-option-loading {
  content: url("../images/loader-2.gif");
}
.product-add-form .swatch-attribute:not(.visual-swatch) .swatch-attribute-options,
.product-add-form .qty-wrapper .swatch-attribute-options,
.product-add-form .field.configurable .swatch-attribute-options,
.product-add-form .custom-option .swatch-attribute-options,
.product-add-form .swatch-attribute:not(.visual-swatch) .control,
.product-add-form .qty-wrapper .control,
.product-add-form .field.configurable .control,
.product-add-form .custom-option .control {
  position: relative;
  padding: 0 10px 0 0;
}
.product-add-form .swatch-attribute:not(.visual-swatch) select,
.product-add-form .qty-wrapper select,
.product-add-form .field.configurable select,
.product-add-form .custom-option select {
  border: none;
  border-right: 10px solid white;
  padding: 5px 10px;
  margin-right: 10px;
  width: 100%;
  height: 40px;
  background-color: white;
  color: black;
  font-family: 'Source Sans Pro', sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  cursor: pointer;
  outline: none;
}
.product-add-form .swatch-attribute:not(.visual-swatch) select option,
.product-add-form .qty-wrapper select option,
.product-add-form .field.configurable select option,
.product-add-form .custom-option select option {
  color: black;
  text-transform: none;
}
.product-add-form .swatch-attribute:not(.visual-swatch) select:focus::-ms-value,
.product-add-form .qty-wrapper select:focus::-ms-value,
.product-add-form .field.configurable select:focus::-ms-value,
.product-add-form .custom-option select:focus::-ms-value {
  background-color: transparent;
}
.product-add-form .swatch-attribute:not(.visual-swatch) select::-ms-expand,
.product-add-form .qty-wrapper select::-ms-expand,
.product-add-form .field.configurable select::-ms-expand,
.product-add-form .custom-option select::-ms-expand {
  display: none;
}
.catalog-category-view #sidebar_wrapper .panel.panel-default.menu,
.catalogsearch-result-index #sidebar_wrapper .panel.panel-default.menu,
.catalog-category-view #sidebar_wrapper #navigation_filters,
.catalogsearch-result-index #sidebar_wrapper #navigation_filters {
  margin-bottom: 30px;
}
.catalog-category-view .products.wrapper.grid.products-grid,
.catalogsearch-result-index .products.wrapper.grid.products-grid {
  padding-top: 15px;
}
.catalog-category-view .home-link,
.catalogsearch-result-index .home-link {
  cursor: pointer;
  color: #a42346;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.catalog-category-view .home-link a,
.catalogsearch-result-index .home-link a {
  font-size: 14.256px;
  text-decoration: none;
  line-height: 36px;
  margin-left: 15px;
}
.catalog-category-view .home-link a:hover,
.catalogsearch-result-index .home-link a:hover {
  text-decoration: underline;
}
.catalog-category-view .home-link .fa,
.catalogsearch-result-index .home-link .fa {
  font-weight: bold;
  font-weight: lighter;
  right: 0px;
  top: 6px;
  left: 5px;
  position: absolute;
  width: 20px;
}
@media (max-width: 991px) {
  .catalog-category-view .home-link .fa,
  .catalogsearch-result-index .home-link .fa {
    top: 5px;
  }
}
.catalog-category-view .toolbar-sorter .bootstrap-select,
.catalogsearch-result-index .toolbar-sorter .bootstrap-select {
  background-color: white;
  float: right;
  margin-right: 1px;
}
.catalog-category-view .toolbar-sorter .bootstrap-select button.dropdown-toggle,
.catalogsearch-result-index .toolbar-sorter .bootstrap-select button.dropdown-toggle {
  margin-bottom: 0;
  border: none;
  font-size: 16.2px;
  text-transform: unset!important;
}
.catalog-category-view .toolbar-sorter .bootstrap-select button.dropdown-toggle:focus,
.catalogsearch-result-index .toolbar-sorter .bootstrap-select button.dropdown-toggle:focus {
  border: none!important;
  outline: unset!important;
}
.catalog-category-view .filter-options-title .glyphicon,
.catalogsearch-result-index .filter-options-title .glyphicon {
  font-family: 'Source Sans Pro', sans-serif;
}
.catalog-category-view .main-content.container,
.catalogsearch-result-index .main-content.container {
  margin-bottom: 60px;
  position: relative;
}
.catalog-category-view img.category-logo,
.catalogsearch-result-index img.category-logo {
  height: 40px;
}
.catalog-category-view .swatch-attribute-options .swatch-option,
.catalogsearch-result-index .swatch-attribute-options .swatch-option {
  height: 24px;
  width: 36px;
}
.catalog-category-view .swatch-attribute-options .selection-separator,
.catalogsearch-result-index .swatch-attribute-options .selection-separator {
  clear: both;
  padding-top: 15px;
  display: none;
}
.catalog-category-view .swatch-attribute-options .swatch-option-link-layered,
.catalogsearch-result-index .swatch-attribute-options .swatch-option-link-layered {
  /*
            overflow: hidden;
            display: inline-block;
            
            
            &.unselected:first-child {
                clear: both;
            }*/
  /*&.selected.last {
                padding-bottom: 2em;
            }*/
}
.catalog-category-view .swatch-attribute-options .swatch-option:not(.selected):hover,
.catalogsearch-result-index .swatch-attribute-options .swatch-option:not(.selected):hover {
  border: 2px solid #009640;
}
.catalog-category-view .swatch-attribute-options .swatch-option.selected:hover,
.catalogsearch-result-index .swatch-attribute-options .swatch-option.selected:hover {
  border: 2px solid #888;
}
.catalog-category-view .out-of-stock-badge,
.catalogsearch-result-index .out-of-stock-badge {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  text-align: center;
  border-top: 30px solid #FFE701;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  height: 0;
  width: 150px;
  font-size: 0.8em;
  right: -16px;
  bottom: 29px;
}
.catalog-category-view .out-of-stock-badge span,
.catalogsearch-result-index .out-of-stock-badge span {
  top: -25px;
  position: absolute;
  width: 100%;
  left: 0;
}
.catalog-category-view .product-list-pager-wrapper,
.catalogsearch-result-index .product-list-pager-wrapper {
  margin: 0 0 14px 0;
  height: 24px;
  display: block;
}
.catalog-category-view .product-list-pager-wrapper .product-list-pager,
.catalogsearch-result-index .product-list-pager-wrapper .product-list-pager {
  padding: 0 15px 0 0;
  font-size: 18px;
  line-height: 24px;
  height: 24px;
  float: right;
}
.catalog-category-view .message.info.empty,
.catalogsearch-result-index .message.info.empty {
  margin-top: 40px;
}
.catalog-category-view .product-item-info,
.catalogsearch-result-index .product-item-info {
  border-radius: 6px;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  border-color: #F0F0F0;
  overflow: hidden;
}
.catalog-category-view .panel-default.filter > .panel-heading,
.catalogsearch-result-index .panel-default.filter > .panel-heading {
  background-color: white;
  border-color: white;
}
.catalog-category-view #sidebar_wrapper h4,
.catalogsearch-result-index #sidebar_wrapper h4 {
  text-transform: uppercase;
  color: #009640;
  margin: 15px;
}
.catalog-category-view #sidebar_wrapper h4 a,
.catalogsearch-result-index #sidebar_wrapper h4 a {
  color: #009640;
}
.catalog-category-view #sidebar_wrapper h4 a:hover,
.catalogsearch-result-index #sidebar_wrapper h4 a:hover {
  text-decoration: none;
}
.catalog-category-view #sidebar_wrapper .axt-nav dl.filter-options dt.filter-options-title,
.catalogsearch-result-index #sidebar_wrapper .axt-nav dl.filter-options dt.filter-options-title {
  padding: 20px 15px 25px 15px;
  position: relative;
}
.catalog-category-view #sidebar_wrapper .axt-nav dl.filter-options dt.filter-options-title a,
.catalogsearch-result-index #sidebar_wrapper .axt-nav dl.filter-options dt.filter-options-title a {
  position: absolute;
  z-index: 199;
}
.catalog-category-view #sidebar_wrapper .axt-nav dl.filter-options dt.filter-options-title .glyphicon,
.catalogsearch-result-index #sidebar_wrapper .axt-nav dl.filter-options dt.filter-options-title .glyphicon {
  margin: -1.1em -199px;
  font-weight: bold;
  float: right;
  z-index: 189;
}
.catalog-category-view #sidebar_wrapper dl dt,
.catalogsearch-result-index #sidebar_wrapper dl dt {
  color: #555555;
}
.catalog-category-view #sidebar_wrapper dl dt a,
.catalogsearch-result-index #sidebar_wrapper dl dt a {
  top: 0.5em;
  color: #555555;
  text-decoration: none;
}
.catalog-category-view #sidebar_wrapper dl dt .glyphicon,
.catalogsearch-result-index #sidebar_wrapper dl dt .glyphicon {
  color: #777777;
  line-height: 2.5em;
  padding: 0 200px;
  font-size: 1em;
  margin: -9px -199px;
  font-weight: bold;
  float: right;
  z-index: 189;
}
.catalog-category-view #sidebar_wrapper dl dt .glyphicon:before,
.catalogsearch-result-index #sidebar_wrapper dl dt .glyphicon:before {
  content: "\002b";
}
.catalog-category-view #sidebar_wrapper dl dt .glyphicon:hover,
.catalogsearch-result-index #sidebar_wrapper dl dt .glyphicon:hover {
  color: #009640;
}
.catalog-category-view #sidebar_wrapper dl dt.active a,
.catalogsearch-result-index #sidebar_wrapper dl dt.active a {
  color: #009640;
  text-decoration: none;
}
.catalog-category-view #sidebar_wrapper dl dt.active .glyphicon:before,
.catalogsearch-result-index #sidebar_wrapper dl dt.active .glyphicon:before {
  content: "\2212";
}
.catalog-category-view #sidebar_wrapper #navigation-filter-toggle,
.catalogsearch-result-index #sidebar_wrapper #navigation-filter-toggle {
  overflow: hidden;
  margin-left: 5px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .catalog-category-view #sidebar_wrapper #navigation-filter-toggle,
  .catalogsearch-result-index #sidebar_wrapper #navigation-filter-toggle {
    display: block;
  }
}
.catalog-category-view #sidebar_wrapper .sidebar,
.catalogsearch-result-index #sidebar_wrapper .sidebar {
  margin-top: 53px;
}
.catalog-category-view #sidebar_wrapper .sidebar .couponlink,
.catalogsearch-result-index #sidebar_wrapper .sidebar .couponlink {
  border-radius: 4px;
  background-color: white;
}
.catalog-category-view #sidebar_wrapper .sidebar .couponlink a,
.catalogsearch-result-index #sidebar_wrapper .sidebar .couponlink a {
  text-decoration: none;
  color: #009640;
}
.catalog-category-view #sidebar_wrapper .sidebar .couponlink a img,
.catalogsearch-result-index #sidebar_wrapper .sidebar .couponlink a img {
  width: 100%;
}
.catalog-category-view #sidebar_wrapper .sidebar .couponlink a span,
.catalogsearch-result-index #sidebar_wrapper .sidebar .couponlink a span {
  padding: 0 15px 15px 15px;
  text-align: center;
  display: block;
}
.catalog-category-view #sidebar_wrapper .sidebar ul.axt-navigation-all-level-list.simple,
.catalogsearch-result-index #sidebar_wrapper .sidebar ul.axt-navigation-all-level-list.simple {
  margin-bottom: 15px;
}
.catalog-category-view #sidebar_wrapper .sidebar ul.axt-navigation-all-level-list.simple li,
.catalogsearch-result-index #sidebar_wrapper .sidebar ul.axt-navigation-all-level-list.simple li {
  border-top: none;
  margin-left: 15px;
  list-style-type: none;
}
.catalog-category-view #sidebar_wrapper .sidebar ul.axt-navigation-all-level-list.simple li a,
.catalogsearch-result-index #sidebar_wrapper .sidebar ul.axt-navigation-all-level-list.simple li a {
  text-decoration: none;
  color: #555555;
}
.catalog-category-view #sidebar_wrapper .sidebar ul.axt-navigation-all-level-list.simple li a:hover,
.catalogsearch-result-index #sidebar_wrapper .sidebar ul.axt-navigation-all-level-list.simple li a:hover {
  text-decoration: none;
}
.catalog-category-view #sidebar_wrapper .sidebar ul.axt-navigation-all-level-list.simple li a.current,
.catalogsearch-result-index #sidebar_wrapper .sidebar ul.axt-navigation-all-level-list.simple li a.current {
  color: #009640;
}
.catalog-category-view #sidebar_wrapper .sidebar .axt-navigation-all-level ul li,
.catalogsearch-result-index #sidebar_wrapper .sidebar .axt-navigation-all-level ul li {
  margin-left: 15px;
}
.catalog-category-view #sidebar_wrapper .sidebar .axt-navigation-all-level ul li a.active,
.catalogsearch-result-index #sidebar_wrapper .sidebar .axt-navigation-all-level ul li a.active {
  color: red;
}
.catalog-category-view #sidebar_wrapper .sidebar .axt-navigation-all-level ul li a.current,
.catalogsearch-result-index #sidebar_wrapper .sidebar .axt-navigation-all-level ul li a.current {
  color: green;
}
@media (max-width: 991px) {
  .catalog-category-view #sidebar_wrapper .sidebar,
  .catalogsearch-result-index #sidebar_wrapper .sidebar {
    margin-top: 25px;
    border-color: transparent;
    background-color: transparent;
    box-shadow: none;
    margin-bottom: -5px;
  }
  .catalog-category-view #sidebar_wrapper .sidebar.expanded,
  .catalogsearch-result-index #sidebar_wrapper .sidebar.expanded {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    border-color: #F0F0F0;
    background-color: white;
    margin-bottom: 25px;
  }
  .catalog-category-view #sidebar_wrapper .sidebar.expanded .panel-body.filter-content,
  .catalogsearch-result-index #sidebar_wrapper .sidebar.expanded .panel-body.filter-content {
    display: block;
  }
}
.catalog-category-view #sidebar_wrapper .sidebar .panel-default.menu,
.catalogsearch-result-index #sidebar_wrapper .sidebar .panel-default.menu {
  border-radius: 4px;
}
.catalog-category-view #sidebar_wrapper .sidebar .panel-default.filter,
.catalogsearch-result-index #sidebar_wrapper .sidebar .panel-default.filter {
  border-radius: 4px;
}
.catalog-category-view #sidebar_wrapper .sidebar .panel-default dl,
.catalogsearch-result-index #sidebar_wrapper .sidebar .panel-default dl {
  margin-bottom: 0;
}
.catalog-category-view #sidebar_wrapper .sidebar .panel-default dl dt,
.catalogsearch-result-index #sidebar_wrapper .sidebar .panel-default dl dt {
  border-top: 2px solid #F0F0F0;
}
.catalog-category-view #sidebar_wrapper .sidebar .panel-default dl dt:first-child,
.catalogsearch-result-index #sidebar_wrapper .sidebar .panel-default dl dt:first-child {
  border-top: none;
}
.catalog-category-view #sidebar_wrapper .sidebar .panel-default dl dt.expanded,
.catalogsearch-result-index #sidebar_wrapper .sidebar .panel-default dl dt.expanded {
  color: #009640;
}
.catalog-category-view #sidebar_wrapper .sidebar .filter-current,
.catalogsearch-result-index #sidebar_wrapper .sidebar .filter-current {
  border-bottom: 2px solid #F0F0F0;
  padding: 10px 15px;
}
.catalog-category-view #sidebar_wrapper .sidebar .filter-current span,
.catalogsearch-result-index #sidebar_wrapper .sidebar .filter-current span {
  color: #009640;
}
.catalog-category-view #sidebar_wrapper .sidebar .filter-current span a,
.catalogsearch-result-index #sidebar_wrapper .sidebar .filter-current span a {
  float: right;
}
.catalog-category-view #sidebar_wrapper .sidebar .filter-current span a .fa-close,
.catalogsearch-result-index #sidebar_wrapper .sidebar .filter-current span a .fa-close {
  color: #a42346;
}
.catalog-category-view #sidebar_wrapper .sidebar .filter-current ul,
.catalogsearch-result-index #sidebar_wrapper .sidebar .filter-current ul {
  margin-top: 15px;
}
.catalog-category-view #sidebar_wrapper .sidebar .filter-current ul li,
.catalogsearch-result-index #sidebar_wrapper .sidebar .filter-current ul li {
  display: inline-block;
  border: 1px solid #009640;
  color: #009640;
  border-radius: 6px;
  font-size: 0.8em;
  padding: 0 10px;
  margin: 10px 10px 10px 0;
}
.catalog-category-view #sidebar_wrapper .sidebar .filter-current ul li a,
.catalogsearch-result-index #sidebar_wrapper .sidebar .filter-current ul li a {
  color: #009640;
  text-decoration: none;
}
.catalog-category-view #sidebar_wrapper .sidebar .filter-current ul li a .fa-close,
.catalogsearch-result-index #sidebar_wrapper .sidebar .filter-current ul li a .fa-close {
  color: #a42346;
}
.catalog-category-view #sidebar_wrapper .sidebar .filter-content .trigger,
.catalogsearch-result-index #sidebar_wrapper .sidebar .filter-content .trigger {
  float: right;
  font-size: 0.8em;
  line-height: 1.85em;
}
.catalog-category-view #sidebar_wrapper .sidebar .filter-content .filter-options-title,
.catalogsearch-result-index #sidebar_wrapper .sidebar .filter-content .filter-options-title {
  padding: 10px 15px 8px 15px;
  color: #3a3a3a;
  cursor: pointer;
  font-weight: 600;
  /*
                    &#filter-heading-maincategory {
                        color: @gea-green;
                    }
                    */
}
.catalog-category-view #sidebar_wrapper .sidebar .filter-content .filter-options-content,
.catalogsearch-result-index #sidebar_wrapper .sidebar .filter-content .filter-options-content {
  overflow: hidden;
  width: 100%;
  padding: 0px 15px;
}
.catalog-category-view #sidebar_wrapper .sidebar .filter-content .filter-options-content .shoe_color,
.catalogsearch-result-index #sidebar_wrapper .sidebar .filter-content .filter-options-content .shoe_color {
  margin-bottom: 10px;
  margin-left: 5px;
}
.catalog-category-view #sidebar_wrapper .sidebar .filter-content .filter-options-content.category,
.catalogsearch-result-index #sidebar_wrapper .sidebar .filter-content .filter-options-content.category {
  padding-bottom: 5px;
}
.catalog-category-view #sidebar_wrapper .sidebar .filter-content .filter-options-content.category ul,
.catalogsearch-result-index #sidebar_wrapper .sidebar .filter-content .filter-options-content.category ul {
  padding-left: 0px;
}
.catalog-category-view #sidebar_wrapper .sidebar .filter-content .filter-options-content.category ul li,
.catalogsearch-result-index #sidebar_wrapper .sidebar .filter-content .filter-options-content.category ul li {
  list-style-type: none;
}
.catalog-category-view #sidebar_wrapper .sidebar .filter-content .filter-options-content a,
.catalogsearch-result-index #sidebar_wrapper .sidebar .filter-content .filter-options-content a {
  text-decoration: none;
  color: #3a3a3a;
}
.catalog-category-view #sidebar_wrapper .sidebar .filter-content .filter-options-content a:hover,
.catalogsearch-result-index #sidebar_wrapper .sidebar .filter-content .filter-options-content a:hover {
  text-decotation: underline;
}
.catalog-category-view #sidebar_wrapper .sidebar .filter-content ul,
.catalogsearch-result-index #sidebar_wrapper .sidebar .filter-content ul {
  padding: 0;
  overflow: hidden;
}
.catalog-category-view #sidebar_wrapper .sidebar .filter-content ul li.item,
.catalogsearch-result-index #sidebar_wrapper .sidebar .filter-content ul li.item {
  list-style-type: none;
  float: left;
  /**
                        @media screen and (min-width : @screen-sm-min) and (max-width : @screen-sm-max) {
                            width:33%;
                        }
                        
                        @media screen and (min-width : @screen-md-min) and (max-width : @screen-md-max) {
                            width:25%;
                        }
                        
                        @media screen and (min-width : @screen-lg-min) {
                            width:20%;
                        }
                        */
  padding: 5px;
  text-align: center;
}
.catalog-category-view #sidebar_wrapper .sidebar .filter-content ul li.item a,
.catalogsearch-result-index #sidebar_wrapper .sidebar .filter-content ul li.item a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 5px 10px;
  border: 1px solid #a42346;
}
.catalog-category-view #sidebar_wrapper .sidebar .filter-content ul li.item a:hover,
.catalogsearch-result-index #sidebar_wrapper .sidebar .filter-content ul li.item a:hover {
  border: 1px solid #009640;
}
.catalog-category-view #sidebar_wrapper .sidebar .filter-content .price ul li.item,
.catalogsearch-result-index #sidebar_wrapper .sidebar .filter-content .price ul li.item {
  width: 100%;
}
.catalog-category-view .main-content.container .products.list.items .item,
.catalogsearch-result-index .main-content.container .products.list.items .item {
  display: inline-block;
  margin: 0 0 1em;
  width: calc(33.333% - 3px);
  padding-left: 15px;
  padding-right: 15px;
  overflow: overlay;
}
.catalog-category-view .main-content.container .products.list.items .item .product-image-wrapper,
.catalogsearch-result-index .main-content.container .products.list.items .item .product-image-wrapper {
  overflow: hidden;
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .catalog-category-view .main-content.container .products.list.items .item,
  .catalogsearch-result-index .main-content.container .products.list.items .item {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 767px) {
  .catalog-category-view h1 {
    margin: 30px 0 0 0;
  }
  .catalog-category-view header,
  .catalogsearch-result-index header {
    margin-bottom: 30px;
  }
  .catalog-category-view .main-content.container .products.list.items .item,
  .catalogsearch-result-index .main-content.container .products.list.items .item {
    width: 100%;
  }
  .catalog-category-view .sidebar.sidebar-additional2,
  .catalogsearch-result-index .sidebar.sidebar-additional2,
  .catalog-category-view .product-list-pager-wrapper,
  .catalogsearch-result-index .product-list-pager-wrapper {
    display: none;
  }
  .catalog-category-view #navigation_filters h4 span:after,
  .catalogsearch-result-index #navigation_filters h4 span:after {
    content: "\002b";
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    position: absolute;
    right: 30px;
    font-size: 0.5em;
    color: #777777;
  }
  .catalog-category-view #navigation_filters h4 span.open:after,
  .catalogsearch-result-index #navigation_filters h4 span.open:after {
    content: "\2212";
  }
  .catalog-category-view #navigation_filters dl,
  .catalogsearch-result-index #navigation_filters dl {
    display: none;
  }
  .catalog-category-view #navigation_filters dl.open,
  .catalogsearch-result-index #navigation_filters dl.open {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .catalog-product-view .product.media {
    margin: 20px 0;
  }
}
.catalog-product-view #gea-product-sizes-info {
  font-size: 16.2px;
  line-height: 1.4em;
  font-family: 'Source Sans Pro', sans-serif;
  color: #555555;
  padding: 25px 0 0 0;
  clear: both;
}
.catalog-product-view #gea-product-sizes-info span {
  cursor: pointer;
}
.catalog-product-view .row.product-details ul,
.catalog-product-view .row.product-details ol {
  font-size: 16.2px;
  line-height: 1.4em;
  font-family: 'Source Sans Pro', sans-serif;
  color: #555555;
}
.catalog-product-view h3 {
  margin-top: -10px;
}
.catalog-product-view .paypal.checkout.paypal-logo {
  display: none;
}
.catalog-product-view img.category-logo {
  height: 20px;
}
.catalog-product-view .loading-mask {
  background-color: white;
  height: 555px;
}
.catalog-product-view .loading-mask .loader {
  top: 180px;
}
.catalog-product-view .product-info-main .backorder-message p {
  color: #a42346;
}
.catalog-product-view .product-info-main h2 {
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 7.5px;
}
.catalog-product-view .product-info-main #qty-selector-wrapper .qty-wrapper {
  display: block;
  padding-bottom: 15px;
}
.catalog-product-view .product-info-main .product-add-form .btn-shop {
  float: left;
  clear: both;
  width: 100%;
}
.catalog-product-view .product-info-main .price-box {
  clear: both;
}
.catalog-product-view .product-info-main span.price {
  font-weight: bold;
  font-size: 21.6px;
}
.catalog-product-view .product-info-main span.swatch-attribute-label {
  color: #a42346;
}
.catalog-product-view .product-info-main h2,
.catalog-product-view .product-info-main p {
  font-size: 16.2px;
  line-height: 1.4em;
  font-family: 'Source Sans Pro', sans-serif;
  color: #555555;
}
.catalog-product-view .product-info-main p span {
  font-size: 14.256px;
}
.catalog-product-view .product-info-main .fieldset .qty-wrapper {
  padding-right: 10px;
}
.catalog-product-view .product-info-main .qty-wrapper .qty-select,
.catalog-product-view .product-info-main .field.configurable,
.catalog-product-view .product-info-main .custom-option {
  margin-top: 10px;
}
.catalog-product-view .product-info-main .field.configurable label {
  display: none;
}
.catalog-product-view .product-info-main .swatch-attribute,
.catalog-product-view .product-info-main .qty-wrapper,
.catalog-product-view .product-info-main .field.configurable,
.catalog-product-view .product-info-main .custom-option {
  float: left;
  width: 33.333%;
}
.catalog-product-view .product-info-main .swatch-attribute .bootstrap-select,
.catalog-product-view .product-info-main .qty-wrapper .bootstrap-select,
.catalog-product-view .product-info-main .field.configurable .bootstrap-select,
.catalog-product-view .product-info-main .custom-option .bootstrap-select {
  width: 100%;
  padding: 0 10px 0 0;
}
.catalog-product-view .product-info-main .swatch-attribute .bootstrap-select .dropdown-toggle,
.catalog-product-view .product-info-main .qty-wrapper .bootstrap-select .dropdown-toggle,
.catalog-product-view .product-info-main .field.configurable .bootstrap-select .dropdown-toggle,
.catalog-product-view .product-info-main .custom-option .bootstrap-select .dropdown-toggle {
  margin: 0;
  padding: 10px;
  line-height: 1;
}
.catalog-product-view .product-info-main .swatch-attribute.shoe_size,
.catalog-product-view .product-info-main .qty-wrapper.shoe_size,
.catalog-product-view .product-info-main .field.configurable.shoe_size,
.catalog-product-view .product-info-main .custom-option.shoe_size,
.catalog-product-view .product-info-main .swatch-attribute.shoe_width,
.catalog-product-view .product-info-main .qty-wrapper.shoe_width,
.catalog-product-view .product-info-main .field.configurable.shoe_width,
.catalog-product-view .product-info-main .custom-option.shoe_width {
  width: 100%;
}
.catalog-product-view .product-info-main .swatch-attribute .btn,
.catalog-product-view .product-info-main .qty-wrapper .btn,
.catalog-product-view .product-info-main .field.configurable .btn,
.catalog-product-view .product-info-main .custom-option .btn {
  font-size: 16.2px;
}
.catalog-product-view .product-info-main .swatch-attribute input,
.catalog-product-view .product-info-main .qty-wrapper input,
.catalog-product-view .product-info-main .field.configurable input,
.catalog-product-view .product-info-main .custom-option input {
  width: 100%;
  border: none;
  padding: 5px 10px;
  margin-right: 10px;
  height: 40px;
  background-color: white;
  color: black;
  font-family: 'Source Sans Pro', sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  cursor: pointer;
  outline: none;
}
.catalog-product-view .product-info-main .swatch-attribute.visual-swatch,
.catalog-product-view .product-info-main .qty-wrapper.visual-swatch,
.catalog-product-view .product-info-main .field.configurable.visual-swatch,
.catalog-product-view .product-info-main .custom-option.visual-swatch {
  float: none;
  width: 100%;
  overflow: hidden;
}
.catalog-product-view .product-info-main .swatch-attribute select.super-attribute-select,
.catalog-product-view .product-info-main .qty-wrapper select.super-attribute-select,
.catalog-product-view .product-info-main .field.configurable select.super-attribute-select,
.catalog-product-view .product-info-main .custom-option select.super-attribute-select,
.catalog-product-view .product-info-main .swatch-attribute select.swatch-select,
.catalog-product-view .product-info-main .qty-wrapper select.swatch-select,
.catalog-product-view .product-info-main .field.configurable select.swatch-select,
.catalog-product-view .product-info-main .custom-option select.swatch-select,
.catalog-product-view .product-info-main .swatch-attribute select.qty-select,
.catalog-product-view .product-info-main .qty-wrapper select.qty-select,
.catalog-product-view .product-info-main .field.configurable select.qty-select,
.catalog-product-view .product-info-main .custom-option select.qty-select {
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
}
.catalog-product-view .product-info-main .swatch-attribute select.super-attribute-select::-ms-expand,
.catalog-product-view .product-info-main .qty-wrapper select.super-attribute-select::-ms-expand,
.catalog-product-view .product-info-main .field.configurable select.super-attribute-select::-ms-expand,
.catalog-product-view .product-info-main .custom-option select.super-attribute-select::-ms-expand,
.catalog-product-view .product-info-main .swatch-attribute select.swatch-select::-ms-expand,
.catalog-product-view .product-info-main .qty-wrapper select.swatch-select::-ms-expand,
.catalog-product-view .product-info-main .field.configurable select.swatch-select::-ms-expand,
.catalog-product-view .product-info-main .custom-option select.swatch-select::-ms-expand,
.catalog-product-view .product-info-main .swatch-attribute select.qty-select::-ms-expand,
.catalog-product-view .product-info-main .qty-wrapper select.qty-select::-ms-expand,
.catalog-product-view .product-info-main .field.configurable select.qty-select::-ms-expand,
.catalog-product-view .product-info-main .custom-option select.qty-select::-ms-expand {
  display: block;
  color: black!important;
  background: white!important;
  background-color: white!important;
}
.catalog-product-view .product-info-main .swatch-attribute select.super-attribute-select:focus::-ms-value,
.catalog-product-view .product-info-main .qty-wrapper select.super-attribute-select:focus::-ms-value,
.catalog-product-view .product-info-main .field.configurable select.super-attribute-select:focus::-ms-value,
.catalog-product-view .product-info-main .custom-option select.super-attribute-select:focus::-ms-value,
.catalog-product-view .product-info-main .swatch-attribute select.swatch-select:focus::-ms-value,
.catalog-product-view .product-info-main .qty-wrapper select.swatch-select:focus::-ms-value,
.catalog-product-view .product-info-main .field.configurable select.swatch-select:focus::-ms-value,
.catalog-product-view .product-info-main .custom-option select.swatch-select:focus::-ms-value,
.catalog-product-view .product-info-main .swatch-attribute select.qty-select:focus::-ms-value,
.catalog-product-view .product-info-main .qty-wrapper select.qty-select:focus::-ms-value,
.catalog-product-view .product-info-main .field.configurable select.qty-select:focus::-ms-value,
.catalog-product-view .product-info-main .custom-option select.qty-select:focus::-ms-value {
  color: black!important;
  background: white!important;
  background-color: white!important;
}
.catalog-product-view .product-info-main .swatch-attribute .swatch-attribute-options button.btn.dropdown-toggle,
.catalog-product-view .product-info-main .qty-wrapper .swatch-attribute-options button.btn.dropdown-toggle,
.catalog-product-view .product-info-main .field.configurable .swatch-attribute-options button.btn.dropdown-toggle,
.catalog-product-view .product-info-main .custom-option .swatch-attribute-options button.btn.dropdown-toggle {
  margin-bottom: 0;
}
.catalog-product-view .product-info-main .swatch-attribute .swatch-attribute-options .dropdown-menu.open,
.catalog-product-view .product-info-main .qty-wrapper .swatch-attribute-options .dropdown-menu.open,
.catalog-product-view .product-info-main .field.configurable .swatch-attribute-options .dropdown-menu.open,
.catalog-product-view .product-info-main .custom-option .swatch-attribute-options .dropdown-menu.open {
  padding: 0;
  border: none;
}
.catalog-product-view .product-info-main .swatch-attribute .swatch-attribute-options .btn-group.open .dropdown-toggle,
.catalog-product-view .product-info-main .qty-wrapper .swatch-attribute-options .btn-group.open .dropdown-toggle,
.catalog-product-view .product-info-main .field.configurable .swatch-attribute-options .btn-group.open .dropdown-toggle,
.catalog-product-view .product-info-main .custom-option .swatch-attribute-options .btn-group.open .dropdown-toggle {
  box-shadow: none;
}
.catalog-product-view .product-info-main .swatch-attribute .swatch-attribute-options .swatch-option,
.catalog-product-view .product-info-main .qty-wrapper .swatch-attribute-options .swatch-option,
.catalog-product-view .product-info-main .field.configurable .swatch-attribute-options .swatch-option,
.catalog-product-view .product-info-main .custom-option .swatch-attribute-options .swatch-option {
  padding: 2px;
}
@media (max-width: 991px) {
  .catalog-product-view .product-info-main .swatch-attribute .swatch-attribute-options .swatch-option,
  .catalog-product-view .product-info-main .qty-wrapper .swatch-attribute-options .swatch-option,
  .catalog-product-view .product-info-main .field.configurable .swatch-attribute-options .swatch-option,
  .catalog-product-view .product-info-main .custom-option .swatch-attribute-options .swatch-option {
    margin-left: 2px;
  }
}
.catalog-product-view .product-info-main .swatch-attribute .swatch-attribute-options .swatch-option.selected,
.catalog-product-view .product-info-main .qty-wrapper .swatch-attribute-options .swatch-option.selected,
.catalog-product-view .product-info-main .field.configurable .swatch-attribute-options .swatch-option.selected,
.catalog-product-view .product-info-main .custom-option .swatch-attribute-options .swatch-option.selected {
  outline: none;
  background-color: #a42346;
}
.catalog-product-view .product-info-main .bootstrap-select.swatch-select {
  margin-right: 20px;
}
.catalog-product-view .product-info-main .product-options-bottom {
  display: block;
  clear: both;
  padding-top: 20px;
}
.catalog-product-view .product-info-main .product-options-bottom button {
  width: 100%;
  text-align: center;
}
.catalog-product-view .page-title-wrapper {
  padding: 0;
  margin: 0;
}
.catalog-product-view .page-title-wrapper h1 {
  font-size: 30px;
  margin: 5px 0;
  padding: 0;
  line-height: 1em;
}
.catalog-product-view .fotorama__stage {
  border-radius: 6px;
}
.catalog-product-view .product-options-wrapper {
  margin-right: -10px;
  overflow: visible;
  /*
        @media (min-width: @screen-md-min) {
            .swatch-attribute {
                &.visual-swatch {
                    .image.selected {
                        margin-left: 2px;
                    }
                }
            }
        }
        */
}
.catalog-product-view .product-options-wrapper .swatch-opt {
  overflow: visible;
}
.catalog-product-view .product-options-wrapper .qty-wrapper .bootstrap-select.qty-select .bs-caret .caret {
  border: none;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  top: 20%;
  right: 1.5em;
}
.catalog-product-view .product-options-wrapper .qty-wrapper .bootstrap-select.qty-select .bs-caret .caret:before {
  content: "\f106";
}
.catalog-product-view .product-options-wrapper .qty-wrapper .bootstrap-select.qty-select .bs-caret .caret:after {
  margin-top: -0.5em;
  content: "\f107";
  display: block;
}
.catalog-product-view .related,
.catalog-product-view .upsell {
  margin-top: 50px;
}
.catalog-product-view .product-details h3,
.catalog-product-view .related h3,
.catalog-product-view .upsell h3 {
  text-transform: uppercase;
  color: #a42346;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .catalog-product-view .product-details .right {
    margin-top: 25px;
  }
}
.catalog-product-view .product-details ul {
  padding-left: 10px;
}
.catalog-product-view .product-details ul li {
  list-style-type: none;
}
.catalog-product-view .product-details ul li:before {
  content: '- ';
  margin-left: -10px;
}
.catalog-product-view .product-details ul li img {
  height: 38px;
  margin-right: 15px;
}
.products-grid .infinite-scroll-next {
  float: left;
}
.products-grid .item {
  font-family: 'Merriweather Sans', sans-serif;
}
.products-grid .item .product-item-photo-wrapper {
  overflow: hidden;
  position: relative;
}
.products-grid .item .product-item-photo-wrapper .badger {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  text-align: center;
  border-bottom: 30px solid #009640;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  height: 0;
  width: 150px;
  font-size: 0.8em;
  left: -21px;
  top: 39px;
  color: white;
  font-weight: bold;
}
@media (max-width: 991px) {
  .products-grid .item .product-item-photo-wrapper .product-image-wrapper {
    display: block;
    text-align: center;
  }
  .products-grid .item .product-item-photo-wrapper .product-image-wrapper .img-responsive {
    display: inline;
  }
}
.products-grid .item .product-item-info {
  background-color: white;
  border-radius: 4px;
}
.products-grid .item .price-final_price {
  text-align: center;
  font-size: 22px;
  font-weight: normal;
  line-height: 1.6em;
}
.products-grid .item .price-final_price .default {
  color: #aaa;
  text-decoration: line-through #a42346;
  font-size: 18px;
}
.products-grid .item .product-item-link {
  font-size: 16px;
  text-decoration: none;
  color: #009640;
  display: block;
}
.products-grid .item .product-item-color {
  display: block;
  font-size: 12px;
  line-height: 1.3em;
}
.products-grid .item .product-item-name {
  text-align: center;
  display: block;
  font-weight: normal;
}
.products-grid .product-item-details {
  background-color: #F0F0F0;
  margin: 2px;
  padding: 5px;
}
.data.table.totals {
  font-size: 16.2px;
  line-height: 1.4em;
  font-family: 'Source Sans Pro', sans-serif;
  color: #555555;
}
.data.table.totals caption {
  display: none;
}
.data.table.totals th,
.data.table.totals td {
  border: none;
  text-align: right;
  padding: 0;
}
.data.table.totals th {
  background-color: transparent;
  font-weight: normal;
}
.data.table.totals tr.grand.totals td,
.data.table.totals tr.grand.totals th {
  padding-top: 15px;
}
.checkout-cart-index .cart-totals-wrapper,
.checkout-cart-index .block-discount-wrapper,
.checkout-cart-index .cart-table-items,
.checkout-cart-index .cart-table-header-wrapper,
.checkout-cart-index .checkout-methods-item-wrapper {
  background-color: #e6e6e6;
}
.checkout-cart-index .cart-table-items .item-description {
  font-size: 16.2px;
}
.checkout-cart-index .grand.totals .price {
  color: #009640;
}
.checkout-cart-index .data.table.totals td {
  padding-left: 20px;
}
.checkout-cart-index #discount-coupon-form .actions-toolbar {
  padding-top: 20px;
}
.checkout-cart-index #discount-coupon-form .actions-toolbar button {
  float: right;
}
.checkout-cart-index .cart-table-header-wrapper {
  padding-top: 50px;
  font-size: 19.44px;
}
.checkout-cart-index .checkout-methods-item-wrapper {
  padding-bottom: 150px;
}
.checkout-cart-index .table-wrapper table .price,
.checkout-cart-index .cart-price .price {
  font-weight: bold;
  font-size: 19.44px;
}
.checkout-cart-index #main {
  margin-bottom: 0px;
}
.checkout-cart-index .paypal.checkout.paypal-logo {
  display: none;
}
.checkout-cart-index .cart.main.actions .btn-shop {
  float: right;
}
.checkout-cart-index .cart-totals-wrapper {
  padding-top: 30px;
}
.checkout-cart-index .payment-option.opc-payment-additional.discount-code,
.checkout-cart-index .action.multicheckout {
  display: none;
}
.checkout-cart-index .checkout-methods-items {
  padding: 0;
  margin: 0;
}
.checkout-cart-index .checkout-methods-items li {
  list-style-type: none;
  display: inline-block;
  float: right;
}
.checkout-cart-index .container.cart.main.actions {
  margin-bottom: 30px;
  font-size: 16.2px;
  line-height: 1.4em;
  font-family: 'Source Sans Pro', sans-serif;
  color: #555555;
}
.checkout-cart-index .cart-table-header {
  color: #a42346;
}
.checkout-cart-index .cart-table-header .qty {
  text-align: center;
}
.checkout-cart-index .cart-table-header .price span,
.checkout-cart-index .cart-table-header .subtotal span {
  float: right;
}
.checkout-cart-index .cart-table-items .product-item-name {
  display: block;
}
.checkout-cart-index .cart-table-items dl {
  overflow: hidden;
  margin-bottom: 5px;
}
.checkout-cart-index .cart-table-items dt,
.checkout-cart-index .cart-table-items dd {
  float: left;
}
.checkout-cart-index .cart-table-items dt,
.checkout-cart-index .cart-table-items dd,
.checkout-cart-index .cart-table-items a {
  font-size: 16.2px;
  line-height: 1.4em;
  font-family: 'Source Sans Pro', sans-serif;
  color: #555555;
}
.checkout-cart-index .cart-table-items dt {
  clear: both;
}
.checkout-cart-index .cart-table-items .qty {
  font-size: 16.2px;
  line-height: 1.4em;
  font-family: 'Source Sans Pro', sans-serif;
  color: #555555;
}
.checkout-cart-index .cart-table-items .price,
.checkout-cart-index .cart-table-items .subtotal {
  font-weight: bold;
  font-size: 19.44px;
  color: #3a3a3a;
}
.checkout-cart-index .cart-table-items .image {
  padding-top: 15px;
  padding-bottom: 15px;
}
.checkout-cart-index .cart-table-items .image .product-image-photo {
  border-radius: 6px;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  border-color: #F0F0F0;
  overflow: hidden;
}
.checkout-cart-index .cart-table-items .price,
.checkout-cart-index .cart-table-items .qty,
.checkout-cart-index .cart-table-items .subtotal,
.checkout-cart-index .cart-table-items .description {
  padding-top: 30px;
  padding-bottom: 30px;
}
.checkout-cart-index .cart-table-items .price span {
  float: right;
}
.checkout-cart-index .cart-table-items .price .cart-price .price {
  margin: 0;
  padding: 0;
}
.checkout-cart-index .cart-table-items .qty {
  text-align: center;
}
.checkout-cart-index .cart-table-items .qty .txt {
  margin-bottom: 15px;
  display: block;
}
.checkout-cart-index .cart-table-items .qty a {
  display: block;
  clear: both;
}
.checkout-cart-index .cart-table-items .description h6,
.checkout-cart-index .cart-table-items .description h6 a {
  font-family: 'Merriweather Sans', sans-serif;
}
.checkout-cart-index .cart-table-items .subtotal span {
  float: right;
}
.checkout-cart-index .cart-table-items .subtotal .cart-price .price {
  margin: 0;
  padding: 0;
}
.checkout-cart-index .cart-table-items .action:before {
  font-family: FontAwesome;
}
.checkout-cart-index .cart-table-items .action.action-delete:before {
  content: "\f00d";
}
.checkout-cart-index .cart-table-items .action.action-edit:before {
  content: "\f044";
}
.checkout-cart-index .cart-table-items .item {
  border-bottom: 1px solid #bcbcbc;
}
.checkout-cart-index .cart-table-items .item .item {
  border-bottom: none;
}
.checkout-cart-index .cart-table-items .item .item.message {
  font-size: 16.2px;
  line-height: 1.4em;
  font-weight: bold;
  margin-top: 15px;
}
.checkout-cart-index .cart-table-items .item .item.message.error {
  color: #a42346;
}
.checkout-cart-index .cart-table-items a {
  text-decoration: none;
}
@media screen and (max-width: 991px) {
  .checkout-cart-index .navbar-wrapper.component {
    margin-bottom: 0;
  }
  .checkout-cart-index .page-title-wrapper h1 {
    margin: 15px 0;
  }
  .checkout-cart-index .cart.main.actions button[name='update_cart_action'] {
    float: left;
    margin-top: 15px;
  }
  .checkout-cart-index .row.cart-table-header {
    display: none;
  }
  .checkout-cart-index .cart-table-items .description {
    padding-top: 0;
  }
}
.checkout-index-index #main {
  display: none;
}
.checkout-index-index .amount .price {
  font-weight: bold;
  font-size: 19.44px;
}
.checkout-index-index .amount strong .price {
  font-weight: bold;
  font-size: 19.44px;
  color: #009640;
}
.checkout-index-index .cart-price .price {
  font-weight: bold;
  font-size: 19.44px;
  color: #3a3a3a;
}
.checkout-index-index .loading-mask {
  min-height: 560px;
  width: 1170px;
}
.checkout-index-index .message.message-error.error {
  color: #a42346;
  font-weight: bold;
}
.checkout-index-index #checkout {
  min-height: 500px;
  position: relative;
}
.checkout-index-index .opc-block-shipping-information {
  display: none;
}
.checkout-index-index #opc-sidebar {
  min-height: 300px;
}
.checkout-index-index .control._with-tooltip {
  margin-bottom: 15px;
}
.checkout-index-index .btn.dropdown-toggle.btn-shop-white {
  margin-bottom: 0;
}
.checkout-index-index ul.opc-progress-bar {
  list-style-type: none;
  padding: 0;
}
.checkout-index-index ul.opc-progress-bar li {
  display: inline-block;
  cursor: pointer;
}
.checkout-index-index ul.opc-progress-bar li span {
  color: #a42346;
}
.checkout-index-index ul.opc-progress-bar li.shipping:before {
  font: normal normal normal 14px/1 FontAwesome;
}
.checkout-index-index ul.opc-progress-bar li.shipping:before {
  content: '\f060';
  color: #a42346;
}
.checkout-index-index #opc-shipping_method .checkout-shipping-method .step-title,
.checkout-index-index #opc-shipping_method .checkout-shipping-method .shipping-policy-block {
  display: none;
}
.checkout-index-index #opc-shipping_method #co-shipping-method-form #checkout-shipping-method-load {
  display: none;
}
.checkout-index-index .grey-background {
  background: #e6e6e6;
  padding-bottom: 150px;
  position: relative;
}
.checkout-index-index .grey-background .container {
  position: relative;
}
.checkout-index-index .totals.shipping.excl .mark .label {
  display: none;
}
.checkout-index-index h5 {
  margin-top: 60px;
  margin-bottom: 30px;
}
.checkout-index-index aside.opc-sidebar .modal-header {
  display: none;
}
.checkout-index-index aside.opc-sidebar .modal-content {
  box-shadow: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  background-clip: inherit;
}
.checkout-index-index ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.checkout-index-index .payment-method {
  min-height: 45px;
  overflow: hidden;
}
.checkout-index-index .payment-method input#banktransfer + label:before,
.checkout-index-index .payment-method input#cryozonic_stripe + label:before {
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}
.checkout-index-index .payment-method input#banktransfer + label span {
  margin-left: 75px;
}
.checkout-index-index .payment-method input#banktransfer + label:before {
  width: 65px;
  height: 34px;
  content: '';
  background-image: url(/shop/static/frontend/Bootstrap/gea-w4tler/de_DE/Gea_Frontend/images/banktransfer.png);
}
.checkout-index-index .payment-method input#cryozonic_stripe + label span {
  margin-left: 132px;
}
.checkout-index-index .payment-method input#cryozonic_stripe + label:before {
  width: 120px;
  height: 35px;
  margin-right: 10px;
  content: '';
  background-image: url(/shop/static/frontend/Bootstrap/gea-w4tler/de_DE/Gea_Frontend/images/visa.png), url(/shop/static/frontend/Bootstrap/gea-w4tler/de_DE/Gea_Frontend/images/mastercard.png);
  background-position: left bottom, right bottom;
}
.checkout-index-index .payment-method .payment-method-title {
  font: 'Merriweather Sans', sans-serif;
}
.checkout-index-index .payment-method .payment-method-content p {
  margin: 15px 0;
}
.checkout-index-index .payment-method img {
  border: 1px solid #ccc;
  float: left;
  margin-right: 10px;
  cursor: pointer;
}
.checkout-index-index .payment-method img.payment-icon {
  border: none;
  height: 35px;
}
.checkout-index-index .checkout-billing-address {
  margin-top: 20px;
}
.checkout-index-index .checkout-billing-address .action-edit-address {
  margin-top: 15px;
}
.checkout-index-index .action.add-address {
  margin-top: 15px;
  display: none;
}
.checkout-index-index .shipping-address-item {
  cursor: pointer;
  margin-bottom: 15px;
}
.checkout-index-index .shipping-address-item .link:before {
  content: '\f0a4';
  font: normal normal normal 14px/1 FontAwesome;
}
.checkout-index-index .shipping-address-item:hover .inner {
  border-color: #606060;
}
.checkout-index-index .shipping-address-item.selected-item .inner {
  border-color: #a42346;
}
.checkout-index-index .shipping-address-item.selected-item .inner .link:before {
  content: '\f164';
}
.checkout-index-index .shipping-address-item .inner {
  border: 1px solid #bcbcbc;
  padding: 15px;
}
.checkout-index-index .billing-address-details {
  padding-left: 15px;
}
.checkout-index-index .shipping-address-items,
.checkout-index-index .payment-method-content,
.checkout-index-index .control._with-tooltip,
.checkout-index-index legend.label,
.checkout-index-index .items-in-cart .title,
.checkout-index-index label,
.checkout-index-index .label {
  font-size: 16.2px;
  line-height: 1.4em;
  font-family: 'Source Sans Pro', sans-serif;
  color: #555555;
  padding: 0;
}
.checkout-index-index .btn.btn-shop-white {
  color: #3a3a3a;
}
.checkout-index-index legend.label {
  text-align: left;
  border: none;
  margin-bottom: 4px;
}
.checkout-index-index .actions-toolbar {
  margin: 15px 0;
}
.checkout-index-index .step-title {
  color: #3a3a3a;
  font-family: 'Merriweather Sans', sans-serif;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 11px;
  margin-bottom: 11px;
  font-size: 16px;
}
.checkout-index-index .payment-method-title input {
  display: none;
}
.checkout-index-index .field-tooltip,
.checkout-index-index .note {
  display: block;
}
.checkout-index-index ol.minicart-items {
  overflow: hidden;
  margin: 15px 0;
}
.checkout-index-index ol.minicart-items li,
.checkout-index-index ol.minicart-items div {
  display: block;
  overflow: hidden;
}
.checkout-index-index ol.minicart-items li {
  border-top: 1px solid #bcbcbc;
  padding: 15px 0;
}
.checkout-index-index ol.minicart-items li:last-child {
  border-bottom: 1px solid #bcbcbc;
}
.checkout-index-index ol.minicart-items .product-image-container {
  float: left;
  clear: both;
  width: 27%;
}
.checkout-index-index ol.minicart-items .product-image-container img {
  border-radius: 6px;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  border-color: #F0F0F0;
  overflow: hidden;
}
.checkout-index-index ol.minicart-items .product-item-details {
  float: left;
  width: 73%;
  padding-left: 15px;
  font-size: 16.2px;
  line-height: 1.4em;
  font-family: 'Source Sans Pro', sans-serif;
  color: #555555;
}
.checkout-index-index ol.minicart-items .product-item-details h5.product-item-name {
  float: left;
  display: inline-block;
  margin-top: 15px;
  margin-bottom: 11px;
}
.checkout-index-index ol.minicart-items .product-item-details .subtotal {
  margin-top: 11px;
  float: right;
}
.checkout-index-index ol.minicart-items .product-item-details dl {
  overflow: hidden;
  font-size: 14.256px;
}
.checkout-index-index ol.minicart-items .product-item-details dl dt {
  float: left;
  clear: both;
}
.checkout-index-index ol.minicart-items .product-item-details dl dt:after {
  content: ":\00a0\00a0";
}
.checkout-index-index ol.minicart-items .product-item-details dl dd {
  float: left;
}
.checkout-index-index ol.minicart-items .product-item-details .product.options .content {
  font-size: 14.256px;
}
.checkout-index-index #checkout-payment-method-load {
  margin-bottom: 30px;
}
.checkout-index-index .payment-method {
  padding: 5px 0;
  border-top: 1px solid #bcbcbc;
}
.checkout-index-index .payment-method:last-child {
  border-bottom: 1px solid #bcbcbc;
}
.checkout-index-index .payment-method .bootstrap-select.select {
  width: 100%;
}
.checkout-index-index .payment-method .checkout-agreements input {
  position: absolute;
  margin-top: 6px;
}
.checkout-index-index .payment-method .checkout-agreements label {
  margin-left: 25px;
}
.checkout-index-index .payment-method .checkout-agreements .checkout-agreement-infolink {
  cursor: pointer;
  margin-left: 5px;
  color: #a42346;
}
.checkout-index-index .payment-method .checkout-agreements .text h2 {
  font-size: 16.2px;
}
.checkout-index-index .payment-method .checkout-agreements .text p,
.checkout-index-index .payment-method .checkout-agreements .text ul {
  font-size: 14.256px;
}
.checkout-index-index .payment-method .checkout-agreements,
.checkout-index-index .payment-method .billing-address-same-as-shipping-block {
  padding: 15px 5px;
}
.checkout-index-index .payment-method label button.action {
  color: #3a3a3a;
  border-width: 0!important;
  padding: 0;
  margin-bottom: 0!important;
}
.checkout-index-index .payment-method .payment-method-title {
  cursor: pointer;
}
.checkout-index-index .payment-method .payment-method-title label {
  cursor: pointer;
}
.checkout-index-index .payment-method .payment-method-content {
  display: none;
}
.checkout-index-index .payment-method._active .payment-method-content {
  display: block;
}
@media screen and (max-width: 991px) {
  .checkout-index-index .navbar-wrapper.component {
    margin-bottom: 0;
  }
  .checkout-index-index .page-title-wrapper h1 {
    margin: 15px 0;
  }
}
.checkout-onepage-success .main-content {
  margin-bottom: 60px;
}
body.ajax-loading .loading-mask {
  margin: 0 auto;
}
.loading-mask {
  background-color: rgba(0, 0, 0, 0.2);
  left: 0;
}
.fotorama__spinner {
  background-color: white;
  display: none;
}
.loading-mask,
.fotorama__spinner {
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.loading-mask .loader,
.fotorama__spinner .loader {
  z-index: 1100;
  font-size: 20px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  text-indent: -9999em;
  -webkit-animation: load4 1.3s infinite linear;
  animation: load4 1.3s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.loading-mask .loader {
  top: 50%;
  left: 50%;
  position: fixed;
}
.fotorama__spinner .loader {
  left: 50%;
  position: absolute;
  top: 50%;
}
.products.list.items .loader {
  left: 57%;
}
.fotorama__spinner.fotorama__spinner--show {
  display: block;
}
@-webkit-keyframes load4 {
  0%,
  100% {
    box-shadow: 0 -3em 0 0.2em #a42346, 2em -2em 0 0em #a42346, 3em 0 0 -1em #a42346, 2em 2em 0 -1em #a42346, 0 3em 0 -1em #a42346, -2em 2em 0 -1em #a42346, -3em 0 0 -1em #a42346, -2em -2em 0 0 #a42346;
  }
  12.5% {
    box-shadow: 0 -3em 0 0 #a42346, 2em -2em 0 0.2em #a42346, 3em 0 0 0 #a42346, 2em 2em 0 -1em #a42346, 0 3em 0 -1em #a42346, -2em 2em 0 -1em #a42346, -3em 0 0 -1em #a42346, -2em -2em 0 -1em #a42346;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em #a42346, 2em -2em 0 0 #a42346, 3em 0 0 0.2em #a42346, 2em 2em 0 0 #a42346, 0 3em 0 -1em #a42346, -2em 2em 0 -1em #a42346, -3em 0 0 -1em #a42346, -2em -2em 0 -1em #a42346;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em #a42346, 2em -2em 0 -1em #a42346, 3em 0em 0 0 #a42346, 2em 2em 0 0.2em #a42346, 0 3em 0 0em #a42346, -2em 2em 0 -1em #a42346, -3em 0em 0 -1em #a42346, -2em -2em 0 -1em #a42346;
  }
  50% {
    box-shadow: 0 -3em 0 -1em #a42346, 2em -2em 0 -1em #a42346, 3em 0 0 -1em #a42346, 2em 2em 0 0em #a42346, 0 3em 0 0.2em #a42346, -2em 2em 0 0 #a42346, -3em 0em 0 -1em #a42346, -2em -2em 0 -1em #a42346;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em #a42346, 2em -2em 0 -1em #a42346, 3em 0 0 -1em #a42346, 2em 2em 0 -1em #a42346, 0 3em 0 0 #a42346, -2em 2em 0 0.2em #a42346, -3em 0 0 0 #a42346, -2em -2em 0 -1em #a42346;
  }
  75% {
    box-shadow: 0em -3em 0 -1em #a42346, 2em -2em 0 -1em #a42346, 3em 0em 0 -1em #a42346, 2em 2em 0 -1em #a42346, 0 3em 0 -1em #a42346, -2em 2em 0 0 #a42346, -3em 0em 0 0.2em #a42346, -2em -2em 0 0 #a42346;
  }
  87.5% {
    box-shadow: 0em -3em 0 0 #a42346, 2em -2em 0 -1em #a42346, 3em 0 0 -1em #a42346, 2em 2em 0 -1em #a42346, 0 3em 0 -1em #a42346, -2em 2em 0 0 #a42346, -3em 0em 0 0 #a42346, -2em -2em 0 0.2em #a42346;
  }
}
@keyframes load4 {
  0%,
  100% {
    box-shadow: 0 -3em 0 0.2em #a42346, 2em -2em 0 0em #a42346, 3em 0 0 -1em #a42346, 2em 2em 0 -1em #a42346, 0 3em 0 -1em #a42346, -2em 2em 0 -1em #a42346, -3em 0 0 -1em #a42346, -2em -2em 0 0 #a42346;
  }
  12.5% {
    box-shadow: 0 -3em 0 0 #a42346, 2em -2em 0 0.2em #a42346, 3em 0 0 0 #a42346, 2em 2em 0 -1em #a42346, 0 3em 0 -1em #a42346, -2em 2em 0 -1em #a42346, -3em 0 0 -1em #a42346, -2em -2em 0 -1em #a42346;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em #a42346, 2em -2em 0 0 #a42346, 3em 0 0 0.2em #a42346, 2em 2em 0 0 #a42346, 0 3em 0 -1em #a42346, -2em 2em 0 -1em #a42346, -3em 0 0 -1em #a42346, -2em -2em 0 -1em #a42346;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em #a42346, 2em -2em 0 -1em #a42346, 3em 0em 0 0 #a42346, 2em 2em 0 0.2em #a42346, 0 3em 0 0em #a42346, -2em 2em 0 -1em #a42346, -3em 0em 0 -1em #a42346, -2em -2em 0 -1em #a42346;
  }
  50% {
    box-shadow: 0 -3em 0 -1em #a42346, 2em -2em 0 -1em #a42346, 3em 0 0 -1em #a42346, 2em 2em 0 0em #a42346, 0 3em 0 0.2em #a42346, -2em 2em 0 0 #a42346, -3em 0em 0 -1em #a42346, -2em -2em 0 -1em #a42346;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em #a42346, 2em -2em 0 -1em #a42346, 3em 0 0 -1em #a42346, 2em 2em 0 -1em #a42346, 0 3em 0 0 #a42346, -2em 2em 0 0.2em #a42346, -3em 0 0 0 #a42346, -2em -2em 0 -1em #a42346;
  }
  75% {
    box-shadow: 0em -3em 0 -1em #a42346, 2em -2em 0 -1em #a42346, 3em 0em 0 -1em #a42346, 2em 2em 0 -1em #a42346, 0 3em 0 -1em #a42346, -2em 2em 0 0 #a42346, -3em 0em 0 0.2em #a42346, -2em -2em 0 0 #a42346;
  }
  87.5% {
    box-shadow: 0em -3em 0 0 #a42346, 2em -2em 0 -1em #a42346, 3em 0 0 -1em #a42346, 2em 2em 0 -1em #a42346, 0 3em 0 -1em #a42346, -2em 2em 0 0 #a42346, -3em 0em 0 0 #a42346, -2em -2em 0 0.2em #a42346;
  }
}
.main-content .panel {
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.main-content .panel .panel-heading {
  background-color: transparent;
  padding: 0;
  border-bottom: none;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.main-content .panel .panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  color: inherit;
}
.password-strength-meter {
  padding: 5px;
}
.password-strength-meter-4 .password-strength-meter {
  color: green;
}
.password-strength-meter-3 .password-strength-meter {
  color: darkcyan;
}
.password-strength-meter-2 .password-strength-meter {
  color: coral;
}
.password-strength-meter-1 .password-strength-meter {
  color: red;
}
.customer-account-createpassword label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .navbar-wrapper.component {
    margin-bottom: 0;
  }
  .navbar-wrapper.component .shop-menu-wrapper {
    width: 100%;
    overflow: hidden;
  }
  .navbar-wrapper.component .shop-menu-wrapper .clickable-overlay {
    position: absolute;
    padding: 0px 10px;
    background-color: #646464;
    cursor: pointer;
  }
  .navbar-wrapper.component .shop-menu-wrapper .clickable-overlay.right {
    right: 0;
  }
  .navbar-wrapper.component .shop-menu-wrapper .clickable-overlay.right:after {
    content: '»';
  }
  .navbar-wrapper.component .shop-menu-wrapper .clickable-overlay.right:before {
    display: hidden;
  }
  .navbar-wrapper.component .shop-menu-wrapper .clickable-overlay.left {
    left: 0;
  }
  .navbar-wrapper.component .shop-menu-wrapper .clickable-overlay.left:after {
    display: hidden;
  }
  .navbar-wrapper.component .shop-menu-wrapper .clickable-overlay.left:before {
    content: '«';
  }
  .navbar-wrapper.component .shop-menu-wrapper ul.main-categories {
    white-space: nowrap;
    float: left;
    touch-action: none;
  }
}
.navbar-wrapper .shop-menu-container-wrapper {
  background-color: #4A4A4A;
  color: white;
}
.navbar-wrapper .shop-menu-container-wrapper .top-links-wrapper ul.navbar-top {
  float: right;
}
.navbar-wrapper .shop-menu-container-wrapper .top-links-wrapper ul.navbar-top li {
  margin: 0;
}
.navbar-wrapper .shop-menu-container-wrapper .top-links-wrapper ul.navbar-top li:before {
  content: '\00a0\00a0|\00a0';
}
.navbar-wrapper .shop-menu-container-wrapper .top-links-wrapper ul.navbar-top li:last-child:before,
.navbar-wrapper .shop-menu-container-wrapper .top-links-wrapper ul.navbar-top li:first-child:before {
  content: '' !important;
}
@media (max-width: 991px) {
  .navbar-wrapper .shop-menu-container-wrapper .top-links-wrapper ul.navbar-top li:nth-child(2),
  .navbar-wrapper .shop-menu-container-wrapper .top-links-wrapper ul.navbar-top li:nth-child(3),
  .navbar-wrapper .shop-menu-container-wrapper .top-links-wrapper ul.navbar-top li:nth-child(4) {
    display: none;
  }
}
.navbar-wrapper .shop-menu-container-wrapper .shop-menu-wrapper {
  display: block;
  float: left;
  font-size: 18px;
}
.navbar-wrapper .shop-menu-container-wrapper .shop-menu-wrapper ul.main-categories {
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.navbar-wrapper .shop-menu-container-wrapper .shop-menu-wrapper ul.main-categories li {
  position: relative;
  padding: 3px 0px 3px 15px;
  display: inline-block;
}
.navbar-wrapper .shop-menu-container-wrapper .shop-menu-wrapper ul.main-categories li a {
  height: 15px;
  line-height: 14px;
  display: inline-block;
  border-right: 2px solid white;
  padding-right: 15px;
}
.navbar-wrapper .shop-menu-container-wrapper .shop-menu-wrapper ul.main-categories li:last-child a {
  border-right: none;
}
.navbar-wrapper .shop-menu-container-wrapper .shop-menu-wrapper ul.main-categories li:first-child:hover {
  border-left: none;
  margin-left: 0;
}
.navbar-wrapper .shop-menu-container-wrapper .shop-menu-wrapper ul.main-categories li:first-child.active {
  border-left: none;
  margin-left: 0;
}
.navbar-wrapper .shop-menu-container-wrapper .shop-menu-wrapper ul.main-categories li:hover,
.navbar-wrapper .shop-menu-container-wrapper .shop-menu-wrapper ul.main-categories li.active {
  border-left: 2px solid #009640;
  margin-left: -2px;
  background-color: #009640;
}
.navbar-wrapper .shop-menu-container-wrapper .shop-menu-wrapper ul.main-categories li:hover a,
.navbar-wrapper .shop-menu-container-wrapper .shop-menu-wrapper ul.main-categories li.active a {
  text-decoration: none;
  border-right: 2px solid #009640;
}
.navbar-wrapper ul.navbar-top,
.navbar-wrapper ul.main-categories {
  float: right;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
.navbar-wrapper ul.navbar-top li[data-block="minicart"],
.navbar-wrapper ul.main-categories li[data-block="minicart"] {
  display: inline-block;
}
.navbar-wrapper ul.navbar-top li,
.navbar-wrapper ul.main-categories li {
  height: auto;
  padding: 0;
}
.navbar-wrapper ul.navbar-top li.minicart,
.navbar-wrapper ul.main-categories li.minicart {
  display: inline-block;
}
.navbar-wrapper ul.navbar-top li.minicart a:hover,
.navbar-wrapper ul.main-categories li.minicart a:hover {
  text-decoration: none;
}
.navbar-wrapper ul.navbar-top li a,
.navbar-wrapper ul.main-categories li a {
  color: white;
  text-decoration: none;
}
.navbar-wrapper ul.navbar-top li a:hover,
.navbar-wrapper ul.main-categories li a:hover {
  text-decoration: underline;
  color: white;
}
.navbar-wrapper ul.navbar-top li a.cart .badge,
.navbar-wrapper ul.main-categories li a.cart .badge {
  background-color: white;
  color: #009640;
  font-size: inherit;
  min-width: 14px;
  padding: 3px 7px;
}
.store-switcher {
  float: right;
}
.store-switcher .dropdown button.dropdown-toggle {
  border: none;
  font-size: 12px;
  background-color: #4A4A4A;
  margin: 0;
  padding: 0;
}
.store-switcher .dropdown button.dropdown-toggle::after {
  content: '\00a0\00a0|\00a0\00a0';
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: white;
}
.store-switcher .dropdown ul.dropdown-menu {
  min-width: auto;
  width: 40px;
  font-size: 12px;
  border: none;
  border-radius: 0;
}
.store-switcher .dropdown ul.dropdown-menu li a {
  padding: 3px 10px;
  text-decoration: none;
  text-transform: uppercase;
}
.store-switcher .dropdown ul.dropdown-menu li a:hover {
  color: #a42346;
  text-decoration: underline;
  background-color: white;
}
#magehooks-extended-search-popup {
  display: none;
  position: absolute;
  width: 100%;
  z-index: 99999;
  top: 30px;
}
#magehooks-extended-search-popup .container .content {
  margin-left: 33%;
  padding: 10px 0;
  position: relative;
  background-color: white;
}
#magehooks-extended-search-popup .container .content input {
  width: 100%;
  padding: 0 0 0 10px;
  font-size: 18px;
}
.navbar-wrapper .navbar .container .navbar-container-inner .navbar-header-right .navbar-search #btn-nav-extended-search .icon-search {
  width: 32px;
  height: 32px;
  fill: #333333;
  stroke: #333333;
  -webkit-transition-property: fill, stroke;
  transition-property: fill, stroke;
  -webkit-transition-duration: 100ms;
  transition-duration: 100ms;
}
.navbar-wrapper .navbar .container .navbar-container-inner .navbar-header-right .navbar-search #btn-nav-extended-search {
  cursor: pointer;
  vertical-align: middle;
  margin: 16px 35px 0 15px;
  padding: 0;
  background-color: transparent;
  border: none;
}
.magehooks-extendedsearch i.clear-results {
  position: absolute;
  right: 10px;
  top: 16px;
  cursor: pointer;
}
.magehooks-extendedsearch .img-title-wrapper {
  padding: 5px;
  float: left;
  position: relative;
}
.magehooks-extendedsearch .img-title-wrapper img {
  max-width: 100%;
}
.magehooks-extendedsearch .img-title-wrapper strong {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 10px;
  background-color: rgba(180, 180, 180, 0.6);
  display: block;
  width: 100%;
}
.magehooks-extendedsearch .magehooks-extendedsearch-results {
  background-color: white;
  overflow: hidden;
}
.magehooks-extendedsearch .magehooks-extendedsearch-results a {
  text-decoration: none;
  color: #222;
  display: block;
}
.magehooks-extendedsearch .magehooks-extendedsearch-results .extended-search-link {
  display: block;
  padding: 10px;
}
.magehooks-extendedsearch .magehooks-extendedsearch-results .suggestions-wrapper {
  padding: 10px 10px 0 10px;
  overflow: hidden;
}
.magehooks-extendedsearch .magehooks-extendedsearch-results span.suggestions-label {
  font-weight: bold;
  display: inline-block;
  float: left;
}
.magehooks-extendedsearch .magehooks-extendedsearch-results ul {
  padding-inline-start: 0px;
  list-style-type: none;
  margin-top: 0;
  margin-bottom: 0;
}
.magehooks-extendedsearch .magehooks-extendedsearch-results ul li {
  cursor: pointer;
  float: left;
}
.magehooks-extendedsearch .magehooks-extendedsearch-results ul.suggestions-list {
  display: inline-block;
  clear: none;
  float: left;
}
.magehooks-extendedsearch .magehooks-extendedsearch-results ul.suggestions-list li {
  margin-left: 5px;
}
.magehooks-extendedsearch .magehooks-extendedsearch-results ul.documents {
  margin-top: 10px;
}
.magehooks-extendedsearch .magehooks-extendedsearch-results ul.documents li {
  border: 1px solid #ccc;
  break-inside: avoid;
  overflow: hidden;
}
.magehooks-extendedsearch .magehooks-extendedsearch-results ul.documents li:hover,
.magehooks-extendedsearch .magehooks-extendedsearch-results ul.documents li:focus {
  border: 1px solid #999;
}
.magehooks-extendedsearch .magehooks-extendedsearch-results ul.documents li .text {
  float: left;
  width: calc(60% - 20px);
  margin: 10px;
}
.magehooks-extendedsearch .magehooks-extendedsearch-results ul.documents li.cmspage i {
  float: left;
  margin-top: 4px;
  margin-right: 10px;
}
.magehooks-extendedsearch .magehooks-extendedsearch-results ul.documents li.category,
.magehooks-extendedsearch .magehooks-extendedsearch-results ul.documents li.cmspage {
  background-size: cover;
}
.magehooks-extendedsearch .magehooks-extendedsearch-results ul.documents li.category .img-title-wrapper,
.magehooks-extendedsearch .magehooks-extendedsearch-results ul.documents li.cmspage .img-title-wrapper {
  padding: 0px;
  width: 100%;
}
.magehooks-extendedsearch .magehooks-extendedsearch-results ul.documents li.category .img-title-wrapper strong,
.magehooks-extendedsearch .magehooks-extendedsearch-results ul.documents li.cmspage .img-title-wrapper strong {
  position: relative;
  padding: 10px;
}
.magehooks-extendedsearch .magehooks-extendedsearch-results ul.documents li.category .text,
.magehooks-extendedsearch .magehooks-extendedsearch-results ul.documents li.cmspage .text {
  width: calc(100% - 20px);
  background-color: rgba(255, 255, 255, 0.8);
  margin: 0;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  #magehooks-extended-search-popup .container .content {
    margin-left: 0;
  }
}
@media screen and (max-width: 639px) {
  .magehooks-extendedsearch ul.documents {
    padding-bottom: 10px;
    overflow: hidden;
    column-count: 2;
    column-gap: 10px;
    padding: 0 10px;
  }
  .magehooks-extendedsearch ul.documents li {
    width: 100%;
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 640px) {
  .magehooks-extendedsearch ul.documents {
    padding-bottom: 10px;
    overflow: hidden;
    column-count: 3;
    column-gap: 10px;
    padding: 0 10px;
  }
  .magehooks-extendedsearch ul.documents li {
    width: 100%;
    margin: 0 0 10px;
  }
}
@media screen and (max-width: 767px) {
  #btn-nav-extended-search-mobile {
    float: right;
    border: none;
    background: transparent;
    margin-top: 5px;
  }
  #magehooks-extended-search-popup .container .content {
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  #btn-nav-extended-search-mobile {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  /*
    .magehooks-extendedsearch {
        ul {
            &.documents {
                li {
                    overflow: hidden;
                    width: ~"calc( 100% - 22px )";
                    float: left;
                    margin: 10px;
                }
            }
        }
    }
    */
}
@media screen and (min-width: 1200px) {
  .magehooks-extendedsearch input.magehooks-extendedsearch-sword[type="text"] {
    margin: 0;
  }
  .magehooks-extendedsearch li.category a,
  .magehooks-extendedsearch li.cmspage a {
    font-size: 11px;
  }
  .magehooks-extendedsearch li.category a .text,
  .magehooks-extendedsearch li.cmspage a .text {
    font-size: 11px;
  }
  .magehooks-extendedsearch a {
    font-size: 11px;
  }
  .magehooks-extendedsearch ul {
    clear: both;
  }
}
#product-review-container {
  font-size: 16.2px;
  line-height: 1.4em;
  font-family: 'Source Sans Pro', sans-serif;
  color: #555555;
}
#reviews.review-list {
  font-size: 16.2px;
  line-height: 1.4em;
  font-family: 'Source Sans Pro', sans-serif;
  color: #555555;
}
#reviews.review-list h3 {
  overflow: hidden;
}
#reviews.review-list h3 .review_wrap {
  line-height: 40px;
  font-size: 24px;
}
#reviews.review-list .cr {
  float: left;
}
#reviews.review-list .reviews {
  font-weight: bold;
  float: left;
}
#reviews.review-list .review-content {
  clear: both;
}
#reviews.review-list .review-ratings {
  overflow: hidden;
  float: left;
}
#reviews.review-list .review-title {
  font-weight: bold;
  float: left;
  margin: 10px;
}
#reviews.review-list .reviewer {
  margin: 10px 0;
  font-style: italic;
}
#reviews.review-list .items .review-ratings {
  margin: 10px 0;
}
.review_wrap {
  background-color: transparent;
  position: relative;
  overflow: hidden;
  float: left;
  font-size: 16.2px;
  line-height: 1.4em;
  font-family: 'Source Sans Pro', sans-serif;
  color: #555555;
}
.reviews strong {
  color: black;
}
.reviews .reviews-count {
  font-size: 16.2px;
  line-height: 1.4em;
  font-family: 'Source Sans Pro', sans-serif;
  color: #555555;
}
.product-view form {
  clear: both;
}
.reviews .amount {
  float: left;
  line-height: 1.2em;
}
.rating-box .fa-star,
.review_good .fa-star {
  color: #FFE701;
}
.review_good {
  position: absolute;
  top: 0;
  overflow: hidden;
}
.review_good_wrap {
  overflow: hidden;
  white-space: nowrap;
}
.review-field-rating .fa-star,
.review_bad .fa-star {
  color: #555555;
}
.review-field-rating .fa-star.bad,
.product-rating .fa-star.bad {
  color: #555555;
}
.review-field-rating .fa-star.good,
.product-rating .fa-star.good {
  color: #FFE701;
}
.main-review {
  padding: 50px 0;
}
.main-review .review-title {
  margin-bottom: 40px;
}
.main-review .review-title h2 {
  margin: 0;
}
.main-review .review-outside-item {
  padding: 20px 0;
}
.main-review .review-outside-item .info {
  margin-bottom: 30px;
}
.main-review .review-item {
  overflow: hidden;
  margin-bottom: 20px;
}
.main-review .review_info strong {
  color: #343434;
}
@media screen and (min-width: 1200px) {
  .main-review .review_info {
    border-right: 1px solid #CCCCCC;
  }
  .main-review .review_text {
    padding-left: 30px;
    border-left: 1px solid #CCCCCC;
    margin-left: -1px;
  }
}
.main-review .form-horizontal .control-label {
  text-align: left;
}
* {
  outline: none;
  box-shadow: none;
}
body {
  height: 0!important;
}
@media (max-width: 991px) {
  button,
  .btn {
    white-space: nowrap!important;
  }
}
.modals-wrapper {
  display: none;
  /*
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    */
}
.link {
  cursor: pointer;
  color: #a42346;
}
.link:hover {
  text-decoration: underline;
}
.alert.alert-success.alert-dismissible.text-center.fade.in {
  z-index: 10000;
}
.bgimg {
  background-image: linear-gradient(90deg, rgba(167, 205, 182, 0.5), rgba(187, 219, 203, 0.5));
}
footer.footer {
  margin-top: 0px!important;
}
.main {
  overflow: hidden;
  margin-bottom: 100px;
}
.main-content p {
  font-size: 16.2px;
  line-height: 1.4em;
  font-family: 'Source Sans Pro', sans-serif;
  color: #555555;
}
.field-tooltip-content,
.note {
  font-size: 14.256px;
  font-family: 'Source Sans Pro', sans-serif;
}
.mage-error {
  padding: 5px;
  color: #a42346;
  font-size: 14.256px;
  font-family: 'Merriweather Sans', sans-serif;
}
.form-group._error {
  border: 2px #a42346 dotted;
}
.widget-breadcrumb {
  position: relative!important;
}
.widget-breadcrumb ol.breadcrumb {
  background-image: url(../images/paper-texture.png);
}
.vspace-xs {
  margin: 5px 0;
}
.vspace-sm {
  margin: 10px 0;
}
.vspace-md {
  margin: 15px 0;
}
.vspace-lg {
  margin: 20px 0;
}
.vspace-top-xs {
  margin-top: 5px;
}
.vspace-top-sm {
  margin-top: 10px;
}
.vspace-top-md {
  margin-top: 15px;
}
.vspace-top-lg {
  margin-top: 20px;
}
.vspace-bottom-xs {
  margin-bottom: 5px;
}
.vspace-bottom-sm {
  margin-bottom: 10px;
}
.vspace-bottom-md {
  margin-bottom: 15px;
}
.vspace-bottom-lg {
  margin-bottom: 20px;
}
.btn.btn-shop,
button.action {
  background-color: #a42346;
  border-color: #a42346;
  color: white;
  font-size: 16.2px;
}
.btn.btn-shop:focus,
button.action:focus {
  color: white;
}
.btn.btn-shop:hover,
button.action:hover {
  background-color: #8f1f3d;
  color: white;
  border-color: #a42346;
}
.btn-group.open .dropdown-toggle {
  box-shadow: none!important;
}
.btn.btn-shop-white {
  background-color: white;
  color: black;
  border-color: white;
  padding: 6px 12px;
  font-size: 16.2px;
}
.btn.btn-shop-white:hover {
  background-color: white;
  color: #8f1f3d;
  border-color: white;
}
button.btn.btn-shop-invert {
  background-color: transparent;
  color: #a42346;
  border: 2px dotted #a42346 !important;
}
button.btn.btn-shop-invert:hover {
  background-color: transparent;
  color: #8f1f3d;
  border-color: 2px solid #a42346 !important;
}
a.fa {
  text-decoration: none;
  cursor: pointer;
}
a.fa:hover,
a.fa:active,
a.fa:focus {
  text-decoration: none;
}
footer {
  clear: both;
}
.alert,
.alert.alert-info,
.alert-success.success.alert .alert-notice.notice.alert {
  color: #a42346;
  background-color: rgba(164, 35, 70, 0.1);
  border-color: #a42346;
}
.gea-spacer {
  border-top: 1px solid #bcbcbc;
  margin: 50px 0;
}
.cms-home.cms-index-index .navbar-wrapper.component {
  margin-bottom: 0;
}
.cms-home.cms-index-index .main-content.container {
  display: none;
}
.cms-home.cms-index-index .content_container {
  padding-left: 0!important;
}
#navigation-filter-toggle {
  display: none;
}
.g-recaptcha {
  margin: 30px 0;
}
.input-text {
  display: block;
  width: 100%;
  height: 36px;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.input-text::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.input-text:-ms-input-placeholder {
  color: #999;
}
.input-text::-webkit-input-placeholder {
  color: #999;
}
.input-text::-ms-expand {
  border: 0;
  background-color: transparent;
}
.input-text[disabled],
.input-text[readonly],
fieldset[disabled] .input-text {
  background-color: #eeeeee;
  opacity: 1;
}
.input-text[disabled],
fieldset[disabled] .input-text {
  cursor: not-allowed;
}
textarea.input-text {
  height: auto;
}
