/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  clear: both; }

.slick-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  min-height: 1px;
  outline: none;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide a {
    outline: none; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-dots {
  margin-top: 2em;
  text-align: center; }
  .slick-dots:after {
    content: '';
    display: table;
    clear: both; }
  .slick-dots li {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 1em;
    border-radius: 50%;
    border: 2px solid #171e27;
    background-color: transparent;
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s; }
    .slick-dots li.slick-active {
      background-color: #171e27; }
    .slick-dots li button {
      display: none;
      text-indent: -9999px; }

.slick-arrow.slick-hidden {
  display: none; }

/*
 *  Remodal - v1.0.7
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none; }

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none; }

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none; }

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch; }

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: ""; }

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%; }

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block; }

/*
 *  Remodal - v1.0.7
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px); }

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(0, 0, 0, 0.5); }

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes; }

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes; }

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 30px 5%; }

/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  background: #fff; }

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes; }

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes; }

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle; }

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent; }

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38; }

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "\00d7";
  text-align: center; }

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0; }

.remodal-confirm {
  color: #fff;
  background: #81c784; }

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a; }

.remodal-cancel {
  color: #fff;
  background: #e57373; }

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350; }

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0; }

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0; } }
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0; } }
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 800px; } }
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38; }

.lt-ie9 .remodal {
  width: 800px; }

/* @group Base */
.chosen-container {
  position: relative;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  min-width: 13em;
  max-width: 100%;
  width: 100% !important; }
  .chosen-container .chosen-drop {
    position: absolute;
    top: 100%;
    left: -9999px;
    z-index: 1010;
    width: 100%;
    border: 2px solid #dddddd;
    border-top: 0;
    background: white; }
  .chosen-container a {
    cursor: pointer;
    font-weight: 500; }
  .chosen-container .search-choice .group-name,
  .chosen-container .chosen-single .group-name {
    margin-right: 4px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: normal;
    color: #a5a5a5; }
    .chosen-container .search-choice .group-name:after,
    .chosen-container .chosen-single .group-name:after {
      content: ":";
      padding-left: 2px;
      vertical-align: top; }

.chosen-container.chosen-with-drop .chosen-drop {
  left: 0; }

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  padding: 0.8em;
  border: 2px solid #dddddd;
  background-color: white;
  text-decoration: none;
  white-space: nowrap;
  color: inherit; }
  .chosen-container-single .chosen-single .flag {
    width: 20px;
    margin-right: 1em;
    box-shadow: none;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    opacity: 1; }
    .chosen-container-single .chosen-single .flag.changing {
      opacity: 0.3; }
  .chosen-container-single .chosen-single input[type="text"] {
    cursor: pointer;
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0; }
.chosen-container-single .chosen-single > span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100% - 25px); }
.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px; }
.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  font-size: 1px; }
  .chosen-container-single .chosen-single abbr:hover {
    background-position: -42px -10px; }
.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px; }
.chosen-container-single .chosen-single div {
  position: absolute;
  right: 0.8em;
  top: 50%;
  margin-top: -0.2em;
  width: 0px;
  height: 0px;
  border: 0.4em solid transparent;
  border-top: 0.4em solid #bababa;
  float: right;
  z-index: 1; }
.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 0.6em;
  white-space: nowrap;
  border-bottom: 1px solid #dddddd; }
  .chosen-container-single .chosen-search input[type="text"] {
    margin: 1px 0;
    padding: 0.6em 0.8em;
    width: 100%;
    height: auto;
    outline: 0;
    border: 1px solid #dddddd;
    font-size: 0.77777778rem;
    line-height: normal;
    border-radius: 0; }
.chosen-container-single .chosen-drop {
  margin-top: -1px; }
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  left: -9999px; }

/* @end */
/* @end */
/* @group Results */
.chosen-container .chosen-results {
  font-size: 0.77777778rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 240px;
  -webkit-overflow-scrolling: touch; }
  .chosen-container .chosen-results li {
    display: none;
    list-style: none;
    word-wrap: break-word;
    -webkit-touch-callout: none;
    font-weight: 500; }
    .chosen-container .chosen-results li.active-result {
      position: relative;
      display: list-item;
      cursor: pointer;
      width: 100%;
      padding: 1.4em 2em 1.4em 2em;
      border-top: 1px solid #dddddd;
      line-height: 1; }
    .chosen-container .chosen-results li.disabled-result {
      display: list-item;
      color: #ccc;
      cursor: default; }
    .chosen-container .chosen-results li.highlighted {
      background: #f7f7f7; }
    .chosen-container .chosen-results li.no-results {
      color: #ff6d5a;
      display: list-item;
      padding: 0.5em 0.5em 0.5em 1.5em;
      font-size: 0.66666667rem; }
    .chosen-container .chosen-results li.group-result {
      display: list-item;
      font-weight: bold;
      cursor: default; }
    .chosen-container .chosen-results li.group-option {
      padding-left: 15px; }
    .chosen-container .chosen-results li em {
      font-style: normal;
      text-decoration: underline; }

/* @end */
/* @group Active  */
.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent; }
  .chosen-container-active.chosen-with-drop .chosen-single div b {
    background-position: -18px 2px; }
.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb; }
  .chosen-container-active .chosen-choices li.search-field input[type="text"] {
    color: #222 !important; }

/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default; }
  .chosen-disabled .chosen-single {
    cursor: default; }
  .chosen-disabled .chosen-choices .search-choice .search-choice-close {
    cursor: default; }

/* @end */
/* @group Retina compatibility */
/* @end */
/**
 * Variables declared here can be overridden by consuming applications, with
 * the help of the `!default` flag.
 *
 * @example
 *     // overriding $hoverColor
 *     $hoverColor: rgba(red, 0.05);
 *
 *     // overriding image path
 *     $flagsImagePath: "images/";
 *
 *     // import the scss file after the overrides
 *     @import "bower_component/intl-tel-input/src/css/intlTelInput";
 */
span.error-msg {
  text-transform: uppercase;
  font-size: 8px;
  color: #ff6d5a;
  font-weight: 600;
  margin-left: 2em; }
  span.error-msg.hide {
    display: none; }

.intl-tel-input {
  width: 100%;
  -webkit-transform: translate(0);
          transform: translate(0);
  z-index: 1;
  position: relative;
  display: inline-block; }
  .intl-tel-input * {
    box-sizing: border-box;
    -moz-box-sizing: border-box; }
  .intl-tel-input .hide {
    display: none; }
  .intl-tel-input .v-hide {
    visibility: hidden; }
  .intl-tel-input input, .intl-tel-input input[type=text], .intl-tel-input input[type=tel] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 44px;
    margin-right: 0; }
  .intl-tel-input .flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px; }
  .intl-tel-input .selected-flag {
    z-index: 1;
    position: relative;
    width: 44px;
    height: 100%;
    padding: 0 0 0 12px; }
    .intl-tel-input .selected-flag .iti-flag {
      position: absolute;
      top: 0;
      bottom: 0;
      margin: auto; }
    .intl-tel-input .selected-flag .iti-arrow {
      position: absolute;
      top: 50%;
      margin-top: -2px;
      right: 6px;
      width: 0;
      height: 0;
      border-left: 3px solid transparent;
      border-right: 3px solid transparent;
      border-top: 4px solid #555; }
      .intl-tel-input .selected-flag .iti-arrow.up {
        border-top: none;
        border-bottom: 4px solid #555; }
  .intl-tel-input .country-list {
    position: fixed;
    width: 100%;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    background-color: white;
    border: 1px solid #CCC;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll; }
    .intl-tel-input .country-list.dropup {
      bottom: 100%;
      margin-bottom: -1px; }
    .intl-tel-input .country-list .flag-box {
      display: inline-block;
      width: 20px; }
    @media (max-width: 500px) {
      .intl-tel-input .country-list {
        white-space: normal; } }
    .intl-tel-input .country-list .divider {
      padding-bottom: 5px;
      margin-bottom: 5px;
      border-bottom: 1px solid #CCC; }
    .intl-tel-input .country-list .country {
      padding: 5px 10px; }
      .intl-tel-input .country-list .country .dial-code {
        color: #999; }
    .intl-tel-input .country-list .country.highlight {
      background-color: rgba(0, 0, 0, 0.05); }
    .intl-tel-input .country-list .flag-box, .intl-tel-input .country-list .country-name, .intl-tel-input .country-list .dial-code {
      vertical-align: middle; }
    .intl-tel-input .country-list .flag-box, .intl-tel-input .country-list .country-name {
      margin-right: 6px; }
  .intl-tel-input.allow-dropdown input, .intl-tel-input.allow-dropdown input[type=text], .intl-tel-input.allow-dropdown input[type=tel], .intl-tel-input.separate-dial-code input, .intl-tel-input.separate-dial-code input[type=text], .intl-tel-input.separate-dial-code input[type=tel] {
    padding-right: 15px;
    padding-left: 77px;
    margin-left: 0; }
  .intl-tel-input.allow-dropdown .flag-container, .intl-tel-input.separate-dial-code .flag-container {
    right: auto;
    left: 0; }
  .intl-tel-input.allow-dropdown .selected-flag, .intl-tel-input.separate-dial-code .selected-flag {
    width: 62px; }
  .intl-tel-input.allow-dropdown .flag-container:hover {
    cursor: pointer; }
    .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
      background-color: rgba(0, 0, 0, 0.05); }
  .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover, .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {
    cursor: default; }
    .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag, .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {
      background-color: transparent; }
  .intl-tel-input.separate-dial-code .selected-flag {
    background-color: rgba(0, 0, 0, 0.05);
    display: table; }
  .intl-tel-input.separate-dial-code .selected-dial-code {
    display: table-cell;
    vertical-align: middle;
    padding-left: 32px; }
  .intl-tel-input.separate-dial-code.iti-sdc-2 input, .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel] {
    padding-left: 87px; }
  .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {
    width: 72px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel] {
    padding-left: 105px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {
    width: 90px; }
  .intl-tel-input.separate-dial-code.iti-sdc-3 input, .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel] {
    padding-left: 95px; }
  .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {
    width: 80px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel] {
    padding-left: 113px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {
    width: 98px; }
  .intl-tel-input.separate-dial-code.iti-sdc-4 input, .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel] {
    padding-left: 103px; }
  .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {
    width: 88px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel] {
    padding-left: 121px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {
    width: 106px; }
  .intl-tel-input.separate-dial-code.iti-sdc-5 input, .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel] {
    padding-left: 111px; }
  .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {
    width: 96px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel] {
    padding-left: 129px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {
    width: 114px; }
  .intl-tel-input.iti-container {
    position: absolute;
    top: -1000px;
    left: -1000px;
    z-index: 1060;
    padding: 1px; }
    .intl-tel-input.iti-container:hover {
      cursor: pointer; }

.iti-mobile .intl-tel-input.iti-container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed; }
.iti-mobile .intl-tel-input .country-list {
  max-height: 100%;
  width: 100%; }
  .iti-mobile .intl-tel-input .country-list .country {
    padding: 10px 10px;
    line-height: 1.5em; }

.iti-flag {
  width: 20px; }
  .iti-flag.be {
    width: 18px; }
  .iti-flag.ch {
    width: 15px; }
  .iti-flag.mc {
    width: 19px; }
  .iti-flag.ne {
    width: 18px; }
  .iti-flag.np {
    width: 13px; }
  .iti-flag.va {
    width: 15px; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .iti-flag {
      background-size: 5630px 15px; } }
  .iti-flag.ac {
    height: 10px;
    background-position: 0px 0px; }
  .iti-flag.ad {
    height: 14px;
    background-position: -22px 0px; }
  .iti-flag.ae {
    height: 10px;
    background-position: -44px 0px; }
  .iti-flag.af {
    height: 14px;
    background-position: -66px 0px; }
  .iti-flag.ag {
    height: 14px;
    background-position: -88px 0px; }
  .iti-flag.ai {
    height: 10px;
    background-position: -110px 0px; }
  .iti-flag.al {
    height: 15px;
    background-position: -132px 0px; }
  .iti-flag.am {
    height: 10px;
    background-position: -154px 0px; }
  .iti-flag.ao {
    height: 14px;
    background-position: -176px 0px; }
  .iti-flag.aq {
    height: 14px;
    background-position: -198px 0px; }
  .iti-flag.ar {
    height: 13px;
    background-position: -220px 0px; }
  .iti-flag.as {
    height: 10px;
    background-position: -242px 0px; }
  .iti-flag.at {
    height: 14px;
    background-position: -264px 0px; }
  .iti-flag.au {
    height: 10px;
    background-position: -286px 0px; }
  .iti-flag.aw {
    height: 14px;
    background-position: -308px 0px; }
  .iti-flag.ax {
    height: 13px;
    background-position: -330px 0px; }
  .iti-flag.az {
    height: 10px;
    background-position: -352px 0px; }
  .iti-flag.ba {
    height: 10px;
    background-position: -374px 0px; }
  .iti-flag.bb {
    height: 14px;
    background-position: -396px 0px; }
  .iti-flag.bd {
    height: 12px;
    background-position: -418px 0px; }
  .iti-flag.be {
    height: 15px;
    background-position: -440px 0px; }
  .iti-flag.bf {
    height: 14px;
    background-position: -460px 0px; }
  .iti-flag.bg {
    height: 12px;
    background-position: -482px 0px; }
  .iti-flag.bh {
    height: 12px;
    background-position: -504px 0px; }
  .iti-flag.bi {
    height: 12px;
    background-position: -526px 0px; }
  .iti-flag.bj {
    height: 14px;
    background-position: -548px 0px; }
  .iti-flag.bl {
    height: 14px;
    background-position: -570px 0px; }
  .iti-flag.bm {
    height: 10px;
    background-position: -592px 0px; }
  .iti-flag.bn {
    height: 10px;
    background-position: -614px 0px; }
  .iti-flag.bo {
    height: 14px;
    background-position: -636px 0px; }
  .iti-flag.bq {
    height: 14px;
    background-position: -658px 0px; }
  .iti-flag.br {
    height: 14px;
    background-position: -680px 0px; }
  .iti-flag.bs {
    height: 10px;
    background-position: -702px 0px; }
  .iti-flag.bt {
    height: 14px;
    background-position: -724px 0px; }
  .iti-flag.bv {
    height: 15px;
    background-position: -746px 0px; }
  .iti-flag.bw {
    height: 14px;
    background-position: -768px 0px; }
  .iti-flag.by {
    height: 10px;
    background-position: -790px 0px; }
  .iti-flag.bz {
    height: 14px;
    background-position: -812px 0px; }
  .iti-flag.ca {
    height: 10px;
    background-position: -834px 0px; }
  .iti-flag.cc {
    height: 10px;
    background-position: -856px 0px; }
  .iti-flag.cd {
    height: 15px;
    background-position: -878px 0px; }
  .iti-flag.cf {
    height: 14px;
    background-position: -900px 0px; }
  .iti-flag.cg {
    height: 14px;
    background-position: -922px 0px; }
  .iti-flag.ch {
    height: 15px;
    background-position: -944px 0px; }
  .iti-flag.ci {
    height: 14px;
    background-position: -961px 0px; }
  .iti-flag.ck {
    height: 10px;
    background-position: -983px 0px; }
  .iti-flag.cl {
    height: 14px;
    background-position: -1005px 0px; }
  .iti-flag.cm {
    height: 14px;
    background-position: -1027px 0px; }
  .iti-flag.cn {
    height: 14px;
    background-position: -1049px 0px; }
  .iti-flag.co {
    height: 14px;
    background-position: -1071px 0px; }
  .iti-flag.cp {
    height: 14px;
    background-position: -1093px 0px; }
  .iti-flag.cr {
    height: 12px;
    background-position: -1115px 0px; }
  .iti-flag.cu {
    height: 10px;
    background-position: -1137px 0px; }
  .iti-flag.cv {
    height: 12px;
    background-position: -1159px 0px; }
  .iti-flag.cw {
    height: 14px;
    background-position: -1181px 0px; }
  .iti-flag.cx {
    height: 10px;
    background-position: -1203px 0px; }
  .iti-flag.cy {
    height: 13px;
    background-position: -1225px 0px; }
  .iti-flag.cz {
    height: 14px;
    background-position: -1247px 0px; }
  .iti-flag.de {
    height: 12px;
    background-position: -1269px 0px; }
  .iti-flag.dg {
    height: 10px;
    background-position: -1291px 0px; }
  .iti-flag.dj {
    height: 14px;
    background-position: -1313px 0px; }
  .iti-flag.dk {
    height: 15px;
    background-position: -1335px 0px; }
  .iti-flag.dm {
    height: 10px;
    background-position: -1357px 0px; }
  .iti-flag.do {
    height: 13px;
    background-position: -1379px 0px; }
  .iti-flag.dz {
    height: 14px;
    background-position: -1401px 0px; }
  .iti-flag.ea {
    height: 14px;
    background-position: -1423px 0px; }
  .iti-flag.ec {
    height: 14px;
    background-position: -1445px 0px; }
  .iti-flag.ee {
    height: 13px;
    background-position: -1467px 0px; }
  .iti-flag.eg {
    height: 14px;
    background-position: -1489px 0px; }
  .iti-flag.eh {
    height: 10px;
    background-position: -1511px 0px; }
  .iti-flag.er {
    height: 10px;
    background-position: -1533px 0px; }
  .iti-flag.es {
    height: 14px;
    background-position: -1555px 0px; }
  .iti-flag.et {
    height: 10px;
    background-position: -1577px 0px; }
  .iti-flag.eu {
    height: 14px;
    background-position: -1599px 0px; }
  .iti-flag.fi {
    height: 12px;
    background-position: -1621px 0px; }
  .iti-flag.fj {
    height: 10px;
    background-position: -1643px 0px; }
  .iti-flag.fk {
    height: 10px;
    background-position: -1665px 0px; }
  .iti-flag.fm {
    height: 11px;
    background-position: -1687px 0px; }
  .iti-flag.fo {
    height: 15px;
    background-position: -1709px 0px; }
  .iti-flag.fr {
    height: 14px;
    background-position: -1731px 0px; }
  .iti-flag.ga {
    height: 15px;
    background-position: -1753px 0px; }
  .iti-flag.gb {
    height: 10px;
    background-position: -1775px 0px; }
  .iti-flag.gd {
    height: 12px;
    background-position: -1797px 0px; }
  .iti-flag.ge {
    height: 14px;
    background-position: -1819px 0px; }
  .iti-flag.gf {
    height: 14px;
    background-position: -1841px 0px; }
  .iti-flag.gg {
    height: 14px;
    background-position: -1863px 0px; }
  .iti-flag.gh {
    height: 14px;
    background-position: -1885px 0px; }
  .iti-flag.gi {
    height: 10px;
    background-position: -1907px 0px; }
  .iti-flag.gl {
    height: 14px;
    background-position: -1929px 0px; }
  .iti-flag.gm {
    height: 14px;
    background-position: -1951px 0px; }
  .iti-flag.gn {
    height: 14px;
    background-position: -1973px 0px; }
  .iti-flag.gp {
    height: 14px;
    background-position: -1995px 0px; }
  .iti-flag.gq {
    height: 14px;
    background-position: -2017px 0px; }
  .iti-flag.gr {
    height: 14px;
    background-position: -2039px 0px; }
  .iti-flag.gs {
    height: 10px;
    background-position: -2061px 0px; }
  .iti-flag.gt {
    height: 13px;
    background-position: -2083px 0px; }
  .iti-flag.gu {
    height: 11px;
    background-position: -2105px 0px; }
  .iti-flag.gw {
    height: 10px;
    background-position: -2127px 0px; }
  .iti-flag.gy {
    height: 12px;
    background-position: -2149px 0px; }
  .iti-flag.hk {
    height: 14px;
    background-position: -2171px 0px; }
  .iti-flag.hm {
    height: 10px;
    background-position: -2193px 0px; }
  .iti-flag.hn {
    height: 10px;
    background-position: -2215px 0px; }
  .iti-flag.hr {
    height: 10px;
    background-position: -2237px 0px; }
  .iti-flag.ht {
    height: 12px;
    background-position: -2259px 0px; }
  .iti-flag.hu {
    height: 10px;
    background-position: -2281px 0px; }
  .iti-flag.ic {
    height: 14px;
    background-position: -2303px 0px; }
  .iti-flag.id {
    height: 14px;
    background-position: -2325px 0px; }
  .iti-flag.ie {
    height: 10px;
    background-position: -2347px 0px; }
  .iti-flag.il {
    height: 15px;
    background-position: -2369px 0px; }
  .iti-flag.im {
    height: 10px;
    background-position: -2391px 0px; }
  .iti-flag.in {
    height: 14px;
    background-position: -2413px 0px; }
  .iti-flag.io {
    height: 10px;
    background-position: -2435px 0px; }
  .iti-flag.iq {
    height: 14px;
    background-position: -2457px 0px; }
  .iti-flag.ir {
    height: 12px;
    background-position: -2479px 0px; }
  .iti-flag.is {
    height: 15px;
    background-position: -2501px 0px; }
  .iti-flag.it {
    height: 14px;
    background-position: -2523px 0px; }
  .iti-flag.je {
    height: 12px;
    background-position: -2545px 0px; }
  .iti-flag.jm {
    height: 10px;
    background-position: -2567px 0px; }
  .iti-flag.jo {
    height: 10px;
    background-position: -2589px 0px; }
  .iti-flag.jp {
    height: 14px;
    background-position: -2611px 0px; }
  .iti-flag.ke {
    height: 14px;
    background-position: -2633px 0px; }
  .iti-flag.kg {
    height: 12px;
    background-position: -2655px 0px; }
  .iti-flag.kh {
    height: 13px;
    background-position: -2677px 0px; }
  .iti-flag.ki {
    height: 10px;
    background-position: -2699px 0px; }
  .iti-flag.km {
    height: 12px;
    background-position: -2721px 0px; }
  .iti-flag.kn {
    height: 14px;
    background-position: -2743px 0px; }
  .iti-flag.kp {
    height: 10px;
    background-position: -2765px 0px; }
  .iti-flag.kr {
    height: 14px;
    background-position: -2787px 0px; }
  .iti-flag.kw {
    height: 10px;
    background-position: -2809px 0px; }
  .iti-flag.ky {
    height: 10px;
    background-position: -2831px 0px; }
  .iti-flag.kz {
    height: 10px;
    background-position: -2853px 0px; }
  .iti-flag.la {
    height: 14px;
    background-position: -2875px 0px; }
  .iti-flag.lb {
    height: 14px;
    background-position: -2897px 0px; }
  .iti-flag.lc {
    height: 10px;
    background-position: -2919px 0px; }
  .iti-flag.li {
    height: 12px;
    background-position: -2941px 0px; }
  .iti-flag.lk {
    height: 10px;
    background-position: -2963px 0px; }
  .iti-flag.lr {
    height: 11px;
    background-position: -2985px 0px; }
  .iti-flag.ls {
    height: 14px;
    background-position: -3007px 0px; }
  .iti-flag.lt {
    height: 12px;
    background-position: -3029px 0px; }
  .iti-flag.lu {
    height: 12px;
    background-position: -3051px 0px; }
  .iti-flag.lv {
    height: 10px;
    background-position: -3073px 0px; }
  .iti-flag.ly {
    height: 10px;
    background-position: -3095px 0px; }
  .iti-flag.ma {
    height: 14px;
    background-position: -3117px 0px; }
  .iti-flag.mc {
    height: 15px;
    background-position: -3139px 0px; }
  .iti-flag.md {
    height: 10px;
    background-position: -3160px 0px; }
  .iti-flag.me {
    height: 10px;
    background-position: -3182px 0px; }
  .iti-flag.mf {
    height: 14px;
    background-position: -3204px 0px; }
  .iti-flag.mg {
    height: 14px;
    background-position: -3226px 0px; }
  .iti-flag.mh {
    height: 11px;
    background-position: -3248px 0px; }
  .iti-flag.mk {
    height: 10px;
    background-position: -3270px 0px; }
  .iti-flag.ml {
    height: 14px;
    background-position: -3292px 0px; }
  .iti-flag.mm {
    height: 14px;
    background-position: -3314px 0px; }
  .iti-flag.mn {
    height: 10px;
    background-position: -3336px 0px; }
  .iti-flag.mo {
    height: 14px;
    background-position: -3358px 0px; }
  .iti-flag.mp {
    height: 10px;
    background-position: -3380px 0px; }
  .iti-flag.mq {
    height: 14px;
    background-position: -3402px 0px; }
  .iti-flag.mr {
    height: 14px;
    background-position: -3424px 0px; }
  .iti-flag.ms {
    height: 10px;
    background-position: -3446px 0px; }
  .iti-flag.mt {
    height: 14px;
    background-position: -3468px 0px; }
  .iti-flag.mu {
    height: 14px;
    background-position: -3490px 0px; }
  .iti-flag.mv {
    height: 14px;
    background-position: -3512px 0px; }
  .iti-flag.mw {
    height: 14px;
    background-position: -3534px 0px; }
  .iti-flag.mx {
    height: 12px;
    background-position: -3556px 0px; }
  .iti-flag.my {
    height: 10px;
    background-position: -3578px 0px; }
  .iti-flag.mz {
    height: 14px;
    background-position: -3600px 0px; }
  .iti-flag.na {
    height: 14px;
    background-position: -3622px 0px; }
  .iti-flag.nc {
    height: 10px;
    background-position: -3644px 0px; }
  .iti-flag.ne {
    height: 15px;
    background-position: -3666px 0px; }
  .iti-flag.nf {
    height: 10px;
    background-position: -3686px 0px; }
  .iti-flag.ng {
    height: 10px;
    background-position: -3708px 0px; }
  .iti-flag.ni {
    height: 12px;
    background-position: -3730px 0px; }
  .iti-flag.nl {
    height: 14px;
    background-position: -3752px 0px; }
  .iti-flag.no {
    height: 15px;
    background-position: -3774px 0px; }
  .iti-flag.np {
    height: 15px;
    background-position: -3796px 0px; }
  .iti-flag.nr {
    height: 10px;
    background-position: -3811px 0px; }
  .iti-flag.nu {
    height: 10px;
    background-position: -3833px 0px; }
  .iti-flag.nz {
    height: 10px;
    background-position: -3855px 0px; }
  .iti-flag.om {
    height: 10px;
    background-position: -3877px 0px; }
  .iti-flag.pa {
    height: 14px;
    background-position: -3899px 0px; }
  .iti-flag.pe {
    height: 14px;
    background-position: -3921px 0px; }
  .iti-flag.pf {
    height: 14px;
    background-position: -3943px 0px; }
  .iti-flag.pg {
    height: 15px;
    background-position: -3965px 0px; }
  .iti-flag.ph {
    height: 10px;
    background-position: -3987px 0px; }
  .iti-flag.pk {
    height: 14px;
    background-position: -4009px 0px; }
  .iti-flag.pl {
    height: 13px;
    background-position: -4031px 0px; }
  .iti-flag.pm {
    height: 14px;
    background-position: -4053px 0px; }
  .iti-flag.pn {
    height: 10px;
    background-position: -4075px 0px; }
  .iti-flag.pr {
    height: 14px;
    background-position: -4097px 0px; }
  .iti-flag.ps {
    height: 10px;
    background-position: -4119px 0px; }
  .iti-flag.pt {
    height: 14px;
    background-position: -4141px 0px; }
  .iti-flag.pw {
    height: 13px;
    background-position: -4163px 0px; }
  .iti-flag.py {
    height: 11px;
    background-position: -4185px 0px; }
  .iti-flag.qa {
    height: 8px;
    background-position: -4207px 0px; }
  .iti-flag.re {
    height: 14px;
    background-position: -4229px 0px; }
  .iti-flag.ro {
    height: 14px;
    background-position: -4251px 0px; }
  .iti-flag.rs {
    height: 14px;
    background-position: -4273px 0px; }
  .iti-flag.ru {
    height: 14px;
    background-position: -4295px 0px; }
  .iti-flag.rw {
    height: 14px;
    background-position: -4317px 0px; }
  .iti-flag.sa {
    height: 14px;
    background-position: -4339px 0px; }
  .iti-flag.sb {
    height: 10px;
    background-position: -4361px 0px; }
  .iti-flag.sc {
    height: 10px;
    background-position: -4383px 0px; }
  .iti-flag.sd {
    height: 10px;
    background-position: -4405px 0px; }
  .iti-flag.se {
    height: 13px;
    background-position: -4427px 0px; }
  .iti-flag.sg {
    height: 14px;
    background-position: -4449px 0px; }
  .iti-flag.sh {
    height: 10px;
    background-position: -4471px 0px; }
  .iti-flag.si {
    height: 10px;
    background-position: -4493px 0px; }
  .iti-flag.sj {
    height: 15px;
    background-position: -4515px 0px; }
  .iti-flag.sk {
    height: 14px;
    background-position: -4537px 0px; }
  .iti-flag.sl {
    height: 14px;
    background-position: -4559px 0px; }
  .iti-flag.sm {
    height: 15px;
    background-position: -4581px 0px; }
  .iti-flag.sn {
    height: 14px;
    background-position: -4603px 0px; }
  .iti-flag.so {
    height: 14px;
    background-position: -4625px 0px; }
  .iti-flag.sr {
    height: 14px;
    background-position: -4647px 0px; }
  .iti-flag.ss {
    height: 10px;
    background-position: -4669px 0px; }
  .iti-flag.st {
    height: 10px;
    background-position: -4691px 0px; }
  .iti-flag.sv {
    height: 12px;
    background-position: -4713px 0px; }
  .iti-flag.sx {
    height: 14px;
    background-position: -4735px 0px; }
  .iti-flag.sy {
    height: 14px;
    background-position: -4757px 0px; }
  .iti-flag.sz {
    height: 14px;
    background-position: -4779px 0px; }
  .iti-flag.ta {
    height: 10px;
    background-position: -4801px 0px; }
  .iti-flag.tc {
    height: 10px;
    background-position: -4823px 0px; }
  .iti-flag.td {
    height: 14px;
    background-position: -4845px 0px; }
  .iti-flag.tf {
    height: 14px;
    background-position: -4867px 0px; }
  .iti-flag.tg {
    height: 13px;
    background-position: -4889px 0px; }
  .iti-flag.th {
    height: 14px;
    background-position: -4911px 0px; }
  .iti-flag.tj {
    height: 10px;
    background-position: -4933px 0px; }
  .iti-flag.tk {
    height: 10px;
    background-position: -4955px 0px; }
  .iti-flag.tl {
    height: 10px;
    background-position: -4977px 0px; }
  .iti-flag.tm {
    height: 14px;
    background-position: -4999px 0px; }
  .iti-flag.tn {
    height: 14px;
    background-position: -5021px 0px; }
  .iti-flag.to {
    height: 10px;
    background-position: -5043px 0px; }
  .iti-flag.tr {
    height: 14px;
    background-position: -5065px 0px; }
  .iti-flag.tt {
    height: 12px;
    background-position: -5087px 0px; }
  .iti-flag.tv {
    height: 10px;
    background-position: -5109px 0px; }
  .iti-flag.tw {
    height: 14px;
    background-position: -5131px 0px; }
  .iti-flag.tz {
    height: 14px;
    background-position: -5153px 0px; }
  .iti-flag.ua {
    height: 14px;
    background-position: -5175px 0px; }
  .iti-flag.ug {
    height: 14px;
    background-position: -5197px 0px; }
  .iti-flag.um {
    height: 11px;
    background-position: -5219px 0px; }
  .iti-flag.us {
    height: 11px;
    background-position: -5241px 0px; }
  .iti-flag.uy {
    height: 14px;
    background-position: -5263px 0px; }
  .iti-flag.uz {
    height: 10px;
    background-position: -5285px 0px; }
  .iti-flag.va {
    height: 15px;
    background-position: -5307px 0px; }
  .iti-flag.vc {
    height: 14px;
    background-position: -5324px 0px; }
  .iti-flag.ve {
    height: 14px;
    background-position: -5346px 0px; }
  .iti-flag.vg {
    height: 10px;
    background-position: -5368px 0px; }
  .iti-flag.vi {
    height: 14px;
    background-position: -5390px 0px; }
  .iti-flag.vn {
    height: 14px;
    background-position: -5412px 0px; }
  .iti-flag.vu {
    height: 12px;
    background-position: -5434px 0px; }
  .iti-flag.wf {
    height: 14px;
    background-position: -5456px 0px; }
  .iti-flag.ws {
    height: 10px;
    background-position: -5478px 0px; }
  .iti-flag.xk {
    height: 15px;
    background-position: -5500px 0px; }
  .iti-flag.ye {
    height: 14px;
    background-position: -5522px 0px; }
  .iti-flag.yt {
    height: 14px;
    background-position: -5544px 0px; }
  .iti-flag.za {
    height: 14px;
    background-position: -5566px 0px; }
  .iti-flag.zm {
    height: 14px;
    background-position: -5588px 0px; }
  .iti-flag.zw {
    height: 10px;
    background-position: -5610px 0px; }

.iti-flag {
  width: 20px;
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url("../images/flags.png");
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .iti-flag {
      background-image: url("../images/flags@2x.png"); } }

.iti-flag.np {
  background-color: transparent; }

@-webkit-keyframes tooltip {
  from {
    opacity: 0;
    -webkit-transform: rotateZ(15deg);
            transform: rotateZ(15deg); }
  to {
    opacity: 1;
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg); } }

@keyframes tooltip {
  from {
    opacity: 0;
    -webkit-transform: rotateZ(15deg);
            transform: rotateZ(15deg); }
  to {
    opacity: 1;
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg); } }
.tooltip {
  position: absolute;
  display: block;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }
  .tooltip.in {
    opacity: 1;
    -webkit-transition: opacity 0.8s ease;
    transition: opacity 0.8s ease; }
  .tooltip.top {
    margin-top: -3px;
    padding: 5px 0; }
  .tooltip.right {
    margin-left: 3px;
    padding: 0 5px; }
  .tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0; }
  .tooltip.left {
    margin-left: -3px;
    padding: 0 5px; }

.tooltip-inner {
  max-width: 220px;
  padding: 1em 1.5em;
  color: #fff;
  background-color: #213444;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  border-radius: 2px; }

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #213444; }
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #213444; }
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #213444; }
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #213444; }

/* Reset */
* {
  box-sizing: border-box;
  outline: none; }

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-style: normal; }

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0; }
  button:focus, input:focus, select:focus, textarea:focus {
    outline: none; }
  button:-webkit-autofill, input:-webkit-autofill, select:-webkit-autofill, textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 100px white inset;
    -webkit-text-fill-color: #213444 !important; }

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

a, button {
  -ms-touch-action: manipulation;
  touch-action: manipulation; }

html {
  font-family: "Trufit", Sans-Serif;
  color: #213444;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  /* Prevent font scaling in landscape while allowing user zoom */ }
  @media (min-width: 500px) {
    html {
      font-size: 16px; } }
  @media (min-width: 1930px) {
    html {
      font-size: 18px; } }
  html *::-moz-selection {
    background: #ff6d5a; }
  html *::selection {
    background: #ff6d5a; }

a, button {
  cursor: pointer; }

a {
  font-weight: 600;
  text-decoration: none;
  color: currentColor;
  -webkit-tap-highlight-color: transparent; }
  a:hover {
    color: #ff6d5a; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .heading {
  margin: 0;
  font-weight: 700;
  line-height: 1.2; }

p {
  margin-bottom: 1.5em;
  line-height: 1.9; }

.lazyload {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s; }
  .lazyload.loaded, .lazyload.error {
    opacity: 1; }

strong {
  font-weight: 600; }

.a-right {
  text-align: right; }

ul.messages {
  width: 100%;
  color: white;
  font-weight: 600;
  margin-bottom: 1em; }
  ul.messages > li {
    width: 100%;
    padding: 7px 20px; }
    ul.messages > li li {
      font-size: 0.77777778rem;
      font-weight: 600;
      box-sizing: border-box;
      position: relative;
      line-height: 1.6;
      margin: 0.65em 0; }
  ul.messages li.success-msg {
    background: #1abc9c;
    color: white; }
  ul.messages li.warning-msg, ul.messages li.notice-msg {
    background: #f1c40f;
    color: black; }
  ul.messages li.error-msg {
    background: #ff6d5a; }
    ul.messages li.error-msg ul {
      display: inline-block; }
    ul.messages li.error-msg li {
      font-weight: 600;
      box-sizing: border-box;
      padding-left: 2em;
      position: relative;
      line-height: 1.6;
      margin: 0.65em 0; }
      ul.messages li.error-msg li:before {
        content: "\00d7";
        box-sizing: border-box;
        display: block;
        position: absolute;
        left: 0;
        top: -0.38em;
        font-size: 2em; }

.global-messages {
  text-align: center;
  position: relative;
  z-index: 9999; }
  .global-messages ul.messages {
    width: 100%;
    color: white;
    font-weight: 600;
    margin-bottom: 0em; }
    .global-messages ul.messages ul li:not(:first-child) {
      display: none; }

.pager .count-container {
  text-align: center;
  font-size: 0.88888889rem; }
.pager .pages {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .pager .pages a {
    font-size: 0.88888889rem; }
  .pager .pages .next.disabled, .pager .pages .previous.disabled {
    color: #bababa;
    pointer-events: none; }
  .pager .pages ol {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 3em;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .pager .pages ol li {
      margin: 0 1em; }
      .pager .pages ol li.current {
        font-size: 0.88888889rem;
        font-weight: 600;
        color: white;
        background: #ff6d5a;
        height: 1em;
        width: 1em;
        padding: 1em;
        border-radius: 50px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center; }

ul.benefits {
  display: inline-block;
  text-align: left; }
  ul.benefits li {
    font-weight: 600;
    box-sizing: border-box;
    padding-left: 2.5em;
    position: relative;
    line-height: 1.6;
    margin-bottom: 0.65em; }
    ul.benefits li:before {
      content: "";
      box-sizing: border-box;
      display: block;
      width: 1.44em;
      height: 1.44em;
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='2 2 19 19'%3E%3Cpolyline fill='none' stroke='%231abc9c' stroke-width='3' stroke-miterlimit='10' points='7.318,10.844 11.449,14.977 16.271,7.4 '/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      position: absolute;
      left: 0;
      top: 0; }

.blocked, .blocked-loading {
  position: relative;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .blocked > *, .blocked-loading > * {
    opacity: 0.3; }
  .blocked-loading:before, .blocked-loading-loading:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(calc(0.8em - 50%));
            transform: translateX(calc(0.8em - 50%));
    width: 4em;
    height: 4em;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 0.4em solid transparent;
    border-top-color: #ff6d5a;
    -webkit-animation: spinner .6s linear infinite;
            animation: spinner .6s linear infinite; }
@-webkit-keyframes spinner {
  to {
    -webkit-transform: translateX(calc(0.8em - 50%)) rotate3d(0, 0, 1, 360deg);
            transform: translateX(calc(0.8em - 50%)) rotate3d(0, 0, 1, 360deg); } }
@keyframes spinner {
  to {
    -webkit-transform: translateX(calc(0.8em - 50%)) rotate3d(0, 0, 1, 360deg);
            transform: translateX(calc(0.8em - 50%)) rotate3d(0, 0, 1, 360deg); } }
.spinner {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  z-index: 99999; }
  .spinner:before, .spinner:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: white;
    opacity: 0.6;
    position: absolute;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
            animation: sk-bounce 2.0s infinite ease-in-out; }
  .spinner:after {
    -webkit-animation-delay: -1.0s;
            animation-delay: -1.0s; }
@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1); } }
@keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1); } }
.spinner2, .spinner2-dark, .spinner2-red {
  display: block;
  position: relative; }
  .spinner2:before, .spinner2:after, .spinner2-dark:before, .spinner2-dark:after, .spinner2-red:before, .spinner2-red:after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
            animation: sk-bounce 2.0s infinite ease-in-out; }
  .spinner2:after, .spinner2-dark:after, .spinner2-red:after {
    -webkit-animation-delay: -1.0s;
            animation-delay: -1.0s; }
  .spinner2-dark:before, .spinner2-dark:after, .spinner2-dark-dark:before, .spinner2-dark-dark:after, .spinner2-red-dark:before, .spinner2-red-dark:after {
    background-color: #171e27; }
  .spinner2-red:before, .spinner2-red:after, .spinner2-dark-red:before, .spinner2-dark-red:after, .spinner2-red-red:before, .spinner2-red-red:after {
    background-color: #ff6d5a; }
@keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0; }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.6; } }
.rating-box {
  width: 7.5em;
  height: 1.16666667em;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 135 21' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(5 2)' stroke='%23ff6d5a' stroke-width='2' fill='none' fill-rule='evenodd'%3E%3Ccircle cx='8.5' cy='8.5' r='8.5'/%3E%3Ccircle cx='35.5' cy='8.5' r='8.5'/%3E%3Ccircle cx='62.5' cy='8.5' r='8.5'/%3E%3Ccircle cx='89.5' cy='8.5' r='8.5'/%3E%3Ccircle cx='116.5' cy='8.5' r='8.5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain; }
  .rating-box .rating {
    width: 0%;
    overflow: hidden; }
    .rating-box .rating:after {
      content: '';
      display: block;
      width: 7.5em;
      height: 1.16666667em;
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 135 21' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(5 2)' stroke='none' stroke-width='2' fill='%23ff6d5a' fill-rule='evenodd'%3E%3Ccircle cx='8.5' cy='8.5' r='8.5'/%3E%3Ccircle cx='35.5' cy='8.5' r='8.5'/%3E%3Ccircle cx='62.5' cy='8.5' r='8.5'/%3E%3Ccircle cx='89.5' cy='8.5' r='8.5'/%3E%3Ccircle cx='116.5' cy='8.5' r='8.5'/%3E%3C/g%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-size: contain; }

.price-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  font-weight: 600; }
  .price-box .regular-price {
    margin: 0 auto; }
  .price-box .special-price {
    color: #ff6d5a;
    font-weight: 600; }
  .price-box .old-price {
    position: relative;
    font-size: 12px;
    color: #a5a5a5;
    margin-left: 0.5em; }
    .price-box .old-price .price:before {
      content: '';
      position: absolute;
      width: 100%;
      height: 1px;
      background: #ff6d5a;
      top: 50%;
      left: 0;
      right: 0;
      margin: 0 auto;
      -webkit-transform: rotate(-20deg);
              transform: rotate(-20deg); }

.breadcrumbs {
  height: 33px;
  font-size: 9px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  background: #ededed;
  padding: 1em 0;
  line-height: 1.7;
  overflow: hidden; }
  .breadcrumbs ul {
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    padding: 0 2em 5em 2em;
    text-align: center; }
  .breadcrumbs li {
    display: inline-block;
    text-transform: uppercase;
    color: #a5a5a5; }
    .breadcrumbs li:hover a {
      color: #ff6d5a; }
    .breadcrumbs li a {
      color: currentColor; }
    .breadcrumbs li span {
      padding: 0 5px; }

.help-block {
  background: #f7f7f7;
  padding: 3em;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }
  .help-block[min-width~="520px"] {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 4em;
       -moz-column-gap: 4em;
            column-gap: 4em;
    -webkit-column-rule: 1px solid #bababa;
       -moz-column-rule: 1px solid #bababa;
            column-rule: 1px solid #bababa; }
    .help-block[min-width~="520px"] > * {
      -webkit-column-break-inside: avoid;
         page-break-inside: avoid;
              break-inside: avoid; }
    .help-block[min-width~="520px"] ul.links li {
      padding: 0.15em 0; }
    .help-block[min-width~="520px"] ul.contact-details {
      border-bottom: none;
      padding: 0;
      margin: 0; }
  .help-block .help-block-header {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1em; }
  .help-block p {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    color: #767676; }
  .help-block ul.contact-details {
    border-bottom: 1px solid #bababa;
    padding-bottom: 1.5em;
    margin-bottom: 1.5em; }
    .help-block ul.contact-details li {
      font-size: 13px;
      font-weight: 500;
      padding: 0.8em 0; }
  .help-block table#locations {
    border-bottom: 1px solid #bababa;
    padding-bottom: 1.5em;
    margin-bottom: 1.5em; }
    .help-block table#locations td {
      display: block;
      border: none;
      font-size: 13px;
      font-weight: 500;
      vertical-align: middle;
      padding: 0; }
      .help-block table#locations td.location {
        margin-bottom: 1em;
        position: relative; }
        .help-block table#locations td.location div {
          padding: 0.5em 0; }
        .help-block table#locations td.location .address {
          font-weight: 600; }
  .help-block ul.links a {
    font-size: 13px;
    line-height: 2; }

.product-grid-info {
  text-align: center;
  max-width: 290px; }
  .product-grid-info_image {
    position: relative; }
    .product-grid-info_image img {
      display: inline-block;
      width: 100%;
      max-width: 250px; }
  .product-grid-info_brand {
    font-size: 9px;
    text-transform: uppercase;
    color: #a5a5a5;
    font-weight: 600;
    margin-top: 0.5em; }
    @media (min-width: 500px) {
      .product-grid-info_brand {
        font-size: 10px; } }
  .product-grid-info_name {
    font-size: 12px;
    font-weight: 600;
    margin: 0.3em 10px 0.4em 10px; }
    @media (min-width: 500px) {
      .product-grid-info_name {
        font-size: 14px; } }
    .product-grid-info_name a {
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
      width: 90%;
      max-width: 225px;
      display: block;
      margin: 0 auto; }

.product-label {
  display: inline-block;
  position: absolute;
  top: -35px;
  left: 0;
  right: 0; }
  .product-label:before, .product-label:after {
    text-transform: uppercase;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 0.5em 1.5em; }
  .product-label.discount.orange:before {
    content: attr(data-label-before);
    background: #ff6d5a; }
  .product-label.discount.yellow:before {
    content: attr(data-label-before);
    background: #f1c40f; }
  .product-label.discount.green:before {
    content: attr(data-label-before);
    background: #1abc9c; }
  .product-label.discount.black:before {
    content: attr(data-label-before);
    background: black; }
  .product-label.clearance:before {
    content: attr(data-label-before);
    background: #f1c40f; }
  .product-label.custom:after {
    content: attr(data-label-after);
    background: #1abc9c; }

#notice-cookie-block {
  background: #171e27;
  color: white;
  font-size: 0.77777778rem;
  padding: 0.5em 2em; }
  #notice-cookie-block .notice-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
  #notice-cookie-block p {
    margin: 0; }
  #notice-cookie-block a {
    color: #ff6d5a; }
  #notice-cookie-block button {
    margin: 0.5em 1em;
    font-size: 0.66666667rem; }

#notification-bar #notification {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #213444;
  background: #f1c40f;
  min-height: 46px;
  padding: 0 1em;
  font-weight: 500;
  font-size: 0.77777778rem;
  position: relative;
  z-index: 1000; }
  #notification-bar #notification .notification-content {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    text-align: center; }
  #notification-bar #notification .notification-close {
    font-size: 1rem;
    margin: 0 0.5em 0 1em; }
    #notification-bar #notification .notification-close a:hover {
      color: white; }

.remodal {
  padding: 4rem 20px;
  max-width: 1000px;
  text-align: left;
  color: white;
  font-weight: 500;
  background: #ff6d5a; }
  @media (min-width: 450px) {
    .remodal {
      padding: 4rem 40px; } }
  @media (min-width: 800px) {
    .remodal {
      padding: 4rem 60px; } }
  .remodal .remodal-close {
    color: white;
    top: 1em;
    right: 1em; }
    .remodal .remodal-close:hover {
      color: black; }
  .remodal h1, .remodal .h1 {
    color: inherit;
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.5em; }
    @media (min-width: 800px) {
      .remodal h1, .remodal .h1 {
        font-size: 3rem; } }
  .remodal strong {
    font-weight: 900; }
  .remodal a {
    font-weight: 900; }
    .remodal a:hover {
      color: inherit; }
  .remodal .desc-highlights {
    font-weight: 700;
    box-sizing: border-box;
    padding-left: 2.5em;
    position: relative;
    margin-bottom: 0.65em;
    line-height: 1.6;
    font-size: 1rem; }
    .remodal .desc-highlights:last-of-type {
      margin-bottom: 1.5em; }
    .remodal .desc-highlights:before {
      content: "";
      box-sizing: border-box;
      display: block;
      width: 1.44em;
      height: 1.44em;
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='2 2 19 19'%3E%3Cpolyline fill='none' stroke='white' stroke-width='3' stroke-miterlimit='10' points='7.318,10.844 11.449,14.977 16.271,7.4 '/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      position: absolute;
      left: 0;
      top: 0; }

.disabled-online-shopping {
  text-align: center;
  margin-top: 1em;
  color: #ff6d5a;
  font-weight: 500; }

#cart-checkout-totals-table {
  font-weight: 500; }
  #cart-checkout-totals-table tr.free-shipping {
    color: #ff6d5a; }
  #cart-checkout-totals-table tr td {
    border: none;
    border-bottom: 1px solid #ededed;
    padding: 10px 15px; }
    #cart-checkout-totals-table tr td strong {
      font-weight: 700; }
  #cart-checkout-totals-table tr.discount-summary-total, #cart-checkout-totals-table tr.discount-summary-details {
    color: #ff6d5a; }
    #cart-checkout-totals-table tr.discount-summary-total .coupon-item, #cart-checkout-totals-table tr.discount-summary-details .coupon-item {
      color: #a5a5a5;
      font-size: 0.8em; }
  #cart-checkout-totals-table tr.discount-summary-total {
    display: none;
    background-color: rgba(255, 109, 90, 0.15); }
  #cart-checkout-totals-table tfoot td {
    border: none; }
  #cart-checkout-totals-table .a-right {
    font-size: 14px; }
    #cart-checkout-totals-table .a-right strong {
      font-size: 18px; }
  #cart-checkout-totals-table .a-left {
    font-size: 12px; }
    #cart-checkout-totals-table .a-left strong {
      font-size: 14px; }
  #cart-checkout-totals-table td.shipping {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  #cart-checkout-totals-table .estimated-shipping {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-weight: 600;
    line-height: 1em;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50%;
    font-size: 1.5em;
    margin-right: 0.3em;
    color: #1abc9c; }

/* LAYOUT - COMMON */
html {
  overflow-x: hidden; }
  html.frozen {
    position: fixed;
    overflow: hidden;
    right: 0;
    left: 0; }
  html body {
    overflow-x: hidden; }

.wrapper {
  min-width: 320px;
  min-height: 100%;
  margin: 0 auto;
  background: white; }

.wrapper:after {
  clear: both; }

.page {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh; }
  .page .main-container {
    margin-bottom: auto; }

/* ============================================ *
 *  LAYOUT - HEADER
 * ============================================ */
/* ============================================ *
 *  LAYOUT - CONTENT
 * ============================================ */
.main-container.col1-layout .main {
  width: 100%; }
.main-container.col2-left-layout .main {
  display: block;
  padding: 2rem 20px;
  margin: auto; }
  @media (min-width: 500px) {
    .main-container.col2-left-layout .main {
      padding: 2rem 40px; } }
  @media (min-width: 891px) {
    .main-container.col2-left-layout .main {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; } }
@media (max-width: 890px) {
  .main-container.col2-left-layout .col-left .mb-mana-catalog-leftnav {
    display: none; } }
@media (min-width: 891px) {
  .main-container.col2-left-layout .col-left {
    width: 290px;
    min-width: 290px;
    padding: 0 20px; } }
.main-container.col2-left-layout .col-main {
  width: 100%; }
  @media (min-width: 891px) {
    .main-container.col2-left-layout .col-main {
      padding: 0 20px; } }
.main-container.col2-right-layout .main {
  margin: 0 auto;
  padding: 2rem 20px;
  max-width: 42rem; }
  @media (min-width: 500px) {
    .main-container.col2-right-layout .main {
      padding: 2rem 40px; } }
  @media (min-width: 860px) {
    .main-container.col2-right-layout .main {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 0;
      -webkit-flex-grow: 0;
          -ms-flex-positive: 0;
              flex-grow: 0;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      max-width: calc(40px + 250px + 40px + 42em + 40px + 290px + 40px); } }
.main-container.col2-right-layout .col-main {
  min-width: 0; }
.main-container.col2-right-layout .col-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 320px;
      -ms-flex: 1 1 320px;
          flex: 1 1 320px;
  min-width: 320px; }
  @media (min-width: 860px) {
    .main-container.col2-right-layout .col-right {
      margin-left: 40px; } }
.main-container.col3-layout .main {
  width: 100%;
  max-width: calc(40px + 42rem + 40px);
  margin: 0 auto;
  padding: 2rem 20px; }
  @media (min-width: 500px) {
    .main-container.col3-layout .main {
      padding: 2rem 40px; } }
  @media (min-width: 860px) {
    .main-container.col3-layout .main {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      max-width: calc(40px + 250px + 40px + 42em + 40px + 290px + 40px); } }
.main-container.col3-layout .col-left {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 250px;
      -ms-flex: 0 0 250px;
          flex: 0 0 250px; }
.main-container.col3-layout .col-main {
  max-width: 42rem; }
  .main-container.col3-layout .col-main .std {
    margin-bottom: 3rem; }
    @media (min-width: 860px) {
      .main-container.col3-layout .col-main .std {
        padding-left: 40px; } }
  .main-container.col3-layout .col-main .col-right {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 320px;
        -ms-flex: 1 1 320px;
            flex: 1 1 320px;
    min-width: 320px; }
    @media (min-width: 860px) {
      .main-container.col3-layout .col-main .col-right {
        margin-left: 40px; } }
  @media (min-width: 1200px) {
    .main-container.col3-layout .col-main {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      max-width: calc(40px + 42rem + 40px + 290px); } }

/* ============================================ *
 *  LAYOUT - PAGE SIDEBARS
 * ============================================ */
.wrapper {
  will-change: transform;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }
  .wrapper .page-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.5);
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
    transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
    z-index: 999; }
    .wrapper .page-overlay.visible, .wrapper.sidebar-opened .page-overlay {
      width: 100%;
      height: 100%;
      opacity: 1;
      -webkit-transition: opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
      transition: opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .wrapper.sidebar-opened.left-sidebar-opened {
    -webkit-transform: translate3d(320px, 0, 0);
            transform: translate3d(320px, 0, 0); }
  .wrapper.sidebar-opened.right-sidebar-opened {
    -webkit-transform: translate3d(-320px, 0, 0);
            transform: translate3d(-320px, 0, 0); }
  .wrapper .sidebar-wrapper {
    background: white;
    width: 320px;
    max-width: 335px;
    height: 100vh;
    position: absolute;
    top: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 14px;
    z-index: 1000; }
    .wrapper .sidebar-wrapper.right-sidebar {
      right: 0;
      -webkit-transform: translate3d(100%, 0, 0);
              transform: translate3d(100%, 0, 0); }
    .wrapper .sidebar-wrapper.left-sidebar {
      left: 0;
      -webkit-transform: translate3d(-100%, 0, 0);
              transform: translate3d(-100%, 0, 0); }
    .wrapper .sidebar-wrapper > div {
      position: relative;
      top: 0px;
      left: 0px;
      opacity: 0;
      width: 0;
      height: 0;
      overflow: hidden;
      -webkit-transform: translateX(30px);
              transform: translateX(30px);
      -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s, -webkit-transform 0.1s 0.5s;
      transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s, -webkit-transform 0.1s 0.5s;
      transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s, transform 0.1s 0.5s;
      transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s, transform 0.1s 0.5s, -webkit-transform 0.1s 0.5s; }
      .wrapper .sidebar-wrapper > div.current {
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        -webkit-transform: translateX(0px);
                transform: translateX(0px);
        opacity: 1;
        -webkit-transition: opacity 0.5s 0.25s;
        transition: opacity 0.5s 0.25s; }
        .wrapper .sidebar-wrapper > div.current:not(.mobile-menu-sidebar) {
          -webkit-transition: opacity 0.5s 0.25s, -webkit-transform 0.5s ease 0.35s;
          transition: opacity 0.5s 0.25s, -webkit-transform 0.5s ease 0.35s;
          transition: opacity 0.5s 0.25s, transform 0.5s ease 0.35s;
          transition: opacity 0.5s 0.25s, transform 0.5s ease 0.35s, -webkit-transform 0.5s ease 0.35s; }
      .wrapper .sidebar-wrapper > div h3 {
        font-weight: 600;
        text-align: center;
        padding: 2em 0 1em 0;
        position: relative;
        cursor: pointer; }
        .wrapper .sidebar-wrapper > div h3.sidebar-title:before {
          content: '';
          display: block;
          height: 20px;
          width: 20px;
          position: absolute;
          left: 0;
          background: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23213444' d='M352 128.4L319.7 96 160 256l159.7 160 32.3-32.4L224.7 256'/%3E%3C/svg%3E"); }
        .wrapper .sidebar-wrapper > div h3 span {
          display: block;
          font-size: 11px;
          text-transform: initial;
          margin-top: 1em;
          color: #767676;
          font-weight: 500; }

/* ============================================ *
 *  LAYOUT - FOOTER
 * ============================================ */
/* ============================================ *
 * FORMS - COMMON
 * ============================================ */
/*  ----- Fieldsets ----- */
.input-box {
  position: relative; }

.fieldset[min-width~="520px"] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -1em; }
  .fieldset[min-width~="520px"] > ul {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
        -ms-flex: 1 1 0;
            flex: 1 1 0;
    padding: 0 1em;
    min-width: 50%; }

/*  ----- Inputs ----- */
input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text],
textarea {
  padding: 0.8em;
  margin-bottom: 0.5em;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 2px solid #dddddd;
  background: white;
  resize: none;
  width: 100%;
  color: #213444;
  font-weight: 500;
  border-radius: 0; }
  input[type=email]:disabled, input[type=email].disabled,
  input[type=search]:disabled,
  input[type=search].disabled,
  input[type=number]:disabled,
  input[type=number].disabled,
  input[type=password]:disabled,
  input[type=password].disabled,
  input[type=tel]:disabled,
  input[type=tel].disabled,
  input[type=text]:disabled,
  input[type=text].disabled,
  textarea:disabled,
  textarea.disabled {
    background-color: #f7f7f7; }
  input[type=email].validation-failed, input[type=email].error,
  input[type=search].validation-failed,
  input[type=search].error,
  input[type=number].validation-failed,
  input[type=number].error,
  input[type=password].validation-failed,
  input[type=password].error,
  input[type=tel].validation-failed,
  input[type=tel].error,
  input[type=text].validation-failed,
  input[type=text].error,
  textarea.validation-failed,
  textarea.error {
    border-color: #ff6d5a; }
  input[type=email]:focus,
  input[type=search]:focus,
  input[type=number]:focus,
  input[type=password]:focus,
  input[type=tel]:focus,
  input[type=text]:focus,
  textarea:focus {
    border-color: #a5a5a5; }
  input[type=email]::-webkit-input-placeholder,
  input[type=search]::-webkit-input-placeholder,
  input[type=number]::-webkit-input-placeholder,
  input[type=password]::-webkit-input-placeholder,
  input[type=tel]::-webkit-input-placeholder,
  input[type=text]::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #bababa; }
  input[type=email]:-moz-placeholder,
  input[type=search]:-moz-placeholder,
  input[type=number]:-moz-placeholder,
  input[type=password]:-moz-placeholder,
  input[type=tel]:-moz-placeholder,
  input[type=text]:-moz-placeholder,
  textarea:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #bababa;
    opacity: 1; }
  input[type=email]::-moz-placeholder,
  input[type=search]::-moz-placeholder,
  input[type=number]::-moz-placeholder,
  input[type=password]::-moz-placeholder,
  input[type=tel]::-moz-placeholder,
  input[type=text]::-moz-placeholder,
  textarea::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #bababa;
    opacity: 1; }
  input[type=email]:-ms-input-placeholder,
  input[type=search]:-ms-input-placeholder,
  input[type=number]:-ms-input-placeholder,
  input[type=password]:-ms-input-placeholder,
  input[type=tel]:-ms-input-placeholder,
  input[type=text]:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #bababa; }

/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0; }

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0; }

/* clears the 'X' from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none; }

.validation-advice {
  position: absolute;
  max-width: 60%;
  top: 0;
  right: 0;
  -webkit-transform: translateY(calc(-100% - 5px));
          transform: translateY(calc(-100% - 5px));
  text-align: right;
  font-size: 9px;
  color: #ff6d5a;
  font-weight: 600; }

/*  ----- Buttons ----- */
.button {
  background: #1abc9c;
  display: inline-block;
  padding: 0.8em 1.5em;
  border: 2px solid #1abc9c;
  border-radius: 1px;
  color: #FFFFFF;
  font-size: 0.77777778rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s; }
  .button:hover {
    color: #0a5647; }
  .button:disabled {
    background: #dddddd;
    border-color: #dddddd;
    color: #a5a5a5; }
  .button.white {
    background: white;
    color: #213444;
    border-color: white; }
    .button.white:hover {
      background: #bababa;
      border-color: #bababa;
      color: #213444; }
    .button.white-ghost {
      border-color: white;
      background: transparent;
      color: white; }
      .button.white-ghost:hover {
        background: white;
        color: #213444; }
  .button.black {
    background: #213444;
    color: white;
    border-color: #213444; }
    .button.black:hover {
      background: #171e27;
      border-color: #171e27;
      color: white; }
    .button.black-ghost {
      border-color: #213444;
      background: transparent;
      color: #213444; }
      .button.black-ghost:hover {
        background: #213444;
        color: white; }
  .button.orange, .button.secondary {
    background: #ff6d5a;
    color: white;
    border-color: #ff6d5a; }
    .button.orange:hover, .button.secondary:hover {
      background: #ff6d5a;
      color: #8e261b; }
    .button.orange-ghost, .button.secondary-ghost {
      border-color: #ff6d5a;
      background: transparent;
      color: #ff6d5a; }
      .button.orange-ghost:hover, .button.secondary-ghost:hover {
        background: #ff6d5a;
        color: #8e261b; }
  .button.green {
    background: #1abc9c;
    color: white;
    border-color: #1abc9c; }
    .button.green:hover {
      background: #1abc9c;
      color: #0a5647; }
    .button.green-ghost {
      border-color: #1abc9c;
      background: transparent;
      color: #1abc9c; }
      .button.green-ghost:hover {
        background: #1abc9c;
        color: #0a5647; }
  .button.hidden {
    display: none; }
  .button.inverse {
    background: transparent;
    border: 2px solid #1abc9c;
    color: #1abc9c; }
    .button.inverse:hover {
      background: #1abc9c;
      color: #0a5647; }
  .button.ghost {
    background: transparent;
    border: 2px solid #FFF; }
    .button.ghost:hover {
      background: #FFF;
      color: #171e27; }
  .button.ghost-reverse {
    background: transparent;
    border: 2px solid #171e27;
    color: #171e27; }
    .button.ghost-reverse:hover {
      background: #171e27;
      color: #FFF; }
  .button.round {
    border-radius: 100px; }
  .button.shadow {
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
    .button.shadow:hover {
      box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.4);
      -webkit-transform: translateY(-5px);
              transform: translateY(-5px); }
  .button.loading {
    background: transparent;
    color: #ff6d5a;
    box-shadow: inset 0px 0px 0px 2px #ff6d5a;
    position: relative; }
    .button.loading:before {
      content: "";
      display: block;
      box-sizing: border-box;
      width: 0%;
      height: 0%;
      position: absolute;
      top: 0;
      left: 0;
      background: transparent;
      -webkit-animation: border1 2.5s linear;
              animation: border1 2.5s linear;
      -webkit-animation-iteration-count: infinite;
              animation-iteration-count: infinite; }
    .button.loading:after {
      content: "";
      display: block;
      box-sizing: border-box;
      width: 0%;
      height: 0%;
      position: absolute;
      bottom: 0;
      right: 0;
      background: transparent;
      -webkit-animation: border2 2.5s linear;
              animation: border2 2.5s linear;
      -webkit-animation-iteration-count: infinite;
              animation-iteration-count: infinite; }
@-webkit-keyframes border1 {
  0% {
    width: 0%;
    height: 0%;
    border-right: 2px solid white;
    border-top: 2px solid white;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent; }
  12.5% {
    width: 100%;
    height: 0%; }
  25% {
    width: 100%;
    height: 100%;
    border-right: 2px solid white;
    border-top: 2px solid white;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent; }
  50% {
    width: 100%;
    height: 100%;
    border-right: 2px solid white;
    border-top: 2px solid white;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent; }
  50.001% {
    width: 100%;
    height: 100%;
    border-right: 2px solid transparent;
    border-top: 2px solid transparent;
    border-bottom: 2px solid white;
    border-left: 2px solid white; }
  75% {
    width: 100%;
    height: 100%; }
  87.5% {
    width: 0%;
    height: 100%; }
  100% {
    width: 0%;
    height: 0%;
    border-right: 2px solid transparent;
    border-top: 2px solid transparent;
    border-bottom: 2px solid white;
    border-left: 2px solid white; } }
@keyframes border1 {
  0% {
    width: 0%;
    height: 0%;
    border-right: 2px solid white;
    border-top: 2px solid white;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent; }
  12.5% {
    width: 100%;
    height: 0%; }
  25% {
    width: 100%;
    height: 100%;
    border-right: 2px solid white;
    border-top: 2px solid white;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent; }
  50% {
    width: 100%;
    height: 100%;
    border-right: 2px solid white;
    border-top: 2px solid white;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent; }
  50.001% {
    width: 100%;
    height: 100%;
    border-right: 2px solid transparent;
    border-top: 2px solid transparent;
    border-bottom: 2px solid white;
    border-left: 2px solid white; }
  75% {
    width: 100%;
    height: 100%; }
  87.5% {
    width: 0%;
    height: 100%; }
  100% {
    width: 0%;
    height: 0%;
    border-right: 2px solid transparent;
    border-top: 2px solid transparent;
    border-bottom: 2px solid white;
    border-left: 2px solid white; } }
@-webkit-keyframes border2 {
  0% {
    width: 0%;
    height: 0%;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    border-top: 2px solid transparent; }
  25% {
    width: 0%;
    height: 0%;
    border-left: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-right: 2px solid transparent;
    border-top: 2px solid transparent; }
  25.001% {
    border-left: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    border-right: 2px solid transparent;
    border-top: 2px solid transparent; }
  37.5% {
    width: 100%;
    height: 0%; }
  50% {
    width: 100%;
    height: 100%;
    border-left: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    border-right: 2px solid transparent;
    border-top: 2px solid transparent; }
  50.001% {
    width: 100%;
    height: 100%;
    border-left: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-right: 2px solid white;
    border-top: 2px solid white; }
  62.5% {
    width: 0%;
    height: 100%;
    border-left: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-right: 2px solid white;
    border-top: 2px solid white; }
  75% {
    width: 0%;
    height: 0%;
    border-left: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-right: 2px solid white;
    border-top: 2px solid white; }
  75.001% {
    width: 0%;
    height: 0%;
    border-left: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-right: 2px solid transparent;
    border-top: 2px solid transparent; }
  100% {
    border-left: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 2px solid transparent; } }
@keyframes border2 {
  0% {
    width: 0%;
    height: 0%;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    border-top: 2px solid transparent; }
  25% {
    width: 0%;
    height: 0%;
    border-left: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-right: 2px solid transparent;
    border-top: 2px solid transparent; }
  25.001% {
    border-left: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    border-right: 2px solid transparent;
    border-top: 2px solid transparent; }
  37.5% {
    width: 100%;
    height: 0%; }
  50% {
    width: 100%;
    height: 100%;
    border-left: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    border-right: 2px solid transparent;
    border-top: 2px solid transparent; }
  50.001% {
    width: 100%;
    height: 100%;
    border-left: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-right: 2px solid white;
    border-top: 2px solid white; }
  62.5% {
    width: 0%;
    height: 100%;
    border-left: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-right: 2px solid white;
    border-top: 2px solid white; }
  75% {
    width: 0%;
    height: 0%;
    border-left: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-right: 2px solid white;
    border-top: 2px solid white; }
  75.001% {
    width: 0%;
    height: 0%;
    border-left: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-right: 2px solid transparent;
    border-top: 2px solid transparent; }
  100% {
    border-left: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 2px solid transparent; } }
  .button.rounded {
    border-radius: 100px; }

/*  ----- Buttons Sets ----- */
.buttons-set {
  clear: both;
  margin-top: 1.5em; }
  .buttons-set .back-link {
    display: inline-block;
    margin-right: 30px; }

/*  ----- Labels ----- */
label, .label {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  color: #767676;
  margin-bottom: 0.3em; }

label.required:after,
span.required:after {
  font-weight: normal;
  font-size: 0.77777778rem; }

label.required em,
span.required em {
  display: none; }

/*  ----- Select ----- */
/*  ----- Checkboxes ----- */
input[type="checkbox"] {
  display: none; }
  input[type="checkbox"] + label {
    cursor: pointer; }
    input[type="checkbox"] + label:before {
      content: "";
      display: inline-block;
      vertical-align: middle;
      width: 20px;
      height: 20px;
      margin-right: 10px;
      border: 2px solid #dddddd;
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23 23'%3E%3Cpolyline fill='none' stroke='%23FFFFFF' stroke-width='3' stroke-miterlimit='10' points='7.318,10.844 11.449,14.977 16.271,7.4 '/%3E%3C/svg%3E");
      background-color: transparent;
      -webkit-transition: 400ms;
      transition: 400ms;
      margin-top: -1px; }
  input[type="checkbox"]:checked + label:before {
    background-color: #1abc9c;
    border: 2px solid #1abc9c; }
  input[type="checkbox"]:checked:disabled + label:before {
    border: 2px solid #dddddd; }
  input[type="checkbox"]:disabled + label:before {
    background-color: #ededed;
    background-image: none; }
  input[type="checkbox"]:not(:disabled):not(:checked) + label:hover:before {
    border: 2px solid #1abc9c;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23 23'%3E%3Cpolyline fill='none' stroke='%231abc9c' stroke-width='2' stroke-miterlimit='10' points='7.318,10.844 11.449,14.977 16.271,7.4 '/%3E%3C/svg%3E"); }

/*  ----- Radio Buttons ----- */
input[type="radio"] {
  display: none; }
  input[type="radio"] + label {
    cursor: pointer; }
    input[type="radio"] + label:before {
      box-sizing: border-box;
      content: "";
      display: inline-block;
      vertical-align: middle;
      width: 20px;
      height: 20px;
      margin-right: 1em;
      border: 2px solid #dddddd;
      border-radius: 50%;
      background-size: contain;
      background-color: transparent;
      -webkit-transition: 125ms;
      transition: 125ms; }
  input[type="radio"]:checked + label:before {
    border: 6px solid #ff6d5a; }
  input[type="radio"]:checked:disabled + label:before {
    border: 2px solid #dddddd; }
  input[type="radio"]:disabled + label:before {
    background-color: #ededed;
    background-image: none; }
  input[type="radio"]:not(:disabled):not(:checked) + label:hover:before {
    border: 2px solid #ff6d5a; }

/*  ----- Validation ----- */
/* ============================================ *
 * TABLES - COMMON
 * ============================================ */
table {
  width: 100%; }
  table td {
    padding: 1em;
    font-size: 0.88888889rem;
    vertical-align: middle; }
  table th {
    padding: 1em;
    font-size: 0.55555556rem;
    vertical-align: middle;
    text-align: inherit; }
  table thead tr {
    background: #ededed;
    text-transform: uppercase;
    white-space: nowrap;
    color: #767676;
    font-weight: 500; }
  table tbody tr {
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s; }
    table tbody tr td {
      border-top: 1px solid #ededed; }
    table tbody tr:last-child td {
      border-bottom: 1px solid #ededed; }

.trufit-widget h2.title {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0 30px;
  position: relative;
  z-index: 1;
  display: inline-block;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-bottom: 1em; }
  @media (min-width: 700px) {
    .trufit-widget h2.title {
      font-size: 3rem; } }
  @media (min-width: 1200px) {
    .trufit-widget h2.title {
      font-size: 3.5rem; } }
  .trufit-widget h2.title + p {
    max-width: 42em;
    text-align: center;
    margin: -2.5em auto 3em auto;
    font-weight: 500;
    padding: 0 20px;
    color: #767676;
    font-size: 0.88888889rem;
    line-height: 1.5; }

.trufit-widget.banner {
  overflow: hidden;
  font-size: 14px; }
  .trufit-widget.banner:not(.image-only) {
    background: #f7f7f7;
    /*******************
    * RESPONSIVE BANNER
    ******************/ }
    .trufit-widget.banner:not(.image-only).orange {
      background: #ff6d5a; }
    .trufit-widget.banner:not(.image-only).yellow {
      background: #f1c40f; }
    .trufit-widget.banner:not(.image-only).green {
      background: #1abc9c; }
    .trufit-widget.banner:not(.image-only).dark-blue {
      background: #213444; }
    .trufit-widget.banner:not(.image-only) .banner_item {
      width: 100%;
      max-width: 1200px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      margin: 0 auto;
      background-repeat: no-repeat;
      background-position-x: 60%;
      background-size: contain;
      padding: 4rem 1rem; }
      .trufit-widget.banner:not(.image-only) .banner_item .banner_item_image {
        box-sizing: content-box;
        width: 100%;
        max-width: 550px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center; }
        .trufit-widget.banner:not(.image-only) .banner_item .banner_item_image div {
          position: relative;
          width: 100%;
          padding-bottom: 100%; }
          .trufit-widget.banner:not(.image-only) .banner_item .banner_item_image div:before {
            display: block;
            content: "";
            position: absolute;
            top: 0;
            width: 25%;
            height: 25%;
            background-repeat: no-repeat;
            background-size: contain;
            z-index: 2; }
          .trufit-widget.banner:not(.image-only) .banner_item .banner_item_image div img {
            width: 100%;
            height: auto;
            display: block;
            position: absolute;
            border: 0;
            -webkit-transition: opacity 1s;
            transition: opacity 1s;
            opacity: 0; }
            .trufit-widget.banner:not(.image-only) .banner_item .banner_item_image div img:not(.lazyload), .trufit-widget.banner:not(.image-only) .banner_item .banner_item_image div img.loaded, .trufit-widget.banner:not(.image-only) .banner_item .banner_item_image div img.error {
              opacity: 1; }
      .trufit-widget.banner:not(.image-only) .banner_item .banner_item_info {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
            -ms-flex-align: start;
                align-items: flex-start;
        text-align: center;
        -webkit-flex-shrink: 0;
            -ms-flex-negative: 0;
                flex-shrink: 0;
        z-index: 1; }
        .trufit-widget.banner:not(.image-only) .banner_item .banner_item_info .banner_item_info_title {
          font-size: 2em;
          line-height: 1.1;
          text-transform: uppercase;
          font-weight: 900;
          margin: 0.5em auto;
          max-width: 90%; }
        .trufit-widget.banner:not(.image-only) .banner_item .banner_item_info .banner_item_info_text {
          font-weight: 500;
          line-height: 1.3;
          font-size: 0.9em;
          margin: 1em auto 1.5em auto;
          max-width: 90%; }
        .trufit-widget.banner:not(.image-only) .banner_item .banner_item_info .banner_item_info_button {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          margin: 0 auto; }
          .trufit-widget.banner:not(.image-only) .banner_item .banner_item_info .banner_item_info_button button {
            font-size: 0.8em;
            border-radius: 100px; }
        .trufit-widget.banner:not(.image-only) .banner_item .banner_item_info .product-price-box {
          font-size: 2em;
          margin-bottom: 2rem;
          font-weight: 700; }
          .trufit-widget.banner:not(.image-only) .banner_item .banner_item_info .product-price-box div.old-price {
            font-size: 0.5em;
            font-weight: 500; }
            .trufit-widget.banner:not(.image-only) .banner_item .banner_item_info .product-price-box div.old-price span {
              position: relative; }
              .trufit-widget.banner:not(.image-only) .banner_item .banner_item_info .product-price-box div.old-price span:before {
                content: '';
                position: absolute;
                width: 100%;
                height: 1px;
                background: currentColor;
                top: 50%;
                left: 0;
                right: 0;
                margin: 0 auto;
                -webkit-transform: rotate(-20deg);
                        transform: rotate(-20deg); }
    .trufit-widget.banner:not(.image-only).trudeal .banner_item_image > div:before {
      background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 118 118'%3E%3Cpath fill='transparent' d='M59,3a56,56,0,1,0,56,56A56.06,56.06,0,0,0,59,3Z'/%3E%3Cpath fill='white' d='M59,118a59,59,0,1,1,59-59A59.07,59.07,0,0,1,59,118ZM59,3a56,56,0,1,0,56,56A56.06,56.06,0,0,0,59,3Z'/%3E%3Cg fill='white'%3E%3Cpath d='M27.06,78l-1.17-2.57-6.37,2.9-1-2.13,6.36-2.9-1.18-2.58,1.89-.86,3.32,7.28Z'/%3E%3Cpath d='M28.71,90.87l1-3.28L29,86.89,26.88,89l-1.65-1.67L31.68,81l2.88,2.91a2.79,2.79,0,0,1,0,4.27,2.74,2.74,0,0,1-2.81.88l-1.15,3.71Zm1.8-5.44,1,1a0.95,0.95,0,0,0,1.35-1.33l-1-1.05Z'/%3E%3Cpath d='M48.24,92.41l-2.15,4.75a3.67,3.67,0,0,1-5.29,2A4,4,0,0,1,38.54,97a3.92,3.92,0,0,1,.24-3.11l2.15-4.75,2.13,1-2.14,4.71c-0.54,1.18-.3,2,0.73,2.47s1.79,0.09,2.33-1.09l2.14-4.71Z'/%3E%3Cpath d='M59.92,94.1l3.8-.55a4.59,4.59,0,0,1,3.44.74,4.9,4.9,0,0,1,.94,6.55A4.58,4.58,0,0,1,65,102.53l-3.8.55Zm2.6,1.66,0.72,5,1.51-.22c1.4-.2,2.1-1.15,1.86-2.82S65.44,95.34,64,95.54Z'/%3E%3Cpath d='M79.17,90.1L76,91.81,76.64,93l2.71-1.46,1,1.78L77.6,94.79l0.73,1.36,3.18-1.71,1,1.83-5.25,2.82-4.29-8,5.23-2.81Z'/%3E%3Cpath d='M95.28,84.28l-1.78,2-1-.26-2.36,2.69,0.39,0.93-1.78,2-3.71-9.81Zm-5.89,2.59,1.17-1.34L88.62,85Z'/%3E%3Cpath d='M97.93,74.41L99.22,71l1.94,0.74L99,77.33l-8.46-3.25L91.4,71.9Z'/%3E%3C/g%3E%3Cg fill='white'%3E%3Cpolygon points='60.5 74.12 60.5 17.5 57.5 17.5 57.5 74.12 49.51 66.89 47.49 69.11 59 79.52 70.51 69.11 68.49 66.89 60.5 74.12'/%3E%3Cpolygon points='45.49 45.89 37.5 53.12 37.5 25.5 34.5 25.5 34.5 53.12 26.51 45.89 24.49 48.11 36 58.52 47.51 48.11 45.49 45.89'/%3E%3Cpolygon points='91.49 45.89 83.5 53.12 83.5 25.5 80.5 25.5 80.5 53.12 72.51 45.89 70.49 48.11 82 58.52 93.51 48.11 91.49 45.89'/%3E%3C/g%3E%3C/svg%3E"); }
    .trufit-widget.banner:not(.image-only).new .banner_item_image > div:before {
      background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='Layer 1' viewBox='0 0 118 118'%3E%3Cg fill='white'%3E%3Cpath d='M59 118a59 59 0 1 1 59-59 59.07 59.07 0 0 1-59 59zM59 3a56 56 0 1 0 56 56A56.06 56.06 0 0 0 59 3z'/%3E%3Cpath d='M63.62 74.37h-9.24a6.12 6.12 0 0 1-6.1-6.11V52.51a6.12 6.12 0 0 1 3.67-5.59v-2.29a1.49 1.49 0 0 1 1.49-1.49h11.13a1.49 1.49 0 0 1 1.49 1.49v2.29a6.12 6.12 0 0 1 3.67 5.59v15.75a6.12 6.12 0 0 1-6.11 6.11zm-9.38-28.93v3.17l-.85.23a3.81 3.81 0 0 0-2.82 3.67v15.75a3.81 3.81 0 0 0 3.81 3.81h9.23a3.81 3.81 0 0 0 3.81-3.81V52.51a3.81 3.81 0 0 0-2.82-3.67l-.85-.23v-3.17h-9.51zM57.85 27.83h2.3v8.32h-2.3zM57.85 79.44h2.3v11.72h-2.3zM14.42 56.65h22.94v2.3H14.42zM35.64 76.391l6.945-4.58 1.267 1.92-6.945 4.58zM24.366 31.097l1.466-1.772 15.225 12.596-1.466 1.772zM80.77 56.65h22.94v2.3H80.77zM74.28 73.716l1.267-1.92 6.945 4.581-1.266 1.92zM77.08 41.92l15.223-12.598 1.467 1.772-15.223 12.598z'/%3E%3Cpath d='M53.09 46.58H64.9v2.3H53.09zM49.43 53.77h19.15v2.3H49.43zM49.43 63.28h19.15v2.3H49.43zM23.61 74.44l2.25 4a3.13 3.13 0 0 1-1.32 4.59A3.13 3.13 0 0 1 20 81.77L19 80l-3 1.64-1.27-2.28zm-.75 3.41l-1.87 1 .82 1.48a1.07 1.07 0 0 0 1.87-1zM27.52 96l.94-3.71-.82-.74L25.36 94l-1.94-1.75 6.79-7.5 3.39 3.07a3.12 3.12 0 0 1 .24 4.76 3.06 3.06 0 0 1-3.08 1.15L29.7 98zm1.67-6.17l1.22 1.11a1.06 1.06 0 0 0 1.42-1.56l-1.23-1.14zM47.88 97.31a5.51 5.51 0 0 1-2.83 7 5.32 5.32 0 0 1-4.09-.12 5.43 5.43 0 0 1-3.07-2.77 5 5 0 0 1 0-4.07 5 5 0 0 1 2.79-2.94 5.37 5.37 0 0 1 4.13.12 5.28 5.28 0 0 1 3.07 2.78zm-7.48 1a2.7 2.7 0 1 0 3.6-1.62 2.6 2.6 0 0 0-3.6 1.67zM54.12 97.36h4.29a5.11 5.11 0 0 1 3.67 1.4 5.47 5.47 0 0 1-.06 7.39 5.11 5.11 0 0 1-3.69 1.34h-4.29zm2.59 2.27v5.63h1.71c1.58 0 2.51-.91 2.52-2.79s-.9-2.82-2.48-2.83h-1.7zM76.3 93.56l2 5.47a4.38 4.38 0 0 1 0 3.48 4.43 4.43 0 0 1-2.68 2.22 4.5 4.5 0 0 1-3.51 0 4.38 4.38 0 0 1-2.24-2.67l-2-5.47 2.45-.89 2 5.43c.49 1.36 1.33 1.84 2.51 1.41s1.51-1.32 1-2.68l-2-5.43zM87.23 86.58a4.32 4.32 0 0 1 3.11 1.09l-1.91 2a2.14 2.14 0 0 0-2.93.07c-1.16 1-1.15 2.5 0 3.83s2.66 1.53 3.78.57a2.15 2.15 0 0 0 .52-2.88l2.2-1.63a4.42 4.42 0 0 1 .62 3.26 5.18 5.18 0 0 1-1.79 2.92 5.29 5.29 0 0 1-3.8 1.4 5.67 5.67 0 0 1-4.94-5.77 5.3 5.3 0 0 1 2-3.54 5.17 5.17 0 0 1 3.14-1.32zM96.67 75.11l-1.55 2.75 6.8 3.83-1.28 2.31-6.8-3.83-1.55 2.76-2-1.13 4.36-7.8zM46 17.17l-1.57-4.46 2.46-.87 3.43 9.73-7.08-2.73 1.56 4.46-2.46.87-3.42-9.73zM61.63 12.76l-4 .07v1.51l3.44-.06v2.26l-3.44.06v1.72l4-.07v2.31l-6.64.11.01-10.12 6.63-.11zM76.23 18.37l3.25-3.52 2.8 1-8 8-.45-5-3.61 3.54-.94-11.28 2.79 1 .19 4.78 3.57-3.56z'/%3E%3C/g%3E%3C/svg%3E"); }
    .trufit-widget.banner:not(.image-only)[min-width~="370px"] {
      font-size: 16px; }
    .trufit-widget.banner:not(.image-only)[min-width~="500px"] {
      font-size: 18px; }
      .trufit-widget.banner:not(.image-only)[min-width~="500px"] .banner_item {
        padding: 3rem; }
    .trufit-widget.banner:not(.image-only)[min-width~="600px"] {
      font-size: 14px; }
      .trufit-widget.banner:not(.image-only)[min-width~="600px"] .banner_item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        padding: 3em 3em 3em 1em; }
        .trufit-widget.banner:not(.image-only)[min-width~="600px"] .banner_item .banner_item_image {
          max-width: 40%; }
        .trufit-widget.banner:not(.image-only)[min-width~="600px"] .banner_item .banner_item_info {
          max-width: 60%;
          text-align: left;
          -webkit-flex-shrink: 1;
              -ms-flex-negative: 1;
                  flex-shrink: 1;
          margin-left: 1em; }
          .trufit-widget.banner:not(.image-only)[min-width~="600px"] .banner_item .banner_item_info .banner_item_info_title {
            font-size: 2.2em;
            margin: 0;
            max-width: unset; }
          .trufit-widget.banner:not(.image-only)[min-width~="600px"] .banner_item .banner_item_info .banner_item_info_text {
            font-size: 1em;
            line-height: 1.5;
            margin: 1em 0 1.5em 0;
            max-width: unset; }
          .trufit-widget.banner:not(.image-only)[min-width~="600px"] .banner_item .banner_item_info .banner_item_info_button {
            margin: unset;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-flex-direction: row;
                -ms-flex-direction: row;
                    flex-direction: row;
            -webkit-box-align: start;
            -webkit-align-items: flex-start;
                -ms-flex-align: start;
                        -ms-grid-row-align: flex-start;
                    align-items: flex-start; }
            .trufit-widget.banner:not(.image-only)[min-width~="600px"] .banner_item .banner_item_info .banner_item_info_button .product-price-box {
              margin-bottom: 0;
              margin-right: 1rem; }
        .trufit-widget.banner:not(.image-only)[min-width~="600px"] .banner_item.image-right {
          -webkit-box-orient: horizontal;
          -webkit-box-direction: reverse;
          -webkit-flex-direction: row-reverse;
              -ms-flex-direction: row-reverse;
                  flex-direction: row-reverse;
          padding: 3em 1em 3em 3em; }
          .trufit-widget.banner:not(.image-only)[min-width~="600px"] .banner_item.image-right .banner_item_info {
            margin: 0; }
    .trufit-widget.banner:not(.image-only)[min-width~="700px"] {
      font-size: 16px; }
      .trufit-widget.banner:not(.image-only)[min-width~="700px"] .banner_item {
        padding: 4em 3em; }
        .trufit-widget.banner:not(.image-only)[min-width~="700px"] .banner_item .banner_item_info .banner_item_info_title {
          font-size: 2.2em; }
    .trufit-widget.banner:not(.image-only)[min-width~="800px"] .banner_item {
      max-width: 55em; }
      .trufit-widget.banner:not(.image-only)[min-width~="800px"] .banner_item .banner_item_info .banner_item_info_title {
        font-size: 2.5em; }
    .trufit-widget.banner:not(.image-only)[min-width~="900px"] {
      font-size: 18px; }
      .trufit-widget.banner:not(.image-only)[min-width~="900px"] .banner_item {
        padding: 4em; }
        .trufit-widget.banner:not(.image-only)[min-width~="900px"] .banner_item .banner_item_info .banner_item_info_text {
          max-width: 25em; }
    .trufit-widget.banner:not(.image-only)[min-width~="1100px"] .banner_item {
      max-width: 60em; }
      .trufit-widget.banner:not(.image-only)[min-width~="1100px"] .banner_item .banner_item_info {
        margin-right: 1em; }
        .trufit-widget.banner:not(.image-only)[min-width~="1100px"] .banner_item .banner_item_info .banner_item_info_title {
          font-size: 3em; }
        .trufit-widget.banner:not(.image-only)[min-width~="1100px"] .banner_item .banner_item_info .banner_item_info_text {
          max-width: 30em; }
    .trufit-widget.banner:not(.image-only)[min-width~="1300px"] .banner_item {
      max-width: 70em; }
    .trufit-widget.banner:not(.image-only)[min-width~="1400px"] .banner_item .banner_item_image {
      min-width: 550px; }
    .trufit-widget.banner:not(.image-only)[min-width~="1400px"] .banner_item .banner_item_info .banner_item_info_title {
      font-size: 4em; }
    .trufit-widget.banner:not(.image-only)[min-width~="1400px"] .banner_item .banner_item_info .banner_item_info_text {
      font-size: 1.2em; }
  .trufit-widget.banner.image-only .banner_item_image {
    width: 100%;
    height: 60vw;
    max-height: calc(30em + 5vw);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; }
    @media (min-width: 1300px) {
      .trufit-widget.banner.image-only .banner_item_image {
        background-size: contain; } }

.banner-combo {
  width: 100%; }
  .banner-combo[max-width~="599px"] .trufit-widget.banner:not(.image-only) {
    font-size: 2.6vw; }
    .banner-combo[max-width~="599px"] .trufit-widget.banner:not(.image-only) .banner_item {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
      padding: 3em 0; }
      .banner-combo[max-width~="599px"] .trufit-widget.banner:not(.image-only) .banner_item .banner_item_image {
        max-width: 42%; }
      .banner-combo[max-width~="599px"] .trufit-widget.banner:not(.image-only) .banner_item .banner_item_info {
        max-width: 60%;
        text-align: left;
        -webkit-flex-shrink: 1;
            -ms-flex-negative: 1;
                flex-shrink: 1;
        margin-left: 1em; }
        .banner-combo[max-width~="599px"] .trufit-widget.banner:not(.image-only) .banner_item .banner_item_info .banner_item_info_title {
          font-size: 2em;
          margin: 0;
          max-width: unset; }
        .banner-combo[max-width~="599px"] .trufit-widget.banner:not(.image-only) .banner_item .banner_item_info .banner_item_info_text {
          font-size: 1em;
          margin: 1em 0 1.5em 0; }
        .banner-combo[max-width~="599px"] .trufit-widget.banner:not(.image-only) .banner_item .banner_item_info .banner_item_info_button {
          margin: unset;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -webkit-flex-direction: row;
              -ms-flex-direction: row;
                  flex-direction: row;
          -webkit-box-align: start;
          -webkit-align-items: flex-start;
              -ms-flex-align: start;
                      -ms-grid-row-align: flex-start;
                  align-items: flex-start; }
          .banner-combo[max-width~="599px"] .trufit-widget.banner:not(.image-only) .banner_item .banner_item_info .banner_item_info_button .product-price-box {
            margin-bottom: 0;
            margin-right: 1rem; }
          .banner-combo[max-width~="599px"] .trufit-widget.banner:not(.image-only) .banner_item .banner_item_info .banner_item_info_button button {
            font-size: 0.9em; }
  .banner-combo[min-width~="700px"] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    .banner-combo[min-width~="700px"] .trufit-widget.banner {
      width: 50%; }

.trufit-widget.brands-slider {
  overflow: hidden;
  font-size: 16px;
  position: relative; }
  .trufit-widget.brands-slider:before, .trufit-widget.brands-slider:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    top: 0;
    z-index: 1;
    pointer-events: none; }
    @media (min-width: 860px) {
      .trufit-widget.brands-slider:before, .trufit-widget.brands-slider:after {
        width: 200px; } }
  .trufit-widget.brands-slider:before {
    left: 0;
    background-image: -webkit-linear-gradient(right, rgba(237, 237, 237, 0), #ededed);
    background-image: linear-gradient(to left, rgba(237, 237, 237, 0), #ededed); }
  .trufit-widget.brands-slider:after {
    right: 0;
    background-image: -webkit-linear-gradient(left, rgba(237, 237, 237, 0), #ededed);
    background-image: linear-gradient(to right, rgba(237, 237, 237, 0), #ededed); }
  .trufit-widget.brands-slider .brand-logo-wrapper {
    background: #ededed;
    padding: 2em 0; }
    @media (min-width: 860px) {
      .trufit-widget.brands-slider .brand-logo-wrapper {
        padding: 4em 0; } }
    @media (min-width: 1024px) {
      .trufit-widget.brands-slider .brand-logo-wrapper {
        padding: 6em 0; } }
  .trufit-widget.brands-slider .brand-logo {
    height: 6em;
    margin: 0 2em; }
    @media (min-width: 860px) {
      .trufit-widget.brands-slider .brand-logo {
        margin: 0 3em; } }
    .trufit-widget.brands-slider .brand-logo svg {
      height: 100%;
      max-width: 16em;
      color: #909091;
      fill: currentColor !important;
      -webkit-transition: all 0.5s;
      transition: all 0.5s; }
      .trufit-widget.brands-slider .brand-logo svg * {
        color: inherit;
        fill: currentColor !important; }
    .trufit-widget.brands-slider .brand-logo svg:hover {
      color: #ff6d5a; }

.trufit-widget.product-slider {
  overflow: hidden;
  font-size: 16px; }
  .trufit-widget.product-slider .widget-link {
    text-align: center;
    display: block;
    margin: -2em auto 4em auto;
    color: #ff6d5a;
    font-size: 0.66666667rem;
    text-transform: uppercase; }
    .trufit-widget.product-slider .widget-link span {
      font-size: 0.77777778rem; }
  .trufit-widget.product-slider.product-slider {
    margin: auto;
    clear: both; }
    .trufit-widget.product-slider.product-slider .slick-track {
      margin: auto; }
  .trufit-widget.product-slider.product-slider-slider, .trufit-widget.product-slider.product-slider-bestsellers {
    max-width: 600px; }
    @media all and (min-width: 768px) {
      .trufit-widget.product-slider.product-slider-slider, .trufit-widget.product-slider.product-slider-bestsellers {
        max-width: 940px; } }
    @media all and (min-width: 1024px) {
      .trufit-widget.product-slider.product-slider-slider, .trufit-widget.product-slider.product-slider-bestsellers {
        max-width: 1260px; } }
    @media all and (min-width: 1600px) {
      .trufit-widget.product-slider.product-slider-slider, .trufit-widget.product-slider.product-slider-bestsellers {
        max-width: 1500px; } }
    .trufit-widget.product-slider.product-slider-slider .product-grid-info, .trufit-widget.product-slider.product-slider-bestsellers .product-grid-info {
      margin: 0 10px;
      position: relative; }
      @media all and (min-width: 600px) {
        .trufit-widget.product-slider.product-slider-slider .product-grid-info, .trufit-widget.product-slider.product-slider-bestsellers .product-grid-info {
          margin: 0 20px; } }
  .trufit-widget.product-slider.product-slider-grid {
    max-width: 590px; }
    .trufit-widget.product-slider.product-slider-grid .product-grid-info {
      margin: 0 20px; }
    @media all and (max-width: 767px) {
      .trufit-widget.product-slider.product-slider-grid .widget-product-collection:after {
        content: "";
        display: table;
        clear: both; }
      .trufit-widget.product-slider.product-slider-grid .widget-product-collection .product-grid-info {
        width: 50%;
        float: left;
        margin: 0 0 2em 0;
        padding: 0 20px; }
        .trufit-widget.product-slider.product-slider-grid .widget-product-collection .product-grid-info:nth-child(n+5) {
          display: none; } }
  @media all and (max-width: 767px) and (max-width: 600px) {
    .trufit-widget.product-slider.product-slider-grid .widget-product-collection .product-grid-info {
      padding: 0 10px; } }

    @media all and (min-width: 768px) {
      .trufit-widget.product-slider.product-slider-grid {
        max-width: 940px; } }
    @media all and (min-width: 1024px) {
      .trufit-widget.product-slider.product-slider-grid {
        max-width: 1260px; } }
    @media all and (min-width: 1600px) {
      .trufit-widget.product-slider.product-slider-grid {
        max-width: 1500px; } }
  .trufit-widget.product-slider.product-slider-bestsellers .product-grid-info_image:before {
    content: attr(data-place);
    display: block;
    color: #171e27;
    position: absolute;
    bottom: 0px;
    left: 105px;
    -webkit-transform: translateX(-150%);
    transform: translateX(-150%);
    font-weight: 900;
    font-size: 6.5em;
    opacity: 0.15; }
    @media all and (max-width: 420px) {
      .trufit-widget.product-slider.product-slider-bestsellers .product-grid-info_image:before {
        font-size: 5em;
        left: 65px; } }

.slider-tabs-menu {
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 2em;
  margin-bottom: 2em; }
  @media (min-width: 1200px) {
    .slider-tabs-menu {
      margin-bottom: 4em; } }
  .slider-tabs-menu .slider-tabs-menu-content {
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 2em 2em 2em; }
  .slider-tabs-menu a {
    display: inline-block;
    padding: 0 0 0.1em 0;
    margin: 0 1em;
    text-transform: uppercase;
    font-size: 0.66666667rem;
    font-weight: 600;
    color: #bababa; }
    @media (min-width: 600px) {
      .slider-tabs-menu a {
        font-size: 0.77777778rem; } }
  @media (min-width: 600px) and (min-width: 960px) {
    .slider-tabs-menu a {
      font-size: 0.88888889rem; } }

    .slider-tabs-menu a.current {
      border-bottom: 2px solid #171e27;
      color: #171e27; }

.slider-tabs-container .slider-container:not(:first-child) {
  display: none; }

.trufit-widget.trending-categories ul {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2em; }
  .trufit-widget.trending-categories ul.trending-category-list li {
    background-color: #f7f7f7; }
  .trufit-widget.trending-categories ul.more-category-list {
    margin-top: 3rem; }
    .trufit-widget.trending-categories ul.more-category-list li {
      background-color: white;
      border: 2px solid #ff6d5a;
      -webkit-transition: background-color 0.5s;
      transition: background-color 0.5s; }
      .trufit-widget.trending-categories ul.more-category-list li:hover {
        background-color: #ff6d5a; }
        .trufit-widget.trending-categories ul.more-category-list li:hover a {
          color: white; }
    .trufit-widget.trending-categories ul.more-category-list a {
      color: #ff6d5a;
      font-size: 0.88888889rem;
      text-transform: uppercase;
      line-height: 1.5;
      padding: 0.7em 1.2em 0.7em 2em; }
      .trufit-widget.trending-categories ul.more-category-list a svg {
        width: 0.77777778rem;
        height: 0.77777778rem;
        fill: currentColor;
        margin-left: 0.8em;
        -webkit-animation-name: bounceAlpha;
                animation-name: bounceAlpha;
        -webkit-animation-duration: 2s;
                animation-duration: 2s;
        -webkit-animation-iteration-count: infinite;
                animation-iteration-count: infinite;
        -webkit-animation-timing-function: easeInOut;
                animation-timing-function: easeInOut; }
.trufit-widget.trending-categories li {
  display: inline-block;
  margin: 0.5em;
  border-radius: 50px; }
.trufit-widget.trending-categories img {
  height: 2.2em;
  width: auto;
  margin-right: 1em; }
.trufit-widget.trending-categories a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  padding: 0.7em 1.5em;
  -webkit-transition: color 0.5s;
  transition: color 0.5s; }

#header.menu-activated .top-nav, #header.menu-activated #main-nav {
  z-index: 1000; }
#header .top-nav {
  z-index: 4;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 46px;
  padding: 0 20px;
  background-color: #171e27; }
  @media (min-width: 500px) {
    #header .top-nav {
      padding: 0 30px; } }
#header .top-nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #bababa; }
  #header .top-nav-links a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 10px;
    margin-left: 1.5em; }
    #header .top-nav-links a.mobile-menu-button {
      margin-left: 2em; }
  #header .top-nav-links svg {
    height: 17px; }
  #header .top-nav-links .link-label {
    margin-left: 0.4em; }
    @media (max-width: 500px) {
      #header .top-nav-links .link-label {
        display: none; } }
  #header .top-nav-links .count {
    display: inline-block;
    min-width: 25px;
    border-radius: 50px;
    padding: 2px 6px;
    margin-left: 0.6em;
    background: #767676;
    text-align: center;
    color: white;
    font-size: 1.1em; }
    #header .top-nav-links .count.cart-full, #header .top-nav-links .count.cart-empty {
      background: #ff6d5a; }
  @media (min-width: 1024px) {
    #header .top-nav-links .top-nav-link-search {
      display: none; } }
  #header .top-nav-links .top-nav-link-account, #header .top-nav-links .top-nav-link-favorites {
    display: none; }
    @media (min-width: 860px) {
      #header .top-nav-links .top-nav-link-account, #header .top-nav-links .top-nav-link-favorites {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; } }
  @media (min-width: 860px) {
    #header .top-nav-links .mobile-menu-button {
      display: none; } }
  #header .top-nav-links .mobile-menu-button svg {
    color: white;
    height: 15px; }
#header .store-language-selector {
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
              -ms-grid-row-align: center;
          align-items: center;
  color: #526f84; }
  @media (min-width: 1024px) {
    #header .store-language-selector {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; } }
  #header .store-language-selector .link-icon, #header .store-language-selector svg {
    height: 18px; }
  #header .store-language-selector select {
    visibility: hidden; }
  #header .store-language-selector #select_language_chosen {
    min-width: unset;
    text-transform: uppercase;
    margin-bottom: 0; }
    #header .store-language-selector #select_language_chosen .chosen-single {
      background: #171e27;
      color: #526f84;
      border: none;
      font-size: 10px;
      font-weight: 600; }
      #header .store-language-selector #select_language_chosen .chosen-single span {
        max-width: unset; }
      #header .store-language-selector #select_language_chosen .chosen-single div {
        display: none; }
    #header .store-language-selector #select_language_chosen .chosen-drop {
      background: #171e27;
      color: #526f84;
      border: none;
      width: auto;
      margin-top: 5px; }
    #header .store-language-selector #select_language_chosen .chosen-results {
      max-height: none; }
    #header .store-language-selector #select_language_chosen .active-result {
      font-size: 10px;
      border: none;
      padding: 1.2em 3.2em; }
      #header .store-language-selector #select_language_chosen .active-result.highlighted {
        background: #171e27;
        color: #ff6d5a; }
    #header .store-language-selector #select_language_chosen.chosen-with-drop .chosen-drop {
      left: -25px;
      padding-bottom: 0.5em; }
@media (min-width: 1024px) {
  #header .mobile-logo {
    display: none; } }
#header .mobile-logo svg {
  color: white;
  height: 15px; }
#header .header-content {
  position: relative;
  background: #ff6d5a;
  color: white; }
  #header .header-content.category-header {
    background-color: #213444; }
    #header .header-content.category-header:before {
      content: "";
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      background-color: #171e27;
      width: 100%;
      height: 100%;
      opacity: 0.5; }
    #header .header-content.category-header .header-image {
      background-size: cover;
      background-position: center;
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 0; }
  #header .header-content .nav-overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    width: 100%;
    overflow: hidden;
    opacity: 0;
    -webkit-transform: translateY(-12em);
            transform: translateY(-12em);
    -webkit-transition: opacity 0.1s 2s, -webkit-transform 0.8s 0.2s;
    transition: opacity 0.1s 2s, -webkit-transform 0.8s 0.2s;
    transition: opacity 0.1s 2s, transform 0.8s 0.2s;
    transition: opacity 0.1s 2s, transform 0.8s 0.2s, -webkit-transform 0.8s 0.2s; }
    #header .header-content .nav-overlay .level0-overlay {
      will-change: height;
      background-color: white;
      height: 0;
      -webkit-transition: height 1s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
      transition: height 1s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }
    #header .header-content .nav-overlay .level1-overlay {
      will-change: height;
      background-color: #ff6d5a;
      height: 0;
      -webkit-transition: height 1.3s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
      transition: height 1.3s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }
    #header .header-content .nav-overlay .level2-overlay {
      will-change: height;
      background-color: #213444;
      height: 0;
      opacity: 0;
      -webkit-transition: height 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.5s 0.3s;
      transition: height 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.5s 0.3s; }
  #header .header-content #main-nav {
    position: relative;
    z-index: 3;
    display: none; }
    @media (min-width: 860px) {
      #header .header-content #main-nav {
        display: block; } }
    #header .header-content #main-nav a {
      color: white;
      font-size: 0.88888889rem;
      font-weight: 600;
      will-change: color;
      -webkit-transition: color 0.5s;
      transition: color 0.5s; }
    #header .header-content #main-nav:hover {
      -webkit-transition: color 0.5s;
      transition: color 0.5s; }
    #header .header-content #main-nav.activated {
      z-index: 1000; }
      #header .header-content #main-nav.activated li.level0, #header .header-content #main-nav.activated .nav-logo, #header .header-content #main-nav.activated .nav-search-icon {
        color: #171e27 !important; }
        #header .header-content #main-nav.activated li.level0 > a, #header .header-content #main-nav.activated .nav-logo > a, #header .header-content #main-nav.activated .nav-search-icon > a {
          color: inherit; }
      #header .header-content #main-nav.activated .nav-search-icon:hover svg {
        background: #171e27; }
      #header .header-content #main-nav.activated .nav-search-icon:hover g {
        color: white; }
      #header .header-content #main-nav.activated .nav-overlay {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
        -webkit-transition: opacity 0.5s;
        transition: opacity 0.5s; }
        #header .header-content #main-nav.activated .nav-overlay .level0-overlay, #header .header-content #main-nav.activated .nav-overlay .level1-overlay {
          height: 6rem;
          -webkit-transition: height 0.5s;
          transition: height 0.5s; }
        #header .header-content #main-nav.activated .nav-overlay .level2-overlay {
          opacity: 1;
          -webkit-transition: height 0.7s ease;
          transition: height 0.7s ease; }
    #header .header-content #main-nav .nav-wrapper {
      max-width: 80rem;
      margin: 0 auto;
      position: relative; }
    #header .header-content #main-nav .nav-logo {
      display: none;
      width: 155px;
      position: absolute;
      top: 50%;
      left: 30px;
      margin-top: -17px;
      z-index: 3;
      color: white;
      -webkit-transition: color 0.5s;
      transition: color 0.5s; }
      @media (min-width: 1024px) {
        #header .header-content #main-nav .nav-logo {
          display: block; } }
      #header .header-content #main-nav .nav-logo svg {
        fill: currentColor; }
    #header .header-content #main-nav ul.level0 {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      position: relative;
      height: 6rem;
      z-index: 2; }
      #header .header-content #main-nav ul.level0 li.level0 {
        color: white;
        margin: 0 2em;
        text-transform: uppercase;
        padding: 3px 0px;
        border-bottom: 2px solid transparent;
        -webkit-transition: border-color 0.4s ease;
        transition: border-color 0.4s ease; }
        #header .header-content #main-nav ul.level0 li.level0.menu-active, #header .header-content #main-nav ul.level0 li.level0.active {
          border-bottom: 2px solid currentColor; }
      #header .header-content #main-nav ul.level0 .nav-2 .clearance-link, #header .header-content #main-nav ul.level0 .nav-3 .clearance-link, #header .header-content #main-nav ul.level0 .nav-4 .clearance-link {
        display: none; }
    #header .header-content #main-nav ul.level1,
    #header .header-content #main-nav ul.level2 {
      position: absolute;
      width: 100%;
      left: 0;
      right: 0;
      top: 100%;
      margin: auto;
      visibility: hidden;
      opacity: 0; }
    #header .header-content #main-nav ul.level1 {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      height: 6rem; }
      #header .header-content #main-nav ul.level1 li.level1 {
        margin: 0 1.5em;
        padding: 3px 2px;
        border-bottom: 2px solid transparent;
        -webkit-transition: border-color 0.4s ease;
        transition: border-color 0.4s ease; }
        #header .header-content #main-nav ul.level1 li.level1.menu-active, #header .header-content #main-nav ul.level1 li.level1.active {
          border-bottom: 2px solid white; }
    #header .header-content #main-nav ul.level2 {
      max-width: 55em;
      padding: 4em 0 4em 2em;
      -webkit-columns: auto 16em;
         -moz-columns: auto 16em;
              columns: auto 16em;
      -webkit-column-rule: solid 1px #364350;
         -moz-column-rule: solid 1px #364350;
              column-rule: solid 1px #364350; }
      #header .header-content #main-nav ul.level2 li {
        -webkit-column-break-inside: avoid;
           page-break-inside: avoid;
                break-inside: avoid;
        text-align: left;
        margin: 0.2em 0em 0.2em 1em;
        min-width: 17em; }
        #header .header-content #main-nav ul.level2 li a {
          display: inline-block;
          padding: 0.5em; }
          #header .header-content #main-nav ul.level2 li a.explore-link, #header .header-content #main-nav ul.level2 li a.category-node-471, #header .header-content #main-nav ul.level2 li a.category-node-472, #header .header-content #main-nav ul.level2 li a.category-node-473, #header .header-content #main-nav ul.level2 li a.category-node-474, #header .header-content #main-nav ul.level2 li a:hover {
            color: #ff6d5a; }
          #header .header-content #main-nav ul.level2 li a.clearance-link {
            color: #f1c40f; }
    #header .header-content #main-nav .level0.menu-active ul.level1,
    #header .header-content #main-nav .level1.menu-active ul.level2 {
      visibility: visible;
      opacity: 1;
      -webkit-transition: opacity 0.5s 0.2s ease;
      transition: opacity 0.5s 0.2s ease; }
    #header .header-content #main-nav .nav-search-icon {
      display: none;
      width: 2em;
      position: absolute;
      top: 50%;
      right: 120px;
      margin-top: -17px;
      color: white;
      -webkit-transition: color 0.5s;
      transition: color 0.5s;
      z-index: 2; }
      @media (min-width: 1024px) {
        #header .header-content #main-nav .nav-search-icon {
          display: block; } }
      #header .header-content #main-nav .nav-search-icon svg {
        border: 2px solid currentColor;
        padding: 8px 7px;
        background: transparent;
        -webkit-transition: background 0.4s;
        transition: background 0.4s;
        width: 100%;
        height: 100%; }
      #header .header-content #main-nav .nav-search-icon g {
        stroke: currentColor; }
      #header .header-content #main-nav .nav-search-icon:hover svg {
        background: white; }
      #header .header-content #main-nav .nav-search-icon:hover g {
        color: #171e27; }
  #header .header-content .main-search-box {
    display: none;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
                -ms-grid-row-align: center;
            align-items: center;
    width: 100%;
    padding: 0 1.5em;
    background: white;
    height: 6em;
    position: absolute;
    top: 0;
    left: 0; }
    #header .header-content .main-search-box.visible {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      z-index: 1000; }
    #header .header-content .main-search-box form {
      width: 100%;
      max-width: 40em; }
    #header .header-content .main-search-box .input-box {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
    #header .header-content .main-search-box label {
      font-size: 1.2em;
      color: #ededed;
      margin-bottom: 0;
      font-weight: 900; }
      @media (min-width: 650px) {
        #header .header-content .main-search-box label {
          font-size: 2.33333333rem; } }
    #header .header-content .main-search-box input {
      font-size: 1.22222222rem;
      font-weight: 700;
      padding: 0 0.5em;
      margin-bottom: 0;
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      border: none;
      resize: none;
      width: 100%;
      text-transform: capitalize; }
      @media (min-width: 650px) {
        #header .header-content .main-search-box input {
          font-size: 1.88888889rem; } }
    #header .header-content .main-search-box button {
      font-size: 0.66666667rem;
      background: transparent;
      border: 2px solid #ff6d5a;
      color: #ff6d5a; }
      #header .header-content .main-search-box button:hover {
        background: #ff6d5a;
        color: white; }
    #header .header-content .main-search-box .search-close-button {
      position: absolute;
      top: calc(100% + 2em);
      font-size: 0.66666667rem;
      font-weight: 600;
      text-transform: uppercase;
      color: white; }
      #header .header-content .main-search-box .search-close-button:hover {
        border-bottom: 2px solid white; }
  #header .header-content .category-cms-block {
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 3em 20px 4em 20px; }
    @media (min-width: 450px) {
      #header .header-content .category-cms-block {
        padding: 3em 40px 5em 40px; } }
    #header .header-content .category-cms-block .brand-logo svg {
      fill: white !important;
      max-height: 8em;
      max-width: 26em;
      margin: 0 2em; }
      #header .header-content .category-cms-block .brand-logo svg * {
        fill: white !important; }
    #header .header-content .category-cms-block h1 {
      font-size: 3em;
      font-weight: 900;
      color: inherit;
      max-width: 11em;
      margin: 0 auto;
      text-transform: uppercase; }
      @media (min-width: 600px) {
        #header .header-content .category-cms-block h1 {
          font-size: 4em; } }
    #header .header-content .category-cms-block .category-short-description {
      max-width: 650px;
      margin: 2em auto 0;
      line-height: 1.5;
      font-weight: 500; }
    #header .header-content .category-cms-block .category-header-buttons {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: column-reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse; }
      #header .header-content .category-cms-block .category-header-buttons .button {
        margin: 3em auto 0 auto;
        width: 21em; }
        #header .header-content .category-cms-block .category-header-buttons .button.orange {
          box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3); }
      @media (min-width: 650px) {
        #header .header-content .category-cms-block .category-header-buttons {
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -webkit-flex-direction: row;
              -ms-flex-direction: row;
                  flex-direction: row;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center; }
          #header .header-content .category-cms-block .category-header-buttons .button {
            margin: 3em 0.5em 0 0.5em;
            width: auto; } }
    #header .header-content .category-cms-block .category-description {
      display: none;
      max-width: 1000px;
      padding: 4em; }

body.catalog-category-view.level-1 .category-cms-block {
  padding: 3em 20px 5em 20px !important; }
  @media (min-width: 450px) {
    body.catalog-category-view.level-1 .category-cms-block {
      padding: 3em 40px 6em 40px !important; } }

.footer-container {
  background-color: #213444; }
  .footer-container .block-subscribe {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    background: #f1c40f;
    padding: 4em 10%; }
    .footer-container .block-subscribe .block-title {
      font-size: 2.33333333rem;
      font-weight: 900;
      line-height: 1; }
    .footer-container .block-subscribe .block-subtitle {
      max-width: 35em;
      font-weight: 500;
      margin: 1em auto 2.5em auto;
      line-height: 1.5;
      font-size: 0.88888889rem; }
    .footer-container .block-subscribe .block-links {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
      @media (min-width: 1000px) {
        .footer-container .block-subscribe .block-links {
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -webkit-flex-direction: row;
              -ms-flex-direction: row;
                  flex-direction: row; } }
      .footer-container .block-subscribe .block-links a.social-link {
        display: inline-block;
        position: relative;
        width: 2.5em;
        height: 2.5em;
        background: #213444;
        border-radius: 50%;
        margin: 0 1em;
        -webkit-transition: all 0.5s;
        transition: all 0.5s; }
        .footer-container .block-subscribe .block-links a.social-link:hover {
          background: white;
          cursor: pointer; }
        .footer-container .block-subscribe .block-links a.social-link:before {
          content: "";
          display: block;
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background-repeat: no-repeat;
          background-position: center;
          background-size: contain;
          -webkit-transition: all 0.5s;
          transition: all 0.5s; }
        .footer-container .block-subscribe .block-links a.social-link.facebook:before {
          background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500' style='fill:%23f1c40f;'%3E%3Cpath d='M289.69 60c-67.78 0-90.16 31.1-90.16 84.44v42.22H155V250h44.53v190h82.13V250h55.81l7.5-63.37h-63.31V149c0-17 3.74-25.66 30.16-25.66H345V60h-55.31z'/%3E%3C/svg%3E"); }
        .footer-container .block-subscribe .block-links a.social-link.facebook:hover:before {
          background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500' style='fill:%23213444;'%3E%3Cpath d='M289.69 60c-67.78 0-90.16 31.1-90.16 84.44v42.22H155V250h44.53v190h82.13V250h55.81l7.5-63.37h-63.31V149c0-17 3.74-25.66 30.16-25.66H345V60h-55.31z'/%3E%3C/svg%3E"); }
        .footer-container .block-subscribe .block-links a.social-link.instagram:before {
          background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500' style='fill:%23f1c40f;'%3E%3Cpath d='M250 118.07c43 0 48.06.16 65 .94 15.69.72 24.21 3.34 29.88 5.54a53.29 53.29 0 0130.54 30.54c2.2 5.67 4.83 14.19 5.54 29.88.77 17 .94 22.06.94 65s-.16 48.06-.94 65c-.72 15.69-3.34 24.21-5.54 29.88a53.29 53.29 0 01-30.54 30.54c-5.67 2.2-14.19 4.83-29.88 5.54-17 .77-22.05.94-65 .94s-48.06-.16-65-.94c-15.69-.72-24.21-3.34-29.88-5.54a53.29 53.29 0 01-30.54-30.54c-2.2-5.67-4.83-14.19-5.54-29.88-.77-17-.94-22.06-.94-65s.16-48.06.94-65c.72-15.69 3.34-24.21 5.54-29.88a53.3 53.3 0 0130.54-30.54c5.67-2.2 14.19-4.83 29.88-5.54 17-.77 22.06-.94 65-.94m0-29c-43.7 0-49.19.19-66.35 1s-28.83 3.5-39.06 7.48a82.32 82.32 0 00-47.07 47.06c-4 10.24-6.69 21.93-7.47 39.06s-1 22.64-1 66.35.19 49.19 1 66.35 3.5 28.83 7.48 39.06a82.29 82.29 0 0047.06 47.06c10.24 4 21.93 6.7 39.06 7.48s22.64 1 66.35 1 49.19-.19 66.35-1 28.83-3.5 39.06-7.48a82.29 82.29 0 0047.06-47.06c4-10.24 6.7-21.93 7.48-39.06s1-22.64 1-66.35-.19-49.19-1-66.35-3.5-28.83-7.48-39.06a82.3 82.3 0 00-47.06-47.07c-10.24-4-21.93-6.69-39.06-7.47s-22.64-1-66.35-1z'/%3E%3Cpath d='M250 167.36A82.64 82.64 0 10332.64 250 82.64 82.64 0 00250 167.36zm0 136.27A53.64 53.64 0 11303.64 250 53.64 53.64 0 01250 303.64z'/%3E%3Ccircle cx='335.9' cy='164.1' r='19.31'/%3E%3C/svg%3E"); }
        .footer-container .block-subscribe .block-links a.social-link.instagram:hover:before {
          background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500' style='fill:%23213444;'%3E%3Cpath d='M250 118.07c43 0 48.06.16 65 .94 15.69.72 24.21 3.34 29.88 5.54a53.29 53.29 0 0130.54 30.54c2.2 5.67 4.83 14.19 5.54 29.88.77 17 .94 22.06.94 65s-.16 48.06-.94 65c-.72 15.69-3.34 24.21-5.54 29.88a53.29 53.29 0 01-30.54 30.54c-5.67 2.2-14.19 4.83-29.88 5.54-17 .77-22.05.94-65 .94s-48.06-.16-65-.94c-15.69-.72-24.21-3.34-29.88-5.54a53.29 53.29 0 01-30.54-30.54c-2.2-5.67-4.83-14.19-5.54-29.88-.77-17-.94-22.06-.94-65s.16-48.06.94-65c.72-15.69 3.34-24.21 5.54-29.88a53.3 53.3 0 0130.54-30.54c5.67-2.2 14.19-4.83 29.88-5.54 17-.77 22.06-.94 65-.94m0-29c-43.7 0-49.19.19-66.35 1s-28.83 3.5-39.06 7.48a82.32 82.32 0 00-47.07 47.06c-4 10.24-6.69 21.93-7.47 39.06s-1 22.64-1 66.35.19 49.19 1 66.35 3.5 28.83 7.48 39.06a82.29 82.29 0 0047.06 47.06c10.24 4 21.93 6.7 39.06 7.48s22.64 1 66.35 1 49.19-.19 66.35-1 28.83-3.5 39.06-7.48a82.29 82.29 0 0047.06-47.06c4-10.24 6.7-21.93 7.48-39.06s1-22.64 1-66.35-.19-49.19-1-66.35-3.5-28.83-7.48-39.06a82.3 82.3 0 00-47.06-47.07c-10.24-4-21.93-6.69-39.06-7.47s-22.64-1-66.35-1z'/%3E%3Cpath d='M250 167.36A82.64 82.64 0 10332.64 250 82.64 82.64 0 00250 167.36zm0 136.27A53.64 53.64 0 11303.64 250 53.64 53.64 0 01250 303.64z'/%3E%3Ccircle cx='335.9' cy='164.1' r='19.31'/%3E%3C/svg%3E"); }
        .footer-container .block-subscribe .block-links a.social-link.youtube:before {
          background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500' style='fill:%23f1c40f;'%3E%3Cpath d='M164.13 90c3.79 11.15 7.76 22.33 11.55 33.47 5.77 16.76 9.37 29.38 11 38v48.68h18v-48.68L226.32 90h-18.19l-12.26 47.18L183.05 90h-18.92zm86.29 29.53q-12.12 0-18.87 9.18c-3.45 4.52-5.08 11.53-5.08 21.11v31.34c0 9.52 1.63 16.57 5.08 21.05 4.49 6.11 10.79 9.18 18.87 9.18s14.46-3.08 18.95-9.18c3.4-4.48 5-11.54 5-21.05v-31.34c0-9.57-1.62-16.58-5-21.11q-6.73-9.19-18.95-9.18zm37.32 1.08v70.82c0 6.32.58 10.6 1.47 13.32 1.62 4.54 5.2 6.66 10.42 6.66 5.92 0 12.09-3.6 18.55-11v9.76h16.21v-89.56h-16.21v68.45c-3.59 5.08-7 7.58-10.26 7.58-2.18 0-3.43-1.28-3.79-3.79-.2-.53-.21-2.51-.21-6.32v-65.92h-16.18zm-37.32 13.53c5.23 0 7.74 4.14 7.74 12.42v37.68c0 8.29-2.51 12.39-7.74 12.39s-7.74-4.11-7.74-12.39v-37.69c0-8.28 2.51-12.42 7.74-12.42zm-6.5 90.68c-31.17 0-62.45.23-93.37 3.68a33.58 33.58 0 00-28.71 26.13c-4.62 20.12-4.68 42.07-4.68 62.79v1.5c0 20.28.12 41.64 4.63 61.29a33.61 33.61 0 0028.74 26.13c31 3.46 62.24 3.66 93.45 3.66H256c31.21 0 62.5-.2 93.45-3.66a33.61 33.61 0 0028.74-26.13c4.56-19.84 4.63-41.46 4.63-61.92v-.87c0-20.72 0-42.67-4.58-62.79a33.58 33.58 0 00-28.71-26.13c-30.92-3.45-62.2-3.68-93.37-3.68h-12.24zM137 257.87h56v16.74h-19.26v102.18h-17.87V274.61H137v-16.74zm118.39 0h16.05v38.84c5.18-6.38 10.7-9.61 16.61-9.61 6.39 0 10.66 3.36 12.82 10 1.06 3.57 1.63 9.43 1.63 17.82v35.26c0 8.2-.57 14.11-1.63 17.87-2.15 6.59-6.42 9.95-12.82 9.95-5.71 0-11.24-3.15-16.61-9.79v8.58h-16.07V257.87zm83.76 29.24c8.06 0 14.48 3 19 9.08 3.36 4.48 4.95 11.4 4.95 20.87v18.34h-32.15v15.71c0 8.2 2.67 12.32 8.18 12.32 4 0 6.29-2.15 7.21-6.45a105.6 105.6 0 00.34-10.89h16.37v2.37c0 5.16-.19 8.74-.34 10.34a22.61 22.61 0 01-3.74 9.61c-4.44 6.43-11 9.61-19.42 9.61s-14.8-3-19.45-9.08c-3.41-4.43-5.13-11.4-5.13-20.82v-31.07c0-9.47 1.54-16.39 4.95-20.87 4.64-6.07 11-9.08 19.21-9.08zm-143.82 1.08h16v65.24a47.84 47.84 0 00.16 6.24c.39 2.49 1.62 3.74 3.76 3.74 3.22 0 6.59-2.44 10.16-7.47v-67.76h16.05v88.61h-16.04v-9.66C219 374.45 213 378 207.08 378c-5.17 0-8.76-2.09-10.37-6.58-.87-2.68-1.39-6.9-1.39-13.16v-70.08zm84.11 13.37c-2.64 0-5.31 1.25-8 3.89v54c2.69 2.68 5.36 3.95 8 3.95 4.63 0 7-3.92 7-11.92v-37.85c0-8-2.37-12.08-7-12.08zm59.61 0c-5.37 0-8.08 4.09-8.08 12.29V322H347v-8.18q0-12.27-8-12.27z'/%3E%3C/svg%3E"); }
        .footer-container .block-subscribe .block-links a.social-link.youtube:hover:before {
          background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500' style='fill:%23213444;'%3E%3Cpath d='M164.13 90c3.79 11.15 7.76 22.33 11.55 33.47 5.77 16.76 9.37 29.38 11 38v48.68h18v-48.68L226.32 90h-18.19l-12.26 47.18L183.05 90h-18.92zm86.29 29.53q-12.12 0-18.87 9.18c-3.45 4.52-5.08 11.53-5.08 21.11v31.34c0 9.52 1.63 16.57 5.08 21.05 4.49 6.11 10.79 9.18 18.87 9.18s14.46-3.08 18.95-9.18c3.4-4.48 5-11.54 5-21.05v-31.34c0-9.57-1.62-16.58-5-21.11q-6.73-9.19-18.95-9.18zm37.32 1.08v70.82c0 6.32.58 10.6 1.47 13.32 1.62 4.54 5.2 6.66 10.42 6.66 5.92 0 12.09-3.6 18.55-11v9.76h16.21v-89.56h-16.21v68.45c-3.59 5.08-7 7.58-10.26 7.58-2.18 0-3.43-1.28-3.79-3.79-.2-.53-.21-2.51-.21-6.32v-65.92h-16.18zm-37.32 13.53c5.23 0 7.74 4.14 7.74 12.42v37.68c0 8.29-2.51 12.39-7.74 12.39s-7.74-4.11-7.74-12.39v-37.69c0-8.28 2.51-12.42 7.74-12.42zm-6.5 90.68c-31.17 0-62.45.23-93.37 3.68a33.58 33.58 0 00-28.71 26.13c-4.62 20.12-4.68 42.07-4.68 62.79v1.5c0 20.28.12 41.64 4.63 61.29a33.61 33.61 0 0028.74 26.13c31 3.46 62.24 3.66 93.45 3.66H256c31.21 0 62.5-.2 93.45-3.66a33.61 33.61 0 0028.74-26.13c4.56-19.84 4.63-41.46 4.63-61.92v-.87c0-20.72 0-42.67-4.58-62.79a33.58 33.58 0 00-28.71-26.13c-30.92-3.45-62.2-3.68-93.37-3.68h-12.24zM137 257.87h56v16.74h-19.26v102.18h-17.87V274.61H137v-16.74zm118.39 0h16.05v38.84c5.18-6.38 10.7-9.61 16.61-9.61 6.39 0 10.66 3.36 12.82 10 1.06 3.57 1.63 9.43 1.63 17.82v35.26c0 8.2-.57 14.11-1.63 17.87-2.15 6.59-6.42 9.95-12.82 9.95-5.71 0-11.24-3.15-16.61-9.79v8.58h-16.07V257.87zm83.76 29.24c8.06 0 14.48 3 19 9.08 3.36 4.48 4.95 11.4 4.95 20.87v18.34h-32.15v15.71c0 8.2 2.67 12.32 8.18 12.32 4 0 6.29-2.15 7.21-6.45a105.6 105.6 0 00.34-10.89h16.37v2.37c0 5.16-.19 8.74-.34 10.34a22.61 22.61 0 01-3.74 9.61c-4.44 6.43-11 9.61-19.42 9.61s-14.8-3-19.45-9.08c-3.41-4.43-5.13-11.4-5.13-20.82v-31.07c0-9.47 1.54-16.39 4.95-20.87 4.64-6.07 11-9.08 19.21-9.08zm-143.82 1.08h16v65.24a47.84 47.84 0 00.16 6.24c.39 2.49 1.62 3.74 3.76 3.74 3.22 0 6.59-2.44 10.16-7.47v-67.76h16.05v88.61h-16.04v-9.66C219 374.45 213 378 207.08 378c-5.17 0-8.76-2.09-10.37-6.58-.87-2.68-1.39-6.9-1.39-13.16v-70.08zm84.11 13.37c-2.64 0-5.31 1.25-8 3.89v54c2.69 2.68 5.36 3.95 8 3.95 4.63 0 7-3.92 7-11.92v-37.85c0-8-2.37-12.08-7-12.08zm59.61 0c-5.37 0-8.08 4.09-8.08 12.29V322H347v-8.18q0-12.27-8-12.27z'/%3E%3C/svg%3E"); }
    .footer-container .block-subscribe .input-box {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      border-radius: 50px;
      overflow: hidden;
      max-width: 25em;
      margin: 2em auto 0 auto; }
      @media (min-width: 1000px) {
        .footer-container .block-subscribe .input-box {
          margin: 0 0 0 2em; } }
      .footer-container .block-subscribe .input-box input {
        min-width: 11rem;
        border: none;
        margin: 0;
        text-align: center; }
        @media (min-width: 1000px) {
          .footer-container .block-subscribe .input-box input {
            min-width: 15rem; } }
      .footer-container .block-subscribe .input-box button {
        background: #213444;
        border-color: #213444;
        color: #f1c40f;
        padding: 0.8em 2em; }
        .footer-container .block-subscribe .input-box button:hover {
          color: white; }
  .footer-container .bottom-container {
    padding: 4rem 30px;
    max-width: 50rem;
    margin: auto; }
    @media (min-width: 1000px) {
      .footer-container .bottom-container {
        padding: 6rem 4rem;
        max-width: 80rem; } }
  .footer-container .footer-links-wrapper {
    color: #bababa;
    line-height: 1.7;
    display: -ms-grid;
    display: grid;
    grid-row-gap: 3rem;
    -ms-grid-column-align: center;
        justify-items: center; }
    .footer-container .footer-links-wrapper > div {
      min-width: 12em;
      padding: 0 10px; }
      @media (min-width: 1000px) {
        .footer-container .footer-links-wrapper > div {
          min-width: 18em; } }
    @media (min-width: 600px) {
      .footer-container .footer-links-wrapper {
        -ms-grid-columns: 1fr 1fr;
            grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1000px) {
      .footer-container .footer-links-wrapper {
        -ms-grid-columns: 1fr 1fr 2fr;
            grid-template-columns: 1fr 1fr 2fr; } }
  .footer-container .footer-about {
    font-size: 14px;
    font-weight: 500; }
    .footer-container .footer-about-logo {
      margin-bottom: 2.2em; }
      @media (min-width: 1000px) {
        .footer-container .footer-about-logo {
          max-width: 70%; } }
      .footer-container .footer-about-logo img {
        width: 150px;
        height: auto; }
    .footer-container .footer-about-content {
      margin-bottom: 0.8em;
      padding-left: 2em;
      position: relative; }
      .footer-container .footer-about-content td {
        display: block;
        border: none;
        padding: 0;
        font-size: inherit;
        vertical-align: middle; }
        .footer-container .footer-about-content td.location {
          margin-bottom: 1em;
          position: relative; }
          .footer-container .footer-about-content td.location .address {
            color: white; }
      .footer-container .footer-about-content .phone, .footer-container .footer-about-content .email {
        position: relative;
        margin: 5px 0; }
      .footer-container .footer-about-content .location:before, .footer-container .footer-about-content .phone:before, .footer-container .footer-about-content .email:before {
        content: "";
        display: block;
        position: absolute;
        left: -2.2em;
        top: 0.25em;
        width: 1.2em;
        height: 1.1em;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain; }
      .footer-container .footer-about-content .location:before {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 83.77 111.04' style='fill:none; stroke:%23bababa; stroke-linejoin:round; stroke-width:7px'%3E%3Ccircle cx='41.88' cy='42.38' r='21.84'/%3E%3Cpath d='M80.82,70.72c14-18.18,15.38-40.31,0-55.69a39.38,39.38,0,0,0-55.69,0c-15.38,15.38-14,39.17,0,55.69L53,108.54Z' transform='translate(-11.1 -0.5)'/%3E%3C/svg%3E"); }
      .footer-container .footer-about-content .phone:before {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 94.19 110.78' style='fill:none; stroke:%23bababa; stroke-linejoin:round; stroke-width:7px'%3E%3Cpath d='M36.35,103.87L45.46,91.8A9.88,9.88,0,0,0,43.54,78a16.65,16.65,0,0,1-6-7.08,19.77,19.77,0,0,1-.84-2.43c-1.31-4.77,1.84-13,8.21-21.44s13.7-14,18.42-14c5.3-.05,8.16,1.78,11.11,4a9.88,9.88,0,0,0,13.8-1.92l9.11-12.07a9.45,9.45,0,0,0,1.18-9.48,10.13,10.13,0,0,0-3.24-4.13L90.92,6.17C85.32,2,78.74,2.69,72.46,4.11,59,7.14,44.65,18.34,30.93,36.51,17.42,54.41,10.4,71.74,11.15,85.31A32.16,32.16,0,0,0,13.33,96a15.47,15.47,0,0,0,4.87,6.46l4.36,3.28A9.85,9.85,0,0,0,36.35,103.87Z' transform='translate(-8.1)' /%3E%3C/svg%3E"); }
      .footer-container .footer-about-content .email:before {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 105.97 74.63' style='fill:none; stroke:%23a5a5a5; stroke-linejoin:round; stroke-width:6px'%3E%3Crect x='3' y='3' width='99.97' height='68.63' rx='10' ry='10'/%3E %3Cpath d='M5.9,25.74L49.2,60a6.45,6.45,0,0,0,7.57,0l43.88-34.32' transform='translate(0 -18.7)'/%3E%3Cline x1='5.9' y1='69.29' x2='44.14' y2='37.32'/%3E%3Cline x1='100.66' y1='69.29' x2='62.42' y2='37.32'/%3E%3C/svg%3E"); }
      .footer-container .footer-about-content .chat:before {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 83.54 83.55' %3E%3Cpath style='fill:none; stroke:%23bababa; stroke-linejoin:round; stroke-width:5px' d='M69.2,69.18a38.77,38.77,0,0,1-47.06,6,2.49,2.49,0,0,0-3,.39,0.9,0.9,0,0,0-.2.15,21.37,21.37,0,0,1-13.2,4.7h0a24.53,24.53,0,0,0,7.52-10,2.55,2.55,0,0,0,.13-1.61,2.6,2.6,0,0,0-.61-1.41A38.78,38.78,0,1,1,69.2,69.18h0Zm0,0'/%3E%3Cg fill='%23bababa'%3E%3Cpath d='M44.85,41.76a3.07,3.07,0,1,1-3.07-3.07,3.07,3.07,0,0,1,3.07,3.07h0Zm0,0'/%3E%3Cpath d='M60.7,41.76a3.07,3.07,0,1,1-3.07-3.07,3.07,3.07,0,0,1,3.07,3.07h0Zm0,0'/%3E%3Cpath d='M29,41.76a3.07,3.07,0,1,1-3.07-3.07A3.07,3.07,0,0,1,29,41.76h0Zm0,0' /%3E%3C/g%3E%3C/svg%3E"); }
      .footer-container .footer-about-content .request {
        display: none;
        color: #ff6d5a;
        text-transform: uppercase;
        font-size: 8px;
        font-weight: 700;
        padding-top: 0.2em;
        cursor: pointer; }
      .footer-container .footer-about-content .chat {
        display: none;
        text-transform: uppercase;
        font-size: 8px;
        font-weight: 700; }
        .footer-container .footer-about-content .chat.online {
          color: #1abc9c; }
        .footer-container .footer-about-content .chat.offline {
          color: #ff6d5a; }
  .footer-container .footer-links {
    font-size: 14px;
    font-weight: 500;
    position: relative; }
    @media (max-width: 600px) {
      .footer-container .footer-links {
        text-align: center; } }
    .footer-container .footer-links a {
      font-weight: 500; }
    .footer-container .footer-links.account img {
      min-width: 12em; }
    .footer-container .footer-links:last-child {
      width: 100%; }
      .footer-container .footer-links:last-child > div:last-child {
        margin-top: 2em; }
      @media (min-width: 600px) and (max-width: 999px) {
        .footer-container .footer-links:last-child {
          -ms-grid-column-span: 2;
          -ms-grid-column: 1;
              grid-column: 1 / span 2;
          max-width: 38em;
          text-align: center; } }
    .footer-container .footer-links .header {
      text-transform: uppercase;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 1em; }
    .footer-container .footer-links li {
      margin-bottom: 0.8em; }
    @media (max-width: 999px) {
      .footer-container .footer-links .dropdowns {
        max-width: 24em;
        margin: 0 auto; } }
    @media (min-width: 1000px) {
      .footer-container .footer-links .dropdowns {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; } }
    .footer-container .footer-links .dropdowns .chosen-container#select_language_chosen {
      margin-top: 1em; }
      @media (min-width: 1000px) {
        .footer-container .footer-links .dropdowns .chosen-container#select_language_chosen {
          margin-top: 0;
          margin-left: 1em; } }
    .footer-container .footer-links .dropdowns .chosen-container .chosen-drop, .footer-container .footer-links .dropdowns .chosen-container .chosen-single {
      background-color: #213444;
      border-color: #767676; }
    .footer-container .footer-links .dropdowns .chosen-container li.highlighted {
      background-color: #171e27;
      color: #ff6d5a; }
    .footer-container .footer-links .dropdowns .chosen-container li.active-result {
      border-color: #171e27;
      padding: 1.2em 2em 1.2em 2em;
      margin: 0;
      text-align: left; }
    .footer-container .footer-links .dropdowns .chosen-container input {
      border-color: #171e27;
      background-color: #526f84;
      color: white; }
    .footer-container .footer-links .dropdowns .chosen-container .chosen-search {
      display: none; }
  .footer-container .footer-mark {
    width: 7em;
    margin: 2.5em auto 0 auto; }
  .footer-container .copyright {
    font-size: 0.66666667rem;
    color: #bababa;
    text-align: center;
    padding: 2em;
    font-weight: 500; }
    .footer-container .copyright img {
      display: block;
      margin: -3em auto 2em auto;
      width: 60%;
      max-width: 20em; }

.sidebar-wrapper.right-sidebar .account-sidebar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column; }
  .sidebar-wrapper.right-sidebar .account-sidebar input {
    margin-bottom: 5px; }
  .sidebar-wrapper.right-sidebar .account-sidebar #advice-validate-password-sidebarpassword {
    max-width: 100%;
    left: 0;
    right: unset;
    text-align: left;
    background: white; }
  .sidebar-wrapper.right-sidebar .account-sidebar .account-block {
    -webkit-transition: min-height 0.5s;
    transition: min-height 0.5s; }
    .sidebar-wrapper.right-sidebar .account-sidebar .account-block:after {
      content: '';
      display: block;
      clear: both; }
    .sidebar-wrapper.right-sidebar .account-sidebar .account-block .sidebar-title {
      padding-bottom: 2em; }
  .sidebar-wrapper.right-sidebar .account-sidebar .login-sidebar, .sidebar-wrapper.right-sidebar .account-sidebar .register-sidebar {
    position: absolute;
    top: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s ease;
    transition: opacity 0.5s, -webkit-transform 0.5s ease;
    transition: opacity 0.5s, transform 0.5s ease;
    transition: opacity 0.5s, transform 0.5s ease, -webkit-transform 0.5s ease;
    opacity: 0;
    z-index: 10;
    width: 100%;
    padding: 0 25px;
    margin-bottom: 3em; }
    .sidebar-wrapper.right-sidebar .account-sidebar .login-sidebar.active, .sidebar-wrapper.right-sidebar .account-sidebar .register-sidebar.active {
      top: 0;
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
      z-index: 20;
      -webkit-transition-delay: 0.3s;
              transition-delay: 0.3s; }
    .sidebar-wrapper.right-sidebar .account-sidebar .login-sidebar button, .sidebar-wrapper.right-sidebar .account-sidebar .register-sidebar button {
      width: 100%;
      font-size: 12px;
      padding: 0.8em 1.5em; }
    .sidebar-wrapper.right-sidebar .account-sidebar .login-sidebar .new-customer h3, .sidebar-wrapper.right-sidebar .account-sidebar .register-sidebar .new-customer h3 {
      padding-bottom: 1em; }
    .sidebar-wrapper.right-sidebar .account-sidebar .login-sidebar .welcome-new, .sidebar-wrapper.right-sidebar .account-sidebar .register-sidebar .welcome-new {
      text-align: center;
      line-height: 1.5;
      font-size: 12px; }
    .sidebar-wrapper.right-sidebar .account-sidebar .login-sidebar ul.benefits, .sidebar-wrapper.right-sidebar .account-sidebar .register-sidebar ul.benefits {
      font-size: 13px;
      max-width: 90%;
      margin: auto;
      display: block;
      padding-bottom: 0.5em; }
    .sidebar-wrapper.right-sidebar .account-sidebar .login-sidebar .already-member, .sidebar-wrapper.right-sidebar .account-sidebar .register-sidebar .already-member {
      text-align: center;
      margin-top: 1em;
      font-weight: 500; }
      .sidebar-wrapper.right-sidebar .account-sidebar .login-sidebar .already-member a, .sidebar-wrapper.right-sidebar .account-sidebar .register-sidebar .already-member a {
        color: #ff6d5a;
        font-size: 0.66666667rem;
        text-transform: uppercase;
        margin-left: 0.5em; }
    .sidebar-wrapper.right-sidebar .account-sidebar .login-sidebar .forgot, .sidebar-wrapper.right-sidebar .account-sidebar .register-sidebar .forgot {
      color: #a5a5a5;
      font-weight: 500;
      font-size: 12px;
      text-align: center;
      display: block;
      margin: 1em; }
      .sidebar-wrapper.right-sidebar .account-sidebar .login-sidebar .forgot:hover, .sidebar-wrapper.right-sidebar .account-sidebar .register-sidebar .forgot:hover {
        color: #ff6d5a;
        text-decoration: underline; }
  .sidebar-wrapper.right-sidebar .account-sidebar .sidebar-customer-nav {
    padding: 0 25px;
    margin-bottom: 2em; }
    .sidebar-wrapper.right-sidebar .account-sidebar .sidebar-customer-nav li {
      padding: 0.8em 0;
      border-bottom: 1px solid #dddddd; }
    .sidebar-wrapper.right-sidebar .account-sidebar .sidebar-customer-nav a {
      font-weight: 500;
      text-transform: uppercase;
      font-size: 12px; }
    .sidebar-wrapper.right-sidebar .account-sidebar .sidebar-customer-nav .button {
      width: 100%;
      padding: 0.8em 1.5em;
      margin-top: 3em;
      font-weight: 600; }
.sidebar-wrapper.right-sidebar .favorites-sidebar .block, .sidebar-wrapper.right-sidebar .cart-sidebar .block {
  padding: 0 20px; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar .block .empty, .sidebar-wrapper.right-sidebar .cart-sidebar .block .empty {
    text-align: center;
    font-weight: 600; }
.sidebar-wrapper.right-sidebar .favorites-sidebar .minicart-message, .sidebar-wrapper.right-sidebar .favorites-sidebar .item-msg, .sidebar-wrapper.right-sidebar .cart-sidebar .minicart-message, .sidebar-wrapper.right-sidebar .cart-sidebar .item-msg {
  font-size: 12px;
  text-align: center;
  font-weight: 500;
  padding: 10px 0 15px 0;
  clear: both; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar .minicart-message.error, .sidebar-wrapper.right-sidebar .favorites-sidebar .item-msg.error, .sidebar-wrapper.right-sidebar .cart-sidebar .minicart-message.error, .sidebar-wrapper.right-sidebar .cart-sidebar .item-msg.error {
    color: #ff6d5a; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar .minicart-message.success, .sidebar-wrapper.right-sidebar .favorites-sidebar .item-msg.success, .sidebar-wrapper.right-sidebar .cart-sidebar .minicart-message.success, .sidebar-wrapper.right-sidebar .cart-sidebar .item-msg.success {
    color: #1abc9c; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar .minicart-message:empty, .sidebar-wrapper.right-sidebar .favorites-sidebar .item-msg:empty, .sidebar-wrapper.right-sidebar .cart-sidebar .minicart-message:empty, .sidebar-wrapper.right-sidebar .cart-sidebar .item-msg:empty {
    display: none; }
.sidebar-wrapper.right-sidebar .favorites-sidebar li.item, .sidebar-wrapper.right-sidebar .cart-sidebar li.item {
  padding: 25px 0;
  border-top: 1px solid #ededed;
  position: relative;
  overflow: hidden;
  opacity: 1; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .btn-remove, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .btn-remove {
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    margin: 5px 8px;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); }
    .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .btn-remove svg, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .btn-remove svg {
      fill: #dddddd; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .btn-remove:hover svg, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .btn-remove:hover svg {
      fill: #ff6d5a; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .product-data-wrapper, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .product-data-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .product-details, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .product-details {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 15px; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .product-image, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .product-image {
    display: block;
    text-align: center;
    margin-right: 1em; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .brand-name, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .brand-name {
    font-size: 9px;
    color: #a5a5a5;
    font-weight: 600;
    margin-top: 5px;
    text-transform: uppercase; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .product-name, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .product-name {
    font-size: 13px;
    font-weight: 700;
    padding-top: 0.3em; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .product-name a, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .product-name a {
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
      width: 90%;
      display: block;
      margin: 0 auto; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .option-box, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .option-box {
    font-size: 10px;
    font-weight: 500;
    line-height: 1.4;
    padding: 10px 0; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .option-box .opt, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .option-box .opt {
      display: block; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .option-box .exp, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .option-box .exp {
      margin-top: 0.5em;
      color: #a5a5a5; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .price-action, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .price-action {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .price-action .qty-wrapper, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .price-action .qty-wrapper {
      display: inline-block;
      position: relative; }
      .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .price-action .qty-wrapper label, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .price-action .qty-wrapper label {
        display: block;
        color: #767676; }
      .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .price-action .qty-wrapper input, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .price-action .qty-wrapper input {
        width: 2.5em;
        text-align: center;
        font-size: 14px;
        font-weight: 600;
        padding: 0.4em 0;
        line-height: inherit;
        margin-bottom: 0; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .price-action .times-qty, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .price-action .times-qty {
      line-height: 1;
      font-weight: 500;
      color: #bababa;
      margin: 0 1em; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .price-action .refresh, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .price-action .refresh {
      position: absolute;
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 612.035 612.035'%3E%3Cpath fill='%231abc9c' d='M323.128 56.236l5.646-9.57 40.17-40.169C271.247-13.921 165.482 13.786 89.65 89.646-16.421 195.717-28.355 360.261 53.875 479.49L10.98 522.386l137.7 19.667-19.667-137.7-34.968 34.967c-60.978-96.724-49.322-226.078 34.94-310.34 53.244-53.243 124.486-77.501 194.143-72.744zM581.392 69.979l-137.7-19.667 19.668 137.7 38.25-38.25c78.726 98.31 72.521 242.186-18.583 333.317-61.116 61.117-145.989 84.039-224.882 68.739l-45.65 45.649c105.654 33.799 226.05 8.791 309.895-75.054 112.858-112.858 119.146-291.979 18.805-412.209l40.197-40.225z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-color: white;
      border: none;
      width: 20px;
      height: 20px;
      top: -16px;
      right: 8px;
      padding: 0;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: opacity 0.5s ease, visibility 0.1s 5s, -webkit-transform 5s;
      transition: opacity 0.5s ease, visibility 0.1s 5s, -webkit-transform 5s;
      transition: opacity 0.5s ease, transform 5s, visibility 0.1s 5s;
      transition: opacity 0.5s ease, transform 5s, visibility 0.1s 5s, -webkit-transform 5s; }
      .minicart-wrapper.loading .refresh {
        -webkit-transform: rotateZ(600deg);
                transform: rotateZ(600deg); }
      .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .price-action .refresh.visible, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .price-action .refresh.visible {
        opacity: 1;
        visibility: visible;
        -webkit-transition: opacity 0.5s ease, -webkit-transform 5s;
        transition: opacity 0.5s ease, -webkit-transform 5s;
        transition: opacity 0.5s ease, transform 5s;
        transition: opacity 0.5s ease, transform 5s, -webkit-transform 5s; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .price-action .price-box, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .price-action .price-box {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: column-reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
      -webkit-box-align: end;
      -webkit-align-items: flex-end;
          -ms-flex-align: end;
                  -ms-grid-row-align: flex-end;
              align-items: flex-end;
      font-size: inherit; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .price-action .old-price, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .price-action .old-price {
      font-size: 12px; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .price-action .special-price, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .price-action .special-price {
      font-size: 14px;
      font-weight: 500; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar li.item .item-msg, .sidebar-wrapper.right-sidebar .cart-sidebar li.item .item-msg {
    padding: 15px 0 0px 0; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar li.item.ampromo, .sidebar-wrapper.right-sidebar .cart-sidebar li.item.ampromo {
    margin-bottom: 2em;
    height: 100%;
    width: auto;
    border-radius: 5px;
    border: none;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    padding-top: 0; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar li.item.ampromo:before, .sidebar-wrapper.right-sidebar .cart-sidebar li.item.ampromo:before {
      content: attr(data-ampromo);
      display: block;
      width: 100%;
      box-sizing: border-box;
      text-align: center;
      line-height: 1;
      font-size: 10px;
      font-weight: 600;
      background: #f1c40f;
      color: #213444;
      padding: 0.8em; }
      @media (min-width: 1930px) {
        .sidebar-wrapper.right-sidebar .favorites-sidebar li.item.ampromo:before, .sidebar-wrapper.right-sidebar .cart-sidebar li.item.ampromo:before {
          font-size: 12px; } }
    .sidebar-wrapper.right-sidebar .favorites-sidebar li.item.ampromo .product-data-wrapper, .sidebar-wrapper.right-sidebar .cart-sidebar li.item.ampromo .product-data-wrapper {
      margin-top: 25px; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar li.item.ampromo .cart-product-image, .sidebar-wrapper.right-sidebar .cart-sidebar li.item.ampromo .cart-product-image {
      width: 110px; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar li.item.ampromo input.cart-item-quantity, .sidebar-wrapper.right-sidebar .cart-sidebar li.item.ampromo input.cart-item-quantity {
      background: #f7f7f7;
      pointer-events: none;
      color: #bababa; }
.sidebar-wrapper.right-sidebar .favorites-sidebar #pending-order-list li.item, .sidebar-wrapper.right-sidebar .cart-sidebar #pending-order-list li.item {
  margin-bottom: 2em;
  height: 100%;
  width: auto;
  border-radius: 5px;
  border: none;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  padding: 0; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar #pending-order-list li.item tr, .sidebar-wrapper.right-sidebar .cart-sidebar #pending-order-list li.item tr {
    cursor: pointer; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar #pending-order-list li.item tr:hover td, .sidebar-wrapper.right-sidebar .cart-sidebar #pending-order-list li.item tr:hover td {
      background-color: #fad2cd; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar #pending-order-list li.item tr:first-child td, .sidebar-wrapper.right-sidebar .cart-sidebar #pending-order-list li.item tr:first-child td {
      border-top: none; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar #pending-order-list li.item td, .sidebar-wrapper.right-sidebar .cart-sidebar #pending-order-list li.item td {
    font-size: 0.66666667rem;
    font-weight: 600;
    border-bottom: none;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar #pending-order-list li.item td.pending-order-id, .sidebar-wrapper.right-sidebar .cart-sidebar #pending-order-list li.item td.pending-order-id {
      text-align: left; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar #pending-order-list li.item td.pending-order-total, .sidebar-wrapper.right-sidebar .cart-sidebar #pending-order-list li.item td.pending-order-total {
      text-align: center; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar #pending-order-list li.item td.pending-order-date, .sidebar-wrapper.right-sidebar .cart-sidebar #pending-order-list li.item td.pending-order-date {
      text-align: right; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar #pending-order-list li.item:before, .sidebar-wrapper.right-sidebar .cart-sidebar #pending-order-list li.item:before {
    content: attr(data-header);
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    line-height: 1;
    font-size: 10px;
    font-weight: 600;
    background: #ff6d5a;
    color: white;
    padding: 0.8em; }
    @media (min-width: 1930px) {
      .sidebar-wrapper.right-sidebar .favorites-sidebar #pending-order-list li.item:before, .sidebar-wrapper.right-sidebar .cart-sidebar #pending-order-list li.item:before {
        font-size: 12px; } }
  .sidebar-wrapper.right-sidebar .favorites-sidebar #pending-order-list li.item .pending-order-status span, .sidebar-wrapper.right-sidebar .cart-sidebar #pending-order-list li.item .pending-order-status span {
    display: inline-block;
    width: 100%;
    padding: 2px 12px;
    color: white;
    background-color: #526f84;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap; }
.sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .ampromo, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .ampromo {
  margin-bottom: 2em;
  height: 100%;
  width: auto;
  border-radius: 5px;
  border: none;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: visible; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .ampromo:before, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .ampromo:before {
    content: attr(data-ampromo);
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    line-height: 1;
    font-size: 10px;
    font-weight: 600;
    background: #f1c40f;
    color: #213444;
    padding: 0.8em; }
    @media (min-width: 1930px) {
      .sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .ampromo:before, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .ampromo:before {
        font-size: 12px; } }
.sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .product-data-wrapper, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .product-data-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 1.5em 0 2em 0; }
.sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .cart-product-info, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .cart-product-info {
  width: 100%;
  margin-bottom: 2em; }
.sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .cart-product-meta, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .cart-product-meta {
  padding-right: 15px; }
.sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .cart-product-image, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .cart-product-image {
  display: block;
  text-align: center;
  margin-right: 1em;
  width: 110px;
  height: auto; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .cart-product-image img, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .cart-product-image img {
    width: 110px; }
.sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .brand-name, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .brand-name {
  font-size: 9px;
  color: #a5a5a5;
  font-weight: 600;
  margin-top: 5px;
  text-transform: uppercase; }
.sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .product-name, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .product-name {
  font-size: 13px;
  font-weight: 700;
  padding-top: 0.3em; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .product-name a, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .product-name a {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 90%;
    display: block;
    margin: 0 auto; }
.sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .option-box, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .option-box {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  padding: 10px 0; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .option-box .opt, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .option-box .opt {
    display: block; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .option-box .exp, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .option-box .exp {
    margin-top: 0.5em;
    color: #a5a5a5; }
.sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .ampromo-select-options, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .ampromo-select-options {
  margin-top: 0.2em;
  margin-bottom: 0.8em; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .ampromo-select-options .option-buttons div, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .ampromo-select-options .option-buttons div {
    display: inline-block;
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    color: #213444;
    min-width: 4em;
    text-align: center;
    border: 2px solid #213444;
    border-radius: 50px;
    padding: 0.5em 1em;
    margin: 0.2em 0.4em 0.2em 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .ampromo-select-options .option-buttons div.selected, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .ampromo-select-options .option-buttons div.selected {
      color: white;
      background: #213444; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .ampromo-select-options .chosen-container, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .ampromo-select-options .chosen-container {
    min-width: unset;
    max-width: 95%; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .ampromo-select-options .chosen-container .chosen-single, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .ampromo-select-options .chosen-container .chosen-single {
      padding: 0.4em 0.6em; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .ampromo-select-options .chosen-container .chosen-results li, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .ampromo-select-options .chosen-container .chosen-results li {
      padding: 1em; }
.sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .cart-product-price-action, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .cart-product-price-action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-width: 11em;
  padding-right: 15px; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .cart-product-price-action .price-subtotal-block, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .cart-product-price-action .price-subtotal-block {
    margin-right: 10px; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .cart-product-price-action .qty-wrapper, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .cart-product-price-action .qty-wrapper {
    display: inline-block;
    position: relative; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .cart-product-price-action .qty-wrapper label, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .cart-product-price-action .qty-wrapper label {
      display: block;
      color: #767676; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .cart-product-price-action .qty-wrapper input, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .cart-product-price-action .qty-wrapper input {
      width: 2.5em;
      text-align: center;
      font-size: 14px;
      font-weight: 600;
      padding: 0.4em 0;
      line-height: inherit;
      margin-bottom: 0; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .cart-product-price-action .times-qty, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .cart-product-price-action .times-qty {
    line-height: 1;
    font-weight: 500;
    color: #bababa;
    margin: 0 1em; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .cart-product-price-action .price-box, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .cart-product-price-action .price-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
                -ms-grid-row-align: flex-start;
            align-items: flex-start;
    font-size: inherit; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .cart-product-price-action .old-price, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .cart-product-price-action .old-price {
    font-size: 12px;
    margin: 0; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .cart-product-price-action .special-price, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .cart-product-price-action .special-price {
    font-size: 14px;
    font-weight: 500; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar #ampromo-overlay .cart-product-price-action button, .sidebar-wrapper.right-sidebar .cart-sidebar #ampromo-overlay .cart-product-price-action button {
    font-size: 10px;
    margin: 0;
    padding: 0.6em 1.2em; }
.sidebar-wrapper.right-sidebar .favorites-sidebar .minicart-footer, .sidebar-wrapper.right-sidebar .cart-sidebar .minicart-footer {
  background: white;
  border-top: 1px solid #ededed; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar .minicart-footer li, .sidebar-wrapper.right-sidebar .cart-sidebar .minicart-footer li {
    border-top: none;
    padding-top: 0; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar .minicart-footer .subtotal, .sidebar-wrapper.right-sidebar .cart-sidebar .minicart-footer .subtotal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 5px; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar .minicart-footer .subtotal .label, .sidebar-wrapper.right-sidebar .cart-sidebar .minicart-footer .subtotal .label {
      font-size: 12px; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar .minicart-footer #cart-checkout-totals-table td.a-left, .sidebar-wrapper.right-sidebar .cart-sidebar .minicart-footer #cart-checkout-totals-table td.a-left {
    font-size: 12px; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar .minicart-footer #cart-checkout-totals-table td.a-left strong, .sidebar-wrapper.right-sidebar .cart-sidebar .minicart-footer #cart-checkout-totals-table td.a-left strong {
      font-size: 14px; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar .minicart-footer #cart-checkout-totals-table td.a-left .coupon-item, .sidebar-wrapper.right-sidebar .cart-sidebar .minicart-footer #cart-checkout-totals-table td.a-left .coupon-item {
      font-size: 0.8em; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar .minicart-footer #cart-checkout-totals-table td.a-right, .sidebar-wrapper.right-sidebar .cart-sidebar .minicart-footer #cart-checkout-totals-table td.a-right {
    font-size: 14px; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar .minicart-footer #cart-checkout-totals-table td.a-right strong, .sidebar-wrapper.right-sidebar .cart-sidebar .minicart-footer #cart-checkout-totals-table td.a-right strong {
      font-size: 18px; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar .minicart-footer .button, .sidebar-wrapper.right-sidebar .cart-sidebar .minicart-footer .button {
    width: 100%;
    font-size: 12px;
    padding: 1em 1.5em;
    margin: 10px 0; }
  .sidebar-wrapper.right-sidebar .favorites-sidebar .minicart-footer .cart-link, .sidebar-wrapper.right-sidebar .cart-sidebar .minicart-footer .cart-link {
    display: block;
    text-align: center;
    margin-top: 1em;
    text-transform: uppercase;
    font-size: 9px;
    color: grey;
    font-weight: 500; }
    .sidebar-wrapper.right-sidebar .favorites-sidebar .minicart-footer .cart-link:hover, .sidebar-wrapper.right-sidebar .cart-sidebar .minicart-footer .cart-link:hover {
      color: #ff6d5a; }
.sidebar-wrapper.right-sidebar .block-wishlist li.item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .sidebar-wrapper.right-sidebar .block-wishlist li.item .price-action {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
                -ms-grid-row-align: flex-start;
            align-items: flex-start; }
    .sidebar-wrapper.right-sidebar .block-wishlist li.item .price-action .price-box {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: row-reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
                  -ms-grid-row-align: center;
              align-items: center; }
    .sidebar-wrapper.right-sidebar .block-wishlist li.item .price-action .action-buttons {
      margin-top: 10px; }
    .sidebar-wrapper.right-sidebar .block-wishlist li.item .price-action .out-of-stock {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      font-size: 12px;
      font-weight: 500;
      margin-bottom: 0.5em;
      color: #ff6d5a; }
.sidebar-wrapper.right-sidebar .block-wishlist .link-cart {
  font-size: 9px; }
.sidebar-wrapper.right-sidebar .mobile-menu-sidebar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column; }
  .sidebar-wrapper.right-sidebar .mobile-menu-sidebar h3 {
    margin-left: 20px; }
  .sidebar-wrapper.right-sidebar .mobile-menu-sidebar #mobile-nav ul {
    border-bottom: 1px solid #ededed; }
  .sidebar-wrapper.right-sidebar .mobile-menu-sidebar #mobile-nav li {
    border-top: 1px solid #ededed; }
    .sidebar-wrapper.right-sidebar .mobile-menu-sidebar #mobile-nav li a {
      font-size: 12px;
      text-transform: uppercase;
      font-weight: 600;
      position: relative;
      padding: 1em 1.5em;
      display: block; }
      .sidebar-wrapper.right-sidebar .mobile-menu-sidebar #mobile-nav li a:hover {
        color: inherit; }
      .sidebar-wrapper.right-sidebar .mobile-menu-sidebar #mobile-nav li a span {
        float: right;
        -webkit-transform: scale(1.7);
                transform: scale(1.7);
        font-weight: 500;
        opacity: 0.8; }
      .sidebar-wrapper.right-sidebar .mobile-menu-sidebar #mobile-nav li a.toggled span {
        -webkit-transform: rotateZ(45deg) scale(1.7);
                transform: rotateZ(45deg) scale(1.7); }
    .sidebar-wrapper.right-sidebar .mobile-menu-sidebar #mobile-nav li.level0 {
      position: relative; }
    .sidebar-wrapper.right-sidebar .mobile-menu-sidebar #mobile-nav li.level1 {
      position: relative;
      background: #ff6d5a;
      color: white;
      border-top: 1px solid #d94636; }
      .sidebar-wrapper.right-sidebar .mobile-menu-sidebar #mobile-nav li.level1.first {
        border-top: none; }
    .sidebar-wrapper.right-sidebar .mobile-menu-sidebar #mobile-nav li.level2 {
      position: relative;
      background: #213444;
      color: white;
      border-top: 1px solid #171e27; }
      .sidebar-wrapper.right-sidebar .mobile-menu-sidebar #mobile-nav li.level2.first {
        border-top: none; }
    .sidebar-wrapper.right-sidebar .mobile-menu-sidebar #mobile-nav li.explore-link {
      border-bottom: 1px solid #171e27;
      border-top: none; }
      .sidebar-wrapper.right-sidebar .mobile-menu-sidebar #mobile-nav li.explore-link a {
        color: #ff6d5a; }
    .sidebar-wrapper.right-sidebar .mobile-menu-sidebar #mobile-nav li.clearance-link a {
      color: #f1c40f; }
  .sidebar-wrapper.right-sidebar .mobile-menu-sidebar .mobile-menu-top-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    border-bottom: 1px solid #ededed;
    padding: 30px 10px; }
    .sidebar-wrapper.right-sidebar .mobile-menu-sidebar .mobile-menu-top-links a {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      font-size: 10px;
      text-transform: uppercase;
      font-weight: 500; }
    .sidebar-wrapper.right-sidebar .mobile-menu-sidebar .mobile-menu-top-links svg {
      height: 18px;
      margin-right: 4px; }
    .sidebar-wrapper.right-sidebar .mobile-menu-sidebar .mobile-menu-top-links .count {
      display: inline-block;
      min-width: 25px;
      border-radius: 50px;
      padding: 2px 6px;
      margin-left: 0.6em;
      background: #a5a5a5;
      text-align: center;
      color: white;
      font-size: 1.1em; }
  .sidebar-wrapper.right-sidebar .mobile-menu-sidebar .store-language-selector {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    color: #526f84;
    background: #213444;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 30px 0; }
    .sidebar-wrapper.right-sidebar .mobile-menu-sidebar .store-language-selector .link-icon, .sidebar-wrapper.right-sidebar .mobile-menu-sidebar .store-language-selector svg {
      height: 18px; }
    .sidebar-wrapper.right-sidebar .mobile-menu-sidebar .store-language-selector select {
      visibility: hidden; }
    .sidebar-wrapper.right-sidebar .mobile-menu-sidebar .store-language-selector #select_language_chosen {
      min-width: unset;
      width: auto !important;
      text-transform: uppercase;
      margin-bottom: 0; }
      .sidebar-wrapper.right-sidebar .mobile-menu-sidebar .store-language-selector #select_language_chosen .chosen-single {
        background: #213444;
        color: #526f84;
        border: none;
        font-size: 10px;
        font-weight: 600; }
        .sidebar-wrapper.right-sidebar .mobile-menu-sidebar .store-language-selector #select_language_chosen .chosen-single span {
          max-width: unset; }
        .sidebar-wrapper.right-sidebar .mobile-menu-sidebar .store-language-selector #select_language_chosen .chosen-single div {
          display: none; }
      .sidebar-wrapper.right-sidebar .mobile-menu-sidebar .store-language-selector #select_language_chosen .chosen-drop {
        background: #213444;
        color: #526f84;
        border: none;
        width: auto;
        margin-top: 5px; }
      .sidebar-wrapper.right-sidebar .mobile-menu-sidebar .store-language-selector #select_language_chosen .chosen-results {
        max-height: none; }
      .sidebar-wrapper.right-sidebar .mobile-menu-sidebar .store-language-selector #select_language_chosen .active-result {
        font-size: 10px;
        border: none;
        padding: 1.2em 3.2em; }
        .sidebar-wrapper.right-sidebar .mobile-menu-sidebar .store-language-selector #select_language_chosen .active-result.highlighted {
          background: #213444;
          color: white; }
      .sidebar-wrapper.right-sidebar .mobile-menu-sidebar .store-language-selector #select_language_chosen.chosen-with-drop .chosen-drop {
        left: -25px;
        padding-bottom: 0.5em; }

.block-layered-nav {
  margin-bottom: 2em; }
  .block-layered-nav .block-title {
    margin: 0 0 14px 14px;
    font-size: 1.22222222rem;
    text-transform: uppercase;
    font-weight: 700; }
  .block-layered-nav .currently .label {
    display: block;
    font-size: 9px;
    color: #a5a5a5;
    font-weight: 500; }
  .block-layered-nav .currently .block-subtitle {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    padding: 20px 14px;
    border-top: 1px solid #dddddd;
    position: relative; }
    .block-layered-nav .currently .block-subtitle a {
      font-size: 28px;
      position: absolute;
      right: 11px;
      font-weight: 500;
      bottom: 8px; }
  .block-layered-nav .currently ol {
    padding: 0 14px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px; }
    .block-layered-nav .currently ol .label {
      text-transform: uppercase; }
    .block-layered-nav .currently ol li {
      padding: 10px 0;
      position: relative;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      .block-layered-nav .currently ol li a.btn-remove {
        display: block;
        position: relative;
        font-size: 0px;
        font-weight: 600;
        color: #ff6d5a;
        text-align: center;
        width: 20px;
        height: 20px;
        margin-right: 10px;
        border: 2px solid #ff6d5a;
        border-radius: 50%;
        -webkit-transition: 125ms;
        transition: 125ms; }
        .block-layered-nav .currently ol li a.btn-remove:before {
          font-size: 15px;
          position: absolute;
          content: "\00d7";
          top: 0%;
          left: 26%;
          line-height: 18px; }
        .block-layered-nav .currently ol li a.btn-remove:hover {
          background: #ff6d5a;
          color: white; }
      .block-layered-nav .currently ol li a.btn-clear-all {
        font-size: 10px;
        font-weight: 600;
        color: #ff6d5a;
        margin-top: 10px; }
  .block-layered-nav .actions, .block-layered-nav .block-subtitle--filter {
    display: none; }
  .block-layered-nav dt {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    padding: 20px 14px;
    border-top: 1px solid #dddddd;
    position: relative;
    cursor: pointer; }
    .block-layered-nav dt:after {
      content: '\002B';
      font-size: 28px;
      position: absolute;
      right: 11px;
      top: 12px;
      font-weight: 500;
      bottom: 12px;
      color: #bababa;
      -webkit-transform: rotateZ(0deg);
              transform: rotateZ(0deg);
      -webkit-transition: -webkit-transform 0.3s ease-in-out;
      transition: -webkit-transform 0.3s ease-in-out;
      transition: transform 0.3s ease-in-out;
      transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; }
    .block-layered-nav dt.m-expanded:after {
      -webkit-transform: rotateZ(45deg);
              transform: rotateZ(45deg); }
  .block-layered-nav dd {
    margin-bottom: 1em;
    padding: 0 14px; }
    .block-layered-nav dd li {
      padding: 5px 0; }
    .block-layered-nav dd .count {
      font-size: 11px;
      font-weight: 500;
      color: #a5a5a5;
      margin-left: 3px; }
    .block-layered-nav dd label {
      color: #171e27;
      font-size: 12px; }
  .block-layered-nav input[type="checkbox"] + label:before {
    width: 14px;
    height: 14px; }
  .block-layered-nav .m-more-less {
    font-size: 10px;
    margin-top: 10px;
    color: #1abc9c;
    font-weight: 500; }
    .block-layered-nav .m-more-less .m-show-less-action {
      color: #ff6d5a; }
  .block-layered-nav .m-expandable-filter {
    overflow: hidden; }
  .block-layered-nav .m-filter-slider {
    background: #bababa;
    width: 90%;
    position: relative;
    margin: 15px auto 50px auto;
    height: 3px; }
    .block-layered-nav .m-filter-slider .m-slider-span {
      background: #1abc9c;
      height: 3px;
      position: absolute;
      margin-left: -10px; }
    .block-layered-nav .m-filter-slider .m-slider-from, .block-layered-nav .m-filter-slider .m-slider-to {
      background: #1abc9c;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      top: -7px;
      position: absolute; }
      .block-layered-nav .m-filter-slider .m-slider-from span.visible-on-slide, .block-layered-nav .m-filter-slider .m-slider-to span.visible-on-slide {
        background: #f1c40f;
        padding: 0.25em 0.8em;
        font-size: 13px;
        font-weight: 500;
        position: absolute;
        text-align: center;
        top: -37px;
        left: 50%;
        -webkit-transform: translateX(-50%) rotateZ(60deg);
                transform: translateX(-50%) rotateZ(60deg);
        -webkit-transform-origin: 24px 46px;
                transform-origin: 24px 46px;
        opacity: 0;
        -webkit-transition: opacity 0.8s ease, -webkit-transform 0.4s 0.8s ease;
        transition: opacity 0.8s ease, -webkit-transform 0.4s 0.8s ease;
        transition: opacity 0.8s ease, transform 0.4s 0.8s ease;
        transition: opacity 0.8s ease, transform 0.4s 0.8s ease, -webkit-transform 0.4s 0.8s ease; }
        .block-layered-nav .m-filter-slider .m-slider-from span.visible-on-slide:after, .block-layered-nav .m-filter-slider .m-slider-to span.visible-on-slide:after {
          content: "";
          position: absolute;
          bottom: -6px;
          left: 0;
          right: 0;
          margin: auto;
          display: block;
          width: 0;
          height: 0;
          border-left: 7px solid transparent;
          border-right: 7px solid transparent;
          border-top: 7px solid #f1c40f; }
      .block-layered-nav .m-filter-slider .m-slider-from span.hidden-on-slide, .block-layered-nav .m-filter-slider .m-slider-to span.hidden-on-slide {
        position: absolute;
        font-size: 13px;
        font-weight: 500;
        bottom: -21px;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        -webkit-transition: opacity 0.5s ease;
        transition: opacity 0.5s ease; }
      .block-layered-nav .m-filter-slider .m-slider-from .slider-action-button, .block-layered-nav .m-filter-slider .m-slider-to .slider-action-button {
        content: "";
        position: absolute;
        cursor: -webkit-grab;
        cursor: grab;
        top: 0;
        left: 0;
        background: #1abc9c;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        -webkit-transition: -webkit-transform 0.4s ease;
        transition: -webkit-transform 0.4s ease;
        transition: transform 0.4s ease;
        transition: transform 0.4s ease, -webkit-transform 0.4s ease; }
        .block-layered-nav .m-filter-slider .m-slider-from .slider-action-button:active, .block-layered-nav .m-filter-slider .m-slider-to .slider-action-button:active {
          cursor: -webkit-grabbing;
          cursor: grabbing; }
        .block-layered-nav .m-filter-slider .m-slider-from .slider-action-button:active, .block-layered-nav .m-filter-slider .m-slider-from .slider-action-button:hover, .block-layered-nav .m-filter-slider .m-slider-to .slider-action-button:active, .block-layered-nav .m-filter-slider .m-slider-to .slider-action-button:hover {
          -webkit-transform: scale(1.7);
                  transform: scale(1.7); }
          .block-layered-nav .m-filter-slider .m-slider-from .slider-action-button:active ~ span.visible-on-slide, .block-layered-nav .m-filter-slider .m-slider-from .slider-action-button:hover ~ span.visible-on-slide, .block-layered-nav .m-filter-slider .m-slider-to .slider-action-button:active ~ span.visible-on-slide, .block-layered-nav .m-filter-slider .m-slider-to .slider-action-button:hover ~ span.visible-on-slide {
            opacity: 1;
            -webkit-transform: translateX(-50%) rotateZ(0deg);
                    transform: translateX(-50%) rotateZ(0deg);
            -webkit-transition: opacity 0.8s ease, -webkit-transform 0.4s ease;
            transition: opacity 0.8s ease, -webkit-transform 0.4s ease;
            transition: opacity 0.8s ease, transform 0.4s ease;
            transition: opacity 0.8s ease, transform 0.4s ease, -webkit-transform 0.4s ease; }
          .block-layered-nav .m-filter-slider .m-slider-from .slider-action-button:active ~ span.hidden-on-slide, .block-layered-nav .m-filter-slider .m-slider-from .slider-action-button:hover ~ span.hidden-on-slide, .block-layered-nav .m-filter-slider .m-slider-to .slider-action-button:active ~ span.hidden-on-slide, .block-layered-nav .m-filter-slider .m-slider-to .slider-action-button:hover ~ span.hidden-on-slide {
            opacity: 0; }

.mb-top-layered-navigation {
  position: relative; }
  .mb-top-layered-navigation.m-wide {
    display: none;
    margin: 0; }
  .mb-top-layered-navigation .m-shop-by {
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 1.5em;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600; }

#m-wait.spinner {
  position: fixed;
  top: 45%;
  left: 50%;
  width: 60px;
  height: 60px; }

.m-overlay {
  position: absolute;
  background: white;
  opacity: 0.6;
  z-index: 10000; }

body.customer-account {
  /* ============================================ *
   * Sales Order View
   * ============================================ */ }
  body.customer-account .main {
    width: 100%;
    max-width: 80em;
    margin: 0 auto; }
    @media (min-width: 420px) {
      body.customer-account .main {
        padding: 3em 40px !important; } }
    @media (min-width: 1000px) {
      body.customer-account .main {
        padding: 3em 60px !important; } }
  body.customer-account .block-account {
    margin-bottom: 2em; }
    body.customer-account .block-account .block-title {
      margin-bottom: 0.8em;
      text-transform: uppercase;
      font-size: 0.88888889rem; }
    body.customer-account .block-account li {
      font-size: 12px;
      font-weight: 500;
      padding: 1em 0;
      border-bottom: 1px solid #dddddd;
      position: relative;
      text-transform: uppercase; }
      body.customer-account .block-account li.current a {
        color: #ff6d5a;
        cursor: default;
        font-weight: 600; }
    body.customer-account .block-account a {
      font-weight: 500; }
    body.customer-account .block-account .logout-button {
      font-size: 12px;
      margin-top: 3em;
      display: inline-block;
      color: #ff6d5a; }
  body.customer-account.sales-order-view .title-buttons {
    margin: 2em 0; }
  body.customer-account.sales-order-view .order-status strong {
    color: #ff6d5a;
    font-weight: 700; }
  body.customer-account.sales-order-view a.order-link {
    background-color: #a5a5a5;
    text-transform: uppercase;
    color: white;
    font-size: 0.77777778rem;
    line-height: 1;
    padding: 0.5em 1em;
    border-radius: 0.5em;
    margin-right: 0.5em;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s; }
    body.customer-account.sales-order-view a.order-link.pay {
      background-color: #1abc9c; }
    body.customer-account.sales-order-view a.order-link.reorder {
      background-color: #1abc9c; }
    body.customer-account.sales-order-view a.order-link:hover {
      background-color: #ff6d5a; }
  body.customer-account.sales-order-view .order-table-row {
    border-top: 1px solid #ededed;
    padding: 2em 0; }
    body.customer-account.sales-order-view .order-table-row .product-data-wrapper {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding-right: 15px;
      position: relative; }
      body.customer-account.sales-order-view .order-table-row .product-data-wrapper .order-product-image {
        width: 110px;
        min-width: 110px;
        margin-right: 1rem; }
        body.customer-account.sales-order-view .order-table-row .product-data-wrapper .order-product-image img {
          width: 100%;
          height: auto; }
      body.customer-account.sales-order-view .order-table-row .product-data-wrapper .order-product-info {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        max-width: 100%; }
        body.customer-account.sales-order-view .order-table-row .product-data-wrapper .order-product-info .order-product-meta {
          -webkit-box-flex: 1;
          -webkit-flex-grow: 1;
              -ms-flex-positive: 1;
                  flex-grow: 1; }
          body.customer-account.sales-order-view .order-table-row .product-data-wrapper .order-product-info .order-product-meta .brand-name {
            font-size: 0.66666667rem;
            color: #a5a5a5;
            font-weight: 600;
            text-transform: uppercase; }
          body.customer-account.sales-order-view .order-table-row .product-data-wrapper .order-product-info .order-product-meta .product-name {
            font-weight: 700;
            padding: 0.3em 0 0.8em 0; }
          body.customer-account.sales-order-view .order-table-row .product-data-wrapper .order-product-info .order-product-meta .option-box {
            font-size: 0.77777778rem;
            font-weight: 500;
            line-height: 1.4; }
            body.customer-account.sales-order-view .order-table-row .product-data-wrapper .order-product-info .order-product-meta .option-box .exp {
              margin-top: 0.5em;
              color: #a5a5a5; }
          body.customer-account.sales-order-view .order-table-row .product-data-wrapper .order-product-info .order-product-meta .btn-remove {
            position: absolute;
            top: 0;
            right: 0;
            -webkit-transform: translateY(-100%);
                    transform: translateY(-100%);
            width: 1.22222222rem;
            margin: 0 10px; }
            body.customer-account.sales-order-view .order-table-row .product-data-wrapper .order-product-info .order-product-meta .btn-remove svg {
              fill: #dddddd; }
            body.customer-account.sales-order-view .order-table-row .product-data-wrapper .order-product-info .order-product-meta .btn-remove:hover svg {
              fill: #ff6d5a; }
        body.customer-account.sales-order-view .order-table-row .product-data-wrapper .order-product-info .order-product-price-action {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-flex: 1;
          -webkit-flex-grow: 1;
              -ms-flex-positive: 1;
                  flex-grow: 1;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          min-width: 10em;
          -webkit-box-pack: justify;
          -webkit-justify-content: space-between;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          margin-top: 1em; }
          body.customer-account.sales-order-view .order-table-row .product-data-wrapper .order-product-info .order-product-price-action .order-product-qty {
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            padding: 0.4em 0;
            line-height: inherit;
            border: 2px solid #dddddd;
            border-radius: 0;
            width: 2.5em;
            margin-bottom: 0;
            background-color: #f7f7f7;
            resize: none;
            color: #213444; }
          body.customer-account.sales-order-view .order-table-row .product-data-wrapper .order-product-info .order-product-price-action .times-qty {
            line-height: 1;
            font-weight: 500;
            color: #bababa;
            margin: 0 1em; }
          body.customer-account.sales-order-view .order-table-row .product-data-wrapper .order-product-info .order-product-price-action .price-subtotal-block {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
                -ms-flex-direction: column;
                    flex-direction: column;
            -webkit-box-align: end;
            -webkit-align-items: flex-end;
                -ms-flex-align: end;
                    align-items: flex-end;
            margin-right: 1em; }
            body.customer-account.sales-order-view .order-table-row .product-data-wrapper .order-product-info .order-product-price-action .price-subtotal-block .order-product-total {
              display: none; }
            body.customer-account.sales-order-view .order-table-row .product-data-wrapper .order-product-info .order-product-price-action .price-subtotal-block .order-product-price {
              font-weight: 500; }
            body.customer-account.sales-order-view .order-table-row .product-data-wrapper .order-product-info .order-product-price-action .price-subtotal-block .price-box {
              -webkit-box-orient: vertical;
              -webkit-box-direction: reverse;
              -webkit-flex-direction: column-reverse;
                  -ms-flex-direction: column-reverse;
                      flex-direction: column-reverse;
              -webkit-box-align: end;
              -webkit-align-items: flex-end;
                  -ms-flex-align: end;
                          -ms-grid-row-align: flex-end;
                      align-items: flex-end;
              font-size: inherit; }
            body.customer-account.sales-order-view .order-table-row .product-data-wrapper .order-product-info .order-product-price-action .price-subtotal-block .old-price {
              font-size: 0.77777778rem; }
            body.customer-account.sales-order-view .order-table-row .product-data-wrapper .order-product-info .order-product-price-action .price-subtotal-block .special-price {
              margin-left: 0.6em;
              font-weight: 500; }
    body.customer-account.sales-order-view .order-table-row[min-width~="28em"] .order-product-info {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-align-self: center;
          -ms-flex-item-align: center;
              align-self: center; }
    body.customer-account.sales-order-view .order-table-row[min-width~="28em"] .order-product-price-action {
      margin: 0; }
    body.customer-account.sales-order-view .order-table-row[min-width~="28em"] .order-product-meta {
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 18em;
          -ms-flex: 1 1 18em;
              flex: 1 1 18em;
      padding-right: 20px;
      max-width: 18em; }
    body.customer-account.sales-order-view .order-table-row[min-width~="28em"] .order-product-price {
      text-align: right; }
    body.customer-account.sales-order-view .order-table-row[min-width~="38em"] .order-product-image {
      width: 160px;
      margin-right: 2rem; }
    body.customer-account.sales-order-view .order-table-row[min-width~="38em"] .order-product-meta {
      padding-right: 2em; }
  body.customer-account.sales-order-view .totals-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    border-top: 1px solid #ededed;
    margin-bottom: 3rem; }
    body.customer-account.sales-order-view .totals-wrapper .totals-table {
      margin-top: -1px;
      font-weight: 500; }
      body.customer-account.sales-order-view .totals-wrapper .totals-table td {
        padding: 1rem; }
        body.customer-account.sales-order-view .totals-wrapper .totals-table td.last {
          width: 5em; }
      body.customer-account.sales-order-view .totals-wrapper .totals-table .grand_total strong {
        font-weight: 700; }
      body.customer-account.sales-order-view .totals-wrapper .totals-table .grand_total .last {
        font-size: 1.22222222rem; }
    body.customer-account.sales-order-view .totals-wrapper[min-width~="510px"] {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
      margin-bottom: 4rem; }
      body.customer-account.sales-order-view .totals-wrapper[min-width~="510px"] .totals-table {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        -webkit-flex-basis: 320px;
            -ms-flex-preferred-size: 320px;
                flex-basis: 320px;
        max-width: 320px;
        margin-left: auto; }

/* ============================================ *
 * My Account Global Styles
 * ============================================ */
.my-account {
  /* ============================================ *
  * Dashboard
  * ============================================ */ }
  .my-account .page-title {
    margin-bottom: 2em; }
  .my-account h1 {
    font-size: 1.88888889rem;
    margin-bottom: 1em;
    font-weight: 700;
    text-transform: uppercase; }
  .my-account h2 {
    font-size: 1rem;
    padding-bottom: 0.5em;
    font-weight: 700; }
  .my-account h3 {
    font-weight: 700;
    font-size: 0.77777778rem;
    display: inline-block; }
  .my-account p.required {
    display: none; }
  .my-account address {
    font-style: normal;
    line-height: 1.7;
    font-size: 0.88888889rem; }
  .my-account form label.change_password {
    margin-top: 2em; }
  .my-account form .password-reset-fields {
    margin-top: 2em; }
    .my-account form .password-reset-fields .form-instructions {
      color: #ff6d5a;
      font-weight: 500;
      margin-left: 1em; }
  .my-account table#my-orders-table {
    margin-bottom: 2em;
    font-size: 0.88888889rem;
    /* Mobile View for Order Tables */ }
    .my-account table#my-orders-table tbody tr {
      cursor: pointer; }
      .my-account table#my-orders-table tbody tr:hover {
        background: #f7f7f7; }
    .my-account table#my-orders-table td.status span {
      display: inline-block;
      width: 100%;
      padding: 4px 12px;
      color: white;
      background-color: #526f84;
      border-radius: 4px;
      font-size: 9px;
      font-weight: 700;
      text-align: center;
      text-transform: uppercase;
      vertical-align: middle;
      white-space: nowrap; }
    .my-account table#my-orders-table td.status.pending span, .my-account table#my-orders-table td.status.pending_payment span, .my-account table#my-orders-table td.status.payment_failed span, .my-account table#my-orders-table td.status.payment_pending_shipped span {
      background-color: #ff6d5a; }
    .my-account table#my-orders-table td.status.complete span, .my-account table#my-orders-table td.status.delivered span {
      background-color: #1abc9c; }
    .my-account table#my-orders-table td.status.canceled span, .my-account table#my-orders-table td.status.closed span {
      background-color: #bababa; }
    .my-account table#my-orders-table td.status.holded span, .my-account table#my-orders-table td.status.payment_review span, .my-account table#my-orders-table td.status.processing span, .my-account table#my-orders-table td.status.payment_received span {
      background-color: #f1c40f; }
    .my-account table#my-orders-table[max-width~="650px"] .ship, .my-account table#my-orders-table[max-width~="650px"] .courier {
      display: none; }
    .my-account table#my-orders-table[max-width~="650px"] td.status span {
      font-size: 0px;
      width: 20px;
      height: 20px;
      padding: 0;
      border-radius: 50%; }
    .my-account table#my-orders-table[max-width~="650px"] th.status, .my-account table#my-orders-table[max-width~="650px"] td.status {
      text-align: center; }
  .my-account .col2-set {
    width: 100%;
    -webkit-columns: 220px 2;
       -moz-columns: 220px 2;
            columns: 220px 2;
    -webkit-column-gap: 2em;
       -moz-column-gap: 2em;
            column-gap: 2em; }
    .my-account .col2-set .col-1, .my-account .col2-set .col-2, .my-account .col2-set .item {
      -webkit-column-break-inside: avoid;
         page-break-inside: avoid;
              break-inside: avoid;
      padding-bottom: 2em; }
  .my-account .addresses-list .item p.enable-other {
    font-size: 12px; }
  .my-account .addresses-list .item a {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    padding-top: 10px;
    color: #1abc9c; }
  .my-account .addresses-list .item .separator {
    color: #a5a5a5;
    font-size: 0.8em; }
  .my-account .pager {
    float: right;
    font-size: 0.77777778rem; }
    .my-account .pager .amount {
      float: left;
      margin-right: 1.5em; }
    .my-account .pager .limiter {
      float: right;
      font-weight: 500; }
      .my-account .pager .limiter label {
        margin-right: 0.5em; }
      .my-account .pager .limiter .chosen-container {
        min-width: 6em; }
  .my-account .no-display {
    display: none; }
  .my-account .dashboard .box-account {
    margin-top: 3.5em; }
    .my-account .dashboard .box-account.box-recent .box-head {
      border-bottom: none;
      margin-bottom: 0; }
    .my-account .dashboard .box-account .box-head, .my-account .dashboard .box-account .box-title {
      margin-bottom: 0.8em; }
      .my-account .dashboard .box-account .box-head a, .my-account .dashboard .box-account .box-title a {
        font-size: 0.66666667rem;
        font-weight: 500;
        color: #1abc9c;
        white-space: nowrap;
        margin-left: 1em; }
    .my-account .dashboard .box-account .box-head {
      border-bottom: 2px solid #ededed; }
    .my-account .dashboard .box-account .box-content .button {
      font-size: 10px; }
  .my-account .dashboard .welcome-msg .hello {
    margin-bottom: 10px;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1; }
    .my-account .dashboard .welcome-msg .hello span {
      color: #1abc9c; }
  .my-account .dashboard h2 {
    display: inline-block;
    font-size: 1.22222222rem;
    font-weight: 800; }

/* ============================================ *
 * Address Book
 * ============================================ */
body.customer-address-form .control.first {
  margin-top: 2em; }
body.customer-address-form .control .label:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border: 2px solid #dddddd;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23 23'%3E%3Cpolyline fill='none' stroke='%23bababa' stroke-width='2.5' stroke-miterlimit='10' points='7.318,10.844 11.449,14.977 16.271,7.4 '/%3E%3C/svg%3E");
  background-color: #f7f7f7;
  -webkit-transition: 400ms;
  transition: 400ms;
  margin-top: -1px; }

/* ============================================ *
 * My Orders
 * ============================================ */
/* ============================================ *
 * My Product Reviews
 * ============================================ */
.my-product-reviews .my-review {
  padding-bottom: 3em; }
.my-product-reviews .product-brand-name {
  font-size: 0.66666667rem;
  color: #a5a5a5;
  font-weight: 600;
  text-transform: uppercase; }
.my-product-reviews .product-name {
  font-weight: 600;
  padding: 0.3em 0; }
  .my-product-reviews .product-name a {
    white-space: nowrap; }
.my-product-reviews .rating-box {
  margin: 0.5em 0; }
.my-product-reviews p {
  margin-bottom: 0.5em; }
.my-product-reviews .review-date {
  font-size: 12px;
  color: #a5a5a5; }

/* ============================================ *
 * Newsletter Subscriptions
 * ============================================ */
/* ============================================ *
 * My Wishlist & My Out Of Stock Subscriptions
 * ============================================ */
.my-subscriptions-item, .my-wishlist-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #dddddd;
  padding: 1.5em 0;
  position: relative; }
  .my-subscriptions-item .product-image, .my-wishlist-item .product-image {
    display: block;
    min-width: 120px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 35%;
        -ms-flex: 0 1 35%;
            flex: 0 1 35%; }
    .my-subscriptions-item .product-image img, .my-wishlist-item .product-image img {
      width: 100%;
      max-width: 225px;
      height: auto; }
  .my-subscriptions-item .product-details, .my-wishlist-item .product-details {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 60%;
        -ms-flex: 0 1 60%;
            flex: 0 1 60%;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
    @media (max-width: 760px) {
      .my-subscriptions-item .product-details, .my-wishlist-item .product-details {
        font-size: 0.88888889rem; } }
    .my-subscriptions-item .product-details > div, .my-wishlist-item .product-details > div {
      padding: 0 10px; }
    .my-subscriptions-item .product-details .product-brand-name, .my-wishlist-item .product-details .product-brand-name {
      font-size: 9px;
      color: #a5a5a5;
      font-weight: 600;
      text-transform: uppercase; }
      @media (min-width: 450px) {
        .my-subscriptions-item .product-details .product-brand-name, .my-wishlist-item .product-details .product-brand-name {
          font-size: 0.66666667rem; } }
    .my-subscriptions-item .product-details .product-name, .my-wishlist-item .product-details .product-name {
      font-size: 14px;
      font-weight: 600;
      padding: 0.1em 0; }
      @media (min-width: 450px) {
        .my-subscriptions-item .product-details .product-name, .my-wishlist-item .product-details .product-name {
          font-size: 0.88888889rem; } }
    .my-subscriptions-item .product-details .option-box, .my-wishlist-item .product-details .option-box {
      font-size: 10px;
      font-weight: 500;
      color: #a5a5a5;
      margin: 1em 0; }
    .my-subscriptions-item .product-details .price-box, .my-wishlist-item .product-details .price-box {
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end; }
    .my-subscriptions-item .product-details .label, .my-wishlist-item .product-details .label {
      font-size: 0.55555556rem;
      color: #a5a5a5;
      font-weight: 500; }
    .my-subscriptions-item .product-details .link-edit, .my-wishlist-item .product-details .link-edit {
      display: block;
      font-size: 10px;
      color: #ff6d5a;
      margin-top: 1.5em;
      text-transform: uppercase; }
    .my-subscriptions-item .product-details .btn-remove, .my-wishlist-item .product-details .btn-remove {
      position: absolute;
      top: 5px;
      right: 10px;
      font-size: 0;
      color: #dddddd; }
      .my-subscriptions-item .product-details .btn-remove:hover, .my-wishlist-item .product-details .btn-remove:hover {
        color: #ff6d5a; }
      .my-subscriptions-item .product-details .btn-remove:before, .my-wishlist-item .product-details .btn-remove:before {
        content: "\00d7";
        font-size: 24PX;
        font-weight: 500; }
    .my-subscriptions-item .product-details .btn-cart, .my-wishlist-item .product-details .btn-cart {
      font-size: 0.66666667rem; }

.cms-index-index section {
  padding-bottom: 6rem; }
  @media (min-width: 700px) {
    .cms-index-index section {
      padding-bottom: 8rem; } }
  .cms-index-index section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 0 30px;
    position: relative;
    z-index: 1;
    display: inline-block;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-bottom: 1em; }
    @media (min-width: 700px) {
      .cms-index-index section h2 {
        font-size: 3rem; } }
    @media (min-width: 1200px) {
      .cms-index-index section h2 {
        font-size: 3.5rem; } }
  @media (max-width: 599px) {
    .cms-index-index section .slider-tabs-menu a {
      font-size: 0.8rem; } }

.category-cms-page .widget-category-block {
  position: relative;
  width: 100%;
  background: transparent;
  float: left;
  clear: both;
  z-index: 1; }
  .category-cms-page .widget-category-block.inclined {
    margin-bottom: -5vw;
    margin-top: -5vw; }
    @media (min-width: 1300px) {
      .category-cms-page .widget-category-block.inclined {
        margin-bottom: -4vw;
        margin-top: -4vw; } }
    .category-cms-page .widget-category-block.inclined .inclined-top {
      width: 100%;
      height: 10vw;
      -webkit-transform: translateY(1px);
              transform: translateY(1px); }
      @media (min-width: 1300px) {
        .category-cms-page .widget-category-block.inclined .inclined-top {
          height: 8vw; } }
    .category-cms-page .widget-category-block.inclined .inclined-bottom {
      position: absolute;
      width: 100%;
      height: 10vw;
      -webkit-transform: translateY(calc(-100% + 3px));
              transform: translateY(calc(-100% + 3px)); }
      @media (min-width: 1300px) {
        .category-cms-page .widget-category-block.inclined .inclined-bottom {
          height: 8vw; } }
    @media (min-width: 1025px) {
      .category-cms-page .widget-category-block.inclined .content {
        padding: 6em 4em 10vw 4em; } }
    @media (min-width: 1300px) {
      .category-cms-page .widget-category-block.inclined .content {
        padding: 6em 4em 9vw 4em; } }
    .category-cms-page .widget-category-block.inclined img {
      bottom: 3vw; }
  .category-cms-page .widget-category-block .inner-wrap {
    overflow: hidden; }
  .category-cms-page .widget-category-block .content {
    box-sizing: content-box;
    font-size: 1rem;
    position: relative;
    padding: 8vw 5vw 10vw 5vw;
    min-width: 280px;
    max-width: 60rem;
    margin: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media (min-width: 1025px) {
      .category-cms-page .widget-category-block .content {
        padding: 6em 4em 6em 4em; } }
    @media (min-width: 1500px) {
      .category-cms-page .widget-category-block .content {
        max-width: 65rem; } }
  .category-cms-page .widget-category-block h2 {
    font-size: 1.2em;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    position: relative;
    max-width: 50%;
    cursor: pointer; }
    @media (min-width: 320px) {
      .category-cms-page .widget-category-block h2 {
        font-size: 5.5vw; } }
    @media (min-width: 1025px) {
      .category-cms-page .widget-category-block h2 {
        font-size: 3.7em;
        max-width: 8em; } }
  .category-cms-page .widget-category-block p {
    padding: 0.5em 0 0 0;
    line-height: 1.4;
    max-width: 55%;
    position: relative;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer; }
    @media (min-width: 450px) {
      .category-cms-page .widget-category-block p {
        font-size: 12px; } }
    @media (min-width: 550px) {
      .category-cms-page .widget-category-block p {
        line-height: 1.5;
        font-size: 13px;
        max-width: 50%; } }
    @media (min-width: 650px) {
      .category-cms-page .widget-category-block p {
        font-size: 14px; } }
    @media (min-width: 800px) {
      .category-cms-page .widget-category-block p {
        font-size: 16px;
        max-width: 45%; } }
    @media (min-width: 1025px) {
      .category-cms-page .widget-category-block p {
        font-size: unset;
        max-width: 25em; } }
  .category-cms-page .widget-category-block img {
    position: absolute;
    height: 100%;
    max-height: 550px;
    bottom: -10%;
    left: 57%;
    cursor: pointer; }
    @media (min-width: 1200px) {
      .category-cms-page .widget-category-block img {
        left: unset;
        right: 2em; } }
  .category-cms-page .widget-category-block .widget-category-link {
    position: relative;
    z-index: 1; }
    @media (min-width: 650px) {
      .category-cms-page .widget-category-block .widget-category-link {
        font-size: 0.66666667rem; } }
    .category-cms-page .widget-category-block .widget-category-link a {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      font-size: 0.88888889rem;
      font-weight: 700;
      text-transform: uppercase; }
    .category-cms-page .widget-category-block .widget-category-link span {
      display: none; }
    .category-cms-page .widget-category-block .widget-category-link svg {
      width: 0.77777778rem;
      height: 0.77777778rem;
      fill: currentColor;
      margin-left: 0.5em;
      -webkit-animation-name: bounceAlpha;
              animation-name: bounceAlpha;
      -webkit-animation-duration: 2s;
              animation-duration: 2s;
      -webkit-animation-iteration-count: infinite;
              animation-iteration-count: infinite;
      -webkit-animation-timing-function: easeInOut;
              animation-timing-function: easeInOut; }
@-webkit-keyframes bounceAlpha {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) scale(1);
            transform: translateX(0px) scale(1); }
  30% {
    opacity: 0;
    -webkit-transform: translateX(15px) scale(0.9);
            transform: translateX(15px) scale(0.9); }
  31% {
    opacity: 0;
    -webkit-transform: translateX(-15px) scale(0.9);
            transform: translateX(-15px) scale(0.9); }
  61% {
    opacity: 1;
    -webkit-transform: translateX(0px) scale(1);
            transform: translateX(0px) scale(1); } }
@keyframes bounceAlpha {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) scale(1);
            transform: translateX(0px) scale(1); }
  30% {
    opacity: 0;
    -webkit-transform: translateX(15px) scale(0.9);
            transform: translateX(15px) scale(0.9); }
  31% {
    opacity: 0;
    -webkit-transform: translateX(-15px) scale(0.9);
            transform: translateX(-15px) scale(0.9); }
  61% {
    opacity: 1;
    -webkit-transform: translateX(0px) scale(1);
            transform: translateX(0px) scale(1); } }
body.catalog-category-view .trufit-widget.product-slider {
  padding-bottom: 6rem;
  padding-top: 6rem; }
  @media (min-width: 700px) {
    body.catalog-category-view .trufit-widget.product-slider {
      padding-bottom: 8rem;
      padding-top: 8rem; } }
  body.catalog-category-view .trufit-widget.product-slider:first-child {
    padding-top: 2rem; }
    @media (min-width: 700px) {
      body.catalog-category-view .trufit-widget.product-slider:first-child {
        padding-top: 4rem; } }
body.catalog-category-view .children-category-container {
  width: 100%;
  margin: 0 auto;
  padding: 0rem 20px;
  text-align: center; }
  @media (min-width: 800px) {
    body.catalog-category-view .children-category-container {
      padding: 1rem 20px; } }
  body.catalog-category-view .children-category-container h2 {
    text-align: center;
    font-size: 1.66666667rem;
    padding: 0 5%;
    line-height: 1.1;
    margin: 2em 0;
    text-transform: capitalize;
    display: none; }
  body.catalog-category-view .children-category-container .children-category-list {
    margin: 0 auto;
    display: inline-block; }
    body.catalog-category-view .children-category-container .children-category-list .row-wrap {
      max-width: 100vw;
      overflow-x: scroll;
      overflow-y: hidden;
      padding: 10px 0 10px 20px;
      margin-left: -20px;
      /* Hide scrollbar for Chrome, Safari and Opera */
      /* Hide scrollbar for IE, Edge and Firefox */
      -ms-overflow-style: none;
      /* IE and Edge */
      scrollbar-width: none;
      /* Firefox */ }
      body.catalog-category-view .children-category-container .children-category-list .row-wrap::-webkit-scrollbar {
        display: none; }
      body.catalog-category-view .children-category-container .children-category-list .row-wrap .controls {
        width: 70px;
        height: 100%;
        padding-left: 20px;
        display: none;
        position: absolute;
        border-right: 2px solid #ededed;
        background-color: white;
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ededed' d='M352 128.4L319.7 96 160 256l159.7 160 32.3-32.4L224.7 256'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center; }
        body.catalog-category-view .children-category-container .children-category-list .row-wrap .controls.leftarrow {
          left: -20px;
          top: 0; }
        body.catalog-category-view .children-category-container .children-category-list .row-wrap .controls.rightarrow {
          -webkit-transform: rotate(180deg);
                  transform: rotate(180deg);
          right: 0px;
          top: 0; }
    body.catalog-category-view .children-category-container .children-category-list .children-category-list_row {
      text-align: center;
      white-space: nowrap; }
      body.catalog-category-view .children-category-container .children-category-list .children-category-list_row .children-category-list_item {
        background: #ededed;
        margin: 0.3em 0.2em;
        border-radius: 50px;
        display: inline-block; }
        body.catalog-category-view .children-category-container .children-category-list .children-category-list_row .children-category-list_item.trudeals {
          background: #ff6d5a;
          color: white; }
        body.catalog-category-view .children-category-container .children-category-list .children-category-list_row .children-category-list_item a:hover {
          color: inherit; }
        @media (min-width: 800px) {
          body.catalog-category-view .children-category-container .children-category-list .children-category-list_row .children-category-list_item:hover {
            background: #ff6d5a; }
            body.catalog-category-view .children-category-container .children-category-list .children-category-list_row .children-category-list_item:hover a {
              color: white; } }
        body.catalog-category-view .children-category-container .children-category-list .children-category-list_row .children-category-list_item_name {
          display: block;
          padding: 1em 2em;
          text-transform: capitalize;
          font-weight: 600;
          font-size: 0.77777778rem; }
    @media (min-width: 800px) {
      body.catalog-category-view .children-category-container .children-category-list[min-width~="90vw"] .row-wrap {
        padding: 10px 0; }
      body.catalog-category-view .children-category-container .children-category-list[min-width~="90vw"] .controls {
        display: block; }
      body.catalog-category-view .children-category-container .children-category-list[min-width~="90vw"] .children-category-list_item:first-child {
        margin-left: 90px; }
      body.catalog-category-view .children-category-container .children-category-list[min-width~="90vw"] .children-category-list_item:last-child {
        margin-right: 90px; } }

body.catalog-category-view.level-1:not(.category-brands, .category-support) .header-content {
  padding-bottom: 5vw;
  margin-bottom: -5vw; }
  @media (min-width: 1300px) {
    body.catalog-category-view.level-1:not(.category-brands, .category-support) .header-content {
      padding-bottom: 4vw;
      margin-bottom: -4vw; } }
body.catalog-category-view.level-1:not(.category-brands, .category-support) .widget-category-block:last-child {
  margin-bottom: -2.5vw; }
  body.catalog-category-view.level-1:not(.category-brands, .category-support) .widget-category-block:last-child .inclined-bottom svg {
    fill: #f1c40f !important; }
body.catalog-category-view.level-1:not(.category-brands, .category-support) .breadcrumbs {
  display: none; }

body.category-brands .category-cms-page h2 {
  display: none; }
body.category-brands .brands-index-wrapper {
  width: 100%;
  max-width: 70rem;
  padding: 2rem 40px;
  margin: auto; }
  @media (min-width: 800px) and (max-width: 1200px) {
    body.category-brands .brands-index-wrapper {
      padding: 2rem 80px; } }
body.category-brands .brands-index-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 2em 0;
  border-bottom: 2px solid #ededed; }
  body.category-brands .brands-index-row-character {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    font-size: 2.33333333rem;
    font-weight: 900;
    width: 4em;
    max-width: 35%;
    text-align: center; }
  body.category-brands .brands-index-row-items {
    -webkit-columns: 13em 4;
       -moz-columns: 13em 4;
            columns: 13em 4;
    width: 100%; }
    body.category-brands .brands-index-row-items a {
      display: block;
      -webkit-column-break-inside: avoid;
         page-break-inside: avoid;
              break-inside: avoid;
      font-weight: 500;
      padding: 0.7em 0; }
      @media (min-width: 800px) {
        body.category-brands .brands-index-row-items a {
          padding: 0.5em 0; } }

body.cms-page-view .col3-layout .block-cms-menu {
  margin-bottom: 2em; }
  body.cms-page-view .col3-layout .block-cms-menu .block-title {
    margin-bottom: 0.8em;
    font-size: 1.22222222rem;
    font-weight: 700;
    position: relative; }
    body.cms-page-view .col3-layout .block-cms-menu .block-title:after {
      content: "";
      position: absolute;
      display: block;
      width: 5em;
      bottom: -0.5em;
      height: 3px;
      background: #ff6d5a; }
  body.cms-page-view .col3-layout .block-cms-menu li {
    font-size: 12px;
    font-weight: 500;
    padding: 1em 0;
    border-bottom: 1px solid #dddddd;
    position: relative;
    text-transform: uppercase; }
    body.cms-page-view .col3-layout .block-cms-menu li.current a {
      color: #ff6d5a;
      cursor: default;
      font-weight: 600; }
  body.cms-page-view .col3-layout .block-cms-menu a {
    font-weight: 500; }
  body.cms-page-view .col3-layout .block-cms-menu .logout-button {
    font-size: 12px;
    margin-top: 3em;
    display: inline-block;
    color: #ff6d5a; }
body.cms-page-view article hgroup h1 {
  font-size: 1.66666667rem;
  margin-bottom: 0.4em; }
body.cms-page-view article hgroup span {
  display: block;
  margin-bottom: 1em; }
body.cms-page-view article hgroup a {
  display: block;
  font-size: 0.88888889rem;
  color: #ff6d5a;
  padding: 0.6em 0; }
body.cms-page-view article section h2 {
  font-size: 1.22222222rem;
  margin-bottom: 0.4em;
  margin-top: 1.5em; }
body.cms-page-view article section p:last-of-type {
  margin-bottom: 0; }
  body.cms-page-view article section p:last-of-type a {
    font-weight: 500;
    color: #ff6d5a; }
body.cms-page-view article section > a {
  display: inline-block;
  font-size: 0.66666667rem;
  color: #ff6d5a;
  margint-top: 1em; }
body.cms-page-view article section table {
  margin: 2em 0 1em 0; }
body.cms-page-view article section ul {
  list-style: circle;
  padding: 0.8em 0 1.5em 1.2em;
  line-height: 1.7; }
body.cms-page-view .col2-right-layout .col-main {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }
body.cms-page-view .col2-right-layout .col-right {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0; }
body.cms-page-view .col2-right-layout .help-topics {
  text-align: center;
  margin-bottom: 2em; }
  @media (min-width: 750px) and (max-width: 859px) {
    body.cms-page-view .col2-right-layout .help-topics {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: calc(50% - 2em) 50%;
          grid-template-columns: calc(50% - 2em) 50%;
      -ms-grid-rows: auto;
          grid-template-rows: auto;
      grid-column-gap: 2em;
      grid-row-gap: 2em;
      -ms-grid-row-align: start;
          align-items: start;
      text-align: left; } }
  @media (min-width: 1180px) {
    body.cms-page-view .col2-right-layout .help-topics {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: calc(50% - 2em) 50%;
          grid-template-columns: calc(50% - 2em) 50%;
      -ms-grid-rows: auto;
          grid-template-rows: auto;
      grid-column-gap: 2em;
      grid-row-gap: 2em;
      -ms-grid-row-align: start;
          align-items: start;
      text-align: left; } }
body.cms-page-view .col2-right-layout h1 {
  margin-bottom: 0.5em; }
body.cms-page-view .col2-right-layout .help-topic img {
  width: 100%;
  height: 100%;
  max-width: 8em; }
body.cms-page-view .col2-right-layout .help-topic h2 {
  margin-bottom: 0.5em; }
body.cms-page-view .col2-right-layout .help-topic a {
  display: block;
  font-size: 0.88888889rem;
  padding: 0.6em 0; }
  body.cms-page-view .col2-right-layout .help-topic a:last-child {
    font-size: 0.77777778rem;
    color: #ff6d5a; }

body.catalog-product-view .col1-layout .main {
  padding: 0; }
body.catalog-product-view .remodal {
  background: #213444; }
  body.catalog-product-view .remodal.video {
    max-width: 1100px;
    padding: 0;
    background: #171e27; }
    body.catalog-product-view .remodal.video .video-wrapper {
      width: 100%;
      position: relative;
      padding-bottom: 56.25%;
      height: 0; }
      body.catalog-product-view .remodal.video .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
  body.catalog-product-view .remodal.size-guide-helper {
    max-width: 800px;
    padding: 10%;
    text-align: center; }
    @media (min-width: 800px) {
      body.catalog-product-view .remodal.size-guide-helper {
        padding: 5em; } }
    body.catalog-product-view .remodal.size-guide-helper h2 {
      font-size: 1.88888889rem;
      margin-bottom: 1em;
      font-weight: 700; }
    body.catalog-product-view .remodal.size-guide-helper img {
      width: 100%;
      max-width: 350px;
      margin-bottom: 1.5rem; }
    body.catalog-product-view .remodal.size-guide-helper div p {
      text-align: left; }
      body.catalog-product-view .remodal.size-guide-helper div p strong {
        color: #ff6d5a; }
body.catalog-product-view.wishlist-index-configure .sharing-links {
  display: none !important; }
body.catalog-product-view.wishlist-index-configure .add-to-links {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important; }

.product-view h1, .product-view h2 {
  text-align: center;
  margin-bottom: 0.8em; }
.product-view h1 {
  font-size: 1.88888889rem; }
.product-view h2 {
  font-size: 1.66666667rem;
  font-weight: 900; }
  .product-view h2.header {
    font-size: 3rem; }
  @media (min-width: 1000px) {
    .product-view h2 {
      text-align: left; } }
.product-view .product-name {
  max-width: 95%;
  font-size: 2.11111111rem;
  font-weight: 900;
  text-align: center;
  margin: 0 auto; }
  @media (min-width: 1000px) {
    .product-view .product-name {
      max-width: 100%;
      text-align: left; } }
.product-view .product-slogan {
  display: none; }
.product-view .product-brand-name {
  font-size: 0.66666667rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #a5a5a5;
  margin-bottom: 0.25em;
  text-align: center; }
  @media (min-width: 1000px) {
    .product-view .product-brand-name {
      text-align: left; } }
.product-view section[class$="-block"] > div {
  max-width: 42em;
  margin: 0 auto;
  padding: 4em 20px; }
  @media (min-width: 420px) {
    .product-view section[class$="-block"] > div {
      padding: 4em 40px; } }
  @media (min-width: 1000px) {
    .product-view section[class$="-block"] > div {
      max-width: 80em;
      padding: 4em 60px; }
      .product-view section[class$="-block"] > div.narrow {
        max-width: 50em; } }
.product-view .promo-banner {
  width: 100%; }
  .product-view .promo-banner.top {
    background: #f1c40f; }
    .product-view .promo-banner.top .content {
      width: 100%;
      text-align: center;
      color: #213444;
      font-weight: 500;
      font-size: 0.77777778rem;
      padding: 1em; }
    .product-view .promo-banner.top a {
      font-weight: 500; }
      .product-view .promo-banner.top a:hover {
        color: inherit;
        text-decoration: underline; }
  .product-view .promo-banner.bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .product-view .promo-banner.bottom a {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      font-weight: normal;
      width: 100%;
      position: relative; }
      .product-view .promo-banner.bottom a:hover {
        color: inherit; }
      .product-view .promo-banner.bottom a.nolink {
        pointer-events: none; }
    .product-view .promo-banner.bottom .image {
      width: 40%;
      -webkit-flex-basis: 40%;
          -ms-flex-preferred-size: 40%;
              flex-basis: 40%; }
      @media (min-width: 400px) {
        .product-view .promo-banner.bottom .image {
          -webkit-flex-basis: 50%;
              -ms-flex-preferred-size: 50%;
                  flex-basis: 50%; } }
      .product-view .promo-banner.bottom .image img {
        position: absolute;
        width: auto;
        height: 100%;
        display: block;
        top: 0;
        right: 60%; }
        @media (min-width: 400px) {
          .product-view .promo-banner.bottom .image img {
            right: 57%; } }
    .product-view .promo-banner.bottom .content {
      padding: 2em 2em;
      -webkit-flex-basis: 60%;
          -ms-flex-preferred-size: 60%;
              flex-basis: 60%;
      margin-left: auto; }
      @media (min-width: 400px) {
        .product-view .promo-banner.bottom .content {
          padding: 3em 2em;
          -webkit-flex-basis: 57%;
              -ms-flex-preferred-size: 57%;
                  flex-basis: 57%; } }
      .product-view .promo-banner.bottom .content .title {
        font-weight: 700;
        font-size: 1.22222222rem;
        line-height: 1.1; }
        @media (min-width: 400px) {
          .product-view .promo-banner.bottom .content .title {
            font-size: 1.44444444rem; } }
        @media (min-width: 800px) {
          .product-view .promo-banner.bottom .content .title {
            font-size: 1.66666667rem; } }
      .product-view .promo-banner.bottom .content .descr {
        font-weight: 500;
        font-size: 0.88888889rem;
        max-width: 22em; }
        @media (min-width: 800px) {
          .product-view .promo-banner.bottom .content .descr {
            font-size: 1rem; } }
.product-view section.product-essentials .block-inner-wrap {
  max-width: 80em;
  margin: 0 auto;
  padding: 3em 20px 3em 20px; }
  @media (min-width: 768px) {
    .product-view section.product-essentials .block-inner-wrap {
      padding: 3em 40px 3em 40px; } }
  @media (min-width: 1000px) {
    .product-view section.product-essentials .block-inner-wrap {
      padding: 3em 60px 3em 60px; } }
  @media (min-width: 768px) {
    .product-view section.product-essentials .block-inner-wrap form#product_addtocart_form {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; } }
.product-view section.product-essentials #product-zoom-wrap {
  display: none;
  overflow: hidden;
  text-align: center;
  max-width: 1500px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  top: -30px;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-color: #fff; }
  .product-view section.product-essentials #product-zoom-wrap.opened {
    display: block; }
  .product-view section.product-essentials #product-zoom-wrap .close {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3; }
    .product-view section.product-essentials #product-zoom-wrap .close:hover {
      cursor: pointer; }
  .product-view section.product-essentials #product-zoom-wrap img {
    margin: 0 auto;
    max-width: 100%; }
.product-view section.product-essentials .mobile-product-heading {
  font-size: 12px;
  margin-bottom: 2em; }
  @media (min-width: 768px) {
    .product-view section.product-essentials .mobile-product-heading {
      display: none; } }
  .product-view section.product-essentials .mobile-product-heading .ratings {
    margin: 1em 0;
    text-align: center; }
    .product-view section.product-essentials .mobile-product-heading .ratings:after {
      content: '';
      display: table;
      clear: both; }
    .product-view section.product-essentials .mobile-product-heading .ratings .rating-box {
      display: inline-block;
      margin-right: 1em; }
    .product-view section.product-essentials .mobile-product-heading .ratings .rating-links {
      text-transform: uppercase;
      font-size: 8px;
      margin-top: 0.5em; }
      .product-view section.product-essentials .mobile-product-heading .ratings .rating-links .rating-add-link {
        color: #1abc9c; }
.product-view section.product-essentials .product-img-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .product-view section.product-essentials .product-img-box:not(.discontinued) {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
  @media (min-width: 960px) {
    .product-view section.product-essentials .product-img-box {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: row-reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; } }
  @media (min-width: 888px) {
    .product-view section.product-essentials .product-img-box {
      margin-right: 2.2em; } }
  .product-view section.product-essentials .product-img-box .product-image {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 501px; }
    @media (min-width: 1300px) {
      .product-view section.product-essentials .product-img-box .product-image {
        max-width: 551px; } }
    .product-view section.product-essentials .product-img-box .product-image:before {
      content: "";
      display: block;
      width: 1px;
      padding-top: 100%;
      background: transparent;
      float: left; }
    .product-view section.product-essentials .product-img-box .product-image .product-cart-rule-label {
      position: absolute;
      right: 12%;
      top: 14%;
      width: 100%;
      max-width: 18%;
      height: auto;
      z-index: 1; }
    .product-view section.product-essentials .product-img-box .product-image .product-image-gallery {
      position: relative;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
      float: left;
      width: calc(100% - 1px); }
      .product-view section.product-essentials .product-img-box .product-image .product-image-gallery img {
        width: 100%;
        max-width: 550px; }
      .product-view section.product-essentials .product-img-box .product-image .product-image-gallery:before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        background: transparent; }
      .product-view section.product-essentials .product-img-box .product-image .product-image-gallery .gallery-image {
        display: none; }
        .product-view section.product-essentials .product-img-box .product-image .product-image-gallery .gallery-image.visible {
          display: block; }
          .product-view section.product-essentials .product-img-box .product-image .product-image-gallery .gallery-image.visible.hidden {
            visibility: hidden; }
  .product-view section.product-essentials .product-img-box.discontinued .product-image {
    max-width: 400px; }
  .product-view section.product-essentials .product-img-box .more-views {
    text-align: center;
    margin-top: 2rem; }
    @media (min-width: 960px) {
      .product-view section.product-essentials .product-img-box .more-views {
        max-width: 6.8rem; } }
    .product-view section.product-essentials .product-img-box .more-views h2 {
      max-width: 100%;
      word-spacing: 100px;
      text-align: center;
      font-size: 10px;
      font-weight: 600;
      margin-bottom: 3em;
      color: #bababa;
      position: relative;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
      display: none; }
      .product-view section.product-essentials .product-img-box .more-views h2:after, .product-view section.product-essentials .product-img-box .more-views h2:before {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-color: transparent;
        border-left-width: 5px;
        border-right-width: 5px;
        border-top-width: 5px;
        position: absolute;
        left: calc(50% - 5px); }
      .product-view section.product-essentials .product-img-box .more-views h2:before {
        border-top-color: #bababa;
        top: 33px; }
      .product-view section.product-essentials .product-img-box .more-views h2:after {
        border-top-color: white;
        top: 32px; }
    .product-view section.product-essentials .product-img-box .more-views li {
      display: inline-block;
      margin: 0 0.5em 0 0.5em; }
      @media (min-width: 960px) {
        .product-view section.product-essentials .product-img-box .more-views li {
          margin: 0 3.3em 1em 0; } }
      .product-view section.product-essentials .product-img-box .more-views li a {
        display: block;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 50%;
        overflow: hidden;
        position: relative; }
        @media (min-width: 960px) {
          .product-view section.product-essentials .product-img-box .more-views li a {
            width: 3.5rem;
            height: 3.5rem; } }
        .product-view section.product-essentials .product-img-box .more-views li a:after {
          content: "";
          display: block;
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          background: black;
          opacity: 0.09; }
        .product-view section.product-essentials .product-img-box .more-views li a img {
          width: 115%;
          height: auto;
          position: absolute;
          left: 50%;
          top: 0;
          -webkit-transform: translateX(-50%);
                  transform: translateX(-50%); }
.product-view section.product-essentials .product-shop {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center; }
  @media (max-width: 767px) {
    .product-view section.product-essentials .product-shop {
      max-width: 23em;
      margin: 0 auto;
      padding: 0 10px; } }
  @media (min-width: 768px) {
    .product-view section.product-essentials .product-shop {
      min-width: 20rem;
      max-width: 25rem;
      margin-left: 2.2em; } }
  .product-view section.product-essentials .product-shop .product-name {
    text-align: left;
    max-width: 100%; }
    @media (max-width: 767px) {
      .product-view section.product-essentials .product-shop .product-name {
        display: none; } }
    @media (max-width: 900px) {
      .product-view section.product-essentials .product-shop .product-name {
        font-size: 1.66666667rem; } }
  .product-view section.product-essentials .product-shop .product-brand-name {
    text-align: left; }
    @media (max-width: 767px) {
      .product-view section.product-essentials .product-shop .product-brand-name {
        display: none; } }
  .product-view section.product-essentials .product-shop .ratings {
    margin-top: 0.8em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .product-view section.product-essentials .product-shop .ratings:after {
      content: '';
      display: table;
      clear: both; }
    @media (max-width: 767px) {
      .product-view section.product-essentials .product-shop .ratings {
        display: none; } }
    .product-view section.product-essentials .product-shop .ratings .rating-box {
      font-size: 0.77777778rem;
      float: left;
      margin-right: 1em; }
    .product-view section.product-essentials .product-shop .ratings .rating-links {
      text-transform: uppercase;
      font-size: 0.55555556rem;
      line-height: 1;
      color: #a5a5a5; }
      .product-view section.product-essentials .product-shop .ratings .rating-links .rating-add-link {
        color: #1abc9c; }
  .product-view section.product-essentials .product-shop .short-description {
    max-width: 24rem;
    margin-top: 1em;
    line-height: 1.7;
    font-weight: 400;
    font-size: 0.88888889rem; }
    @media (max-width: 767px) {
      .product-view section.product-essentials .product-shop .short-description {
        display: none; } }
  @media (min-width: 768px) {
    .product-view section.product-essentials .product-shop .product-img-box-mobile {
      display: none; } }
  .product-view section.product-essentials .product-shop .product-img-box-mobile .product-image img {
    width: 100%;
    max-width: 550px; }
  .product-view section.product-essentials .product-shop .price-info {
    margin: 1em 0 1em 0; }
    .product-view section.product-essentials .product-shop .price-info .price-box {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end; }
      .product-view section.product-essentials .product-shop .price-info .price-box .price {
        font-size: 1.44444444rem;
        font-weight: 600;
        margin-right: 0.4em;
        position: relative; }
    .product-view section.product-essentials .product-shop .price-info .regular-price {
      margin: 0; }
    .product-view section.product-essentials .product-shop .price-info .old-price .price {
      font-size: 0.88888889rem;
      color: #a5a5a5; }
      .product-view section.product-essentials .product-shop .price-info .old-price .price:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: #ff6d5a;
        top: 50%;
        left: 0;
        right: 0;
        margin: 0 auto;
        -webkit-transform: rotate(-20deg);
                transform: rotate(-20deg); }
    .product-view section.product-essentials .product-shop .price-info .special-price {
      color: #ff6d5a; }
    .product-view section.product-essentials .product-shop .price-info .msrp {
      text-align: right;
      font-size: 0.66666667rem;
      font-weight: 500;
      line-height: 1.4;
      color: #a5a5a5;
      margin-top: 0.5em; }
      @media (min-width: 768px) {
        .product-view section.product-essentials .product-shop .price-info .msrp {
          margin-right: auto;
          text-align: left; } }
      .product-view section.product-essentials .product-shop .price-info .msrp .msrp-savings {
        color: #ff6d5a; }
    .product-view section.product-essentials .product-shop .price-info .price-box.group-8 .old-price {
      display: none; }
    .product-view section.product-essentials .product-shop .price-info .price-box.group-8 .special-price {
      color: inherit; }
  .product-view section.product-essentials .product-shop #special-untill {
    background-color: #ff6d5a;
    font-size: 0.77777778rem;
    font-weight: 600;
    color: white;
    padding: 0.5em 1em;
    display: inline-block; }
    .product-view section.product-essentials .product-shop #special-untill.hidden {
      display: none; }
  .product-view section.product-essentials .product-shop .product-options {
    margin-bottom: 1.5em; }
    @media (min-width: 768px) {
      .product-view section.product-essentials .product-shop .product-options, .product-view section.product-essentials .product-shop .product-options-bottom {
        max-width: 20em; } }
    @media (min-width: 1930px) {
      .product-view section.product-essentials .product-shop .product-options, .product-view section.product-essentials .product-shop .product-options-bottom {
        max-width: 18em; } }
    .product-view section.product-essentials .product-shop .product-options .input-box {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; }
      .product-view section.product-essentials .product-shop .product-options .input-box .validation-advice {
        position: absolute;
        max-width: 100%;
        top: auto;
        right: auto;
        -webkit-transform: translateY(calc(100% + 5px));
                transform: translateY(calc(100% + 5px));
        text-align: right;
        font-size: 9px;
        color: #ff6d5a;
        font-weight: 600;
        bottom: 0; }
      .product-view section.product-essentials .product-shop .product-options .input-box .packege-units-qty {
        display: none;
        font-size: 12px;
        font-weight: 500;
        margin-left: 1em;
        color: #a5a5a5; }
        .product-view section.product-essentials .product-shop .product-options .input-box .packege-units-qty:before {
          content: "i";
          width: 10px;
          height: 10px;
          border: 1px solid #bababa;
          background-color: #bababa;
          color: white;
          border-radius: 50%;
          padding: 0 0.5em;
          font-weight: 600;
          margin-right: 0.5em; }
      .product-view section.product-essentials .product-shop .product-options .input-box li {
        list-style: none;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        float: left; }
        .product-view section.product-essentials .product-shop .product-options .input-box li span span {
          color: #bababa;
          font-weight: 600;
          padding: 0 0.2em; }
        .product-view section.product-essentials .product-shop .product-options .input-box li .adjicon_icon_config {
          margin: 0.25em 0.5em 0.25em 0; }
        .product-view section.product-essentials .product-shop .product-options .input-box li a.icon0 {
          display: block;
          cursor: pointer;
          font-size: 12px;
          color: #213444;
          border: 2px solid #213444;
          border-radius: 50px;
          padding: 0.6em 1em;
          min-width: 5.5em;
          text-align: center;
          background: transparent;
          -webkit-user-select: none;
             -moz-user-select: none;
              -ms-user-select: none;
                  user-select: none; }
          @media (min-width: 768px) {
            .product-view section.product-essentials .product-shop .product-options .input-box li a.icon0 {
              font-size: 13px; } }
          .product-view section.product-essentials .product-shop .product-options .input-box li a.icon0.not-available {
            color: #bababa;
            border-color: #dddddd; }
          .product-view section.product-essentials .product-shop .product-options .input-box li a.icon0:hover, .product-view section.product-essentials .product-shop .product-options .input-box li a.icon0.adjselected {
            background: #213444;
            color: white; }
            .product-view section.product-essentials .product-shop .product-options .input-box li a.icon0:hover.not-available, .product-view section.product-essentials .product-shop .product-options .input-box li a.icon0.adjselected.not-available {
              background: #dddddd; }
          .product-view section.product-essentials .product-shop .product-options .input-box li a.icon0.adjdisabled {
            display: none; }
        .product-view section.product-essentials .product-shop .product-options .input-box li a.icon1 {
          position: relative;
          display: block;
          cursor: pointer;
          -webkit-user-select: none;
             -moz-user-select: none;
              -ms-user-select: none;
                  user-select: none;
          width: 36px;
          height: 36px;
          border-radius: 50%;
          text-indent: -9999px;
          -webkit-transform: rotate3d(0, 0, 1, -45deg);
                  transform: rotate3d(0, 0, 1, -45deg);
          color: white;
          overflow: hidden; }
          .product-view section.product-essentials .product-shop .product-options .input-box li a.icon1:before {
            content: '';
            display: block;
            width: 14px;
            height: 14px;
            background: currentColor;
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            margin: auto;
            border-radius: 50%;
            -webkit-transform: scale(0);
                    transform: scale(0);
            -webkit-transition: -webkit-transform 0.2s;
            transition: -webkit-transform 0.2s;
            transition: transform 0.2s;
            transition: transform 0.2s, -webkit-transform 0.2s; }
          .product-view section.product-essentials .product-shop .product-options .input-box li a.icon1.adjselected:before {
            -webkit-transform: scale(1);
                    transform: scale(1); }
          .product-view section.product-essentials .product-shop .product-options .input-box li a.icon1.adjdisabled {
            display: none; }
      .product-view section.product-essentials .product-shop .product-options .input-box .chosen-container {
        font-size: 13px; }
        .product-view section.product-essentials .product-shop .product-options .input-box .chosen-container .chosen-single {
          padding: 0.9em 1em; }
          .product-view section.product-essentials .product-shop .product-options .input-box .chosen-container .chosen-single span span {
            display: inline;
            margin: 0;
            color: #bababa;
            font-weight: 600;
            padding: 0 0.2em; }
        .product-view section.product-essentials .product-shop .product-options .input-box .chosen-container .chosen-results {
          max-height: 25em; }
        .product-view section.product-essentials .product-shop .product-options .input-box .chosen-container .active-result {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-align: start;
          -webkit-align-items: flex-start;
              -ms-flex-align: start;
                  align-items: flex-start;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          min-height: 4em;
          line-height: 1.5;
          padding: 0.5em 2.2em 0.5em 3.5em; }
          .product-view section.product-essentials .product-shop .product-options .input-box .chosen-container .active-result.out-of-stock {
            padding: 0 2.2em 0 3.5em;
            color: #a5a5a5; }
            .product-view section.product-essentials .product-shop .product-options .input-box .chosen-container .active-result.out-of-stock:before {
              background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cg fill='none' stroke='%23bababa' stroke-width='1.5' transform='translate(1 1)'%3E%3Ccircle cx='8' cy='8' r='8'/%3E%3Cpath d='M11 5l-6 6m0-6l6 6'/%3E%3C/g%3E%3C/svg%3E"); }
          .product-view section.product-essentials .product-shop .product-options .input-box .chosen-container .active-result:before {
            content: "";
            box-sizing: border-box;
            display: block;
            width: 100%;
            height: 1.4em;
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='8' fill='none' stroke='%231abc9c' stroke-width='1.5' stroke-miterlimit='10'/%3E%3Cpath fill='none' stroke='%231abc9c' stroke-width='1.5' stroke-miterlimit='10' d='M5.928 8.216l2.836 2.836 3.308-5.2'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            position: absolute;
            left: 1em;
            top: 50%;
            -webkit-transform: translate(0, -50%);
                    transform: translate(0, -50%); }
          .product-view section.product-essentials .product-shop .product-options .input-box .chosen-container .active-result:after {
            content: attr(data-availability);
            display: block;
            font-size: 0.8em;
            color: #ff6d5a;
            font-weight: 600; }
          .product-view section.product-essentials .product-shop .product-options .input-box .chosen-container .active-result.has-exp-date:after {
            content: attr(data-exp-date); }
          .product-view section.product-essentials .product-shop .product-options .input-box .chosen-container .active-result.clearance:after {
            content: attr(data-clearance-reason) " " attr(data-exp-date);
            white-space: pre-wrap; }
          .product-view section.product-essentials .product-shop .product-options .input-box .chosen-container .active-result:first-child {
            display: none; }
    .product-view section.product-essentials .product-shop .product-options dl.multi-attributes {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
    .product-view section.product-essentials .product-shop .product-options dd {
      margin: 0.2em 0 0 0; }
    .product-view section.product-essentials .product-shop .product-options .validation-advice {
      font-size: 10px; }
    .product-view section.product-essentials .product-shop .product-options .extraInfo {
      display: none; }
      .product-view section.product-essentials .product-shop .product-options .extraInfo.visible {
        display: inline-block;
        position: relative;
        top: 13px; }
      .product-view section.product-essentials .product-shop .product-options .extraInfo div {
        margin-bottom: 5px; }
      .product-view section.product-essentials .product-shop .product-options .extraInfo span {
        color: #ff6d5a;
        font-weight: 500;
        font-size: 1.2em; }
  .product-view section.product-essentials .product-shop .product-options-bottom .amxnotif-wrapper label {
    color: #767676;
    font-weight: 500; }
    .product-view section.product-essentials .product-shop .product-options-bottom .amxnotif-wrapper label.availability {
      color: #213444; }
    .product-view section.product-essentials .product-shop .product-options-bottom .amxnotif-wrapper label .attention {
      color: #ff6d5a; }
  .product-view section.product-essentials .product-shop .product-options-bottom .amxnotif-wrapper div.out-of-stock {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 0.77777778rem;
    font-weight: 500;
    margin-bottom: 0.5em;
    color: #ff6d5a; }
    .product-view section.product-essentials .product-shop .product-options-bottom .amxnotif-wrapper div.out-of-stock:before {
      content: "";
      box-sizing: border-box;
      display: block;
      width: 1.3em;
      height: 1.3em;
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cg fill='none' stroke='%23ff6d5a' stroke-width='1.5' transform='translate(1 1)'%3E%3Ccircle cx='8' cy='8' r='8'/%3E%3Cpath d='M11 5l-6 6m0-6l6 6'/%3E%3C/g%3E%3C/svg%3E");
      background-repeat: no-repeat;
      margin-right: 0.5em; }
  .product-view section.product-essentials .product-shop .product-options-bottom .amxnotif-email-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0.5em; }
    .product-view section.product-essentials .product-shop .product-options-bottom .amxnotif-email-wrapper input {
      border-color: #bababa; }
    .product-view section.product-essentials .product-shop .product-options-bottom .amxnotif-email-wrapper .input-text {
      margin: 0 0.5em 0 0;
      font-size: 13px; }
    .product-view section.product-essentials .product-shop .product-options-bottom .amxnotif-email-wrapper button {
      font-size: 12px;
      padding: 0.85em 1.5em; }
    .product-view section.product-essentials .product-shop .product-options-bottom .amxnotif-email-wrapper a {
      padding: 0.85em 0;
      -webkit-box-flex: 1;
      -webkit-flex-grow: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      font-size: 13px; }
  .product-view section.product-essentials .product-shop .product-options-bottom .add-to-cart .ship-time-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2.5em;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 12px; }
    @media (max-width: 767px) {
      .product-view section.product-essentials .product-shop .product-options-bottom .add-to-cart .ship-time-info {
        font-size: 11px;
        margin-top: 3em;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    .product-view section.product-essentials .product-shop .product-options-bottom .add-to-cart .ship-time-info svg {
      width: 25px;
      -webkit-flex-shrink: 0;
          -ms-flex-negative: 0;
              flex-shrink: 0;
      height: 100%;
      color: #1abc9c;
      margin-right: 1em; }
    .product-view section.product-essentials .product-shop .product-options-bottom .add-to-cart .ship-time-info span {
      font-weight: 500; }
    .product-view section.product-essentials .product-shop .product-options-bottom .add-to-cart .ship-time-info strong {
      color: #1abc9c; }
  .product-view section.product-essentials .product-shop .product-options-bottom .add-to-cart input {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    padding: 0.55em 0;
    line-height: inherit;
    border-radius: 0;
    margin-bottom: 0;
    width: 2.5em;
    margin-right: 0.5em; }
  .product-view section.product-essentials .product-shop .product-options-bottom .add-to-cart .add-to-cart-buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    .product-view section.product-essentials .product-shop .product-options-bottom .add-to-cart .add-to-cart-buttons #ajax_loader {
      background: #1abc9c;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      width: 0;
      -webkit-transition: width 0.5s;
      transition: width 0.5s; }
      .product-view section.product-essentials .product-shop .product-options-bottom .add-to-cart .add-to-cart-buttons #ajax_loader.visible {
        width: 70px; }
        .product-view section.product-essentials .product-shop .product-options-bottom .add-to-cart .add-to-cart-buttons #ajax_loader.visible .spinner {
          display: block;
          width: 29px;
          height: 29px;
          margin-right: 15px; }
      .product-view section.product-essentials .product-shop .product-options-bottom .add-to-cart .add-to-cart-buttons #ajax_loader .spinner {
        display: none; }
  .product-view section.product-essentials .product-shop .product-options-bottom .add-to-cart .link-wishlist {
    background: #148a71;
    min-width: 43px; }
    .product-view section.product-essentials .product-shop .product-options-bottom .add-to-cart .link-wishlist svg {
      display: block;
      fill: #148a71;
      color: #1abc9c;
      max-width: 21px;
      height: 100%;
      margin: 0 11px;
      -webkit-transition: fill 0.3s;
      transition: fill 0.3s; }
    .product-view section.product-essentials .product-shop .product-options-bottom .add-to-cart .link-wishlist:hover svg {
      fill: #1abc9c; }
  .product-view section.product-essentials .product-shop .product-options-bottom .add-to-cart button {
    padding: 0.85em 1.5em;
    width: 100%;
    font-size: 12px; }
  .product-view section.product-essentials .product-shop .product-options-bottom .sharing-links, .product-view section.product-essentials .product-shop .product-options-bottom .add-to-links {
    margin-top: 2em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .product-view section.product-essentials .product-shop .product-options-bottom .sharing-links li, .product-view section.product-essentials .product-shop .product-options-bottom .add-to-links li {
      margin-right: auto; }
      .product-view section.product-essentials .product-shop .product-options-bottom .sharing-links li svg, .product-view section.product-essentials .product-shop .product-options-bottom .add-to-links li svg {
        fill: none;
        width: 20px;
        height: 20px;
        margin-right: 7px;
        vertical-align: middle; }
        @media (min-width: 600px) {
          .product-view section.product-essentials .product-shop .product-options-bottom .sharing-links li svg, .product-view section.product-essentials .product-shop .product-options-bottom .add-to-links li svg {
            width: 25px;
            height: 25px; } }
      .product-view section.product-essentials .product-shop .product-options-bottom .sharing-links li a, .product-view section.product-essentials .product-shop .product-options-bottom .add-to-links li a {
        color: #bababa;
        font-size: 9px;
        text-transform: uppercase; }
        @media (min-width: 600px) {
          .product-view section.product-essentials .product-shop .product-options-bottom .sharing-links li a, .product-view section.product-essentials .product-shop .product-options-bottom .add-to-links li a {
            font-size: 10px; } }
        .product-view section.product-essentials .product-shop .product-options-bottom .sharing-links li a:hover, .product-view section.product-essentials .product-shop .product-options-bottom .add-to-links li a:hover {
          color: #ff6d5a; }
  .product-view section.product-essentials .product-shop .product-options-bottom .add-to-links {
    display: none; }
  .product-view section.product-essentials .product-shop ul.tier-prices {
    font-size: 0.77777778rem;
    margin-top: 1em;
    font-weight: 500; }
    .product-view section.product-essentials .product-shop ul.tier-prices li {
      margin: 0.2em 0;
      line-height: 1.5;
      border-left: 4px solid #ff6d5a;
      padding-left: 1em; }
    .product-view section.product-essentials .product-shop ul.tier-prices .benefit, .product-view section.product-essentials .product-shop ul.tier-prices .price {
      color: #ff6d5a;
      font-weight: 600;
      white-space: nowrap; }
.product-view section.discontinued h2 {
  color: #ff6d5a;
  font-size: 2.6em;
  text-align: center;
  padding: 0 10%;
  margin-bottom: 0.3em; }
.product-view section.discontinued h3 {
  text-align: center;
  padding: 0 15%; }
.product-view section.discontinued .product-slider {
  padding: 4em 0; }
.product-view section.product-description-block {
  background: #f7f7f7;
  overflow: hidden; }
  @media (max-width: 999px) {
    .product-view section.product-description-block .block-inner-wrap {
      max-width: 42em; } }
  .product-view section.product-description-block .block-inner-wrap .product-description {
    position: relative; }
    .product-view section.product-description-block .block-inner-wrap .product-description .product-name {
      font-size: 2.5rem; }
      @media (min-width: 400px) {
        .product-view section.product-description-block .block-inner-wrap .product-description .product-name {
          font-size: 3rem; } }
      @media (min-width: 600px) {
        .product-view section.product-description-block .block-inner-wrap .product-description .product-name {
          font-size: 3.5rem; } }
    @media (min-width: 1000px) {
      .product-view section.product-description-block .block-inner-wrap .product-description {
        -webkit-column-count: 2;
           -moz-column-count: 2;
                column-count: 2;
        -webkit-column-gap: 4.4rem;
           -moz-column-gap: 4.4rem;
                column-gap: 4.4rem;
        -webkit-column-fill: balance;
           -moz-column-fill: balance;
                column-fill: balance; } }
    .product-view section.product-description-block .block-inner-wrap .product-description .product-highlights {
      text-align: center; }
      @media (min-width: 1000px) {
        .product-view section.product-description-block .block-inner-wrap .product-description .product-highlights {
          text-align: left; } }
      .product-view section.product-description-block .block-inner-wrap .product-description .product-highlights ul.benefits {
        margin: 2em auto 1em; }
        .product-view section.product-description-block .block-inner-wrap .product-description .product-highlights ul.benefits li {
          font-weight: 700; }
  .product-view section.product-description-block .block-inner-wrap .desc-highlights {
    box-sizing: border-box;
    padding-left: 2.5em;
    position: relative;
    margin-bottom: 0.65em;
    line-height: 1.6;
    font-size: 1rem; }
    .product-view section.product-description-block .block-inner-wrap .desc-highlights.first {
      margin-top: 1.5em; }
    .product-view section.product-description-block .block-inner-wrap .desc-highlights strong {
      font-weight: 700; }
    .product-view section.product-description-block .block-inner-wrap .desc-highlights:before {
      content: "";
      box-sizing: border-box;
      display: block;
      width: 1.44em;
      height: 1.44em;
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='2 2 19 19'%3E%3Cpolyline fill='none' stroke='%231abc9c' stroke-width='3' stroke-miterlimit='10' points='7.318,10.844 11.449,14.977 16.271,7.4 '/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      position: absolute;
      left: 0;
      top: 0; }
    .product-view section.product-description-block .block-inner-wrap .desc-highlights.attention:before {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='2 2 19 19'%3E%3Cpolyline fill='none' stroke='%23ff6d5a' stroke-width='3' stroke-miterlimit='10' points='7.318,10.844 11.449,14.977 16.271,7.4 '/%3E%3C/svg%3E"); }
  .product-view section.product-description-block .block-inner-wrap p {
    padding-top: 0.8em;
    margin-bottom: 0.8em; }
  .product-view section.product-description-block .block-inner-wrap .push {
    width: 100%;
    padding-top: 70%; }
  .product-view section.product-description-block .block-inner-wrap .product-description-media {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }
    @media (min-width: 1000px) {
      .product-view section.product-description-block .block-inner-wrap .product-description-media {
        left: calc(50% + 2.2rem);
        max-width: calc(50% - 2.2rem);
        -webkit-transform: translateX(0);
                transform: translateX(0); } }
    .product-view section.product-description-block .block-inner-wrap .product-description-media img.product-description-image {
      width: 100%;
      height: auto; }
      .product-view section.product-description-block .block-inner-wrap .product-description-media img.product-description-image.png_image {
        -webkit-transform: scale(1.1);
                transform: scale(1.1);
        padding-top: 4%; }
        .product-view section.product-description-block .block-inner-wrap .product-description-media img.product-description-image.png_image.product-type-127 {
          -webkit-transform: scale(1.2) rotateZ(90deg);
                  transform: scale(1.2) rotateZ(90deg);
          padding-bottom: 8%; }
    .product-view section.product-description-block .block-inner-wrap .product-description-media .product-description-video {
      width: 55px;
      height: 55px;
      background: #ff6d5a;
      border-radius: 50%;
      color: transparent;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      -webkit-transition: opacity 0.5s;
      transition: opacity 0.5s; }
      .product-view section.product-description-block .block-inner-wrap .product-description-media .product-description-video:before {
        content: '';
        display: block;
        background: #ff6d5a;
        border-radius: 50%;
        position: absolute;
        z-index: 1;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        -webkit-animation: pulse 3.5s cubic-bezier(0.17, 0.67, 0.4, 1.39);
                animation: pulse 3.5s cubic-bezier(0.17, 0.67, 0.4, 1.39);
        -webkit-animation-iteration-count: infinite;
                animation-iteration-count: infinite; }
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0; }
  20% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0.5; }
  53% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0.5; }
  100% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0; } }
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0; }
  20% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0.5; }
  53% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0.5; }
  100% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0; } }
      .product-view section.product-description-block .block-inner-wrap .product-description-media .product-description-video:after {
        content: '';
        display: block;
        background: #ff6d5a;
        border-radius: 50%;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        z-index: 2;
        -webkit-animation: pulse2 3.5s cubic-bezier(0.17, 0.67, 0.4, 1);
                animation: pulse2 3.5s cubic-bezier(0.17, 0.67, 0.4, 1);
        -webkit-animation-iteration-count: infinite;
                animation-iteration-count: infinite; }
@-webkit-keyframes pulse2 {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0; }
  15% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0; }
  50% {
    -webkit-transform: scale(1.9);
            transform: scale(1.9);
    opacity: 0.5; }
  100% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0; } }
@keyframes pulse2 {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0; }
  15% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0; }
  50% {
    -webkit-transform: scale(1.9);
            transform: scale(1.9);
    opacity: 0.5; }
  100% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0; } }
      .product-view section.product-description-block .block-inner-wrap .product-description-media .product-description-video:hover {
        cursor: pointer; }
        .product-view section.product-description-block .block-inner-wrap .product-description-media .product-description-video:hover span {
          border-left-color: #8e261b; }
      .product-view section.product-description-block .block-inner-wrap .product-description-media .product-description-video span {
        position: absolute;
        z-index: 3;
        top: 19px;
        left: 20px;
        display: block;
        width: 0;
        height: 0;
        border: 9px solid transparent;
        border-left: 20px solid white;
        -webkit-transition: border-left-color 0.5s;
        transition: border-left-color 0.5s; }
@media (min-width: 1000px) {
  .product-view section.product-extra-info-block .block-inner-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .product-view section.product-extra-info-block .block-inner-wrap > div {
      max-width: calc(50em - 120px);
      width: 100%; } }
.product-view section.product-extra-info-block .block-inner-wrap .left-column[data-column-qty="1"] * {
  text-align: center; }
.product-view section.product-extra-info-block .block-inner-wrap .left-column .pictograms {
  margin-bottom: 2.5em;
  padding-top: 1em; }
  .product-view section.product-extra-info-block .block-inner-wrap .left-column .pictograms .nutrition-pictogram {
    width: 80%;
    max-width: 20rem;
    margin: 0 auto;
    position: relative;
    color: #ff6d5a; }
    @media (min-width: 1000px) {
      .product-view section.product-extra-info-block .block-inner-wrap .left-column .pictograms .nutrition-pictogram {
        margin: 0; } }
    .product-view section.product-extra-info-block .block-inner-wrap .left-column .pictograms .nutrition-pictogram:before {
      content: attr(data-1);
      position: absolute;
      font-size: 1.3rem;
      font-weight: 600;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
    .product-view section.product-extra-info-block .block-inner-wrap .left-column .pictograms .nutrition-pictogram:after {
      content: attr(data-2);
      position: absolute;
      font-size: 0.9rem;
      font-weight: 600;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      white-space: nowrap; }
    .product-view section.product-extra-info-block .block-inner-wrap .left-column .pictograms .nutrition-pictogram.scoop-liquid:after {
      top: 14%;
      left: 81.5%; }
    .product-view section.product-extra-info-block .block-inner-wrap .left-column .pictograms .nutrition-pictogram.scoop-liquid:before {
      top: 52%;
      left: 24.5%; }
    .product-view section.product-extra-info-block .block-inner-wrap .left-column .pictograms .nutrition-pictogram.spoon-liquid:after {
      top: 8%;
      left: 83%; }
    .product-view section.product-extra-info-block .block-inner-wrap .left-column .pictograms .nutrition-pictogram.spoon-liquid:before {
      top: 45%;
      left: 30%; }
    .product-view section.product-extra-info-block .block-inner-wrap .left-column .pictograms .nutrition-pictogram.spoon-liquid .powder {
      fill: #fce8e6; }
  .product-view section.product-extra-info-block .block-inner-wrap .left-column .pictograms .pictogram {
    width: 100%;
    max-width: 4.5em;
    margin: 0.5em 0.9em;
    height: auto;
    display: inline-block;
    vertical-align: top; }
    .product-view section.product-extra-info-block .block-inner-wrap .left-column .pictograms .pictogram svg {
      color: #ff6d5a; }
    .product-view section.product-extra-info-block .block-inner-wrap .left-column .pictograms .pictogram .pictogram-caption {
      text-align: center;
      font-size: 8px;
      text-transform: uppercase;
      font-weight: 500;
      margin-top: 0.3em; }
.product-view section.product-extra-info-block .block-inner-wrap .left-column .advisory-info {
  padding-top: 1em;
  font-size: 0.77777778rem; }
  .product-view section.product-extra-info-block .block-inner-wrap .left-column .advisory-info span {
    display: block;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    padding-bottom: 1em; }
  .product-view section.product-extra-info-block .block-inner-wrap .left-column .advisory-info a {
    font-weight: 500; }
    .product-view section.product-extra-info-block .block-inner-wrap .left-column .advisory-info a.helper-button {
      display: block;
      font-weight: 600;
      color: #ff6d5a;
      margin-top: 0.5em; }
.product-view section.product-extra-info-block .block-inner-wrap .column-gap {
  max-width: 4.4em; }
.product-view section.product-extra-info-block .block-inner-wrap .right-column {
  overflow: hidden;
  position: relative; }
  @media (max-width: 999px) {
    .product-view section.product-extra-info-block .block-inner-wrap .right-column h2 {
      margin-top: 2em; } }
  .product-view section.product-extra-info-block .block-inner-wrap .right-column .show-all {
    width: 100%;
    position: absolute;
    bottom: 0;
    background-image: -webkit-linear-gradient(bottom, white 0, white 3em, rgba(255, 255, 255, 0) 100%);
    background-image: linear-gradient(to top, white 0, white 3em, rgba(255, 255, 255, 0) 100%);
    text-align: center;
    font-size: 0.66666667rem;
    color: #ff6d5a;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    padding-top: 15em;
    padding-bottom: 1.2em; }
    .product-view section.product-extra-info-block .block-inner-wrap .right-column .show-all:after {
      content: "";
      display: block;
      width: 0.5em;
      height: 0.5em;
      border-right: 1.5px solid #ff6d5a;
      border-bottom: 1.5px solid #ff6d5a;
      position: absolute;
      bottom: 0;
      left: 50%;
      -webkit-transform: rotateZ(45deg) translateX(-50%);
              transform: rotateZ(45deg) translateX(-50%); }
  .product-view section.product-extra-info-block .block-inner-wrap .right-column .size-guide-chart p {
    font-size: 0.77777778rem;
    margin-top: 1.5em; }
  .product-view section.product-extra-info-block .block-inner-wrap .right-column .size-guide-chart table {
    table-layout: fixed;
    text-align: center; }
    .product-view section.product-extra-info-block .block-inner-wrap .right-column .size-guide-chart table thead.cm tr th:not(:first-child):after {
      content: '(cm)';
      display: block;
      text-transform: lowercase;
      font-weight: 500; }
    .product-view section.product-extra-info-block .block-inner-wrap .right-column .size-guide-chart table tbody tr:hover {
      background-color: #ededed; }
      .product-view section.product-extra-info-block .block-inner-wrap .right-column .size-guide-chart table tbody tr:hover td {
        border-top: 1px solid #dddddd;
        border-bottom: 1px solid #dddddd; }
@media (max-width: 450px) {
  .product-view .supplement-facts table.colspan4 td:nth-child(3) {
    display: none; } }
.product-view .supplement-facts table tr td {
  text-align: right;
  white-space: nowrap;
  padding: 0.45em 0 0.45em 1em;
  font-size: 0.77777778rem; }
  .product-view .supplement-facts table tr td:first-child {
    white-space: normal;
    text-align: left;
    font-size: 0.88888889rem;
    padding-left: 0; }
  .product-view .supplement-facts table tr td.facts-name {
    font-weight: 600; }
  .product-view .supplement-facts table tr td.line_indent {
    padding-left: 1em;
    font-weight: 400;
    font-size: 0.77777778rem; }
  .product-view .supplement-facts table tr td em {
    font-style: italic;
    font-size: 0.77777778rem;
    font-weight: 400;
    display: block;
    margin-top: 0.3em; }
.product-view .supplement-facts table tr.facts-servings td {
  font-size: 0.88888889rem;
  border: none;
  padding-bottom: 1em;
  font-weight: 600; }
  .product-view .supplement-facts table tr.facts-servings td span {
    font-weight: 400; }
.product-view .supplement-facts table tr.ing_header td {
  border: none;
  font-weight: 600;
  font-size: 0.77777778rem; }
  .product-view .supplement-facts table tr.ing_header td:first-child {
    font-weight: 400; }
.product-view .supplement-facts table tr.facts-thick-line td {
  border: none;
  background: #ededed;
  padding: 0px;
  height: 3px; }
.product-view .supplement-facts table tr.facts-spanned-row td {
  border: none;
  padding-top: 0; }
.product-view .supplement-facts table tr.no-border + tr td {
  border: none; }
.product-view .supplement-facts table tr.small_text td {
  font-size: 0.77777778rem;
  line-height: 1.7; }
.product-view .product-faq-block {
  background: #f7f7f7;
  border-top: 2px solid white; }
  .product-view .product-faq-block h2 {
    text-align: center; }
  .product-view .product-faq-block .faq-block-helper {
    margin: 0 auto 3em;
    line-height: 1.7;
    text-align: center; }
    .product-view .product-faq-block .faq-block-helper span {
      white-space: nowrap; }
  .product-view .product-faq-block .faq-items {
    margin-top: 1em; }
  .product-view .product-faq-block .faq-item {
    border-bottom: 1px solid #dddddd;
    padding-bottom: 1em;
    margin-bottom: 1em; }
    .product-view .product-faq-block .faq-item h3 {
      font-weight: 700;
      display: inline-block;
      cursor: pointer;
      text-transform: none;
      line-height: 1.3;
      position: relative;
      padding-left: 1.5em; }
      @media (min-width: 1000px) {
        .product-view .product-faq-block .faq-item h3 {
          font-size: 1.22222222rem; } }
      .product-view .product-faq-block .faq-item h3:before {
        position: absolute;
        left: 0;
        content: "+";
        color: #1abc9c;
        display: inline-block;
        -webkit-transform: rotateZ(0deg);
                transform: rotateZ(0deg);
        -webkit-transition: color 0.4s, -webkit-transform 0.4s ease-in-out;
        transition: color 0.4s, -webkit-transform 0.4s ease-in-out;
        transition: transform 0.4s ease-in-out, color 0.4s;
        transition: transform 0.4s ease-in-out, color 0.4s, -webkit-transform 0.4s ease-in-out; }
      .product-view .product-faq-block .faq-item h3.toggled:before {
        -webkit-transform: rotateZ(45deg);
                transform: rotateZ(45deg);
        color: #ff6d5a; }
    .product-view .product-faq-block .faq-item .faq-item-content {
      overflow: hidden;
      display: none;
      text-align: left; }
      .product-view .product-faq-block .faq-item .faq-item-content p:first-child {
        padding-top: 1em; }
  .product-view .product-faq-block .faq-actions {
    text-align: center;
    margin-top: 3em; }
    .product-view .product-faq-block .faq-actions .button {
      background: transparent;
      border: 2px solid #ff6d5a;
      color: #ff6d5a; }
      .product-view .product-faq-block .faq-actions .button:hover {
        background: #ff6d5a;
        color: white; }
.product-view .product-review-block h2 {
  text-align: center; }
.product-view .product-review-block .ratings {
  text-align: center; }
  .product-view .product-review-block .ratings .rating-box {
    margin: 0 auto 1.5em auto; }
    .product-view .product-review-block .ratings .rating-box .rating:after {
      width: 175px;
      height: 30px; }
  .product-view .product-review-block .ratings .amount {
    color: #a5a5a5;
    font-weight: 500;
    font-size: 0.8em;
    margin-bottom: 5em; }
    .product-view .product-review-block .ratings .amount span {
      color: #ff6d5a;
      cursor: pointer; }
.product-view .product-review-block .box-reviews {
  margin: 0 auto; }
  .product-view .product-review-block .box-reviews .box-reviews-item {
    text-align: center;
    padding: 0 3%; }
    @media (min-width: 960px) {
      .product-view .product-review-block .box-reviews .box-reviews-item {
        width: 50%;
        float: left; } }
    .product-view .product-review-block .box-reviews .box-reviews-item h3 {
      text-transform: capitalize; }
    .product-view .product-review-block .box-reviews .box-reviews-item .rating-box {
      margin: 0 auto 1em auto; }
    .product-view .product-review-block .box-reviews .box-reviews-item .review-meta {
      font-weight: 500;
      color: #a5a5a5;
      margin-bottom: 1em;
      font-size: 0.8em; }
    .product-view .product-review-block .box-reviews .box-reviews-item .review-content {
      margin-bottom: 3em; }
  .product-view .product-review-block .box-reviews .review-box-buttons {
    clear: both;
    text-align: center; }
.product-view .product-manufacturer-block {
  background: #ff6d5a;
  color: white; }
  .product-view .product-manufacturer-block .block-inner-wrap {
    text-align: center; }
    .product-view .product-manufacturer-block .block-inner-wrap .brand-logo svg {
      fill: white !important;
      max-height: 8em;
      max-width: 26em;
      margin: 0 2em; }
      .product-view .product-manufacturer-block .block-inner-wrap .brand-logo svg * {
        fill: white !important; }
    .product-view .product-manufacturer-block .block-inner-wrap .logo-name {
      padding: 0 10%;
      font-size: 2.33333333rem;
      font-weight: 900;
      line-height: 1; }
      .product-view .product-manufacturer-block .block-inner-wrap .logo-name span {
        display: block;
        font-size: 0.5em;
        margin-bottom: 0.5em; }
    .product-view .product-manufacturer-block .block-inner-wrap .brand-s-desc {
      margin: 2em auto 1em auto;
      font-size: 1rem;
      font-weight: 500; }
      @media (min-width: 1000px) {
        .product-view .product-manufacturer-block .block-inner-wrap .brand-s-desc {
          font-size: 1.22222222rem; } }
      .product-view .product-manufacturer-block .block-inner-wrap .brand-s-desc .left,
      .product-view .product-manufacturer-block .block-inner-wrap .brand-s-desc .right {
        width: 17%;
        height: 15em; }
        @media (max-width: 600px) {
          .product-view .product-manufacturer-block .block-inner-wrap .brand-s-desc .left,
          .product-view .product-manufacturer-block .block-inner-wrap .brand-s-desc .right {
            display: none; } }
      .product-view .product-manufacturer-block .block-inner-wrap .brand-s-desc .left {
        -webkit-shape-outside: polygon(0 0, 100% 100%, 0 100%);
        shape-outside: polygon(0 0, 100% 100%, 0 100%);
        float: left;
        -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 100%, 0 100%); }
      .product-view .product-manufacturer-block .block-inner-wrap .brand-s-desc .right {
        -webkit-shape-outside: polygon(100% 0, 100% 100%, 0 100%);
        shape-outside: polygon(100% 0, 100% 100%, 0 100%);
        float: right;
        -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
        clip-path: polygon(100% 0, 100% 100%, 0 100%); }
    .product-view .product-manufacturer-block .block-inner-wrap .button {
      background: transparent;
      border-color: white;
      margin-top: 2em; }
      .product-view .product-manufacturer-block .block-inner-wrap .button:hover {
        background: white;
        color: #171e27; }
.product-view section.product-recently-similar {
  padding: 4em 0; }
  @media (max-width: 600px) {
    .product-view section.product-recently-similar .block-inner-wrap {
      padding-left: 0;
      padding-right: 0; } }
.product-view .product-admin-block, .product-view .product-advertising-block {
  padding: 1em;
  background: #f1c40f;
  font-size: 0.88888889rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid white; }
  .product-view .product-admin-block > span, .product-view .product-advertising-block > span {
    font-weight: 900;
    text-transform: uppercase;
    color: #b8950a;
    font-size: 1.5em;
    margin-left: 2em; }
  .product-view .product-admin-block a, .product-view .product-advertising-block a {
    display: inline-block;
    color: inherit;
    padding: 1em; }
    .product-view .product-admin-block a:hover, .product-view .product-advertising-block a:hover {
      text-decoration: underline; }
    .product-view .product-admin-block a.disabled, .product-view .product-advertising-block a.disabled {
      color: #b8950a;
      pointer-events: none; }
.product-view .wobbler-wrapper {
  height: 0;
  overflow: hidden; }
.product-view #product-wobbler-store {
  position: relative;
  width: 1000px;
  height: 1000px; }
  .product-view #product-wobbler-store img {
    width: 100%;
    height: auto;
    -webkit-transform: scale(0.85);
            transform: scale(0.85); }
  .product-view #product-wobbler-store .wobbler-price {
    position: absolute;
    top: 20%;
    right: 10%;
    background: #ff6d5a;
    width: 25%;
    height: 25%;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    box-shadow: -12px 14px 52px -11px rgba(0, 0, 0, 0.42); }
    .product-view #product-wobbler-store .wobbler-price .price-box {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: column-reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse; }
    .product-view #product-wobbler-store .wobbler-price #sppTierPricingDiv {
      display: none; }
    .product-view #product-wobbler-store .wobbler-price .special-price {
      color: white;
      font-size: 50px;
      font-weight: 700;
      margin-top: 15px; }
    .product-view #product-wobbler-store .wobbler-price .was-old-price {
      color: white;
      font-size: 50px;
      font-weight: 700; }
    .product-view #product-wobbler-store .wobbler-price .old-price {
      margin: 0.3em 0 0 0;
      font-size: 20px;
      color: #8e261b; }
      .product-view #product-wobbler-store .wobbler-price .old-price .price:before {
        background: #8e261b; }
.product-view #product-wobbler-advertising {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: white;
  color: black; }
  .product-view #product-wobbler-advertising .wobbler-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .product-view #product-wobbler-advertising .wobbler-info .wobbler-mark {
      width: 150px; }
    .product-view #product-wobbler-advertising .wobbler-info .wobbler-slogan {
      font-size: 35px;
      width: 400px;
      font-weight: 900;
      text-transform: uppercase;
      text-align: center;
      line-height: 1.2;
      margin: 1em 0; }
    .product-view #product-wobbler-advertising .wobbler-info .wobbler-pricebox {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 490px;
      height: 80px;
      border: 4px solid #ff6d5a; }
      .product-view #product-wobbler-advertising .wobbler-info .wobbler-pricebox .wobbler-button {
        background-color: #ff6d5a;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center; }
        .product-view #product-wobbler-advertising .wobbler-info .wobbler-pricebox .wobbler-button img {
          width: 165px; }
      .product-view #product-wobbler-advertising .wobbler-info .wobbler-pricebox .wobbler-price {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center; }
        .product-view #product-wobbler-advertising .wobbler-info .wobbler-pricebox .wobbler-price #sppTierPricingDiv {
          display: none; }
        .product-view #product-wobbler-advertising .wobbler-info .wobbler-pricebox .wobbler-price .special-price {
          color: #ff6d5a;
          font-size: 35px;
          font-weight: 600; }
        .product-view #product-wobbler-advertising .wobbler-info .wobbler-pricebox .wobbler-price .was-old-price {
          color: #ff6d5a;
          font-size: 35px;
          font-weight: 600; }
        .product-view #product-wobbler-advertising .wobbler-info .wobbler-pricebox .wobbler-price .old-price {
          font-size: 17px;
          color: #213444;
          font-weight: 600;
          margin-left: 1em; }
          .product-view #product-wobbler-advertising .wobbler-info .wobbler-pricebox .wobbler-price .old-price .price:before {
            background: #ff6d5a;
            height: 2px; }
  .product-view #product-wobbler-advertising.w1080 {
    position: relative;
    width: 1080px;
    height: 1080px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .product-view #product-wobbler-advertising.w1080 .wobbler-mark {
      position: absolute;
      left: 105px;
      top: 105px; }
    .product-view #product-wobbler-advertising.w1080 .wobbler-brand, .product-view #product-wobbler-advertising.w1080 .wobbler-name, .product-view #product-wobbler-advertising.w1080 .wobbler-option {
      display: none; }
    .product-view #product-wobbler-advertising.w1080 img {
      width: 100%;
      height: auto; }
    .product-view #product-wobbler-advertising.w1080 .wobbler-image {
      max-width: 650px; }
  @media all {
    .product-view #product-wobbler-advertising.w1200 {
      width: 1200px;
      height: 628px; } }
  .product-view #product-wobbler-advertising.w1200 .wobbler-brand, .product-view #product-wobbler-advertising.w1200 .wobbler-name, .product-view #product-wobbler-advertising.w1200 .wobbler-option {
    display: none; }
  .product-view #product-wobbler-advertising.w1200 img {
    width: 100%;
    height: auto; }
  .product-view #product-wobbler-advertising.w1200 .wobbler-image {
    max-width: 50%;
    -webkit-transform: scale(0.95);
            transform: scale(0.95); }
  .product-view #product-wobbler-advertising.price {
    width: 625px;
    height: 625px;
    border: 10px solid white;
    color: black;
    overflow: visible; }
    .product-view #product-wobbler-advertising.price:before, .product-view #product-wobbler-advertising.price:after {
      content: "";
      display: block;
      position: absolute;
      z-index: 1; }
    .product-view #product-wobbler-advertising.price:before {
      width: 500px;
      height: 625px;
      border-left: 2px solid black;
      border-right: 2px solid black; }
    .product-view #product-wobbler-advertising.price:after {
      width: 625px;
      height: 500px;
      border-top: 2px solid black;
      border-bottom: 2px solid black; }
    .product-view #product-wobbler-advertising.price .wobbler-info {
      width: 500px;
      height: 500px;
      background: white;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      border: 15px solid white;
      box-sizing: content-box;
      position: relative;
      z-index: 2; }
    .product-view #product-wobbler-advertising.price.special .wobbler-info {
      background: #ff6d5a;
      border-color: #ff6d5a; }
    .product-view #product-wobbler-advertising.price .wobbler-image, .product-view #product-wobbler-advertising.price .wobbler-mark, .product-view #product-wobbler-advertising.price .wobbler-slogan {
      display: none; }
    .product-view #product-wobbler-advertising.price .wobbler-pricebox {
      border: none;
      margin-top: 30px; }
      .product-view #product-wobbler-advertising.price .wobbler-pricebox .price-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse; }
      .product-view #product-wobbler-advertising.price .wobbler-pricebox .wobbler-button {
        display: none; }
      .product-view #product-wobbler-advertising.price .wobbler-pricebox .was-old-price {
        font-size: 75px !important;
        font-weight: 700 !important;
        color: inherit !important; }
      .product-view #product-wobbler-advertising.price .wobbler-pricebox .old-price {
        margin-top: 10px;
        margin-left: 0 !important;
        font-weight: 500 !important;
        font-size: 30px !important; }
        .product-view #product-wobbler-advertising.price .wobbler-pricebox .old-price .price:before {
          background: black !important; }
      .product-view #product-wobbler-advertising.price .wobbler-pricebox .special-price {
        font-size: 75px !important;
        font-weight: 700 !important;
        color: white !important; }
    .product-view #product-wobbler-advertising.price .wobbler-brand {
      font-weight: 500;
      text-transform: uppercase;
      font-size: 25px;
      margin-bottom: 10px; }
    .product-view #product-wobbler-advertising.price .wobbler-name {
      font-weight: 700;
      font-size: 40px;
      text-align: center;
      max-width: 85%; }
    .product-view #product-wobbler-advertising.price .wobbler-option {
      font-weight: 500;
      font-size: 30px;
      margin-top: 15px; }

#product-wobbler-wrapper {
  position: fixed;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  #product-wobbler-wrapper canvas {
    max-width: 90%;
    width: 500px !important;
    height: auto !important; }
  #product-wobbler-wrapper a {
    margin-top: 25px;
    color: white;
    text-transform: uppercase;
    font-weight: 700; }

body.catalog-category-view .filter-sort-buttons,
body.catalogsearch-result-index .filter-sort-buttons {
  height: 50px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #dddddd;
  display: none; }
  body.catalog-category-view .filter-sort-buttons .filter-sort-button,
  body.catalogsearch-result-index .filter-sort-buttons .filter-sort-button {
    width: 50%;
    text-align: center; }
    body.catalog-category-view .filter-sort-buttons .filter-sort-button:first-child,
    body.catalogsearch-result-index .filter-sort-buttons .filter-sort-button:first-child {
      border-right: 1px solid #dddddd; }
  body.catalog-category-view .filter-sort-buttons .button-title,
  body.catalogsearch-result-index .filter-sort-buttons .button-title {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase; }
  body.catalog-category-view .filter-sort-buttons .button-caption,
  body.catalogsearch-result-index .filter-sort-buttons .button-caption {
    font-weight: 500;
    font-size: 9px;
    color: #a5a5a5;
    margin-top: 0.2em; }
body.catalog-category-view .col2-left-layout .main,
body.catalogsearch-result-index .col2-left-layout .main {
  width: 100%;
  max-width: 1540px; }
  @media (min-width: 540px) {
    body.catalog-category-view .col2-left-layout .main,
    body.catalogsearch-result-index .col2-left-layout .main {
      padding: 2rem 40px; } }

body.category-tru-deals li.item .product-label:before, body.category-clearance li.item .product-label:before {
  display: none; }

.category-products .toolbar {
  height: 2.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 1em;
  border-bottom: 1px solid #dddddd; }
  .category-products .toolbar .product-count {
    font-weight: 500;
    font-size: 0.77777778rem; }
  .category-products .toolbar .chosen-container, .category-products .toolbar .chosen-results {
    font-size: 11px;
    margin: 0; }
  .category-products .toolbar .sort-by {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .category-products .toolbar label {
    white-space: nowrap;
    margin-right: 1em; }
  .category-products .toolbar .pager {
    display: none; }
.category-products .products-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  margin: 3em 0 0 0; }
.category-products li.adj-icon-script {
  display: none; }
.category-products li.item, .category-products li.itemx, .category-products li.placeholder {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 230px;
      -ms-flex: 1 1 230px;
          flex: 1 1 230px;
  min-width: 230px;
  max-width: 290px;
  position: relative;
  text-align: center;
  padding: 0 20px; }
  @media (max-width: 539px) {
    .category-products li.item, .category-products li.itemx, .category-products li.placeholder {
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 50%;
          -ms-flex: 1 1 50%;
              flex: 1 1 50%;
      min-width: 50%;
      padding: 0 10px; } }
  .category-products li.item:not(.placeholder), .category-products li.itemx:not(.placeholder), .category-products li.placeholder:not(.placeholder) {
    margin-bottom: 5em; }
  .category-products li.item img, .category-products li.itemx img, .category-products li.placeholder img {
    width: 100%;
    max-width: 225px; }
  .category-products li.item .link-wishlist, .category-products li.itemx .link-wishlist, .category-products li.placeholder .link-wishlist {
    display: block;
    width: 60px;
    height: 60px;
    background: #a5a5a5;
    position: absolute;
    right: 0;
    left: 0;
    top: 15%;
    margin: auto;
    border-radius: 50%;
    opacity: 0.2;
    font-size: 44px;
    color: #fff; }
  .category-products li.item .availability, .category-products li.itemx .availability, .category-products li.placeholder .availability {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .category-products li.item .availability:before, .category-products li.itemx .availability:before, .category-products li.placeholder .availability:before {
      content: "";
      display: inline-block;
      width: 16px;
      height: 16px;
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='8' fill='none' stroke='%231abc9c' stroke-width='1.5' stroke-miterlimit='10'/%3E%3Cpath fill='none' stroke='%231abc9c' stroke-width='1.5' stroke-miterlimit='10' d='M5.928 8.216l2.836 2.836 3.308-5.2'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      margin-right: 5px; }
    .category-products li.item .availability:after, .category-products li.itemx .availability:after, .category-products li.placeholder .availability:after {
      content: "in stock";
      font-size: 8px;
      color: #1abc9c;
      font-weight: 600;
      text-transform: uppercase;
      display: inline-block; }
    .category-products li.item .availability.out-of-stock:before, .category-products li.itemx .availability.out-of-stock:before, .category-products li.placeholder .availability.out-of-stock:before {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cg fill='none' stroke='%23bababa' stroke-width='1.5' transform='translate(1 1)'%3E%3Ccircle cx='8' cy='8' r='8'/%3E%3Cpath d='M11 5l-6 6m0-6l6 6'/%3E%3C/g%3E%3C/svg%3E"); }
    .category-products li.item .availability.out-of-stock:after, .category-products li.itemx .availability.out-of-stock:after, .category-products li.placeholder .availability.out-of-stock:after {
      content: "not in stock";
      color: #bababa; }
    .category-products li.item .availability.pre-order:before, .category-products li.itemx .availability.pre-order:before, .category-products li.placeholder .availability.pre-order:before {
      background-image: '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><g fill="none" stroke="color1" stroke-width="1.5" transform="translate(1 1)"><circle cx="8" cy="8" r="8"/><path d="M11 5l-6 6m0-6l6 6"/></g></svg>'; }
    .category-products li.item .availability.pre-order:after, .category-products li.itemx .availability.pre-order:after, .category-products li.placeholder .availability.pre-order:after {
      content: "pre-order";
      color: #ff6d5a; }
.category-products li .brand-name {
  font-size: 0.6rem;
  color: #a5a5a5;
  font-weight: 600;
  text-transform: uppercase; }
.category-products li .product-name a {
  font-size: 0.8rem;
  padding: 0.3em 0 0.8em 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 80%;
  display: block;
  margin: 0 auto; }
.category-products li .product-attributes {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (min-width: 540px) {
    .category-products li .product-attributes {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; } }
  .category-products li .product-attributes .swatch-attribute-pill div {
    font-size: 0.66666667rem;
    font-weight: 600;
    background-color: #ededed;
    padding: 0.5em 1.2em;
    border-radius: 50px; }
  @media (max-width: 539px) {
    .category-products li .product-attributes .price-box {
      margin-top: 0.8em; } }
  @media (min-width: 540px) {
    .category-products li .product-attributes .price-box {
      padding-left: 11px;
      margin-left: 10px;
      border-left: 1px solid #dddddd; } }
  .category-products li .product-attributes .price-box.group-8 .old-price {
    display: none; }
  .category-products li .product-attributes .price-box.group-8 .special-price {
    color: inherit;
    font-weight: 500; }
.category-products .infinite-scrolling-loader {
  text-align: center; }
.category-products .list-pager {
  text-align: center;
  font-size: 0.77777778rem; }
  .category-products .list-pager .button-wrap {
    margin-top: 1.5em; }
  .category-products .list-pager button {
    font-size: 0.66666667rem;
    font-weight: 600;
    margin: 0 1em;
    min-width: 15em; }

body.checkout-cart-index .main,
body.checkout-onepage-index .main {
  width: 100%;
  max-width: 30rem !important;
  padding: 2rem 20px; }
  @media (min-width: 400px) {
    body.checkout-cart-index .main,
    body.checkout-onepage-index .main {
      padding: 2rem 40px !important; } }
  @media (min-width: 550px) {
    body.checkout-cart-index .main,
    body.checkout-onepage-index .main {
      max-width: 70rem !important; } }
  body.checkout-cart-index .main .col-main,
  body.checkout-onepage-index .main .col-main {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
  body.checkout-cart-index .main .col-right,
  body.checkout-onepage-index .main .col-right {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0; }
body.checkout-cart-index .main-content,
body.checkout-onepage-index .main-content {
  width: 100%;
  max-width: calc(70em - 440px); }
body.checkout-cart-index .checkout-header-wrapper,
body.checkout-onepage-index .checkout-header-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 70rem;
  margin: auto; }
  body.checkout-cart-index .checkout-header-wrapper .checkout-header-content,
  body.checkout-onepage-index .checkout-header-wrapper .checkout-header-content {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 3rem 0em 0.5em 0;
    margin: 0 20px; }
    @media (min-width: 450px) {
      body.checkout-cart-index .checkout-header-wrapper .checkout-header-content,
      body.checkout-onepage-index .checkout-header-wrapper .checkout-header-content {
        margin: 0 40px; } }
    @media (min-width: 650px) {
      body.checkout-cart-index .checkout-header-wrapper .checkout-header-content,
      body.checkout-onepage-index .checkout-header-wrapper .checkout-header-content {
        margin: 0 60px !important; } }
    @media (min-width: 891px) {
      body.checkout-cart-index .checkout-header-wrapper .checkout-header-content,
      body.checkout-onepage-index .checkout-header-wrapper .checkout-header-content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row; } }
    body.checkout-cart-index .checkout-header-wrapper .checkout-header-content__logo,
    body.checkout-onepage-index .checkout-header-wrapper .checkout-header-content__logo {
      width: 50%;
      max-width: 200px;
      fill: #213444;
      margin-bottom: 1em; }
    body.checkout-cart-index .checkout-header-wrapper .checkout-header-content__secure,
    body.checkout-onepage-index .checkout-header-wrapper .checkout-header-content__secure {
      font-size: 0.66666667rem;
      text-transform: uppercase;
      font-weight: 600;
      color: #a5a5a5;
      cursor: pointer;
      text-align: center; }
      body.checkout-cart-index .checkout-header-wrapper .checkout-header-content__secure:hover,
      body.checkout-onepage-index .checkout-header-wrapper .checkout-header-content__secure:hover {
        color: #ff6d5a; }
      body.checkout-cart-index .checkout-header-wrapper .checkout-header-content__secure svg,
      body.checkout-onepage-index .checkout-header-wrapper .checkout-header-content__secure svg {
        width: 1em;
        position: relative;
        bottom: -1px;
        margin-right: 0.5em; }
    body.checkout-cart-index .checkout-header-wrapper .checkout-header-content__continue-link,
    body.checkout-onepage-index .checkout-header-wrapper .checkout-header-content__continue-link {
      margin-left: auto;
      min-width: 290px;
      padding: 0 20px; }
      body.checkout-cart-index .checkout-header-wrapper .checkout-header-content__continue-link .button,
      body.checkout-onepage-index .checkout-header-wrapper .checkout-header-content__continue-link .button {
        width: 100%; }
        body.checkout-cart-index .checkout-header-wrapper .checkout-header-content__continue-link .button:not(:hover),
        body.checkout-onepage-index .checkout-header-wrapper .checkout-header-content__continue-link .button:not(:hover) {
          opacity: 0.5; }
body.checkout-cart-index .page-title, body.checkout-cart-index .step-title,
body.checkout-onepage-index .page-title,
body.checkout-onepage-index .step-title {
  font-size: 1.22222222rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 1.2em;
  margin-bottom: 0.5em; }
body.checkout-cart-index .checkout-review-table, body.checkout-cart-index .cart-table,
body.checkout-onepage-index .checkout-review-table,
body.checkout-onepage-index .cart-table {
  border-bottom: 1px solid #ededed; }
  body.checkout-cart-index .checkout-review-table.select-promo, body.checkout-cart-index .cart-table.select-promo,
  body.checkout-onepage-index .checkout-review-table.select-promo,
  body.checkout-onepage-index .cart-table.select-promo {
    border: none; }
    body.checkout-cart-index .checkout-review-table.select-promo .ampromo, body.checkout-cart-index .cart-table.select-promo .ampromo,
    body.checkout-onepage-index .checkout-review-table.select-promo .ampromo,
    body.checkout-onepage-index .cart-table.select-promo .ampromo {
      margin-bottom: 2em;
      height: 100%;
      width: auto;
      border-radius: 5px;
      border: none;
      box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden; }
      body.checkout-cart-index .checkout-review-table.select-promo .ampromo:before, body.checkout-cart-index .cart-table.select-promo .ampromo:before,
      body.checkout-onepage-index .checkout-review-table.select-promo .ampromo:before,
      body.checkout-onepage-index .cart-table.select-promo .ampromo:before {
        content: attr(data-ampromo);
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        line-height: 1;
        font-size: 10px;
        font-weight: 600;
        background: #f1c40f;
        color: #213444;
        padding: 0.8em; }
        @media (min-width: 1930px) {
          body.checkout-cart-index .checkout-review-table.select-promo .ampromo:before, body.checkout-cart-index .cart-table.select-promo .ampromo:before,
          body.checkout-onepage-index .checkout-review-table.select-promo .ampromo:before,
          body.checkout-onepage-index .cart-table.select-promo .ampromo:before {
            font-size: 12px; } }
      body.checkout-cart-index .checkout-review-table.select-promo .ampromo .product-data-wrapper, body.checkout-cart-index .cart-table.select-promo .ampromo .product-data-wrapper,
      body.checkout-onepage-index .checkout-review-table.select-promo .ampromo .product-data-wrapper,
      body.checkout-onepage-index .cart-table.select-promo .ampromo .product-data-wrapper {
        margin-top: 1.5em; }
      body.checkout-cart-index .checkout-review-table.select-promo .ampromo .cart-product-price-action, body.checkout-cart-index .cart-table.select-promo .ampromo .cart-product-price-action,
      body.checkout-onepage-index .checkout-review-table.select-promo .ampromo .cart-product-price-action,
      body.checkout-onepage-index .cart-table.select-promo .ampromo .cart-product-price-action {
        min-width: 11em; }
      body.checkout-cart-index .checkout-review-table.select-promo .ampromo .price-subtotal-block .price-box, body.checkout-cart-index .cart-table.select-promo .ampromo .price-subtotal-block .price-box,
      body.checkout-onepage-index .checkout-review-table.select-promo .ampromo .price-subtotal-block .price-box,
      body.checkout-onepage-index .cart-table.select-promo .ampromo .price-subtotal-block .price-box {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
            -ms-flex-align: start;
                    -ms-grid-row-align: flex-start;
                align-items: flex-start; }
        body.checkout-cart-index .checkout-review-table.select-promo .ampromo .price-subtotal-block .price-box > div, body.checkout-cart-index .cart-table.select-promo .ampromo .price-subtotal-block .price-box > div,
        body.checkout-onepage-index .checkout-review-table.select-promo .ampromo .price-subtotal-block .price-box > div,
        body.checkout-onepage-index .cart-table.select-promo .ampromo .price-subtotal-block .price-box > div {
          margin-left: 0; }
    body.checkout-cart-index .checkout-review-table.select-promo button, body.checkout-cart-index .cart-table.select-promo button,
    body.checkout-onepage-index .checkout-review-table.select-promo button,
    body.checkout-onepage-index .cart-table.select-promo button {
      padding: 0.6em 1.2em;
      font-size: 10px;
      margin: 0; }
      @media (min-width: 1930px) {
        body.checkout-cart-index .checkout-review-table.select-promo button, body.checkout-cart-index .cart-table.select-promo button,
        body.checkout-onepage-index .checkout-review-table.select-promo button,
        body.checkout-onepage-index .cart-table.select-promo button {
          font-size: 12px;
          margin-right: 1.5em; } }
  body.checkout-cart-index .checkout-review-table .cart-table-row, body.checkout-cart-index .cart-table .cart-table-row,
  body.checkout-onepage-index .checkout-review-table .cart-table-row,
  body.checkout-onepage-index .cart-table .cart-table-row {
    border-top: 1px solid #ededed;
    padding: 2em 0; }
    body.checkout-cart-index .checkout-review-table .cart-table-row.ampromo, body.checkout-cart-index .cart-table .cart-table-row.ampromo,
    body.checkout-onepage-index .checkout-review-table .cart-table-row.ampromo,
    body.checkout-onepage-index .cart-table .cart-table-row.ampromo {
      padding-top: 0;
      margin-bottom: 2em;
      height: 100%;
      width: auto;
      border-radius: 5px;
      border: none;
      box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: visible; }
      body.checkout-cart-index .checkout-review-table .cart-table-row.ampromo:before, body.checkout-cart-index .cart-table .cart-table-row.ampromo:before,
      body.checkout-onepage-index .checkout-review-table .cart-table-row.ampromo:before,
      body.checkout-onepage-index .cart-table .cart-table-row.ampromo:before {
        content: attr(data-ampromo);
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        line-height: 1;
        font-size: 10px;
        font-weight: 600;
        background: #f1c40f;
        color: #213444;
        padding: 0.8em; }
        @media (min-width: 1930px) {
          body.checkout-cart-index .checkout-review-table .cart-table-row.ampromo:before, body.checkout-cart-index .cart-table .cart-table-row.ampromo:before,
          body.checkout-onepage-index .checkout-review-table .cart-table-row.ampromo:before,
          body.checkout-onepage-index .cart-table .cart-table-row.ampromo:before {
            font-size: 12px; } }
      body.checkout-cart-index .checkout-review-table .cart-table-row.ampromo .product-data-wrapper, body.checkout-cart-index .cart-table .cart-table-row.ampromo .product-data-wrapper,
      body.checkout-onepage-index .checkout-review-table .cart-table-row.ampromo .product-data-wrapper,
      body.checkout-onepage-index .cart-table .cart-table-row.ampromo .product-data-wrapper {
        margin-top: 2em; }
      body.checkout-cart-index .checkout-review-table .cart-table-row.ampromo input.qty, body.checkout-cart-index .cart-table .cart-table-row.ampromo input.qty,
      body.checkout-onepage-index .checkout-review-table .cart-table-row.ampromo input.qty,
      body.checkout-onepage-index .cart-table .cart-table-row.ampromo input.qty {
        background: #f7f7f7;
        pointer-events: none;
        color: #bababa; }
      body.checkout-cart-index .checkout-review-table .cart-table-row.ampromo .ampromo-select-options .option-buttons div, body.checkout-cart-index .cart-table .cart-table-row.ampromo .ampromo-select-options .option-buttons div,
      body.checkout-onepage-index .checkout-review-table .cart-table-row.ampromo .ampromo-select-options .option-buttons div,
      body.checkout-onepage-index .cart-table .cart-table-row.ampromo .ampromo-select-options .option-buttons div {
        display: inline-block;
        cursor: pointer;
        font-size: 0.66666667rem;
        font-weight: 700;
        color: #213444;
        min-width: 4em;
        text-align: center;
        border: 2px solid #213444;
        border-radius: 50px;
        padding: 0.5em 1em;
        margin: 0.2em 0.4em 0.2em 0;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none; }
        body.checkout-cart-index .checkout-review-table .cart-table-row.ampromo .ampromo-select-options .option-buttons div.selected, body.checkout-cart-index .cart-table .cart-table-row.ampromo .ampromo-select-options .option-buttons div.selected,
        body.checkout-onepage-index .checkout-review-table .cart-table-row.ampromo .ampromo-select-options .option-buttons div.selected,
        body.checkout-onepage-index .cart-table .cart-table-row.ampromo .ampromo-select-options .option-buttons div.selected {
          color: white;
          background: #213444; }
      body.checkout-cart-index .checkout-review-table .cart-table-row.ampromo .ampromo-select-options .chosen-container, body.checkout-cart-index .cart-table .cart-table-row.ampromo .ampromo-select-options .chosen-container,
      body.checkout-onepage-index .checkout-review-table .cart-table-row.ampromo .ampromo-select-options .chosen-container,
      body.checkout-onepage-index .cart-table .cart-table-row.ampromo .ampromo-select-options .chosen-container {
        min-width: unset;
        max-width: 95%; }
        body.checkout-cart-index .checkout-review-table .cart-table-row.ampromo .ampromo-select-options .chosen-container .chosen-single, body.checkout-cart-index .cart-table .cart-table-row.ampromo .ampromo-select-options .chosen-container .chosen-single,
        body.checkout-onepage-index .checkout-review-table .cart-table-row.ampromo .ampromo-select-options .chosen-container .chosen-single,
        body.checkout-onepage-index .cart-table .cart-table-row.ampromo .ampromo-select-options .chosen-container .chosen-single {
          padding: 0.4em 0.6em; }
        body.checkout-cart-index .checkout-review-table .cart-table-row.ampromo .ampromo-select-options .chosen-container .chosen-results li, body.checkout-cart-index .cart-table .cart-table-row.ampromo .ampromo-select-options .chosen-container .chosen-results li,
        body.checkout-onepage-index .checkout-review-table .cart-table-row.ampromo .ampromo-select-options .chosen-container .chosen-results li,
        body.checkout-onepage-index .cart-table .cart-table-row.ampromo .ampromo-select-options .chosen-container .chosen-results li {
          padding: 1em; }
  body.checkout-cart-index .checkout-review-table .product-data-wrapper, body.checkout-cart-index .cart-table .product-data-wrapper,
  body.checkout-onepage-index .checkout-review-table .product-data-wrapper,
  body.checkout-onepage-index .cart-table .product-data-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-right: 15px;
    position: relative; }
  body.checkout-cart-index .checkout-review-table .cart-product-image, body.checkout-cart-index .cart-table .cart-product-image,
  body.checkout-onepage-index .checkout-review-table .cart-product-image,
  body.checkout-onepage-index .cart-table .cart-product-image {
    width: 110px;
    min-width: 110px;
    margin-right: 1rem; }
    body.checkout-cart-index .checkout-review-table .cart-product-image img, body.checkout-cart-index .cart-table .cart-product-image img,
    body.checkout-onepage-index .checkout-review-table .cart-product-image img,
    body.checkout-onepage-index .cart-table .cart-product-image img {
      width: 100%;
      height: auto; }
  body.checkout-cart-index .checkout-review-table .cart-product-info, body.checkout-cart-index .cart-table .cart-product-info,
  body.checkout-onepage-index .checkout-review-table .cart-product-info,
  body.checkout-onepage-index .cart-table .cart-product-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%; }
  body.checkout-cart-index .checkout-review-table .cart-product-meta, body.checkout-cart-index .cart-table .cart-product-meta,
  body.checkout-onepage-index .checkout-review-table .cart-product-meta,
  body.checkout-onepage-index .cart-table .cart-product-meta {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    body.checkout-cart-index .checkout-review-table .cart-product-meta .brand-name, body.checkout-cart-index .cart-table .cart-product-meta .brand-name,
    body.checkout-onepage-index .checkout-review-table .cart-product-meta .brand-name,
    body.checkout-onepage-index .cart-table .cart-product-meta .brand-name {
      font-size: 0.66666667rem;
      color: #a5a5a5;
      font-weight: 600;
      text-transform: uppercase; }
    body.checkout-cart-index .checkout-review-table .cart-product-meta .product-name, body.checkout-cart-index .cart-table .cart-product-meta .product-name,
    body.checkout-onepage-index .checkout-review-table .cart-product-meta .product-name,
    body.checkout-onepage-index .cart-table .cart-product-meta .product-name {
      font-weight: 700;
      padding: 0.3em 0 0.8em 0; }
    body.checkout-cart-index .checkout-review-table .cart-product-meta .option-box, body.checkout-cart-index .cart-table .cart-product-meta .option-box,
    body.checkout-onepage-index .checkout-review-table .cart-product-meta .option-box,
    body.checkout-onepage-index .cart-table .cart-product-meta .option-box {
      font-size: 0.77777778rem;
      font-weight: 500;
      line-height: 1.4; }
      body.checkout-cart-index .checkout-review-table .cart-product-meta .option-box .exp, body.checkout-cart-index .cart-table .cart-product-meta .option-box .exp,
      body.checkout-onepage-index .checkout-review-table .cart-product-meta .option-box .exp,
      body.checkout-onepage-index .cart-table .cart-product-meta .option-box .exp {
        margin-top: 0.5em;
        color: #a5a5a5; }
    body.checkout-cart-index .checkout-review-table .cart-product-meta .btn-remove, body.checkout-cart-index .cart-table .cart-product-meta .btn-remove,
    body.checkout-onepage-index .checkout-review-table .cart-product-meta .btn-remove,
    body.checkout-onepage-index .cart-table .cart-product-meta .btn-remove {
      position: absolute;
      top: 0;
      right: 0;
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%);
      width: 1.22222222rem;
      margin: 0 10px; }
      body.checkout-cart-index .checkout-review-table .cart-product-meta .btn-remove svg, body.checkout-cart-index .cart-table .cart-product-meta .btn-remove svg,
      body.checkout-onepage-index .checkout-review-table .cart-product-meta .btn-remove svg,
      body.checkout-onepage-index .cart-table .cart-product-meta .btn-remove svg {
        fill: #dddddd; }
      body.checkout-cart-index .checkout-review-table .cart-product-meta .btn-remove:hover svg, body.checkout-cart-index .cart-table .cart-product-meta .btn-remove:hover svg,
      body.checkout-onepage-index .checkout-review-table .cart-product-meta .btn-remove:hover svg,
      body.checkout-onepage-index .cart-table .cart-product-meta .btn-remove:hover svg {
        fill: #ff6d5a; }
  body.checkout-cart-index .checkout-review-table .cart-product-price-action, body.checkout-cart-index .cart-table .cart-product-price-action,
  body.checkout-onepage-index .checkout-review-table .cart-product-price-action,
  body.checkout-onepage-index .cart-table .cart-product-price-action {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    min-width: 10em;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 1em; }
    body.checkout-cart-index .checkout-review-table .cart-product-price-action .cart-product-actions input, body.checkout-cart-index .cart-table .cart-product-price-action .cart-product-actions input,
    body.checkout-onepage-index .checkout-review-table .cart-product-price-action .cart-product-actions input,
    body.checkout-onepage-index .cart-table .cart-product-price-action .cart-product-actions input {
      text-align: center;
      font-size: 14px;
      font-weight: 600;
      padding: 0.4em 0;
      line-height: inherit;
      border-color: #dddddd;
      border-radius: 0;
      width: 2.5em;
      margin-bottom: 0; }
    body.checkout-cart-index .checkout-review-table .cart-product-price-action .cart-product-actions button, body.checkout-cart-index .cart-table .cart-product-price-action .cart-product-actions button,
    body.checkout-onepage-index .checkout-review-table .cart-product-price-action .cart-product-actions button,
    body.checkout-onepage-index .cart-table .cart-product-price-action .cart-product-actions button {
      display: none; }
    body.checkout-cart-index .checkout-review-table .cart-product-price-action .times-qty, body.checkout-cart-index .cart-table .cart-product-price-action .times-qty,
    body.checkout-onepage-index .checkout-review-table .cart-product-price-action .times-qty,
    body.checkout-onepage-index .cart-table .cart-product-price-action .times-qty {
      line-height: 1;
      font-weight: 500;
      color: #bababa;
      margin: 0 1em; }
    body.checkout-cart-index .checkout-review-table .cart-product-price-action .price-subtotal-block, body.checkout-cart-index .cart-table .cart-product-price-action .price-subtotal-block,
    body.checkout-onepage-index .checkout-review-table .cart-product-price-action .price-subtotal-block,
    body.checkout-onepage-index .cart-table .cart-product-price-action .price-subtotal-block {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: end;
      -webkit-align-items: flex-end;
          -ms-flex-align: end;
              align-items: flex-end;
      margin-right: 1em; }
      body.checkout-cart-index .checkout-review-table .cart-product-price-action .price-subtotal-block .cart-product-total, body.checkout-cart-index .cart-table .cart-product-price-action .price-subtotal-block .cart-product-total,
      body.checkout-onepage-index .checkout-review-table .cart-product-price-action .price-subtotal-block .cart-product-total,
      body.checkout-onepage-index .cart-table .cart-product-price-action .price-subtotal-block .cart-product-total {
        display: none; }
      body.checkout-cart-index .checkout-review-table .cart-product-price-action .price-subtotal-block .cart-product-price, body.checkout-cart-index .cart-table .cart-product-price-action .price-subtotal-block .cart-product-price,
      body.checkout-onepage-index .checkout-review-table .cart-product-price-action .price-subtotal-block .cart-product-price,
      body.checkout-onepage-index .cart-table .cart-product-price-action .price-subtotal-block .cart-product-price {
        font-weight: 500; }
      body.checkout-cart-index .checkout-review-table .cart-product-price-action .price-subtotal-block .price-box, body.checkout-cart-index .cart-table .cart-product-price-action .price-subtotal-block .price-box,
      body.checkout-onepage-index .checkout-review-table .cart-product-price-action .price-subtotal-block .price-box,
      body.checkout-onepage-index .cart-table .cart-product-price-action .price-subtotal-block .price-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
            -ms-flex-align: end;
                    -ms-grid-row-align: flex-end;
                align-items: flex-end;
        font-size: inherit; }
      body.checkout-cart-index .checkout-review-table .cart-product-price-action .price-subtotal-block .old-price, body.checkout-cart-index .cart-table .cart-product-price-action .price-subtotal-block .old-price,
      body.checkout-onepage-index .checkout-review-table .cart-product-price-action .price-subtotal-block .old-price,
      body.checkout-onepage-index .cart-table .cart-product-price-action .price-subtotal-block .old-price {
        font-size: 0.77777778rem; }
      body.checkout-cart-index .checkout-review-table .cart-product-price-action .price-subtotal-block .special-price, body.checkout-cart-index .cart-table .cart-product-price-action .price-subtotal-block .special-price,
      body.checkout-onepage-index .checkout-review-table .cart-product-price-action .price-subtotal-block .special-price,
      body.checkout-onepage-index .cart-table .cart-product-price-action .price-subtotal-block .special-price {
        margin-left: 0.6em;
        font-weight: 500; }
  body.checkout-cart-index .checkout-review-table .item-msg, body.checkout-cart-index .cart-table .item-msg,
  body.checkout-onepage-index .checkout-review-table .item-msg,
  body.checkout-onepage-index .cart-table .item-msg {
    padding: 1em 0 1em 0;
    font-size: 0.66666667rem;
    font-weight: 600;
    text-align: center;
    color: #ff6d5a;
    margin-top: 1em;
    margin-bottom: -2em; }
    body.checkout-cart-index .checkout-review-table .item-msg.error, body.checkout-cart-index .cart-table .item-msg.error,
    body.checkout-onepage-index .checkout-review-table .item-msg.error,
    body.checkout-onepage-index .cart-table .item-msg.error {
      background: #ff6d5a;
      color: white; }
  body.checkout-cart-index .checkout-review-table[min-width~="28em"] .cart-product-info, body.checkout-cart-index .cart-table[min-width~="28em"] .cart-product-info,
  body.checkout-onepage-index .checkout-review-table[min-width~="28em"] .cart-product-info,
  body.checkout-onepage-index .cart-table[min-width~="28em"] .cart-product-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center; }
  body.checkout-cart-index .checkout-review-table[min-width~="28em"] .cart-product-price-action, body.checkout-cart-index .cart-table[min-width~="28em"] .cart-product-price-action,
  body.checkout-onepage-index .checkout-review-table[min-width~="28em"] .cart-product-price-action,
  body.checkout-onepage-index .cart-table[min-width~="28em"] .cart-product-price-action {
    margin: 0; }
  body.checkout-cart-index .checkout-review-table[min-width~="28em"] .cart-product-meta, body.checkout-cart-index .cart-table[min-width~="28em"] .cart-product-meta,
  body.checkout-onepage-index .checkout-review-table[min-width~="28em"] .cart-product-meta,
  body.checkout-onepage-index .cart-table[min-width~="28em"] .cart-product-meta {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 18em;
        -ms-flex: 1 1 18em;
            flex: 1 1 18em;
    padding-right: 20px;
    max-width: 18em; }
  body.checkout-cart-index .checkout-review-table[min-width~="28em"] .cart-product-price, body.checkout-cart-index .cart-table[min-width~="28em"] .cart-product-price,
  body.checkout-onepage-index .checkout-review-table[min-width~="28em"] .cart-product-price,
  body.checkout-onepage-index .cart-table[min-width~="28em"] .cart-product-price {
    text-align: right; }
  body.checkout-cart-index .checkout-review-table[min-width~="38em"] .cart-product-image, body.checkout-cart-index .cart-table[min-width~="38em"] .cart-product-image,
  body.checkout-onepage-index .checkout-review-table[min-width~="38em"] .cart-product-image,
  body.checkout-onepage-index .cart-table[min-width~="38em"] .cart-product-image {
    width: 160px;
    margin-right: 2rem; }
  body.checkout-cart-index .checkout-review-table[min-width~="38em"] .cart-product-meta, body.checkout-cart-index .cart-table[min-width~="38em"] .cart-product-meta,
  body.checkout-onepage-index .checkout-review-table[min-width~="38em"] .cart-product-meta,
  body.checkout-onepage-index .cart-table[min-width~="38em"] .cart-product-meta {
    padding-right: 2em; }
body.checkout-cart-index .totals-wrapper,
body.checkout-onepage-index .totals-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }
  body.checkout-cart-index .totals-wrapper .forgot-item,
  body.checkout-onepage-index .totals-wrapper .forgot-item {
    text-align: center;
    font-size: 0.77777778rem;
    padding-top: 2.5em; }
    body.checkout-cart-index .totals-wrapper .forgot-item a,
    body.checkout-onepage-index .totals-wrapper .forgot-item a {
      color: #1abc9c; }
  body.checkout-cart-index .totals-wrapper .buttons-set,
  body.checkout-onepage-index .totals-wrapper .buttons-set {
    margin: 0; }
  body.checkout-cart-index .totals-wrapper .btn-checkout,
  body.checkout-onepage-index .totals-wrapper .btn-checkout {
    width: 100%;
    padding: 1em;
    font-size: 12px; }
    @media (min-width: 500px) {
      body.checkout-cart-index .totals-wrapper .btn-checkout,
      body.checkout-onepage-index .totals-wrapper .btn-checkout {
        font-size: 14px; } }
  body.checkout-cart-index .totals-wrapper[min-width~="510px"],
  body.checkout-onepage-index .totals-wrapper[min-width~="510px"] {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row; }
    body.checkout-cart-index .totals-wrapper[min-width~="510px"] .forgot-item,
    body.checkout-onepage-index .totals-wrapper[min-width~="510px"] .forgot-item {
      margin-right: 2em;
      -webkit-box-flex: 1;
      -webkit-flex-grow: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      text-align: left;
      padding-top: 1.5em; }
    body.checkout-cart-index .totals-wrapper[min-width~="510px"] .totals-table,
    body.checkout-onepage-index .totals-wrapper[min-width~="510px"] .totals-table {
      -webkit-box-flex: 1;
      -webkit-flex-grow: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      -webkit-flex-basis: 320px;
          -ms-flex-preferred-size: 320px;
              flex-basis: 320px;
      max-width: 320px;
      margin-left: auto; }
  @media (min-width: 500px) {
    body.checkout-cart-index .totals-wrapper #cart-checkout-totals-table .coupon-item,
    body.checkout-onepage-index .totals-wrapper #cart-checkout-totals-table .coupon-item {
      font-size: 0.7em; }
    body.checkout-cart-index .totals-wrapper #cart-checkout-totals-table .a-right,
    body.checkout-onepage-index .totals-wrapper #cart-checkout-totals-table .a-right {
      font-size: 16px; }
      body.checkout-cart-index .totals-wrapper #cart-checkout-totals-table .a-right strong,
      body.checkout-onepage-index .totals-wrapper #cart-checkout-totals-table .a-right strong {
        font-size: 1.22222222rem; }
    body.checkout-cart-index .totals-wrapper #cart-checkout-totals-table .a-left,
    body.checkout-onepage-index .totals-wrapper #cart-checkout-totals-table .a-left {
      font-size: 14px; }
      body.checkout-cart-index .totals-wrapper #cart-checkout-totals-table .a-left strong,
      body.checkout-onepage-index .totals-wrapper #cart-checkout-totals-table .a-left strong {
        font-size: 0.88888889rem; } }
body.checkout-cart-index .help-block-wrapper,
body.checkout-onepage-index .help-block-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }
  @media (min-width: 891px) {
    body.checkout-cart-index .help-block-wrapper,
    body.checkout-onepage-index .help-block-wrapper {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; } }
  body.checkout-cart-index .help-block-wrapper .help-block,
  body.checkout-onepage-index .help-block-wrapper .help-block {
    margin: 1em 0; }
  body.checkout-cart-index .help-block-wrapper .button,
  body.checkout-onepage-index .help-block-wrapper .button {
    width: 100%; }
  body.checkout-cart-index .help-block-wrapper .help-block-payments,
  body.checkout-onepage-index .help-block-wrapper .help-block-payments {
    text-align: center; }
    @media (max-width: 859px) {
      body.checkout-cart-index .help-block-wrapper .help-block-payments,
      body.checkout-onepage-index .help-block-wrapper .help-block-payments {
        margin-top: 2em; } }
    body.checkout-cart-index .help-block-wrapper .help-block-payments .card-logos,
    body.checkout-onepage-index .help-block-wrapper .help-block-payments .card-logos {
      max-width: 320px;
      height: 43px;
      margin: auto;
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      background-image: url("../images/logo-checkout-cards.png"); }
body.checkout-cart-index #checkoutSteps h3,
body.checkout-onepage-index #checkoutSteps h3 {
  font-size: 0.77777778rem;
  margin-bottom: 1em; }
body.checkout-cart-index #checkoutSteps .chosen-container,
body.checkout-onepage-index #checkoutSteps .chosen-container {
  margin-bottom: 0.5em; }
body.checkout-cart-index #checkoutSteps li.section h2,
body.checkout-onepage-index #checkoutSteps li.section h2 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.22222222rem; }
  @media (min-width: 1100px) {
    body.checkout-cart-index #checkoutSteps li.section h2,
    body.checkout-onepage-index #checkoutSteps li.section h2 {
      font-size: 1.44444444rem; } }
body.checkout-cart-index #checkoutSteps li.section.active,
body.checkout-onepage-index #checkoutSteps li.section.active {
  margin-bottom: 1.5em;
  padding-bottom: 2.5em;
  border-bottom: 2px solid #ededed; }
body.checkout-cart-index #checkoutSteps li.section:not(.active),
body.checkout-onepage-index #checkoutSteps li.section:not(.active) {
  color: #dddddd; }
  body.checkout-cart-index #checkoutSteps li.section:not(.active) .step-title,
  body.checkout-onepage-index #checkoutSteps li.section:not(.active) .step-title {
    border-bottom: 2px solid #ededed;
    margin-bottom: 1.2em; }
body.checkout-cart-index #checkoutSteps li.section .col2-set,
body.checkout-onepage-index #checkoutSteps li.section .col2-set {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; }
  body.checkout-cart-index #checkoutSteps li.section .col2-set > div,
  body.checkout-onepage-index #checkoutSteps li.section .col2-set > div {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
  body.checkout-cart-index #checkoutSteps li.section .col2-set .col-1,
  body.checkout-onepage-index #checkoutSteps li.section .col2-set .col-1 {
    margin-top: 2em; }
  body.checkout-cart-index #checkoutSteps li.section .col2-set[min-width~="500px"],
  body.checkout-onepage-index #checkoutSteps li.section .col2-set[min-width~="500px"] {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row; }
    body.checkout-cart-index #checkoutSteps li.section .col2-set[min-width~="500px"] .col-1,
    body.checkout-onepage-index #checkoutSteps li.section .col2-set[min-width~="500px"] .col-1 {
      margin-top: 0;
      margin-right: 40px;
      padding-right: 40px;
      border-right: 2px solid #f7f7f7; }
    body.checkout-cart-index #checkoutSteps li.section .col2-set[min-width~="500px"] .col-2 h3,
    body.checkout-onepage-index #checkoutSteps li.section .col2-set[min-width~="500px"] .col-2 h3 {
      margin-top: 1em;
      color: #ff6d5a; }
    body.checkout-cart-index #checkoutSteps li.section .col2-set[min-width~="500px"] .col-2 .toggle-accordion,
    body.checkout-onepage-index #checkoutSteps li.section .col2-set[min-width~="500px"] .col-2 .toggle-accordion {
      display: none; }
    body.checkout-cart-index #checkoutSteps li.section .col2-set[min-width~="500px"] .col-2 form#login-form,
    body.checkout-onepage-index #checkoutSteps li.section .col2-set[min-width~="500px"] .col-2 form#login-form {
      display: block !important; }
body.checkout-cart-index #checkoutSteps li.section:nth-last-child(1) h2:before,
body.checkout-onepage-index #checkoutSteps li.section:nth-last-child(1) h2:before {
  content: '4. '; }
body.checkout-cart-index #checkoutSteps li.section:nth-last-child(2) h2:before,
body.checkout-onepage-index #checkoutSteps li.section:nth-last-child(2) h2:before {
  content: '3. '; }
body.checkout-cart-index #checkoutSteps li.section:nth-last-child(3) h2:before,
body.checkout-onepage-index #checkoutSteps li.section:nth-last-child(3) h2:before {
  content: '2. '; }
body.checkout-cart-index #checkoutSteps li.section:first-child h2:before,
body.checkout-onepage-index #checkoutSteps li.section:first-child h2:before {
  content: '1. '; }
body.checkout-cart-index #checkoutSteps li.section:last-of-type,
body.checkout-onepage-index #checkoutSteps li.section:last-of-type {
  border-color: transparent; }
body.checkout-cart-index #checkoutSteps li.section#opc-login .customer-type,
body.checkout-onepage-index #checkoutSteps li.section#opc-login .customer-type {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  body.checkout-cart-index #checkoutSteps li.section#opc-login .customer-type .field,
  body.checkout-onepage-index #checkoutSteps li.section#opc-login .customer-type .field {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  body.checkout-cart-index #checkoutSteps li.section#opc-login .customer-type label,
  body.checkout-onepage-index #checkoutSteps li.section#opc-login .customer-type label {
    display: block;
    padding-bottom: 1em;
    font-weight: 600;
    font-size: 0.88888889rem;
    color: #213444;
    margin-right: 1.5em; }
body.checkout-cart-index #checkoutSteps li.section#opc-login address,
body.checkout-onepage-index #checkoutSteps li.section#opc-login address {
  line-height: 1.7; }
  body.checkout-cart-index #checkoutSteps li.section#opc-login address a,
  body.checkout-onepage-index #checkoutSteps li.section#opc-login address a {
    font-size: 0.77777778rem;
    color: #1abc9c; }
body.checkout-cart-index #checkoutSteps li.section#opc-login a.no-phone,
body.checkout-onepage-index #checkoutSteps li.section#opc-login a.no-phone {
  font-weight: 500;
  font-size: 0.88888889rem;
  max-width: 30em;
  display: block;
  margin-top: 2em;
  color: #ff6d5a; }
body.checkout-cart-index #checkoutSteps li.section#opc-login .register-checkbox,
body.checkout-onepage-index #checkoutSteps li.section#opc-login .register-checkbox {
  margin: 1em 0; }
  body.checkout-cart-index #checkoutSteps li.section#opc-login .register-checkbox .tip,
  body.checkout-onepage-index #checkoutSteps li.section#opc-login .register-checkbox .tip {
    border: none; }
body.checkout-cart-index #checkoutSteps li.section#opc-login .login-form h3,
body.checkout-onepage-index #checkoutSteps li.section#opc-login .login-form h3 {
  display: inline-block;
  margin-bottom: 0; }
body.checkout-cart-index #checkoutSteps li.section#opc-login .login-form .toggle-accordion,
body.checkout-onepage-index #checkoutSteps li.section#opc-login .login-form .toggle-accordion {
  font-size: 0.77777778rem;
  color: #ff6d5a;
  margin-left: 1em;
  cursor: pointer; }
body.checkout-cart-index #checkoutSteps li.section#opc-login .login-form form,
body.checkout-onepage-index #checkoutSteps li.section#opc-login .login-form form {
  display: none; }
  body.checkout-cart-index #checkoutSteps li.section#opc-login .login-form form .fieldset,
  body.checkout-onepage-index #checkoutSteps li.section#opc-login .login-form form .fieldset {
    margin-top: 1em; }
body.checkout-cart-index #checkoutSteps li.section#opc-login .login-form .buttons-set,
body.checkout-onepage-index #checkoutSteps li.section#opc-login .login-form .buttons-set {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%; }
  body.checkout-cart-index #checkoutSteps li.section#opc-login .login-form .buttons-set .forgot,
  body.checkout-onepage-index #checkoutSteps li.section#opc-login .login-form .buttons-set .forgot {
    font-size: 0.77777778rem;
    color: #a5a5a5;
    font-weight: 500;
    text-align: center; }
    body.checkout-cart-index #checkoutSteps li.section#opc-login .login-form .buttons-set .forgot:hover,
    body.checkout-onepage-index #checkoutSteps li.section#opc-login .login-form .buttons-set .forgot:hover {
      color: #ff6d5a; }
body.checkout-cart-index #checkoutSteps li.section#opc-login .tip,
body.checkout-onepage-index #checkoutSteps li.section#opc-login .tip {
  display: inline-block;
  cursor: pointer;
  color: #1abc9c;
  font-weight: 600;
  border-radius: 50%;
  font-size: 10px;
  border: 1px solid #1abc9c;
  width: 15px;
  text-align: center;
  margin-left: 0.5em; }
body.checkout-cart-index #checkoutSteps li.section#opc-login div[id^="advice-validate-password-guest"],
body.checkout-onepage-index #checkoutSteps li.section#opc-login div[id^="advice-validate-password-guest"] {
  max-width: 100%;
  left: 0;
  right: unset;
  text-align: left;
  background: white; }
body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-step-shipping_method,
body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-step-shipping_method {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s; }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-step-shipping_method.loading,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-step-shipping_method.loading {
    opacity: 0.3; }
body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method h3,
body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method h3 {
  font-weight: 500; }
body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method .autoshipping-country-select,
body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method .autoshipping-country-select {
  font-size: 0.88888889rem;
  margin: 1em 0 3em 0;
  max-width: 25rem; }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method .autoshipping-country-select .flag,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method .autoshipping-country-select .flag {
    border: 1px solid #ededed;
    box-sizing: content-box; }
body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load .sp-methods > label,
body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load .sp-methods > label {
  display: block;
  padding: 1em 0;
  font-weight: 600;
  font-size: 1rem;
  color: #213444; }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load .sp-methods > label:before,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load .sp-methods > label:before {
    margin-right: 0.8em; }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load .sp-methods > label span,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load .sp-methods > label span {
    color: #1abc9c;
    margin-left: 0.5em; }
body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load .sp-method-desc,
body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load .sp-method-desc {
  padding: 0 1em 1.5em;
  font-size: 0.88888889rem;
  width: 100%;
  max-width: calc( 25rem + 1em); }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load .sp-method-desc p,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load .sp-method-desc p {
    margin: 0;
    color: #171e27;
    line-height: 1.5; }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load .sp-method-desc > a,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load .sp-method-desc > a {
    display: block;
    font-size: 0.66666667rem;
    margin-top: 1em;
    color: #1abc9c; }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load .sp-method-desc .chosen-container,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load .sp-method-desc .chosen-container {
    margin-bottom: 1rem; }
body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load .select-label, body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load .omniva-select-label,
body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load .select-label,
body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load .omniva-select-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: #767676;
  margin-bottom: 0.3em; }
body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #eabi_carrier_eabiomnivaterminal,
body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #eabi_carrier_eabiomnivaterminal {
  display: block; }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #eabi_carrier_eabiomnivaterminal .chosen-container[data-option-array-index="0"],
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #eabi_carrier_eabiomnivaterminal .chosen-container[data-option-array-index="0"] {
    display: none; }
body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier,
body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier {
  margin: 1rem 0 1.5rem; }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 0.88888889rem;
    color: #171e27;
    margin: 0.5em 0; }
    body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label .carrier_name,
    body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label .carrier_name {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label .carrier_name:before,
      body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label .carrier_name:before {
        content: "";
        display: block;
        width: 3em;
        height: 3em;
        margin-right: 1em;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain; }
      body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label .carrier_name.omnivaterminal:before,
      body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label .carrier_name.omnivaterminal:before {
        background-image: url("../images/checkout/omniva_logo.png"); }
      body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label .carrier_name.latviapostlockers:before,
      body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label .carrier_name.latviapostlockers:before {
        background-image: url("../images/checkout/pasts_logo.png"); }
      body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label .carrier_name.latviacirclek:before,
      body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label .carrier_name.latviacirclek:before {
        background-image: url("../images/checkout/circlek_logo.png"); }
      body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label .carrier_name.dpd:before,
      body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label .carrier_name.dpd:before {
        background-image: url("../images/checkout/dpd_logo.png"); }
      body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label .carrier_name.venipak:before,
      body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label .carrier_name.venipak:before {
        background-image: url("../images/checkout/venipak_logo.png"); }
      body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label .carrier_name.hrx:before,
      body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label .carrier_name.hrx:before {
        background-image: url("../images/checkout/packeta_logo.png"); }
      body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label .carrier_name.hrx.PL:before,
      body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label .carrier_name.hrx.PL:before {
        background-image: url("../images/checkout/inpost_logo.png"); }
      body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label .carrier_name.hrx.FI:before,
      body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label .carrier_name.hrx.FI:before {
        background-image: url("../images/checkout/matkahuolto_logo.png"); }
    body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label .carrier_price,
    body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-method-load #trufit_shipping_pickuppoints_carrier label .carrier_price {
      font-weight: 600;
      color: #1abc9c;
      margin-left: 1em; }
body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-address-load,
body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-address-load {
  margin: 1.5em 0 2em 0; }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-address-load .control,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-address-load .control {
    margin-top: 1em; }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-address-load .address-dropdown,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-address-load .address-dropdown {
    margin-bottom: 1em; }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-address-load select.shipping-region-id,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-address-load select.shipping-region-id {
    display: none; }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-address-load .country-change-tooltip .tooltip,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-address-load .country-change-tooltip .tooltip {
    top: -8em !important; }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-address-load .country-change-tooltip .tooltip-button-box,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-address-load .country-change-tooltip .tooltip-button-box {
    padding: 1em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: -1em;
    border-radius: 2px;
    background: #213444; }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-address-load .country-change-tooltip .tooltip-button,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-address-load .country-change-tooltip .tooltip-button {
    font-size: 0.6em;
    border-radius: 2px;
    padding: 0.6em 3em; }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-address-load #shipping_country_id_chosen,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #checkout-shipping-address-load #shipping_country_id_chosen {
    pointer-events: none; }
body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #shipping_address_select_chosen .active-result,
body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #shipping_address_select_chosen .active-result {
  line-height: 1.5; }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #shipping_address_select_chosen .active-result:last-child,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #shipping_address_select_chosen .active-result:last-child {
    color: #ff6d5a; }
body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen ul.chosen-results,
body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen ul.chosen-results {
  max-height: 26em; }
body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result,
body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result {
  padding-left: 5.4em; }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result span:first-child,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result span:first-child {
    font-size: 0.88888889rem; }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result span:last-child,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result span:last-child {
    display: block;
    padding-top: 0.5em;
    font-size: 0.66666667rem;
    line-height: 1.3;
    color: #767676; }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result:before,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result:before {
    position: absolute;
    top: 50%;
    left: 1.4em;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    content: "";
    display: block;
    width: 3em;
    height: 3em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result.omnivaterminal:before,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result.omnivaterminal:before {
    background-image: url("../images/checkout/omniva_logo.png"); }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result.latviapostlockers:before,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result.latviapostlockers:before {
    background-image: url("../images/checkout/pasts_logo.png"); }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result.latviacirclek:before,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result.latviacirclek:before {
    background-image: url("../images/checkout/circlek_logo.png"); }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result.dpd:before,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result.dpd:before {
    background-image: url("../images/checkout/dpd_logo.png"); }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result.venipak:before,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result.venipak:before {
    background-image: url("../images/checkout/venipak_logo.png"); }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result.hrx:before,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result.hrx:before {
    background-image: url("../images/checkout/packeta_logo.png"); }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result.hrx.PL:before,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result.hrx.PL:before {
    background-image: url("../images/checkout/inpost_logo.png"); }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result.hrx.FI:before,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_location_chosen li.active-result.hrx.FI:before {
    background-image: url("../images/checkout/matkahuolto_logo.png"); }
body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen ul.chosen-results,
body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen ul.chosen-results {
  max-height: unset; }
body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen li.active-result,
body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen li.active-result {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1.4em; }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen li.active-result:before,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen li.active-result:before {
    content: "";
    display: block;
    width: 3em;
    height: 3em;
    margin-right: 1em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen li.active-result.omnivaterminal:before,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen li.active-result.omnivaterminal:before {
    background-image: url("../images/checkout/omniva_logo.png"); }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen li.active-result.latviapostlockers:before,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen li.active-result.latviapostlockers:before {
    background-image: url("../images/checkout/pasts_logo.png"); }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen li.active-result.latviacirclek:before,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen li.active-result.latviacirclek:before {
    background-image: url("../images/checkout/circlek_logo.png"); }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen li.active-result.dpd:before,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen li.active-result.dpd:before {
    background-image: url("../images/checkout/dpd_logo.png"); }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen li.active-result.venipak:before,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen li.active-result.venipak:before {
    background-image: url("../images/checkout/venipak_logo.png"); }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen li.active-result.hrx:before,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen li.active-result.hrx:before {
    background-image: url("../images/checkout/packeta_logo.png"); }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen li.active-result.hrx.PL:before,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen li.active-result.hrx.PL:before {
    background-image: url("../images/checkout/inpost_logo.png"); }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen li.active-result.hrx.FI:before,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen li.active-result.hrx.FI:before {
    background-image: url("../images/checkout/matkahuolto_logo.png"); }
  body.checkout-cart-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen li.active-result:first-child:before,
  body.checkout-onepage-index #checkoutSteps li.section#opc-shipping_method #trufit_shipping_pickuppoints_carrier_chosen li.active-result:first-child:before {
    display: none; }
body.checkout-cart-index #checkoutSteps li.section#opc-payment .sp-methods label,
body.checkout-onepage-index #checkoutSteps li.section#opc-payment .sp-methods label {
  display: block;
  padding: 1em 0;
  font-weight: 600;
  font-size: 1rem;
  color: #213444; }
  body.checkout-cart-index #checkoutSteps li.section#opc-payment .sp-methods label span,
  body.checkout-onepage-index #checkoutSteps li.section#opc-payment .sp-methods label span {
    color: #1abc9c;
    margin-left: 0.5em; }
body.checkout-cart-index #checkoutSteps li.section#opc-payment .p_method_desc,
body.checkout-onepage-index #checkoutSteps li.section#opc-payment .p_method_desc {
  padding: 0 calc(20px + 1em) 1.5em;
  font-size: 0.88888889rem;
  line-height: 1.7;
  max-width: 35em; }
body.checkout-cart-index #checkoutSteps li.section#opc-payment .payment_logo,
body.checkout-onepage-index #checkoutSteps li.section#opc-payment .payment_logo {
  width: 100%;
  height: 2.5rem;
  margin-bottom: 1em;
  background-repeat: no-repeat; }
  body.checkout-cart-index #checkoutSteps li.section#opc-payment .payment_logo.Swipe, body.checkout-cart-index #checkoutSteps li.section#opc-payment .payment_logo.Decta,
  body.checkout-onepage-index #checkoutSteps li.section#opc-payment .payment_logo.Swipe,
  body.checkout-onepage-index #checkoutSteps li.section#opc-payment .payment_logo.Decta {
    background-image: url("../images/logo-mastercard_visa-color.svg"); }
  body.checkout-cart-index #checkoutSteps li.section#opc-payment .payment_logo.banktransfer,
  body.checkout-onepage-index #checkoutSteps li.section#opc-payment .payment_logo.banktransfer {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 763.84 240.04' fill='%23526f84'%3E%3Cpath d='M15.83 192.24V88H9.49C3 87.88.1 85 0 78.46V50.47C0 44 1.49 42 7.75 40q49-15.38 98.09-30.69c8.25-2.58 16.43-5.46 24.79-7.62a20.44 20.44 0 0 1 10.57 0c40.39 12.39 80.69 25 121 37.65 8.57 2.68 9.55 4.05 9.55 13.18v24.49c0 8.53-2.42 10.93-11 11h-4.7v104.26c2.51 0 4.95-.09 7.37 0 5 .22 8.19 3.16 8.26 8.14.16 10.49.18 21 0 31.49-.1 5.42-3.52 8.08-9.84 8.09q-44 .06-88 0L11.45 240C2.27 240 0 237.75 0 228.47v-25c0-8.84 2.36-11.16 11.28-11.23h4.51zM255.7 71.68c0-4.74-.24-8.91.07-13 .27-3.53-1.17-4.9-4.41-5.9-37.2-11.52-74.36-23.21-111.55-34.67a14.19 14.19 0 0 0-7.7 0c-11 3.19-22 6.73-32.91 10.16-26.36 8.25-52.73 16.46-79 24.84-1.54.49-3.68 2.22-3.8 3.54-.45 4.9-.18 9.87-.18 15.05H255.7zM16.4 223.6h238.8v-14.89H16.4v14.89zm63.26-31.5V88.38H64.13V192.1h15.54zM192.13 88.2v103.7h15.56V88.2h-15.56zm-64 0v103.73h15.57V88.21h-15.58zm15.24-31.84h-15.13v-15.2h15.11v15.21z'/%3E%3Cpath fill='white' d='M239.34 88.81v102.85h-14.87V88.81h14.87zM175.39 88.64v102.88h-14.95V88.64h14.95zM111.37 88.62v102.85H96.45V88.62h14.92zM47.38 88.78v102.9H32.44V88.78h14.94z'/%3E%3Cpath d='M470.1 140.24H455V125h15.1v15.21zM423.06 124.83h15V140h-15v-15.17zM406 140.15h-15.1v-15.23H406v15.22zM374.2 124.93v15h-15.29v-15h15.29zM342.2 125v15.06H327V125h15.2zM310.06 140.18H295v-15.29h15v15.29zM507.82 191.24V87h-6.34c-6.49-.13-9.38-3-9.44-9.55-.08-9.33 0-18.66 0-28C492 43 493.48 41 499.75 39q49-15.38 98.09-30.69c8.25-2.58 16.43-5.46 24.79-7.62A20.44 20.44 0 0 1 633.2.7c40.39 12.39 80.69 25 121 37.65 8.57 2.68 9.55 4.05 9.55 13.18v24.49c0 8.53-2.42 10.93-11 11h-4.7v104.25c2.51 0 4.95-.09 7.37 0 5 .22 8.19 3.16 8.26 8.14.16 10.49.18 21 0 31.49-.1 5.42-3.52 8.08-9.84 8.09q-44 .06-88 0H503.39c-9.19 0-11.41-2.26-11.42-11.55v-25c0-8.84 2.36-11.16 11.28-11.23h4.51zM747.69 70.68c0-4.74-.24-8.91.07-13 .27-3.53-1.17-4.9-4.41-5.9C706.16 40.26 669 28.57 631.81 17.11a14.19 14.19 0 0 0-7.7 0c-11 3.19-22 6.73-32.91 10.16-26.36 8.25-52.73 16.46-79 24.84-1.54.49-3.68 2.22-3.8 3.54-.45 4.9-.18 9.87-.18 15.05h239.47zM508.4 222.6h238.8v-14.89H508.4v14.89zm63.26-31.5V87.38h-15.54V191.1h15.54zM684.12 87.2v103.7h15.56V87.2h-15.56zm-64 0v103.73h15.57V87.21h-15.57zm15.24-31.84h-15.12v-15.2h15.11v15.21z'/%3E%3Cpath fill='white' d='M731.33 87.81v102.85h-14.87V87.81h14.87zM667.38 87.64v102.88h-15V87.64h15zM603.36 87.62v102.85h-14.92V87.62h14.92zM539.37 87.78v102.9h-14.94V87.78h14.94z'/%3E%3C/svg%3E"); }
body.checkout-cart-index #checkoutSteps li.section#opc-payment #checkout-billing-address-load,
body.checkout-onepage-index #checkoutSteps li.section#opc-payment #checkout-billing-address-load {
  margin: 1.5em 0 2em 0; }
  body.checkout-cart-index #checkoutSteps li.section#opc-payment #checkout-billing-address-load h3,
  body.checkout-onepage-index #checkoutSteps li.section#opc-payment #checkout-billing-address-load h3 {
    font-weight: 500; }
body.checkout-cart-index #checkoutSteps li.section#opc-payment ul#payment_form_eabi_maksekeskus ul li,
body.checkout-onepage-index #checkoutSteps li.section#opc-payment ul#payment_form_eabi_maksekeskus ul li {
  display: inline-block;
  width: 40%;
  max-width: 150px;
  margin-right: 1em; }
  body.checkout-cart-index #checkoutSteps li.section#opc-payment ul#payment_form_eabi_maksekeskus ul li img,
  body.checkout-onepage-index #checkoutSteps li.section#opc-payment ul#payment_form_eabi_maksekeskus ul li img {
    width: 100%;
    height: auto; }
  body.checkout-cart-index #checkoutSteps li.section#opc-payment ul#payment_form_eabi_maksekeskus ul li a,
  body.checkout-onepage-index #checkoutSteps li.section#opc-payment ul#payment_form_eabi_maksekeskus ul li a {
    -webkit-transition: all 0.5s;
    transition: all 0.5s; }
    body.checkout-cart-index #checkoutSteps li.section#opc-payment ul#payment_form_eabi_maksekeskus ul li a.selected,
    body.checkout-onepage-index #checkoutSteps li.section#opc-payment ul#payment_form_eabi_maksekeskus ul li a.selected {
      -webkit-filter: none;
              filter: none;
      opacity: 1; }
    body.checkout-cart-index #checkoutSteps li.section#opc-payment ul#payment_form_eabi_maksekeskus ul li a.unselected,
    body.checkout-onepage-index #checkoutSteps li.section#opc-payment ul#payment_form_eabi_maksekeskus ul li a.unselected {
      -webkit-filter: grayscale(100%);
              filter: grayscale(100%);
      opacity: 0.3; }
body.checkout-cart-index #checkoutSteps li.section#opc-review,
body.checkout-onepage-index #checkoutSteps li.section#opc-review {
  padding-bottom: 0; }
  body.checkout-cart-index #checkoutSteps li.section#opc-review .estimated-shipping,
  body.checkout-onepage-index #checkoutSteps li.section#opc-review .estimated-shipping {
    display: none; }
  body.checkout-cart-index #checkoutSteps li.section#opc-review a.changelink,
  body.checkout-onepage-index #checkoutSteps li.section#opc-review a.changelink {
    display: block;
    font-size: 0.66666667rem;
    color: #1abc9c;
    font-weight: 500;
    padding: 1em 0 1em; }
    body.checkout-cart-index #checkoutSteps li.section#opc-review a.changelink:hover,
    body.checkout-onepage-index #checkoutSteps li.section#opc-review a.changelink:hover {
      text-decoration: underline; }
  body.checkout-cart-index #checkoutSteps li.section#opc-review .block-progress-addresses,
  body.checkout-onepage-index #checkoutSteps li.section#opc-review .block-progress-addresses {
    -webkit-columns: 200px 2;
       -moz-columns: 200px 2;
            columns: 200px 2;
    -webkit-column-gap: 3em;
       -moz-column-gap: 3em;
            column-gap: 3em; }
    body.checkout-cart-index #checkoutSteps li.section#opc-review .block-progress-addresses div,
    body.checkout-onepage-index #checkoutSteps li.section#opc-review .block-progress-addresses div {
      -webkit-column-break-inside: avoid;
         page-break-inside: avoid;
              break-inside: avoid; }
    body.checkout-cart-index #checkoutSteps li.section#opc-review .block-progress-addresses .changelink,
    body.checkout-onepage-index #checkoutSteps li.section#opc-review .block-progress-addresses .changelink {
      margin-bottom: 2em; }
  body.checkout-cart-index #checkoutSteps li.section#opc-review .block-progress-methods,
  body.checkout-onepage-index #checkoutSteps li.section#opc-review .block-progress-methods {
    -webkit-columns: 200px 2;
       -moz-columns: 200px 2;
            columns: 200px 2;
    -webkit-column-gap: 3em;
       -moz-column-gap: 3em;
            column-gap: 3em;
    margin-bottom: 1.5em; }
    body.checkout-cart-index #checkoutSteps li.section#opc-review .block-progress-methods > div,
    body.checkout-onepage-index #checkoutSteps li.section#opc-review .block-progress-methods > div {
      margin-bottom: 1.5em; }
  body.checkout-cart-index #checkoutSteps li.section#opc-review #checkout-agreements,
  body.checkout-onepage-index #checkoutSteps li.section#opc-review #checkout-agreements {
    border-top: 1px solid #ededed;
    padding: 0.8em 0; }
    body.checkout-cart-index #checkoutSteps li.section#opc-review #checkout-agreements label,
    body.checkout-onepage-index #checkoutSteps li.section#opc-review #checkout-agreements label {
      font-size: 0.66666667rem;
      color: #171e27;
      font-weight: normal; }
    body.checkout-cart-index #checkoutSteps li.section#opc-review #checkout-agreements a,
    body.checkout-onepage-index #checkoutSteps li.section#opc-review #checkout-agreements a {
      color: #1abc9c; }

body.checkout-onepage-index .main-content {
  padding-top: 1.5rem;
  border-top: 2px solid #ededed; }

body.checkout-onepage-success .main,
body.checkout-onepage-failure .main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 3em 20px !important;
  text-align: center; }
  @media (min-width: 420px) {
    body.checkout-onepage-success .main,
    body.checkout-onepage-failure .main {
      padding: 3em 40px !important; } }
  @media (min-width: 1000px) {
    body.checkout-onepage-success .main,
    body.checkout-onepage-failure .main {
      padding: 3em 60px !important; } }
  body.checkout-onepage-success .main .col-main,
  body.checkout-onepage-failure .main .col-main {
    margin: auto; }
  body.checkout-onepage-success .main h1,
  body.checkout-onepage-failure .main h1 {
    font-size: 2.11111111rem;
    font-weight: 900; }
  body.checkout-onepage-success .main h2,
  body.checkout-onepage-failure .main h2 {
    font-size: 1.66666667rem; }
  body.checkout-onepage-success .main h3,
  body.checkout-onepage-failure .main h3 {
    font-size: 1.22222222rem;
    margin: 1em 0; }
  body.checkout-onepage-success .main p,
  body.checkout-onepage-failure .main p {
    max-width: 40em;
    margin-bottom: 0.6em; }
    body.checkout-onepage-success .main p.strong,
    body.checkout-onepage-failure .main p.strong {
      font-weight: 600; }
  body.checkout-onepage-success .main .buttons-set,
  body.checkout-onepage-failure .main .buttons-set {
    margin-bottom: 3em; }
    body.checkout-onepage-success .main .buttons-set .button,
    body.checkout-onepage-failure .main .buttons-set .button {
      margin: 0.25em; }
  body.checkout-onepage-success .main .order-cancel-link,
  body.checkout-onepage-failure .main .order-cancel-link {
    display: block;
    margin: 2em 0;
    font-size: 0.77777778rem;
    font-weight: 500; }
  body.checkout-onepage-success .main .order-failure-pay-button,
  body.checkout-onepage-failure .main .order-failure-pay-button {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 1em; }
    body.checkout-onepage-success .main .order-failure-pay-button img,
    body.checkout-onepage-failure .main .order-failure-pay-button img {
      width: 5em;
      margin-left: 2em; }
  body.checkout-onepage-success .main .badge,
  body.checkout-onepage-failure .main .badge {
    width: 6rem;
    height: 6rem;
    margin: auto;
    border-radius: 50%;
    margin-bottom: 2rem; }
    body.checkout-onepage-success .main .badge-success,
    body.checkout-onepage-failure .main .badge-success {
      background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52 52'%3E%3Cpath fill='none' stroke='%231abc9c' stroke-width='3' stroke-miterlimit='10' d='M14.1 27.2l7.1 7.2 16.7-16.8'/%3E%3C/svg%3E") no-repeat 50% 50%;
      border: 5px solid #1abc9c; }
    body.checkout-onepage-success .main .badge-failure,
    body.checkout-onepage-failure .main .badge-failure {
      background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath fill='none' stroke='%23ff6d5a' stroke-width='2' stroke-miterlimit='10' d='M 10,10 L 30,30 M 30,10 L 10,30' /%3E%3C/svg%3E") no-repeat 50% 50%;
      border: 5px solid #ff6d5a; }
  body.checkout-onepage-success .main p.paynow,
  body.checkout-onepage-failure .main p.paynow {
    display: inline-block;
    background: #ff6d5a;
    padding: 0 20px;
    border-radius: 5px;
    color: white; }
  body.checkout-onepage-success .main table.benificiary,
  body.checkout-onepage-failure .main table.benificiary {
    max-width: 30em;
    margin: 0 auto 2.5em auto; }
    body.checkout-onepage-success .main table.benificiary td,
    body.checkout-onepage-failure .main table.benificiary td {
      padding: 0.9em 0.7em; }
      @media (min-width: 420px) {
        body.checkout-onepage-success .main table.benificiary td,
        body.checkout-onepage-failure .main table.benificiary td {
          padding: 1em; } }
      body.checkout-onepage-success .main table.benificiary td.copy:after,
      body.checkout-onepage-failure .main table.benificiary td.copy:after {
        content: "";
        display: inline-block;
        width: 2em;
        height: 2em;
        background-image: url("../images/icon-copy.svg");
        background-repeat: no-repeat;
        background-position: center;
        font-size: 10px;
        color: aqua;
        vertical-align: middle;
        padding-left: 1em;
        opacity: 0.25;
        -webkit-transition: opacity 0.5s;
        transition: opacity 0.5s;
        cursor: pointer; }
      body.checkout-onepage-success .main table.benificiary td.copy:hover:after,
      body.checkout-onepage-failure .main table.benificiary td.copy:hover:after {
        opacity: 1; }
    body.checkout-onepage-success .main table.benificiary tr:first-child td:last-child,
    body.checkout-onepage-failure .main table.benificiary tr:first-child td:last-child {
      font-weight: 700;
      font-size: 1.22222222rem; }
    body.checkout-onepage-success .main table.benificiary tr:last-child,
    body.checkout-onepage-failure .main table.benificiary tr:last-child {
      color: #ff6d5a;
      font-weight: 500; }
      body.checkout-onepage-success .main table.benificiary tr:last-child td:last-child,
      body.checkout-onepage-failure .main table.benificiary tr:last-child td:last-child {
        font-weight: 700;
        font-size: 1.22222222rem; }
        body.checkout-onepage-success .main table.benificiary tr:last-child td:last-child::-moz-selection,
        body.checkout-onepage-failure .main table.benificiary tr:last-child td:last-child::-moz-selection {
          color: white; }
        body.checkout-onepage-success .main table.benificiary tr:last-child td:last-child::selection,
        body.checkout-onepage-failure .main table.benificiary tr:last-child td:last-child::selection {
          color: white; }
    body.checkout-onepage-success .main table.benificiary td:first-child,
    body.checkout-onepage-failure .main table.benificiary td:first-child {
      text-align: right;
      width: 30%; }
      @media (min-width: 380px) {
        body.checkout-onepage-success .main table.benificiary td:first-child,
        body.checkout-onepage-failure .main table.benificiary td:first-child {
          width: 40%; } }
    body.checkout-onepage-success .main table.benificiary td:last-child,
    body.checkout-onepage-failure .main table.benificiary td:last-child {
      text-align: left;
      font-weight: 600;
      -webkit-user-select: all;
         -moz-user-select: all;
          -ms-user-select: all;
              user-select: all; }

body.customer-account-logoutsuccess .main-container,
body.customer-account-forgotpassword .main-container,
body.customer-account-create .main-container,
body.customer-account-login .main-container {
  background: #f7f7f7; }
body.customer-account-logoutsuccess .main,
body.customer-account-forgotpassword .main,
body.customer-account-create .main,
body.customer-account-login .main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 3em 20px !important; }
  @media (min-width: 420px) {
    body.customer-account-logoutsuccess .main,
    body.customer-account-forgotpassword .main,
    body.customer-account-create .main,
    body.customer-account-login .main {
      padding: 3em 40px !important; } }
  @media (min-width: 1000px) {
    body.customer-account-logoutsuccess .main,
    body.customer-account-forgotpassword .main,
    body.customer-account-create .main,
    body.customer-account-login .main {
      padding: 3em 60px !important; } }
  body.customer-account-logoutsuccess .main h1,
  body.customer-account-forgotpassword .main h1,
  body.customer-account-create .main h1,
  body.customer-account-login .main h1 {
    text-align: center;
    font-size: 2.11111111rem;
    margin-bottom: 0.5em;
    font-weight: 900; }
  body.customer-account-logoutsuccess .main h2,
  body.customer-account-forgotpassword .main h2,
  body.customer-account-create .main h2,
  body.customer-account-login .main h2 {
    text-align: center;
    font-size: 1.88888889rem;
    margin-bottom: 0.5em;
    font-weight: 700; }
  body.customer-account-logoutsuccess .main h3,
  body.customer-account-forgotpassword .main h3,
  body.customer-account-create .main h3,
  body.customer-account-login .main h3 {
    text-align: center;
    margin-bottom: 1em; }
  body.customer-account-logoutsuccess .main a:hover:not(.button),
  body.customer-account-forgotpassword .main a:hover:not(.button),
  body.customer-account-create .main a:hover:not(.button),
  body.customer-account-login .main a:hover:not(.button) {
    color: #ff6d5a; }
  body.customer-account-logoutsuccess .main .back-link,
  body.customer-account-forgotpassword .main .back-link,
  body.customer-account-create .main .back-link,
  body.customer-account-login .main .back-link {
    color: #a5a5a5;
    font-weight: 500;
    font-size: 0.77777778rem;
    text-align: center;
    display: block;
    margin: 4em 0 0 0; }
body.customer-account-logoutsuccess .col-main,
body.customer-account-forgotpassword .col-main,
body.customer-account-create .col-main,
body.customer-account-login .col-main {
  width: 100%; }
body.customer-account-logoutsuccess label span.form-instructions,
body.customer-account-forgotpassword label span.form-instructions,
body.customer-account-create label span.form-instructions,
body.customer-account-login label span.form-instructions {
  color: #ff6d5a;
  font-weight: 500;
  margin-left: 1em; }

body.customer-account-logoutsuccess .main {
  max-width: 50em;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center; }

body.customer-account-forgotpassword .main {
  max-width: 50em;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
              -ms-grid-row-align: center;
          align-items: center; }
  body.customer-account-forgotpassword .main .input-wrapper {
    max-width: 24em;
    margin: 0 auto; }
    body.customer-account-forgotpassword .main .input-wrapper .input-box {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
      body.customer-account-forgotpassword .main .input-wrapper .input-box input {
        margin: 0 0.5em 0 0; }

body.customer-account-create .main,
body.customer-account-login .main {
  max-width: 80em; }
  body.customer-account-create .main .form-instructions,
  body.customer-account-login .main .form-instructions {
    text-align: center;
    line-height: 1.5; }
    body.customer-account-create .main .form-instructions.title-instructions,
    body.customer-account-login .main .form-instructions.title-instructions {
      max-width: 35em;
      margin: auto;
      margin-bottom: 1.5em; }
  body.customer-account-create .main h2,
  body.customer-account-login .main h2 {
    margin-top: 1em; }
  body.customer-account-create .main form,
  body.customer-account-login .main form {
    margin: 0 auto; }
  body.customer-account-create .main button, body.customer-account-create .main .button,
  body.customer-account-login .main button,
  body.customer-account-login .main .button {
    width: 100%; }
  body.customer-account-create .main .col2-set,
  body.customer-account-login .main .col2-set {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
    body.customer-account-create .main .col2-set .col-2 h2,
    body.customer-account-login .main .col2-set .col-2 h2 {
      display: none; }
    @media (min-width: 980px) {
      body.customer-account-create .main .col2-set,
      body.customer-account-login .main .col2-set {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
        -webkit-justify-content: space-around;
            -ms-flex-pack: distribute;
                justify-content: space-around; }
        body.customer-account-create .main .col2-set > div:not(.gap),
        body.customer-account-login .main .col2-set > div:not(.gap) {
          width: 100%;
          max-width: 22em;
          margin: 0 20px; }
        body.customer-account-create .main .col2-set .gap,
        body.customer-account-login .main .col2-set .gap {
          width: 2px;
          height: 200px;
          background: #ededed;
          -webkit-align-self: center;
              -ms-flex-item-align: center;
                  align-self: center; }
        body.customer-account-create .main .col2-set .col-2 h2,
        body.customer-account-login .main .col2-set .col-2 h2 {
          display: block; } }
  body.customer-account-create .main .forgot-link,
  body.customer-account-login .main .forgot-link {
    color: #a5a5a5;
    font-weight: 500;
    font-size: 0.77777778rem;
    text-align: center;
    display: block;
    margin: 1em; }
  body.customer-account-create .main .new-users,
  body.customer-account-login .main .new-users {
    text-align: center; }
  body.customer-account-create .main ul.benefits,
  body.customer-account-login .main ul.benefits {
    max-width: 90%; }
    body.customer-account-create .main ul.benefits li,
    body.customer-account-login .main ul.benefits li {
      font-size: 0.88888889rem; }
  body.customer-account-create .main .account-create form,
  body.customer-account-login .main .account-create form {
    max-width: 22em; }

body.hidden-scroll {
  overflow: hidden; }

.sl-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  opacity: 0.7;
  display: none;
  z-index: 1035; }

.sl-wrapper {
  z-index: 1040;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed; }
  .sl-wrapper * {
    box-sizing: border-box; }
  .sl-wrapper button {
    border: 0 none;
    background: transparent;
    font-size: 28px;
    padding: 0;
    cursor: pointer; }
    .sl-wrapper button:hover {
      opacity: 0.7; }
  .sl-wrapper .sl-close {
    display: none;
    position: fixed;
    right: 30px;
    top: 30px;
    z-index: 10060;
    margin-top: -14px;
    margin-right: -14px;
    height: 44px;
    width: 44px;
    line-height: 44px;
    font-family: inherit;
    color: #213444;
    font-size: 3rem; }
  .sl-wrapper .sl-counter {
    display: none;
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1060;
    color: #213444;
    font-size: 1rem; }
  .sl-wrapper .sl-navigation {
    width: 100%;
    display: none; }
    .sl-wrapper .sl-navigation button {
      position: fixed;
      top: 50%;
      margin-top: -22px;
      height: 44px;
      width: 22px;
      line-height: 44px;
      text-align: center;
      display: block;
      z-index: 10060;
      font-family: inherit;
      color: #213444; }
      .sl-wrapper .sl-navigation button.sl-next {
        right: 5px;
        font-size: 2rem; }
      .sl-wrapper .sl-navigation button.sl-prev {
        left: 5px;
        font-size: 2rem; }
      @media (min-width: 35.5em) {
        .sl-wrapper .sl-navigation button {
          width: 44px; }
          .sl-wrapper .sl-navigation button.sl-next {
            right: 10px;
            font-size: 3rem; }
          .sl-wrapper .sl-navigation button.sl-prev {
            left: 10px;
            font-size: 3rem; } }
      @media (min-width: 50em) {
        .sl-wrapper .sl-navigation button {
          width: 44px; }
          .sl-wrapper .sl-navigation button.sl-next {
            right: 20px;
            font-size: 3rem; }
          .sl-wrapper .sl-navigation button.sl-prev {
            left: 20px;
            font-size: 3rem; } }
  .sl-wrapper.sl-dir-rtl .sl-navigation {
    direction: ltr; }
  .sl-wrapper .sl-image {
    position: fixed;
    -ms-touch-action: none;
        touch-action: none;
    z-index: 10000; }
    .sl-wrapper .sl-image img {
      margin: 0;
      padding: 0;
      display: block;
      border: 0 none;
      width: 100%;
      height: auto; }
      @media (min-width: 35.5em) {
        .sl-wrapper .sl-image img {
          border: 0 none; } }
      @media (min-width: 50em) {
        .sl-wrapper .sl-image img {
          border: 0 none; } }
    .sl-wrapper .sl-image iframe {
      background: #000;
      border: 0 none; }
      @media (min-width: 35.5em) {
        .sl-wrapper .sl-image iframe {
          border: 0 none; } }
      @media (min-width: 50em) {
        .sl-wrapper .sl-image iframe {
          border: 0 none; } }
    .sl-wrapper .sl-image .sl-caption {
      display: none;
      padding: 10px;
      color: #fff;
      background: rgba(0, 0, 0, 0.8);
      font-size: 1rem;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0; }
      .sl-wrapper .sl-image .sl-caption.pos-top {
        bottom: auto;
        top: 0; }
      .sl-wrapper .sl-image .sl-caption.pos-outside {
        bottom: auto; }
    .sl-wrapper .sl-image .sl-download {
      display: none;
      position: absolute;
      bottom: 5px;
      right: 5px;
      color: #213444;
      z-index: 1060; }

.sl-spinner {
  display: none;
  border: 5px solid #333;
  border-radius: 40px;
  height: 40px;
  left: 50%;
  margin: -20px 0 0 -20px;
  opacity: 0;
  position: fixed;
  top: 50%;
  width: 40px;
  z-index: 1007;
  -webkit-animation: pulsate 1s ease-out infinite;
          animation: pulsate 1s ease-out infinite; }

.sl-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

.sl-transition {
  -webkit-transition: -webkit-transform ease 200ms;
  transition: -webkit-transform ease 200ms;
  transition: transform ease 200ms;
  transition: transform ease 200ms, -webkit-transform ease 200ms; }

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0; } }
@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0; } }
body.is-blog {
  /*********************
  BLOG HOMEPAGE
  ***********************/
  /*********************
  SINGELE POST VIEW
  ***********************/
  /*********************
  CATEGORY VIEW
  ***********************/ }
  body.is-blog .col1-layout .col-main {
    max-width: 70rem;
    margin: 2em auto;
    padding: 0 40px;
    box-sizing: content-box; }
  body.is-blog .main .block-blog-categories {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    margin-bottom: 2em; }
    body.is-blog .main .block-blog-categories ul {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      text-align: center;
      max-width: 80%;
      margin: 0 auto; }
    body.is-blog .main .block-blog-categories li.item {
      background: #ededed;
      margin: 5px;
      border-radius: 50px; }
      body.is-blog .main .block-blog-categories li.item:hover {
        background: #ff6d5a; }
        body.is-blog .main .block-blog-categories li.item:hover a {
          color: white; }
      body.is-blog .main .block-blog-categories li.item a {
        display: block;
        padding: 1em 1.5em;
        text-transform: capitalize;
        font-weight: 600;
        font-size: 0.77777778rem; }
  body.is-blog .main .block-posts-list {
    margin-bottom: 3rem; }
    body.is-blog .main .block-posts-list img {
      width: 100%;
      height: auto; }
    body.is-blog .main .block-posts-list .block-content {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
      @media (min-width: 926px) {
        body.is-blog .main .block-posts-list .block-content {
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -webkit-flex-direction: row;
              -ms-flex-direction: row;
                  flex-direction: row; } }
    body.is-blog .main .block-posts-list .item {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 2em; }
      body.is-blog .main .block-posts-list .item .post-title {
        display: block;
        font-weight: 700;
        font-size: 1.22222222rem;
        padding-bottom: 0.5em 0;
        padding-top: 0.3em; }
      body.is-blog .main .block-posts-list .item .post-excerpt {
        font-size: 0.88888889rem;
        line-height: 1.5;
        margin: 0; }
      body.is-blog .main .block-posts-list .item .post-image {
        display: block;
        -webkit-flex-basis: 30%;
            -ms-flex-preferred-size: 30%;
                flex-basis: 30%;
        min-width: 30%;
        margin-right: 1.5em;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        height: 6.5em; }
  body.is-blog.wordpress-index-index .col-main .block-title, body.is-blog.wordpress-index-index .col-main .page-title, body.is-blog.wordpress-term-view .col-main .block-title, body.is-blog.wordpress-term-view .col-main .page-title {
    text-align: center;
    font-size: 2.11111111rem;
    padding: 0 30px;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-bottom: 2em; }
    body.is-blog.wordpress-index-index .col-main .block-title h1, body.is-blog.wordpress-index-index .col-main .page-title h1, body.is-blog.wordpress-term-view .col-main .block-title h1, body.is-blog.wordpress-term-view .col-main .page-title h1 {
      font-size: inherit; }
    body.is-blog.wordpress-index-index .col-main .block-title:after, body.is-blog.wordpress-index-index .col-main .page-title:after, body.is-blog.wordpress-term-view .col-main .block-title:after, body.is-blog.wordpress-term-view .col-main .page-title:after {
      content: "";
      position: absolute;
      display: block;
      width: 40%;
      height: 4px;
      background: #ff6d5a;
      bottom: -0.45em;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%); }
  body.is-blog.wordpress-index-index .block-blog-categories, body.is-blog.wordpress-term-view .block-blog-categories {
    margin-bottom: 4em; }
    body.is-blog.wordpress-index-index .block-blog-categories .block-title, body.is-blog.wordpress-term-view .block-blog-categories .block-title {
      display: none; }
  body.is-blog.wordpress-index-index .block-posts-list .item-group, body.is-blog.wordpress-term-view .block-posts-list .item-group {
    -webkit-flex-basis: calc(50% - 1.5rem);
        -ms-flex-preferred-size: calc(50% - 1.5rem);
            flex-basis: calc(50% - 1.5rem); }
  body.is-blog.wordpress-index-index .block-posts-list .main-item, body.is-blog.wordpress-term-view .block-posts-list .main-item {
    -webkit-flex-basis: calc(50% - 1.5rem);
        -ms-flex-preferred-size: calc(50% - 1.5rem);
            flex-basis: calc(50% - 1.5rem);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1.5em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
    body.is-blog.wordpress-index-index .block-posts-list .main-item .post-title, body.is-blog.wordpress-term-view .block-posts-list .main-item .post-title {
      display: block;
      font-weight: 700;
      font-size: 1.66666667rem;
      padding: 0.5em 0; }
    body.is-blog.wordpress-index-index .block-posts-list .main-item .post-excerpt, body.is-blog.wordpress-term-view .block-posts-list .main-item .post-excerpt {
      font-size: 1rem;
      line-height: 1.5; }
    body.is-blog.wordpress-index-index .block-posts-list .main-item .post-image, body.is-blog.wordpress-term-view .block-posts-list .main-item .post-image {
      display: block;
      -webkit-box-flex: 1;
      -webkit-flex-grow: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      background-position: center;
      background-size: cover;
      min-height: 44vw; }
      @media (min-width: 926px) {
        body.is-blog.wordpress-index-index .block-posts-list .main-item .post-image, body.is-blog.wordpress-term-view .block-posts-list .main-item .post-image {
          min-height: auto; } }
  body.is-blog.wordpress-index-index .block-posts-list.category .block-content .item, body.is-blog.wordpress-term-view .block-posts-list.category .block-content .item {
    -webkit-flex-basis: calc(50% - 1.5rem);
        -ms-flex-preferred-size: calc(50% - 1.5rem);
            flex-basis: calc(50% - 1.5rem); }
  body.is-blog.wordpress-post-view {
    /********
    Gallery
    *********/ }
    body.is-blog.wordpress-post-view .col2-right-layout .col-main {
      /* POST WIDGETS */ }
      body.is-blog.wordpress-post-view .col2-right-layout .col-main .post-entry {
        margin-bottom: 4rem; }
      body.is-blog.wordpress-post-view .col2-right-layout .col-main h1 {
        font-size: 3em;
        font-weight: 900;
        position: relative; }
        body.is-blog.wordpress-post-view .col2-right-layout .col-main h1::after {
          content: "";
          position: absolute;
          display: block;
          width: 5em;
          bottom: -0.5em;
          height: 0.15em;
          background: #ff6d5a; }
      body.is-blog.wordpress-post-view .col2-right-layout .col-main h2 {
        font-size: 2em;
        margin-top: 1.5em;
        margin-bottom: 0.5em;
        font-weight: 900; }
      body.is-blog.wordpress-post-view .col2-right-layout .col-main h4 {
        font-size: 1em;
        margin-bottom: 1em; }
      body.is-blog.wordpress-post-view .col2-right-layout .col-main ul:not(.blocks-gallery-grid, .slick-dots) {
        margin: 1em 0 2em 0;
        display: inline-block;
        text-align: left; }
        body.is-blog.wordpress-post-view .col2-right-layout .col-main ul:not(.blocks-gallery-grid, .slick-dots) li {
          font-weight: 600;
          box-sizing: border-box;
          padding-left: 2.5em;
          position: relative;
          line-height: 1.6;
          margin-bottom: 0.65em; }
          body.is-blog.wordpress-post-view .col2-right-layout .col-main ul:not(.blocks-gallery-grid, .slick-dots) li:before {
            content: "";
            box-sizing: border-box;
            display: block;
            width: 1.44em;
            height: 1.44em;
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='2 2 19 19'%3E%3Cpolyline fill='none' stroke='%231abc9c' stroke-width='3' stroke-miterlimit='10' points='7.318,10.844 11.449,14.977 16.271,7.4 '/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            position: absolute;
            left: 0;
            top: 0; }
      body.is-blog.wordpress-post-view .col2-right-layout .col-main ol li {
        line-height: 2; }
        body.is-blog.wordpress-post-view .col2-right-layout .col-main ol li:first-child {
          font-size: 0.66666667rem;
          text-transform: uppercase;
          font-weight: 700;
          text-decoration: underline; }
      body.is-blog.wordpress-post-view .col2-right-layout .col-main ol a {
        color: #ff6d5a;
        font-size: 0.77777778rem; }
      body.is-blog.wordpress-post-view .col2-right-layout .col-main .wp-block-image {
        margin: 2em 0 3em 0; }
        body.is-blog.wordpress-post-view .col2-right-layout .col-main .wp-block-image img {
          width: 100% !important;
          height: auto !important;
          border-radius: 20px; }
      body.is-blog.wordpress-post-view .col2-right-layout .col-main .wp-block-embed {
        margin-bottom: 2em; }
        body.is-blog.wordpress-post-view .col2-right-layout .col-main .wp-block-embed.is-type-video {
          position: relative;
          width: 100%;
          padding-bottom: 56.25%; }
          body.is-blog.wordpress-post-view .col2-right-layout .col-main .wp-block-embed.is-type-video iframe {
            position: absolute;
            width: 100% !important;
            height: 100% !important; }
      body.is-blog.wordpress-post-view .col2-right-layout .col-main .trufit-widget.product-slider {
        padding: 1.5rem 0; }
        body.is-blog.wordpress-post-view .col2-right-layout .col-main .trufit-widget.product-slider h2 {
          display: none; }
        body.is-blog.wordpress-post-view .col2-right-layout .col-main .trufit-widget.product-slider .slick-track {
          margin: unset; }
      body.is-blog.wordpress-post-view .col2-right-layout .col-main .trufit-widget.banner {
        border-radius: 20px; }
    body.is-blog.wordpress-post-view .col2-right-layout .col-right {
      min-width: 20rem; }
      @media (min-width: 860px) {
        body.is-blog.wordpress-post-view .col2-right-layout .col-right {
          margin-left: 3rem; } }
      @media (min-width: 1024px) {
        body.is-blog.wordpress-post-view .col2-right-layout .col-right {
          min-width: 24rem; } }
      @media (min-width: 1200px) {
        body.is-blog.wordpress-post-view .col2-right-layout .col-right {
          min-width: 28rem; } }
      body.is-blog.wordpress-post-view .col2-right-layout .col-right .block-title {
        margin-bottom: 0.8em;
        font-size: 1.22222222rem;
        font-weight: 700;
        position: relative;
        margin-bottom: 2em; }
        body.is-blog.wordpress-post-view .col2-right-layout .col-right .block-title:after {
          content: "";
          position: absolute;
          display: block;
          width: 5em;
          bottom: -0.5em;
          height: 3px;
          background: #ff6d5a; }
      body.is-blog.wordpress-post-view .col2-right-layout .col-right .block-blog-categories ul {
        margin: 0;
        -webkit-box-pack: left;
        -webkit-justify-content: left;
            -ms-flex-pack: left;
                justify-content: left; }
        body.is-blog.wordpress-post-view .col2-right-layout .col-right .block-blog-categories ul li {
          margin: 0 0.55em 0.55em 0; }
      body.is-blog.wordpress-post-view .col2-right-layout .col-right .block-posts-list .post-title {
        display: block;
        font-weight: 700;
        font-size: 1rem;
        padding-bottom: 0.5em; }
      body.is-blog.wordpress-post-view .col2-right-layout .col-right .block-posts-list .post-excerpt {
        font-size: 0.77777778rem;
        line-height: 1.5;
        margin: 0; }
      body.is-blog.wordpress-post-view .col2-right-layout .col-right .block-posts-list .post-image {
        display: block;
        width: 100%;
        max-width: 7.5em;
        min-height: 7.5em;
        border-radius: 15px;
        margin-right: 1.5em;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center; }
    body.is-blog.wordpress-post-view .wp-block-gallery .blocks-gallery-grid {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      width: 100%;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      body.is-blog.wordpress-post-view .wp-block-gallery .blocks-gallery-grid .blocks-gallery-item {
        width: 8em;
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 auto;
            -ms-flex: 1 1 auto;
                flex: 1 1 auto;
        margin-right: 2%;
        margin-bottom: 2%; }
      body.is-blog.wordpress-post-view .wp-block-gallery .blocks-gallery-grid img {
        width: 100%;
        height: auto;
        border-radius: 20px; }

body.trufit-index-kiosk iframe {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 2; }
body.trufit-index-kiosk #select_language_chosen {
  position: fixed;
  top: 15px;
  left: 30px;
  z-index: 1000;
  width: 10em !important;
  min-width: 0;
  font-size: 0.8em; }
body.trufit-index-kiosk .close {
  position: fixed;
  top: 5px;
  right: 25px;
  z-index: 999;
  font-size: 4em;
  font-weight: 500;
  line-height: 1;
  color: #dddddd;
  cursor: pointer; }
body.trufit-index-kiosk .overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 1000; }
  body.trufit-index-kiosk .overlay .loader {
    width: 20vw;
    height: 20vw;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: url("../images/kiosk-loading-logo.svg");
    background-repeat: no-repeat;
    background-position: center; }
    body.trufit-index-kiosk .overlay .loader span {
      position: absolute;
      width: 100%;
      height: 100%;
      background: url("../images/kiosk-loading-circle.svg");
      background-repeat: no-repeat;
      background-position: center; }
body.trufit-index-kiosk .underlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: red;
  z-index: 1;
  background: url("../images/kiosk-scanner.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15%; }

.styleGuide-h2 {
  margin-top: 3em; }
  .styleGuide-h2:first-child {
    margin-top: 0; }

.styleGuide-colors span {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #ccc;
  margin: 0 45px 70px 45px;
  border-radius: 50%;
  position: relative; }
  .styleGuide-colors span:before {
    position: absolute;
    bottom: -50px;
    left: -24px;
    font-size: 0.8rem;
    text-align: center;
    width: 100px;
    white-space: pre; }
.styleGuide-colors:first-child span:nth-child(1) {
  background: #526f84; }
  .styleGuide-colors:first-child span:nth-child(1):before {
    content: "#526f84 \a$c-blue-light"; }
.styleGuide-colors:first-child span:nth-child(2) {
  background: #213444; }
  .styleGuide-colors:first-child span:nth-child(2):before {
    content: "#213444 \a$c-blue-medium"; }
.styleGuide-colors:first-child span:nth-child(3) {
  background: #171e27; }
  .styleGuide-colors:first-child span:nth-child(3):before {
    content: "#171e27 \a$c-blue-dark"; }
.styleGuide-colors:first-child span:nth-child(4) {
  background: #1abc9c; }
  .styleGuide-colors:first-child span:nth-child(4):before {
    content: "#1abc9c \a$c-green"; }
.styleGuide-colors:first-child span:nth-child(5) {
  background: #0a5647; }
  .styleGuide-colors:first-child span:nth-child(5):before {
    content: "#0a5647 \a$c-green-dark"; }
.styleGuide-colors:first-child span:nth-child(6) {
  background: #ff6d5a; }
  .styleGuide-colors:first-child span:nth-child(6):before {
    content: "#ff6d5a \a$c-orange"; }
.styleGuide-colors:first-child span:nth-child(7) {
  background: #8e261b; }
  .styleGuide-colors:first-child span:nth-child(7):before {
    content: "#8e261b \a$c-orange-dark"; }
.styleGuide-colors:first-child span:nth-child(8) {
  background: #f1c40f; }
  .styleGuide-colors:first-child span:nth-child(8):before {
    content: "#f1c40f \a$c-yellow"; }
.styleGuide-colors:last-child span:nth-child(1) {
  background: #f7f7f7; }
  .styleGuide-colors:last-child span:nth-child(1):before {
    content: "#f7f7f7 \a$c-gray-1"; }
.styleGuide-colors:last-child span:nth-child(2) {
  background: #ededed; }
  .styleGuide-colors:last-child span:nth-child(2):before {
    content: "#ededed \a$c-gray-2"; }
.styleGuide-colors:last-child span:nth-child(3) {
  background: #dddddd; }
  .styleGuide-colors:last-child span:nth-child(3):before {
    content: "#dddddd \a$c-gray-3"; }
.styleGuide-colors:last-child span:nth-child(4) {
  background: #bababa; }
  .styleGuide-colors:last-child span:nth-child(4):before {
    content: "#bababa \a$c-gray-4"; }
.styleGuide-colors:last-child span:nth-child(5) {
  background: #a5a5a5; }
  .styleGuide-colors:last-child span:nth-child(5):before {
    content: "#a5a5a5 \a$c-gray-5"; }
.styleGuide-colors:last-child span:nth-child(6) {
  background: #767676; }
  .styleGuide-colors:last-child span:nth-child(6):before {
    content: "#767676 \a$c-gray-6"; }

.styleGuide-h2 {
  font-size: 20px;
  color: #ff6d5a;
  font-weight: 700; }

.styleGuide-h4 {
  font-size: 12px;
  text-decoration: underline;
  color: #999; }

p.styleGuide {
  padding: 1.5em;
  background: grey; }

/*# sourceMappingURL=styles.css.map */