/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

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

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

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.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-arrow.slick-hidden {
    display: none;
}
/*======================================
  Selectric v1.13.0
======================================*/

.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  border: 1px solid #DDD;
  border-radius: 0px;
  background: #F8F8F8;
  position: relative;
  overflow: hidden;
}

.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 38px 0 10px;
  font-size: 12px;
  line-height: 38px;
  color: #444;
  height: 38px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 38px;
  line-height: 38px;
  background-color: #F8f8f8;
  color: #BBB;
  text-align: center;
  font: 0/0 a;
  *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial;
}

.selectric .button:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: #BBB;
  border-bottom: none;
}

.selectric-focus .selectric {
  border-color: #aaaaaa;
}

.selectric-hover .selectric {
  border-color: #c4c4c4;
}

.selectric-hover .selectric .button {
  color: #a2a2a2;
}

.selectric-hover .selectric .button:after {
  border-top-color: #a2a2a2;
}

.selectric-open {
  z-index: 9999;
}

.selectric-open .selectric {
  border-color: #c4c4c4;
}

.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}

.selectric-hide-select select {
  position: absolute;
  left: -100%;
}

.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #F8F8F8;
  border: 1px solid #c4c4c4;
  z-index: -1;
  box-shadow: 0 0 10px -6px;
}

.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}

.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}

.selectric-items ul, .selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  min-height: 20px;
}

.selectric-items li {
  display: block;
  padding: 10px;
  color: #666;
  cursor: pointer;
}

.selectric-items li.selected {
  background: #E0E0E0;
  color: #444;
}

.selectric-items li.highlighted {
  background: #D0D0D0;
  color: #444;
}

.selectric-items li:hover {
  background: #D5D5D5;
  color: #444;
}

.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: none;
  color: #444;
}

.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}

.selectric-items .selectric-group li {
  padding-left: 25px;
}
/* ------------------------------------------------------------ *\
	Sprite
\* ------------------------------------------------------------ */

/* Generic */
/* ------------------------------------------------------------ *\
  Variables
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Reset
\* ------------------------------------------------------------ */
* {
  padding: 0;
  margin: 0;
  outline: 0;
  box-sizing: border-box; }
  *::before, *::after {
    box-sizing: inherit; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main {
  display: block; }

template {
  display: none; }

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none; }

img,
iframe,
video,
audio,
object {
  max-width: 100%; }

img,
iframe {
  border: 0 none; }

img {
  height: auto;
  display: inline-block;
  vertical-align: middle; }

b,
strong {
  font-weight: bold; }

address {
  font-style: normal; }

svg:not(:root) {
  overflow: hidden; }

a,
button,
input[type='submit'],
input[type='button'],
input[type='reset'],
input[type='file'],
input[type='image'],
label[for] {
  cursor: pointer; }

a[href^='tel'],
button[disabled],
input[disabled],
textarea[disabled],
select[disabled] {
  cursor: default; }

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

input[type='text'],
input[type='password'],
input[type='date'],
input[type='datetime'],
input[type='datetime-local'],
input[type='month'],
input[type='week'],
input[type='email'],
input[type='number'],
input[type='search'],
input[type='tel'],
input[type='time'],
input[type='url'],
input[type='color'],
textarea,
a[href^='tel'] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
          appearance: none; }

textarea {
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased; }

button,
select {
  text-transform: none; }

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

nav ul,
nav ol {
  list-style: none outside none; }

/* ------------------------------------------------------------ *\
  Base
\* ------------------------------------------------------------ */
body {
  min-width: 320px;
  background: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #212121;
  /* Mobile */ }
  @media (max-width: 767px) {
    body {
      font-size: 14px;
      line-height: 1.29; } }

a {
  color: inherit;
  text-decoration: underline; }
  a:hover, a[href^='tel'] {
    text-decoration: none; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.75em; }

h1,
.h1 {
  font-size: 64px;
  line-height: 1.09;
  font-weight: 700;
  /* Mobile */ }
  @media (max-width: 767px) {
    h1,
    .h1 {
      font-size: 36px;
      line-height: 0.89; } }

h2,
.h2 {
  font-size: 28px;
  line-height: 1.14;
  font-weight: 700;
  /* Mobile */ }
  @media (max-width: 767px) {
    h2,
    .h2 {
      font-size: 24px;
      line-height: 1.17; } }

h3,
.h3 {
  font-size: 90px;
  line-height: 0.89;
  /* Mobile */ }
  @media (max-width: 767px) {
    h3,
    .h3 {
      font-size: 48px;
      line-height: 1; } }

h4,
.h4 {
  font-size: 18px;
  line-height: 1.56;
  /* Mobile */ }
  @media (max-width: 767px) {
    h4,
    .h4 {
      font-size: 16px;
      line-height: 1.5; } }

h5,
.h5 {
  font-size: 24px;
  line-height: 1.33;
  font-weight: 500;
  /* Mobile */ }
  @media (max-width: 767px) {
    h5,
    .h5 {
      font-size: 16px;
      line-height: 2; } }

h6,
.h6 {
  font-size: 16px;
  line-height: 2;
  /* Mobile */ }
  @media (max-width: 767px) {
    h6,
    .h6 {
      font-size: 14px;
      line-height: 1.71; } }

p,
ul,
ol,
dl,
table,
blockquote {
  margin-bottom: 0.75em; }

h1[class],
h2[class],
h3[class],
h4[class],
h5[class],
h6[class],
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:not([class]):last-child,
ol:not([class]):last-child,
dl:last-child,
table:last-child,
blockquote:last-child {
  margin-bottom: 0; }

ul,
ol {
  margin-left: 20px; }

img[style='float: left;'] {
  max-width: 50%;
  height: auto;
  margin: 0 10px 10px 0; }

img[style='float: right;'] {
  max-width: 50%;
  height: auto;
  margin: 0 0 10px 10px; }

nav ul,
nav ol {
  list-style: none outside none;
  margin: 0; }

blockquote {
  font-size: 28px;
  line-height: 1.14;
  font-weight: 700;
  text-transform: uppercase; }

/* ------------------------------------------------------------ *\
  Mixins
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
  Fonts
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
  Helpers
\* ------------------------------------------------------------ */
[hidden],
.is-hidden {
  display: none !important; }

.alignleft {
  float: left; }

/*  Alignright  */
.alignright {
  float: right; }

/*  Disabled  */
[disabled],
.disabled {
  cursor: default; }

/*  Is Hidden Text  */
.is-hidden-text {
  visibility: hidden !important;
  color: transparent !important;
  opacity: 0 !important;
  /* Mobile */ }
  @media (max-width: 767px) {
    .is-hidden-text {
      display: none; } }

/*  Grid  */
.col {
  max-width: 100%;
  flex: 1; }
  .cols {
    display: flex;
    flex-flow: row wrap; }
  .col--1of2 {
    max-width: 50%;
    flex: 0 0 50%; }
  .col--1of4 {
    max-width: 25%;
    flex: 0 0 25%;
    /* Mobile */ }
    @media (max-width: 767px) {
      .col--1of4 {
        flex: 0 0 50%;
        max-width: 50%; } }

.cols-grid {
  margin: 0 -12px -25px;
  /* Mobile */ }
  @media (max-width: 767px) {
    .cols-grid {
      margin: 0 -5px -11px; } }
  .cols-grid .cols-grid__col {
    padding: 0 12px;
    margin-bottom: 25px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .cols-grid .cols-grid__col {
        padding: 0 5px;
        margin-bottom: 11px; } }

/*  Responsive Helpers  */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; }
  .visible-xs-block {
    display: block !important; }
  .visible-xs-inline {
    display: inline !important; }
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 1023px) {
  .hidden-sm {
    display: none !important; }
  .visible-sm-block {
    display: block !important; }
  .visible-sm-inline {
    display: inline !important; }
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 1024px) and (max-width: 1369px) {
  .hidden-md {
    display: none !important; }
  .visible-md-block {
    display: block !important; }
  .visible-md-inline {
    display: inline !important; }
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1370px) {
  .hidden-lg {
    display: none !important; }
  .visible-lg-block {
    display: block !important; }
  .visible-lg-inline {
    display: inline !important; }
  .visible-lg-inline-block {
    display: inline-block !important; } }

/* ------------------------------------------------------------ *\
  Aligned text - horizontal
\* ------------------------------------------------------------ */
.alignedleft-text {
  justify-content: flex-start !important;
  text-align: left !important; }

.alignedright-text {
  text-align: right !important;
  justify-content: flex-end !important; }

.alignedcenter-text {
  text-align: center !important;
  justify-content: center !important; }

/* ------------------------------------------------------------ *\
  Visible elements
\* ------------------------------------------------------------ */
.desktop-only {
  /* Mobile */ }
  @media (max-width: 767px) {
    .desktop-only {
      display: none !important; } }

@media (min-width: 1024px) {
  .mobile-only {
    display: none !important; } }

/* ------------------------------------------------------------ *\
  Aligned element - vertical
\* ------------------------------------------------------------ */
.at-the-top {
  align-items: flex-start !important;
  vertical-align: top !important; }

.at-the-bottom {
  align-items: flex-end !important;
  vertical-align: bottom !important; }

.in-the-middle {
  align-items: center !important;
  vertical-align: middle !important; }

/* ------------------------------------------------------------ *\
  Fluid Link
\* ------------------------------------------------------------ */
.fluid-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%; }

/* ------------------------------------------------------------ *\
  Has Unpinned Header
\* ------------------------------------------------------------ */
#fathead-customizer {
  transition: height 0.3s, top 0.3s; }

.has-unpinned-header #fathead-customizer {
  top: 0;
  height: 100%; }

/* Default */
/* ------------------------------------------------------------ *\
  Article item
\* ------------------------------------------------------------ */
.article-item {
  color: #212121;
  /* Mobile */ }
  .article-item .article-item__inner {
    background-color: #f2f2f2;
    height: 100%;
    padding-bottom: 46px;
    position: relative; }
  .article-item .article-item__image-wrapper {
    overflow: hidden; }
  .article-item .article-item__image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    padding-top: 75.06%;
    transform: scale(1);
    transition: transform 0.4s ease-out; }
    .article-item .article-item__image:hover {
      transform: scale(1.2); }
  .article-item .article-item__body {
    font-family: "Roboto", sans-serif;
    text-align: center;
    letter-spacing: 0.05em;
    padding: 19px 30px 0; }
  .article-item .article-item__body h6 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
    line-height: 1.43;
    text-transform: uppercase;
    margin-bottom: 6px; }
    .article-item .article-item__body h6 a {
      text-decoration: none;
      opacity: 1;
      transition: opacity 0.3s ease; }
      .article-item .article-item__body h6 a:hover {
        opacity: 0.5; }
  .article-item .article-item__body h5 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 6px; }
  .article-item .article-item__body h5 a {
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.3s ease; }
    .article-item .article-item__body h5 a:hover {
      opacity: 0.5; }
  .article-item .article-item__body p a {
    text-decoration: none; }
  .article-item .article-item__actions {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0; }
  @media (max-width: 767px) {
    .article-item .article-item__inner {
      padding-bottom: 40px; }
    .article-item .article-item__image {
      padding-top: 74.93%; }
    .article-item .article-item__body {
      padding: 14px 20px 0; }
    .article-item .article-item__body h6 {
      margin-bottom: 4px; }
    .article-item .article-item__body h5 {
      font-size: 14px;
      line-height: 1.29; }
    .article-item .article-item__actions {
      bottom: 18px; } }

/* ------------------------------------------------------------ *\
  Article
\* ------------------------------------------------------------ */
.article {
  font-family: "Roboto", sans-serif;
  padding-top: 55px;
  /* Tablet Portrait */
  /* Mobile */ }
  .article .article__head {
    text-align: center;
    margin-bottom: 37px; }
  .article .article__head h1,
  .article .article__head h2 {
    font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase;
    color: #212121; }
  .article .article__head h2 {
    margin-bottom: 12px; }
  .article .article__body iframe {
    width: 100%;
    height: 507px;
    margin-bottom: 49px; }
  .article .article__body h1,
  .article .article__body h2,
  .article .article__body h3,
  .article .article__body h4,
  .article .article__body h5,
  .article .article__body h6 {
    font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase; }
  .article .article__body h2 {
    margin-bottom: 28px; }
  .article .article__body h4 {
    margin-bottom: 0; }
  .article .article__body p + h4,
  .article .article__body ul + h4 {
    margin-top: 24px; }
  .article .article__body ul {
    list-style-type: none;
    padding-left: 1px;
    margin-left: 0; }
    .article .article__body ul li::before {
      content: '';
      vertical-align: middle;
      background-color: #212121;
      width: 3px;
      height: 3px;
      display: inline-block;
      border-radius: 50%;
      margin-right: 7px; }
  .article .article__body p + h2 {
    margin-top: 53px; }
  .article .article__body p {
    margin-bottom: 24px; }
    .article .article__body p:last-child {
      margin-bottom: 0; }
  .article .article__body a {
    color: #004c97;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.3s ease; }
    .article .article__body a:hover {
      opacity: 0.4; }
  .article .article__body img {
    margin-top: 30px;
    margin-bottom: 22px; }
  @media (max-width: 1023px) {
    .article .article__body iframe {
      height: 415px; } }
  @media (max-width: 767px) {
    .article {
      padding-top: 24px; }
      .article .article__head h2 {
        font-size: 14px;
        line-height: 1.14;
        letter-spacing: 0.05em;
        margin-bottom: 9px; }
      .article .article__head {
        margin-bottom: 26px; }
      .article .article__body {
        padding: 0 5px; }
      .article .article__body iframe {
        height: 50vw;
        margin-bottom: 28px; }
      .article .article__body h2 {
        margin-bottom: 30px; }
      .article .article__body p + h2 {
        margin-top: 50px; }
      .article .article__body img {
        margin-top: 21px;
        margin-bottom: 21px; } }

.blog--default .blog__inner {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1%; }

.blog--default .page__title {
  margin-bottom: 10px;
  text-align: center; }

/* Cart */
.form--cart table {
  text-align: left; }

.form--cart th,
.form--cart td {
  padding: 10px;
  text-align: left; }

.form--cart tbody tr + tr {
  border-top: 1px solid #000; }

.form--cart th {
  text-transform: uppercase;
  font-weight: bold; }

.form--cart tfoot tr:first-child td {
  border-top: 2px solid currentColor; }

.table__product {
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none; }

.table__image {
  width: 100px; }

.table__quantity {
  width: 140px; }

.table__remove {
  width: 22px; }

.table__variant {
  padding-top: 5px; }

.table__properties {
  padding-top: 10px;
  font-style: italic;
  opacity: 0.6; }

.table__total-label {
  font-weight: bold;
  text-align: right;
  text-transform: uppercase; }

.table__info {
  font-style: italic; }
  .table__info td {
    text-align: right; }

.table__price,
.table__total {
  width: 120px; }

.table__total {
  font-weight: bold; }

.field--quantity {
  max-width: 80px;
  text-align: center; }

.js-quantity .field {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield; }
  .js-quantity .field::-webkit-outer-spin-button, .js-quantity .field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; }

.js-quantity input[type='number'] {
  -moz-appearance: textfield; }

.remove {
  font-size: 0;
  font-family: Arial, Baskerville, monospace;
  font-weight: bold;
  text-decoration: none; }
  .remove::before {
    content: '\00d7';
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    line-height: 1.1; }
  .remove:hover::before {
    background-color: #c80000;
    color: #fff; }

@media (max-width: 767px) {
  .form--cart table,
  .form--cart tbody {
    width: 100%;
    display: block; }
  .form--cart thead,
  .form--cart th {
    display: none; }
  .form--cart table,
  .form--cart tbody,
  .form--cart td,
  .form--cart tr,
  .form--cart tfoot {
    display: block;
    width: 100%;
    text-align: center; }
  .form--cart tr {
    position: relative;
    text-align: center; }
    .form--cart tr + tr {
      border-top: 1px solid #000; }
  .form--cart tbody td {
    width: auto;
    padding: 0 0 5px; }
  .form--cart tbody td::before {
    content: attr(data-attr);
    display: block;
    margin-bottom: 5px;
    font-weight: 700; }
  .form--cart tfoot {
    border-top: 1px solid #000; }
    .form--cart tfoot tr:first-child {
      padding: 10px 0; }
      .form--cart tfoot tr:first-child td {
        padding: 0;
        border: 0; } }

.collection--default .collection__sort {
  margin-bottom: 20px; }

.collection--default .collection__head {
  text-align: center;
  margin-bottom: 10px; }

.collections--default .collection__head {
  text-align: center;
  margin-bottom: 10px; }

.form--small {
  max-width: 440px;
  margin: 0 auto 40px; }
  .form--small:last-child {
    margin-bottom: 0; }

.form--default {
  /* Modifiers */ }
  .form--default .cf-field label {
    display: none; }
  .form--default .cf-form-actions button[type='button'] {
    display: none; }
  .form--default .form__title {
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: "Roboto Condensed", sans-serif; }
  .form--default .form__subtitle {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #828282;
    padding-left: 2px;
    margin: 12px 0 2px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .form--default .form__subtitle {
        font-size: 14px;
        line-height: 1.29;
        margin: 16px 0 -4px; } }
  .form--default .form__head {
    text-align: left;
    padding-bottom: 20px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .form--default .form__head {
        text-align: center;
        padding-bottom: 22px; } }
  .form--default .form__message {
    /* Mobile */ }
    .form--default .form__message ul {
      list-style-type: none;
      padding: 0;
      margin: 0; }
    .form--default .form__message.form__message--error {
      color: #d43900; }
    .form--default .form__message.form__message--success {
      color: #4cd964; }
    @media (max-width: 767px) {
      .form--default .form__message {
        padding-top: 10px; } }
  .form--default .form__label {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.43;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 11px;
    position: absolute;
    opacity: 0;
    visibility: hidden; }
  .form--default .form__actions {
    text-align: left; }
  .form--default .form__cta {
    margin-top: 2px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .form--default .form__cta {
        text-align: center;
        padding-top: 15px; } }
  .form--default .form__checkbox {
    margin-bottom: 9px;
    margin-top: -3px; }
  .form--default.form--guest {
    padding: 30px 0; }
  .form--default.form--register .form__message--success {
    display: none; }
  .form--default.form--register.has-success .form__message--success {
    display: block; }
  .form--default.form--recover .form__cols, .form--default.form--register .form__cols {
    align-items: center; }
  .form--default.form--recover {
    display: none; }
  .form--default.form--activate {
    padding: 60px 0;
    /* Mobile */ }
    @media (max-width: 767px) {
      .form--default.form--activate {
        padding: 30px 0; } }
  .form--default.form--password-reset .form__title,
  .form--default.form--password-reset .form__subtitle,
  .form--default.form--password-reset .form__cta {
    display: none; }
  .form--default.form--address {
    max-width: 463px; }
    .form--default.form--address .form__row {
      margin-bottom: 20px; }
    .form--default.form--address .form__checkbox {
      margin-top: -6px;
      margin-bottom: -8px; }
    .form--default.form--address .form__actions .form__cols {
      /* Mobile */ }
      @media (max-width: 767px) {
        .form--default.form--address .form__actions .form__cols {
          justify-content: flex-start;
          margin: 0 -4px; } }
    .form--default.form--address .form__actions .form__col {
      /* Mobile */ }
      @media (max-width: 767px) {
        .form--default.form--address .form__actions .form__col {
          flex: 0 0 50%;
          max-width: 50%;
          padding: 0 4px; } }
    .form--default.form--address .form__actions .form__col a,
    .form--default.form--address .form__actions .form__col button {
      min-width: auto; }
  .form--default.form--contact-alt .form__label {
    position: static;
    opacity: 1;
    visibility: visible; }
  .form--default.form--contact-alt .form__controls--required {
    position: relative; }
  .form--default.form--contact-alt .form__controls--required::after {
    font-family: "Roboto", sans-serif;
    font-size: 26px;
    content: '*';
    color: #ff3b30;
    position: absolute;
    top: 6px;
    right: 15px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .form--default.form--contact-alt .form__controls--required::after {
        top: 9px;
        right: 14px; } }
  .form--default.form--contact-alt .form__col {
    flex: 0 0 46.8%;
    max-width: 46.8%;
    /* Mobile */ }
    .form--default.form--contact-alt .form__col:first-child:last-child {
      flex: 0 0 100%;
      max-width: 100%; }
    @media (max-width: 767px) {
      .form--default.form--contact-alt .form__col {
        flex: 0 0 100%;
        max-width: 100%; } }
  .form--default.form--contact-alt .form__col + .form__col {
    /* Mobile */ }
    @media (max-width: 767px) {
      .form--default.form--contact-alt .form__col + .form__col {
        margin-top: 20px; } }
  .form--default.form--contact-alt .form__row {
    margin-bottom: 36px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .form--default.form--contact-alt .form__row {
        margin-bottom: 20px; } }
  .form--default.form--contact-alt .form__actions {
    margin-top: 34px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .form--default.form--contact-alt .form__actions {
        margin-top: 30px; } }
  .form--default.form--contact-alt .form__message {
    margin-bottom: 36px; }
  .form--default.form--contact-alt .form__foot {
    /* Mobile */ }
    @media (max-width: 767px) {
      .form--default.form--contact-alt .form__foot {
        padding-top: 10px; } }
  @media (max-width: 767px) {
    .form--default .form__actions {
      text-align: center; } }

.form__line {
  align-items: center;
  display: flex;
  text-align: center;
  text-transform: uppercase;
  margin: 15px 0; }
  .form__line span {
    order: 2;
    font-weight: 500;
    color: #828282; }
  .form__line::before {
    content: "";
    background-color: #e0e0e0;
    order: 1;
    flex-grow: 1;
    margin-right: 6px;
    height: 1px; }
  .form__line::after {
    content: "";
    background-color: #e0e0e0;
    order: 3;
    flex-grow: 1;
    margin-left: 6px;
    height: 1px; }

.default--holder {
  padding: 20px 0;
  /* Accounts */
  /* Order */
  /* Address */ }
  .default--holder .page__head {
    margin-bottom: 30px; }
  .default--holder .blog__inner,
  .default--holder .collection__items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1%; }
  .default--holder .article,
  .default--holder .product__item,
  .default--holder .collection__item {
    flex: 0 0 23%;
    width: 23%;
    margin: 0 1% 10px; }
  .default--holder .article__image,
  .default--holder .product__item-image,
  .default--holder .collection__item-image {
    display: block;
    padding-bottom: 100%;
    margin-bottom: 10px;
    background-size: cover;
    background-position: center center; }
  .default--holder .section__head {
    padding-bottom: 30px;
    text-align: center; }
  .default--holder .section__title {
    font-family: "Roboto Condensed", sans-serif; }
  .default--holder .section__inner {
    display: flex;
    justify-content: space-between; }
  .default--holder .section__aside {
    width: 20%;
    min-width: 200px;
    margin-right: 10px; }
  .default--holder .section__aside ul {
    margin: 0;
    list-style: none; }
  .default--holder .section__aside li {
    margin-bottom: 5px; }
  .default--holder .section__aside a {
    display: block;
    text-decoration: none;
    padding: 8px 12px;
    border: 0;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 6px;
    color: #fff;
    background: #000; }
    .default--holder .section__aside a:hover {
      background-color: #444; }
  .default--holder .section__aside .active a {
    background-color: #444; }
  .default--holder .section__content {
    width: 75%; }
  .default--holder .order th,
  .default--holder .order td {
    padding: 5px;
    text-align: left; }
  .default--holder .order-head {
    margin-bottom: 5px; }
  .default--holder .table-order--products {
    margin-bottom: 10px; }
  .default--holder .table-order--products th,
  .default--holder .table-order--products td {
    border: 1px solid #000;
    padding: 5px; }
  .default--holder .btn--new {
    padding: 8px 12px;
    border: 0;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 6px;
    color: #fff;
    background: #000; }
    .default--holder .btn--new:hover {
      background-color: #444; }
  .default--holder .form--address {
    padding: 10px 0; }
  .default--holder .addresses {
    display: flex;
    flex-wrap: wrap; }
  .default--holder .address {
    width: 49%;
    margin: 0 1% 20px 0; }
  .default--holder .address--default {
    width: 100%;
    margin: 0 0 20px; }
  .default--holder .address__actions a {
    margin-right: 5px; }
  @media (max-width: 1023px) {
    .default--holder .article,
    .default--holder .product__item,
    .default--holder .collection__item {
      flex: 0 0 31.3%;
      width: 31.3%; } }
  @media (max-width: 767px) {
    .default--holder {
      /* Accounts */ }
      .default--holder .article,
      .default--holder .product__item,
      .default--holder .collection__item {
        width: 48%;
        flex: 0 0 48%; }
      .default--holder table,
      .default--holder tr,
      .default--holder td,
      .default--holder tbody,
      .default--holder tfoot {
        display: block; }
      .default--holder th {
        display: none; }
      .default--holder td::before {
        content: attr(data-heading);
        display: block;
        margin-right: 5px;
        font-weight: 700; }
      .default--holder tr + tr {
        border-top: 1px solid #000; }
      .default--holder .addresses .address {
        width: 100%; }
      .default--holder .table-order--products td {
        padding: 5px 0;
        border: 0; }
      .default--holder .order-details__title {
        font-weight: 700; }
      .default--holder .table-order--products tfoot {
        padding-top: 5px;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000; }
      .default--holder .table-order--products tfoot tr,
      .default--holder .table-order--products tfoot td {
        border: 0;
        padding: 0; }
      .default--holder .table-order--products tfoot tr {
        margin-bottom: 5px; } }
  @media (max-width: 480px) {
    .default--holder {
      /* Accounts */ }
      .default--holder .blog__inner,
      .default--holder .collection__items {
        display: block;
        margin: 0; }
      .default--holder .article,
      .default--holder .product__item,
      .default--holder .collection__item {
        width: auto;
        margin: 0 0 10px; }
      .default--holder .section__inner {
        display: block; }
      .default--holder .section__aside {
        width: auto;
        margin-right: 0; }
      .default--holder .section__aside ul a {
        margin: 5px 0; }
      .default--holder .section__content {
        width: auto; }
      .default--holder .order-info .cols {
        display: block; } }

.paging--default {
  padding: 20px 0;
  text-align: center; }
  .paging--default ul,
  .paging--default li {
    display: inline-block;
    margin: 0 5px; }

/* ------------------------------------------------------------ *\
	Default Styles
\* ------------------------------------------------------------ */
.product--default {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between; }
  .product--default .product__images {
    flex: 0 0 49%;
    width: 49%; }
    .product--default .product__images img {
      display: block;
      margin: 0 auto 20px; }
  .product--default .product__vendor {
    padding-bottom: 20px;
    font-style: italic; }
  .product--default .product__price {
    padding-bottom: 20px; }
    .product--default .product__price ins {
      text-decoration: none; }
  .product--default .product__entry {
    flex: 0 0 49%;
    width: 49%; }
  .product--default .form-product .form__row {
    padding-bottom: 20px; }
  .product--default .form-product .form__foot {
    margin: 0 -5px 20px; }
  .product--default .form-product .form__btn {
    padding: 8px 12px;
    border: 0;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 6px;
    color: #fff;
    background: #000; }
    .product--default .form-product .form__btn:hover {
      background-color: #444; }
  @media (max-width: 767px) {
    .product--default {
      display: block; }
      .product--default .product__entry,
      .product--default .product__images {
        display: block;
        width: auto; } }

/* ============================================================================
  levAR 3D Model Toggle
============================================================================== */
#levar_photo_box {
  position: relative; }

.levar-debut-toggle {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1000;
  padding: 0;
  border: none;
  background: none;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  opacity: 0; }

.levar-debut-toggle:focus {
  outline: none; }

/* The switch - the box around the slider */
.levar-debut-toggle .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px; }

/* Hide default HTML checkbox */
.levar-debut-toggle .switch input {
  opacity: 0;
  width: 0;
  height: 0; }

/* The slider */
.levar-debut-toggle .switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px; }

.levar-debut-toggle .switch-slider::before {
  position: absolute;
  content: "3D";
  line-height: 27px;
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
  text-align: center; }

.levar-debut-toggle input:checked + .switch-slider {
  background-color: #2196f3; }

.levar-debut-toggle input:focus + .switch-slider {
  box-shadow: 0 0 1px #2196f3; }

.levar-debut-toggle input:checked + .switch-slider::before {
  transform: translateX(26px); }

.search--default .results,
.search--default .form-search,
.search--default .page__head {
  margin-bottom: 10px;
  text-align: center; }

.search--default .search__field {
  padding: 7px;
  border: 1px solid #000; }

.search--default .search__btn {
  padding: 8px 12px;
  border: 0;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 6px;
  color: #fff;
  background: #000; }
  .search--default .search__btn:hover {
    background-color: #444; }

.aa-dropdown-menu .aa-columns-container .aa-left-column .aa-collections-header,
.aa-dropdown-menu .aa-columns-container .aa-left-column .aa-articles-header,
.aa-dropdown-menu .aa-columns-container .aa-left-column .aa-pages-header {
  font-size: 16px;
  line-height: 1.5;
  color: #004c97;
  letter-spacing: 0.04em;
  font-weight: 700;
  transition: opacity 0.3s; }

.aa-dropdown-menu .aa-columns-container .aa-left-column .aa-collections-header:hover,
.aa-dropdown-menu .aa-columns-container .aa-left-column .aa-articles-header:hover,
.aa-dropdown-menu .aa-columns-container .aa-left-column .aa-pages-header:hover {
  opacity: 0.6; }

.aa-dropdown-menu .aa-columns-container .aa-left-column .aa-powered-by {
  display: none; }

.aa-dropdown-menu .aa-columns-container .aa-right-column .aa-product {
  min-height: 68px; }
  .aa-dropdown-menu .aa-columns-container .aa-right-column .aa-product .aa-product-picture {
    width: 60px;
    height: 60px; }
  .aa-dropdown-menu .aa-columns-container .aa-right-column .aa-product .aa-product-text {
    margin-left: 76px; }
    .aa-dropdown-menu .aa-columns-container .aa-right-column .aa-product .aa-product-text .aa-product-title {
      margin-top: -0.2em; }
    .aa-dropdown-menu .aa-columns-container .aa-right-column .aa-product .aa-product-text .aa-product-info {
      margin-top: 0; }
    .aa-dropdown-menu .aa-columns-container .aa-right-column .aa-product .aa-product-text .aa-product-price {
      margin-top: 0.2em; }

.main .ais-page {
  padding-top: 25px; }
  @media (max-width: 767px) {
    .main .ais-page {
      padding-top: 0; } }
  .main .ais-page .ais-facets-button {
    width: calc(98% - 7px);
    margin: 16px auto;
    background: #e0e0e0;
    border: none;
    color: #212121;
    font-weight: bold;
    text-transform: uppercase; }
  .main .ais-page .ais-facets,
  .main .ais-page .ais-block {
    width: calc(98% - 7px);
    padding-left: 0; }
    @media (max-width: 480px) {
      .main .ais-page .ais-facets,
      .main .ais-page .ais-block {
        width: 100%;
        padding-left: 15px; } }
    @media (max-width: 767px) {
      .main .ais-page .ais-facets,
      .main .ais-page .ais-block {
        padding-left: 30px; } }
  .main .ais-page .ais-facets {
    width: 23%;
    margin-left: 2%;
    border: none;
    color: #212121; }
    .main .ais-page .ais-facets .ais-facet--header {
      border-width: 1px 0 0 0;
      padding: 15px 0;
      background: #fff;
      font-weight: bold;
      color: #212121; }
    .main .ais-page .ais-facets .ais-facet {
      border: none;
      color: #212121;
      padding: 8px 0; }
      .main .ais-page .ais-facets .ais-facet ul li {
        list-style: none;
        position: relative; }
      .main .ais-page .ais-facets .ais-facet ul li a,
      .main .ais-page .ais-facets .ais-facet ul li a:hover {
        color: #212121;
        position: relative;
        padding-left: 25px;
        background: none;
        border: none; }
      .main .ais-page .ais-facets .ais-facet ul li a > div {
        background: none; }
      .main .ais-page .ais-facets .ais-facet ul li a::before {
        position: absolute;
        top: -12px;
        left: 0;
        width: 25px;
        height: 28px;
        padding: 0 3px;
        font-size: 40px;
        background: none; }
      .main .ais-page .ais-facets .ais-facet ul li div::after {
        position: absolute;
        top: 0;
        left: -12px;
        width: 80px;
        height: 80px;
        border: 1px solid red; }
      .main .ais-page .ais-facets .ais-facet ul li.ais-RefinementList-item--selected div::before {
        background: #004c97; }
    .main .ais-page .ais-facets .ais-clear-refinements-container {
      right: 10px;
      top: 10px; }
      .main .ais-page .ais-facets .ais-clear-refinements-container .ais-ClearRefinements-button {
        color: #222; }

.main .ais-page .ais-block.customized-block {
  width: 72%;
  margin-left: 2%;
  margin-right: 1%;
  margin-bottom: 15px; }
  @media (max-width: 799px) {
    .main .ais-page .ais-block.customized-block {
      float: none;
      width: calc(98% - 7px);
      margin: 0 auto;
      padding-left: 0; } }
  .main .ais-page .ais-block.customized-block .ais-input {
    width: 100%;
    margin-left: 0; }
    @media (max-width: 1023px) {
      .main .ais-page .ais-block.customized-block .ais-input {
        padding-left: 0;
        margin-left: 0;
        width: 100%; } }
  .main .ais-page .ais-block.customized-block .ais-input .ais-input--label {
    padding: 8px 24px;
    text-transform: uppercase;
    font-weight: bold; }
    @media (max-width: 767px) {
      .main .ais-page .ais-block.customized-block .ais-input .ais-input--label {
        display: none; } }
  .main .ais-page .ais-block.customized-block .ais-search-header {
    padding: 0;
    color: #212121;
    background: none;
    font-size: 1em;
    letter-spacing: 0.5px;
    line-height: 1.5; }
    @media (max-width: 767px) {
      .main .ais-page .ais-block.customized-block .ais-search-header {
        margin-bottom: 24px; } }
    @media (max-width: 767px) {
      .main .ais-page .ais-block.customized-block .ais-search-header .ais-stats-container .ais-Stats {
        text-align: center;
        float: none; } }
    .main .ais-page .ais-block.customized-block .ais-search-header .ais-change-display {
      display: none; }
    @media (max-width: 767px) {
      .main .ais-page .ais-block.customized-block .ais-search-header .ais-sort {
        text-align: center;
        margin-top: 10px;
        margin-bottom: 15px;
        float: none; } }
    .main .ais-page .ais-block.customized-block .ais-search-header .ais-sort .ais-sort-orders-container .ais-SortBy .ais-SortBy-select {
      border: 1px solid #aaa; }
  .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: 0 -13px; }
  .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item {
    list-style: none;
    width: calc(33.33% - 26px);
    margin: 0 13px 50px; }
    @media (max-width: 1023px) {
      .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item {
        width: calc(50% - 26px);
        margin: 0 13px 40px; } }
    @media (max-width: 767px) {
      .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item {
        width: 100%;
        max-width: 380px; } }
    @media (max-width: 480px) {
      .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item {
        max-width: 300px; } }
    .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product {
      border: none;
      padding: 0;
      width: 100%;
      margin-left: 0; }
      @media (max-width: 480px) {
        .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product {
          width: 100%;
          height: 420px;
          margin: 0; } }
      @media (max-width: 767px) {
        .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product {
          height: 400px; } }
      @media (max-width: 1023px) {
        .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product {
          width: 100%;
          padding: 0; } }
    .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product .ais-hit--picture-container {
      height: 300px;
      overflow: hidden; }
      @media (max-width: 1369px) {
        .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product .ais-hit--picture-container {
          height: 300px; } }
      @media (max-width: 1023px) {
        .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product .ais-hit--picture-container {
          height: 280px; } }
    .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product .ais-hit--picture-container .ais-hit--picture {
      position: relative;
      margin-left: 0;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      transition: transform 0.3s; }
      .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product .ais-hit--picture-container .ais-hit--picture:hover {
        transform: scale(1.05); }
    .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product .ais-hit--details {
      width: 96%;
      margin: 10px auto; }
    .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product .ais-hit--details .ais-hit--title {
      margin-bottom: 10px; }
    .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product .ais-hit--details .ais-hit--title a {
      color: #212121;
      text-decoration: none;
      font-family: "Roboto", sans-serif;
      font-weight: 500;
      white-space: normal;
      transition: opacity 0.3s;
      letter-spacing: 0.05em;
      line-height: 1.5; }
      .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product .ais-hit--details .ais-hit--title a:hover {
        opacity: 0.6; }
      .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product .ais-hit--details .ais-hit--title a .ais-highlight {
        font-weight: 500; }
      .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product .ais-hit--details .ais-hit--title a .ais-highlight::before {
        width: calc(100% + 7px);
        height: 110%;
        left: -3px;
        background: #e0e0e0;
        opacity: 1; }

.main .ais-page .ais-pagination-container .ais-Pagination .ais-Pagination-list {
  width: 75%;
  margin-left: 25%;
  margin-bottom: 70px; }
  @media (max-width: 799px) {
    .main .ais-page .ais-pagination-container .ais-Pagination .ais-Pagination-list {
      width: 100%;
      margin-left: 0; } }
  .main .ais-page .ais-pagination-container .ais-Pagination .ais-Pagination-list .ais-Pagination-item--disabled {
    visibility: visible; }
  .main .ais-page .ais-pagination-container .ais-Pagination .ais-Pagination-list .ais-Pagination-item {
    border: none; }
    .main .ais-page .ais-pagination-container .ais-Pagination .ais-Pagination-list .ais-Pagination-item .ais-Pagination-link {
      position: relative;
      text-decoration: none !important;
      font-size: 1.2em;
      color: #bdbdbd;
      transition: opacity 0.3s; }
    .main .ais-page .ais-pagination-container .ais-Pagination .ais-Pagination-list .ais-Pagination-item .ais-Pagination-link:hover {
      opacity: 0.6; }
    @media (max-width: 767px) {
      .main .ais-page .ais-pagination-container .ais-Pagination .ais-Pagination-list .ais-Pagination-item {
        width: 25px;
        height: 27px; } }
  .main .ais-page .ais-pagination-container .ais-Pagination .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--selected a {
    color: #004c97; }
    .main .ais-page .ais-pagination-container .ais-Pagination .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--selected a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 15%;
      width: 70%;
      height: 3px;
      background-color: #004c97; }

/* ------------------------------------------------------------ *\
  Gift Card Header
\* ------------------------------------------------------------ */
.giftcard-header {
  padding: 14px 0;
  text-align: center; }
  .giftcard-header .header-logo {
    max-width: 142px;
    margin: 0 auto; }

/* ------------------------------------------------------------ *\
  Gift Card
\* ------------------------------------------------------------ */
.giftcard {
  width: 480px;
  max-width: 90vw;
  padding: 22px 21px 19px;
  margin: 23px auto;
  background-color: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  /* Mobile */ }
  .giftcard .giftcard__header {
    margin-bottom: 16px;
    text-align: center; }
  .giftcard .giftcard__title {
    color: #283045;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase; }
  .giftcard .giftcard__wrap {
    max-width: 410px;
    padding: 24px 35px;
    margin: 0 auto 17px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }
  .giftcard .giftcard__wrap img {
    max-width: 214px;
    margin: 46px 0 50px; }
  .giftcard .giftcard__amount {
    display: none; }
  .giftcard .giftcard__code {
    padding: 12px 10px;
    border: 1px solid #e0e0e0;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #212121;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-align: center; }
  .giftcard .giftcard__instructions {
    margin-bottom: 27px;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    line-height: 1.33;
    color: #828282;
    letter-spacing: 0.05em;
    text-align: center; }
  .giftcard .giftcard__qr-code {
    max-width: 146px;
    padding: 13px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin: 0 auto 38px; }
  .giftcard .giftcard__actions a + a {
    margin-top: 15px; }
  @media (max-width: 767px) {
    .giftcard .giftcard__wrap {
      padding: 20px; }
    .giftcard .giftcard__wrap img {
      max-width: 180px;
      margin: 35px 0; }
    .giftcard .giftcard__code {
      font-size: 14px; } }

/* ------------------------------------------------------------ *\
  Default Styles
\* ------------------------------------------------------------ */
.form--small {
  max-width: 440px;
  margin: 0 auto 40px; }
  .form--small:last-child {
    margin-bottom: 0; }

.form--default {
  /* Modifiers */ }
  .form--default .cf-field label {
    display: none; }
  .form--default .cf-form-actions button[type='button'] {
    display: none; }
  .form--default .form__title {
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: "Roboto Condensed", sans-serif; }
  .form--default .form__subtitle {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #828282;
    padding-left: 2px;
    margin: 12px 0 2px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .form--default .form__subtitle {
        font-size: 14px;
        line-height: 1.29;
        margin: 16px 0 -4px; } }
  .form--default .form__head {
    text-align: left;
    padding-bottom: 20px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .form--default .form__head {
        text-align: center;
        padding-bottom: 22px; } }
  .form--default .form__message {
    /* Mobile */ }
    .form--default .form__message ul {
      list-style-type: none;
      padding: 0;
      margin: 0; }
    .form--default .form__message.form__message--error {
      color: #d43900; }
    .form--default .form__message.form__message--success {
      color: #4cd964; }
    @media (max-width: 767px) {
      .form--default .form__message {
        padding-top: 10px; } }
  .form--default .form__label {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.43;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 11px;
    position: absolute;
    opacity: 0;
    visibility: hidden; }
  .form--default .form__actions {
    text-align: left; }
  .form--default .form__cta {
    margin-top: 2px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .form--default .form__cta {
        text-align: center;
        padding-top: 15px; } }
  .form--default .form__checkbox {
    margin-bottom: 9px;
    margin-top: -3px; }
  .form--default.form--guest {
    padding: 30px 0; }
  .form--default.form--register .form__message--success {
    display: none; }
  .form--default.form--register.has-success .form__message--success {
    display: block; }
  .form--default.form--recover .form__cols, .form--default.form--register .form__cols {
    align-items: center; }
  .form--default.form--recover {
    display: none; }
  .form--default.form--activate {
    padding: 60px 0;
    /* Mobile */ }
    @media (max-width: 767px) {
      .form--default.form--activate {
        padding: 30px 0; } }
  .form--default.form--password-reset .form__title,
  .form--default.form--password-reset .form__subtitle,
  .form--default.form--password-reset .form__cta {
    display: none; }
  .form--default.form--address {
    max-width: 463px; }
    .form--default.form--address .form__row {
      margin-bottom: 20px; }
    .form--default.form--address .form__checkbox {
      margin-top: -6px;
      margin-bottom: -8px; }
    .form--default.form--address .form__actions .form__cols {
      /* Mobile */ }
      @media (max-width: 767px) {
        .form--default.form--address .form__actions .form__cols {
          justify-content: flex-start;
          margin: 0 -4px; } }
    .form--default.form--address .form__actions .form__col {
      /* Mobile */ }
      @media (max-width: 767px) {
        .form--default.form--address .form__actions .form__col {
          flex: 0 0 50%;
          max-width: 50%;
          padding: 0 4px; } }
    .form--default.form--address .form__actions .form__col a,
    .form--default.form--address .form__actions .form__col button {
      min-width: auto; }
  .form--default.form--contact-alt .form__label {
    position: static;
    opacity: 1;
    visibility: visible; }
  .form--default.form--contact-alt .form__controls--required {
    position: relative; }
  .form--default.form--contact-alt .form__controls--required::after {
    font-family: "Roboto", sans-serif;
    font-size: 26px;
    content: '*';
    color: #ff3b30;
    position: absolute;
    top: 6px;
    right: 15px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .form--default.form--contact-alt .form__controls--required::after {
        top: 9px;
        right: 14px; } }
  .form--default.form--contact-alt .form__col {
    flex: 0 0 46.8%;
    max-width: 46.8%;
    /* Mobile */ }
    .form--default.form--contact-alt .form__col:first-child:last-child {
      flex: 0 0 100%;
      max-width: 100%; }
    @media (max-width: 767px) {
      .form--default.form--contact-alt .form__col {
        flex: 0 0 100%;
        max-width: 100%; } }
  .form--default.form--contact-alt .form__col + .form__col {
    /* Mobile */ }
    @media (max-width: 767px) {
      .form--default.form--contact-alt .form__col + .form__col {
        margin-top: 20px; } }
  .form--default.form--contact-alt .form__row {
    margin-bottom: 36px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .form--default.form--contact-alt .form__row {
        margin-bottom: 20px; } }
  .form--default.form--contact-alt .form__actions {
    margin-top: 34px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .form--default.form--contact-alt .form__actions {
        margin-top: 30px; } }
  .form--default.form--contact-alt .form__message {
    margin-bottom: 36px; }
  .form--default.form--contact-alt .form__foot {
    /* Mobile */ }
    @media (max-width: 767px) {
      .form--default.form--contact-alt .form__foot {
        padding-top: 10px; } }
  @media (max-width: 767px) {
    .form--default .form__actions {
      text-align: center; } }

.form__line {
  align-items: center;
  display: flex;
  text-align: center;
  text-transform: uppercase;
  margin: 15px 0; }
  .form__line span {
    order: 2;
    font-weight: 500;
    color: #828282; }
  .form__line::before {
    content: "";
    background-color: #e0e0e0;
    order: 1;
    flex-grow: 1;
    margin-right: 6px;
    height: 1px; }
  .form__line::after {
    content: "";
    background-color: #e0e0e0;
    order: 3;
    flex-grow: 1;
    margin-left: 6px;
    height: 1px; }

/* Cart */
.form--cart table {
  text-align: left; }

.form--cart th,
.form--cart td {
  padding: 10px;
  text-align: left; }

.form--cart tbody tr + tr {
  border-top: 1px solid #000; }

.form--cart th {
  text-transform: uppercase;
  font-weight: bold; }

.form--cart tfoot tr:first-child td {
  border-top: 2px solid currentColor; }

.table__product {
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none; }

.table__image {
  width: 100px; }

.table__quantity {
  width: 140px; }

.table__remove {
  width: 22px; }

.table__variant {
  padding-top: 5px; }

.table__properties {
  padding-top: 10px;
  font-style: italic;
  opacity: 0.6; }

.table__total-label {
  font-weight: bold;
  text-align: right;
  text-transform: uppercase; }

.table__info {
  font-style: italic; }
  .table__info td {
    text-align: right; }

.table__price,
.table__total {
  width: 120px; }

.table__total {
  font-weight: bold; }

.field--quantity {
  max-width: 80px;
  text-align: center; }

.js-quantity .field {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield; }
  .js-quantity .field::-webkit-outer-spin-button, .js-quantity .field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; }

.js-quantity input[type='number'] {
  -moz-appearance: textfield; }

.remove {
  font-size: 0;
  font-family: Arial, Baskerville, monospace;
  font-weight: bold;
  text-decoration: none; }
  .remove::before {
    content: '\00d7';
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    line-height: 1.1; }
  .remove:hover::before {
    background-color: #c80000;
    color: #fff; }

@media (max-width: 767px) {
  .form--cart table,
  .form--cart tbody {
    width: 100%;
    display: block; }
  .form--cart thead,
  .form--cart th {
    display: none; }
  .form--cart table,
  .form--cart tbody,
  .form--cart td,
  .form--cart tr,
  .form--cart tfoot {
    display: block;
    width: 100%;
    text-align: center; }
  .form--cart tr {
    position: relative;
    text-align: center; }
    .form--cart tr + tr {
      border-top: 1px solid #000; }
  .form--cart tbody td {
    width: auto;
    padding: 0 0 5px; }
  .form--cart tbody td::before {
    content: attr(data-attr);
    display: block;
    margin-bottom: 5px;
    font-weight: 700; }
  .form--cart tfoot {
    border-top: 1px solid #000; }
    .form--cart tfoot tr:first-child {
      padding: 10px 0; }
      .form--cart tfoot tr:first-child td {
        padding: 0;
        border: 0; } }

.collection--default .collection__sort {
  margin-bottom: 20px; }

.collection--default .collection__head {
  text-align: center;
  margin-bottom: 10px; }

.collections--default .collection__head {
  text-align: center;
  margin-bottom: 10px; }

/* ------------------------------------------------------------ *\
	Default Styles
\* ------------------------------------------------------------ */
.product--default {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between; }
  .product--default .product__images {
    flex: 0 0 49%;
    width: 49%; }
    .product--default .product__images img {
      display: block;
      margin: 0 auto 20px; }
  .product--default .product__vendor {
    padding-bottom: 20px;
    font-style: italic; }
  .product--default .product__price {
    padding-bottom: 20px; }
    .product--default .product__price ins {
      text-decoration: none; }
  .product--default .product__entry {
    flex: 0 0 49%;
    width: 49%; }
  .product--default .form-product .form__row {
    padding-bottom: 20px; }
  .product--default .form-product .form__foot {
    margin: 0 -5px 20px; }
  .product--default .form-product .form__btn {
    padding: 8px 12px;
    border: 0;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 6px;
    color: #fff;
    background: #000; }
    .product--default .form-product .form__btn:hover {
      background-color: #444; }
  @media (max-width: 767px) {
    .product--default {
      display: block; }
      .product--default .product__entry,
      .product--default .product__images {
        display: block;
        width: auto; } }

/* ============================================================================
  levAR 3D Model Toggle
============================================================================== */
#levar_photo_box {
  position: relative; }

.levar-debut-toggle {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1000;
  padding: 0;
  border: none;
  background: none;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  opacity: 0; }

.levar-debut-toggle:focus {
  outline: none; }

/* The switch - the box around the slider */
.levar-debut-toggle .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px; }

/* Hide default HTML checkbox */
.levar-debut-toggle .switch input {
  opacity: 0;
  width: 0;
  height: 0; }

/* The slider */
.levar-debut-toggle .switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px; }

.levar-debut-toggle .switch-slider::before {
  position: absolute;
  content: "3D";
  line-height: 27px;
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
  text-align: center; }

.levar-debut-toggle input:checked + .switch-slider {
  background-color: #2196f3; }

.levar-debut-toggle input:focus + .switch-slider {
  box-shadow: 0 0 1px #2196f3; }

.levar-debut-toggle input:checked + .switch-slider::before {
  transform: translateX(26px); }

.blog--default .blog__inner {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1%; }

.blog--default .page__title {
  margin-bottom: 10px;
  text-align: center; }

/* ------------------------------------------------------------ *\
  Article item
\* ------------------------------------------------------------ */
.article-item {
  color: #212121;
  /* Mobile */ }
  .article-item .article-item__inner {
    background-color: #f2f2f2;
    height: 100%;
    padding-bottom: 46px;
    position: relative; }
  .article-item .article-item__image-wrapper {
    overflow: hidden; }
  .article-item .article-item__image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    padding-top: 75.06%;
    transform: scale(1);
    transition: transform 0.4s ease-out; }
    .article-item .article-item__image:hover {
      transform: scale(1.2); }
  .article-item .article-item__body {
    font-family: "Roboto", sans-serif;
    text-align: center;
    letter-spacing: 0.05em;
    padding: 19px 30px 0; }
  .article-item .article-item__body h6 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
    line-height: 1.43;
    text-transform: uppercase;
    margin-bottom: 6px; }
    .article-item .article-item__body h6 a {
      text-decoration: none;
      opacity: 1;
      transition: opacity 0.3s ease; }
      .article-item .article-item__body h6 a:hover {
        opacity: 0.5; }
  .article-item .article-item__body h5 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 6px; }
  .article-item .article-item__body h5 a {
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.3s ease; }
    .article-item .article-item__body h5 a:hover {
      opacity: 0.5; }
  .article-item .article-item__body p a {
    text-decoration: none; }
  .article-item .article-item__actions {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0; }
  @media (max-width: 767px) {
    .article-item .article-item__inner {
      padding-bottom: 40px; }
    .article-item .article-item__image {
      padding-top: 74.93%; }
    .article-item .article-item__body {
      padding: 14px 20px 0; }
    .article-item .article-item__body h6 {
      margin-bottom: 4px; }
    .article-item .article-item__body h5 {
      font-size: 14px;
      line-height: 1.29; }
    .article-item .article-item__actions {
      bottom: 18px; } }

/* ------------------------------------------------------------ *\
  Article
\* ------------------------------------------------------------ */
.article {
  font-family: "Roboto", sans-serif;
  padding-top: 55px;
  /* Tablet Portrait */
  /* Mobile */ }
  .article .article__head {
    text-align: center;
    margin-bottom: 37px; }
  .article .article__head h1,
  .article .article__head h2 {
    font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase;
    color: #212121; }
  .article .article__head h2 {
    margin-bottom: 12px; }
  .article .article__body iframe {
    width: 100%;
    height: 507px;
    margin-bottom: 49px; }
  .article .article__body h1,
  .article .article__body h2,
  .article .article__body h3,
  .article .article__body h4,
  .article .article__body h5,
  .article .article__body h6 {
    font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase; }
  .article .article__body h2 {
    margin-bottom: 28px; }
  .article .article__body h4 {
    margin-bottom: 0; }
  .article .article__body p + h4,
  .article .article__body ul + h4 {
    margin-top: 24px; }
  .article .article__body ul {
    list-style-type: none;
    padding-left: 1px;
    margin-left: 0; }
    .article .article__body ul li::before {
      content: '';
      vertical-align: middle;
      background-color: #212121;
      width: 3px;
      height: 3px;
      display: inline-block;
      border-radius: 50%;
      margin-right: 7px; }
  .article .article__body p + h2 {
    margin-top: 53px; }
  .article .article__body p {
    margin-bottom: 24px; }
    .article .article__body p:last-child {
      margin-bottom: 0; }
  .article .article__body a {
    color: #004c97;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.3s ease; }
    .article .article__body a:hover {
      opacity: 0.4; }
  .article .article__body img {
    margin-top: 30px;
    margin-bottom: 22px; }
  @media (max-width: 1023px) {
    .article .article__body iframe {
      height: 415px; } }
  @media (max-width: 767px) {
    .article {
      padding-top: 24px; }
      .article .article__head h2 {
        font-size: 14px;
        line-height: 1.14;
        letter-spacing: 0.05em;
        margin-bottom: 9px; }
      .article .article__head {
        margin-bottom: 26px; }
      .article .article__body {
        padding: 0 5px; }
      .article .article__body iframe {
        height: 50vw;
        margin-bottom: 28px; }
      .article .article__body h2 {
        margin-bottom: 30px; }
      .article .article__body p + h2 {
        margin-top: 50px; }
      .article .article__body img {
        margin-top: 21px;
        margin-bottom: 21px; } }

.search--default .results,
.search--default .form-search,
.search--default .page__head {
  margin-bottom: 10px;
  text-align: center; }

.search--default .search__field {
  padding: 7px;
  border: 1px solid #000; }

.search--default .search__btn {
  padding: 8px 12px;
  border: 0;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 6px;
  color: #fff;
  background: #000; }
  .search--default .search__btn:hover {
    background-color: #444; }

.aa-dropdown-menu .aa-columns-container .aa-left-column .aa-collections-header,
.aa-dropdown-menu .aa-columns-container .aa-left-column .aa-articles-header,
.aa-dropdown-menu .aa-columns-container .aa-left-column .aa-pages-header {
  font-size: 16px;
  line-height: 1.5;
  color: #004c97;
  letter-spacing: 0.04em;
  font-weight: 700;
  transition: opacity 0.3s; }

.aa-dropdown-menu .aa-columns-container .aa-left-column .aa-collections-header:hover,
.aa-dropdown-menu .aa-columns-container .aa-left-column .aa-articles-header:hover,
.aa-dropdown-menu .aa-columns-container .aa-left-column .aa-pages-header:hover {
  opacity: 0.6; }

.aa-dropdown-menu .aa-columns-container .aa-left-column .aa-powered-by {
  display: none; }

.aa-dropdown-menu .aa-columns-container .aa-right-column .aa-product {
  min-height: 68px; }
  .aa-dropdown-menu .aa-columns-container .aa-right-column .aa-product .aa-product-picture {
    width: 60px;
    height: 60px; }
  .aa-dropdown-menu .aa-columns-container .aa-right-column .aa-product .aa-product-text {
    margin-left: 76px; }
    .aa-dropdown-menu .aa-columns-container .aa-right-column .aa-product .aa-product-text .aa-product-title {
      margin-top: -0.2em; }
    .aa-dropdown-menu .aa-columns-container .aa-right-column .aa-product .aa-product-text .aa-product-info {
      margin-top: 0; }
    .aa-dropdown-menu .aa-columns-container .aa-right-column .aa-product .aa-product-text .aa-product-price {
      margin-top: 0.2em; }

.main .ais-page {
  padding-top: 25px; }
  @media (max-width: 767px) {
    .main .ais-page {
      padding-top: 0; } }
  .main .ais-page .ais-facets-button {
    width: calc(98% - 7px);
    margin: 16px auto;
    background: #e0e0e0;
    border: none;
    color: #212121;
    font-weight: bold;
    text-transform: uppercase; }
  .main .ais-page .ais-facets,
  .main .ais-page .ais-block {
    width: calc(98% - 7px);
    padding-left: 0; }
    @media (max-width: 480px) {
      .main .ais-page .ais-facets,
      .main .ais-page .ais-block {
        width: 100%;
        padding-left: 15px; } }
    @media (max-width: 767px) {
      .main .ais-page .ais-facets,
      .main .ais-page .ais-block {
        padding-left: 30px; } }
  .main .ais-page .ais-facets {
    width: 23%;
    margin-left: 2%;
    border: none;
    color: #212121; }
    .main .ais-page .ais-facets .ais-facet--header {
      border-width: 1px 0 0 0;
      padding: 15px 0;
      background: #fff;
      font-weight: bold;
      color: #212121; }
    .main .ais-page .ais-facets .ais-facet {
      border: none;
      color: #212121;
      padding: 8px 0; }
      .main .ais-page .ais-facets .ais-facet ul li {
        list-style: none;
        position: relative; }
      .main .ais-page .ais-facets .ais-facet ul li a,
      .main .ais-page .ais-facets .ais-facet ul li a:hover {
        color: #212121;
        position: relative;
        padding-left: 25px;
        background: none;
        border: none; }
      .main .ais-page .ais-facets .ais-facet ul li a > div {
        background: none; }
      .main .ais-page .ais-facets .ais-facet ul li a::before {
        position: absolute;
        top: -12px;
        left: 0;
        width: 25px;
        height: 28px;
        padding: 0 3px;
        font-size: 40px;
        background: none; }
      .main .ais-page .ais-facets .ais-facet ul li div::after {
        position: absolute;
        top: 0;
        left: -12px;
        width: 80px;
        height: 80px;
        border: 1px solid red; }
      .main .ais-page .ais-facets .ais-facet ul li.ais-RefinementList-item--selected div::before {
        background: #004c97; }
    .main .ais-page .ais-facets .ais-clear-refinements-container {
      right: 10px;
      top: 10px; }
      .main .ais-page .ais-facets .ais-clear-refinements-container .ais-ClearRefinements-button {
        color: #222; }

.main .ais-page .ais-block.customized-block {
  width: 72%;
  margin-left: 2%;
  margin-right: 1%;
  margin-bottom: 15px; }
  @media (max-width: 799px) {
    .main .ais-page .ais-block.customized-block {
      float: none;
      width: calc(98% - 7px);
      margin: 0 auto;
      padding-left: 0; } }
  .main .ais-page .ais-block.customized-block .ais-input {
    width: 100%;
    margin-left: 0; }
    @media (max-width: 1023px) {
      .main .ais-page .ais-block.customized-block .ais-input {
        padding-left: 0;
        margin-left: 0;
        width: 100%; } }
  .main .ais-page .ais-block.customized-block .ais-input .ais-input--label {
    padding: 8px 24px;
    text-transform: uppercase;
    font-weight: bold; }
    @media (max-width: 767px) {
      .main .ais-page .ais-block.customized-block .ais-input .ais-input--label {
        display: none; } }
  .main .ais-page .ais-block.customized-block .ais-search-header {
    padding: 0;
    color: #212121;
    background: none;
    font-size: 1em;
    letter-spacing: 0.5px;
    line-height: 1.5; }
    @media (max-width: 767px) {
      .main .ais-page .ais-block.customized-block .ais-search-header {
        margin-bottom: 24px; } }
    @media (max-width: 767px) {
      .main .ais-page .ais-block.customized-block .ais-search-header .ais-stats-container .ais-Stats {
        text-align: center;
        float: none; } }
    .main .ais-page .ais-block.customized-block .ais-search-header .ais-change-display {
      display: none; }
    @media (max-width: 767px) {
      .main .ais-page .ais-block.customized-block .ais-search-header .ais-sort {
        text-align: center;
        margin-top: 10px;
        margin-bottom: 15px;
        float: none; } }
    .main .ais-page .ais-block.customized-block .ais-search-header .ais-sort .ais-sort-orders-container .ais-SortBy .ais-SortBy-select {
      border: 1px solid #aaa; }
  .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: 0 -13px; }
  .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item {
    list-style: none;
    width: calc(33.33% - 26px);
    margin: 0 13px 50px; }
    @media (max-width: 1023px) {
      .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item {
        width: calc(50% - 26px);
        margin: 0 13px 40px; } }
    @media (max-width: 767px) {
      .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item {
        width: 100%;
        max-width: 380px; } }
    @media (max-width: 480px) {
      .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item {
        max-width: 300px; } }
    .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product {
      border: none;
      padding: 0;
      width: 100%;
      margin-left: 0; }
      @media (max-width: 480px) {
        .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product {
          width: 100%;
          height: 420px;
          margin: 0; } }
      @media (max-width: 767px) {
        .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product {
          height: 400px; } }
      @media (max-width: 1023px) {
        .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product {
          width: 100%;
          padding: 0; } }
    .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product .ais-hit--picture-container {
      height: 300px;
      overflow: hidden; }
      @media (max-width: 1369px) {
        .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product .ais-hit--picture-container {
          height: 300px; } }
      @media (max-width: 1023px) {
        .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product .ais-hit--picture-container {
          height: 280px; } }
    .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product .ais-hit--picture-container .ais-hit--picture {
      position: relative;
      margin-left: 0;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      transition: transform 0.3s; }
      .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product .ais-hit--picture-container .ais-hit--picture:hover {
        transform: scale(1.05); }
    .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product .ais-hit--details {
      width: 96%;
      margin: 10px auto; }
    .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product .ais-hit--details .ais-hit--title {
      margin-bottom: 10px; }
    .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product .ais-hit--details .ais-hit--title a {
      color: #212121;
      text-decoration: none;
      font-family: "Roboto", sans-serif;
      font-weight: 500;
      white-space: normal;
      transition: opacity 0.3s;
      letter-spacing: 0.05em;
      line-height: 1.5; }
      .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product .ais-hit--details .ais-hit--title a:hover {
        opacity: 0.6; }
      .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product .ais-hit--details .ais-hit--title a .ais-highlight {
        font-weight: 500; }
      .main .ais-page .ais-block.customized-block .ais-hits-container.ais-results-as-block .ais-Hits ol.ais-Hits-list li.ais-Hits-item .ais-hit.ais-product .ais-hit--details .ais-hit--title a .ais-highlight::before {
        width: calc(100% + 7px);
        height: 110%;
        left: -3px;
        background: #e0e0e0;
        opacity: 1; }

.main .ais-page .ais-pagination-container .ais-Pagination .ais-Pagination-list {
  width: 75%;
  margin-left: 25%;
  margin-bottom: 70px; }
  @media (max-width: 799px) {
    .main .ais-page .ais-pagination-container .ais-Pagination .ais-Pagination-list {
      width: 100%;
      margin-left: 0; } }
  .main .ais-page .ais-pagination-container .ais-Pagination .ais-Pagination-list .ais-Pagination-item--disabled {
    visibility: visible; }
  .main .ais-page .ais-pagination-container .ais-Pagination .ais-Pagination-list .ais-Pagination-item {
    border: none; }
    .main .ais-page .ais-pagination-container .ais-Pagination .ais-Pagination-list .ais-Pagination-item .ais-Pagination-link {
      position: relative;
      text-decoration: none !important;
      font-size: 1.2em;
      color: #bdbdbd;
      transition: opacity 0.3s; }
    .main .ais-page .ais-pagination-container .ais-Pagination .ais-Pagination-list .ais-Pagination-item .ais-Pagination-link:hover {
      opacity: 0.6; }
    @media (max-width: 767px) {
      .main .ais-page .ais-pagination-container .ais-Pagination .ais-Pagination-list .ais-Pagination-item {
        width: 25px;
        height: 27px; } }
  .main .ais-page .ais-pagination-container .ais-Pagination .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--selected a {
    color: #004c97; }
    .main .ais-page .ais-pagination-container .ais-Pagination .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--selected a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 15%;
      width: 70%;
      height: 3px;
      background-color: #004c97; }

.default--holder {
  padding: 20px 0;
  /* Accounts */
  /* Order */
  /* Address */ }
  .default--holder .page__head {
    margin-bottom: 30px; }
  .default--holder .blog__inner,
  .default--holder .collection__items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1%; }
  .default--holder .article,
  .default--holder .product__item,
  .default--holder .collection__item {
    flex: 0 0 23%;
    width: 23%;
    margin: 0 1% 10px; }
  .default--holder .article__image,
  .default--holder .product__item-image,
  .default--holder .collection__item-image {
    display: block;
    padding-bottom: 100%;
    margin-bottom: 10px;
    background-size: cover;
    background-position: center center; }
  .default--holder .section__head {
    padding-bottom: 30px;
    text-align: center; }
  .default--holder .section__title {
    font-family: "Roboto Condensed", sans-serif; }
  .default--holder .section__inner {
    display: flex;
    justify-content: space-between; }
  .default--holder .section__aside {
    width: 20%;
    min-width: 200px;
    margin-right: 10px; }
  .default--holder .section__aside ul {
    margin: 0;
    list-style: none; }
  .default--holder .section__aside li {
    margin-bottom: 5px; }
  .default--holder .section__aside a {
    display: block;
    text-decoration: none;
    padding: 8px 12px;
    border: 0;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 6px;
    color: #fff;
    background: #000; }
    .default--holder .section__aside a:hover {
      background-color: #444; }
  .default--holder .section__aside .active a {
    background-color: #444; }
  .default--holder .section__content {
    width: 75%; }
  .default--holder .order th,
  .default--holder .order td {
    padding: 5px;
    text-align: left; }
  .default--holder .order-head {
    margin-bottom: 5px; }
  .default--holder .table-order--products {
    margin-bottom: 10px; }
  .default--holder .table-order--products th,
  .default--holder .table-order--products td {
    border: 1px solid #000;
    padding: 5px; }
  .default--holder .btn--new {
    padding: 8px 12px;
    border: 0;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 6px;
    color: #fff;
    background: #000; }
    .default--holder .btn--new:hover {
      background-color: #444; }
  .default--holder .form--address {
    padding: 10px 0; }
  .default--holder .addresses {
    display: flex;
    flex-wrap: wrap; }
  .default--holder .address {
    width: 49%;
    margin: 0 1% 20px 0; }
  .default--holder .address--default {
    width: 100%;
    margin: 0 0 20px; }
  .default--holder .address__actions a {
    margin-right: 5px; }
  @media (max-width: 1023px) {
    .default--holder .article,
    .default--holder .product__item,
    .default--holder .collection__item {
      flex: 0 0 31.3%;
      width: 31.3%; } }
  @media (max-width: 767px) {
    .default--holder {
      /* Accounts */ }
      .default--holder .article,
      .default--holder .product__item,
      .default--holder .collection__item {
        width: 48%;
        flex: 0 0 48%; }
      .default--holder table,
      .default--holder tr,
      .default--holder td,
      .default--holder tbody,
      .default--holder tfoot {
        display: block; }
      .default--holder th {
        display: none; }
      .default--holder td::before {
        content: attr(data-heading);
        display: block;
        margin-right: 5px;
        font-weight: 700; }
      .default--holder tr + tr {
        border-top: 1px solid #000; }
      .default--holder .addresses .address {
        width: 100%; }
      .default--holder .table-order--products td {
        padding: 5px 0;
        border: 0; }
      .default--holder .order-details__title {
        font-weight: 700; }
      .default--holder .table-order--products tfoot {
        padding-top: 5px;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000; }
      .default--holder .table-order--products tfoot tr,
      .default--holder .table-order--products tfoot td {
        border: 0;
        padding: 0; }
      .default--holder .table-order--products tfoot tr {
        margin-bottom: 5px; } }
  @media (max-width: 480px) {
    .default--holder {
      /* Accounts */ }
      .default--holder .blog__inner,
      .default--holder .collection__items {
        display: block;
        margin: 0; }
      .default--holder .article,
      .default--holder .product__item,
      .default--holder .collection__item {
        width: auto;
        margin: 0 0 10px; }
      .default--holder .section__inner {
        display: block; }
      .default--holder .section__aside {
        width: auto;
        margin-right: 0; }
      .default--holder .section__aside ul a {
        margin: 5px 0; }
      .default--holder .section__content {
        width: auto; }
      .default--holder .order-info .cols {
        display: block; } }

.paging--default {
  padding: 20px 0;
  text-align: center; }
  .paging--default ul,
  .paging--default li {
    display: inline-block;
    margin: 0 5px; }

/* Layout */
/* ------------------------------------------------------------ *\
  Container
\* ------------------------------------------------------------ */
.container {
  max-width: 1370px;
  padding-right: 15px;
  padding-left: 15px;
  margin: auto; }

/*  Container Small  */
.container--small {
  max-width: 930px; }

/*  Container Small alt  */
.container--small-alt {
  max-width: 1090px; }

/*  Container Medium  */
.container--medium {
  max-width: 1464px; }

/*  Container Fluid  */
.container--fluid {
  max-width: none; }

.container--gutter-alt {
  padding-right: 14px;
  padding-left: 14px; }

/* ------------------------------------------------------------ *\
  Content
\* ------------------------------------------------------------ */
.content {
  display: block; }

/* ------------------------------------------------------------ *\
  Footer
\* ------------------------------------------------------------ */
.footer {
  padding: 45px 0 22px;
  margin-top: 24px;
  background-color: #004c97;
  color: #fff;
  /* Tablet Portrait */
  /* Mobile */ }
  .footer .footer__inner {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 105px; }
  .footer .footer__inner--alt {
    justify-content: space-between;
    margin-bottom: 0; }
  .footer .footer__nav a:hover {
    opacity: 0.7; }
  .footer .footer__nav > ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: 0.05em; }
  .footer .footer__nav > ul > li {
    width: 232px;
    padding-right: 15px;
    margin-bottom: 15px; }
  .footer .footer__nav > ul > li > a {
    font-weight: 700;
    text-transform: uppercase; }
  .footer .footer__nav ul ul {
    padding-top: 12px; }
  .footer .footer__nav ul ul a {
    line-height: 1.71; }
  .footer .footer__nav a {
    text-decoration: none; }
  .footer .footer__socials {
    margin-right: 73px; }
  .footer .footer__newsletter {
    max-width: 343px;
    margin-top: 30px;
    width: 100%; }
    @media (min-width: 1301px) {
      .footer .footer__newsletter {
        margin-top: 0; } }
  @media (max-width: 1023px) {
    .footer .footer__newsletter {
      margin-top: 0; }
    .footer .footer__nav {
      width: 100%;
      margin-bottom: 30px; }
    .footer .footer__nav > ul > li {
      width: 33.33%; }
    .footer .footer__inner {
      margin-bottom: 30px; }
    .footer .footer__inner--alt {
      margin-bottom: 0; } }
  @media (max-width: 767px) {
    .footer {
      padding: 32px 0 12px; }
      .footer .footer__nav {
        margin-bottom: 4px; }
      .footer .footer__nav > ul > li {
        width: 50%;
        padding-left: 6px;
        margin-bottom: 39px; }
      .footer .footer__nav ul ul {
        font-size: 16px;
        line-height: 1.75; }
      .footer .footer__socials {
        margin: 0; }
      .footer .footer__inner {
        margin-bottom: 47px; }
      .footer .footer__inner--alt {
        margin-bottom: 0; } }

/* ------------------------------------------------------------ *\
  Header
\* ------------------------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.5s;
  /* Small Desktop */
  /* Tablet Portrait */
  /* Mobile */
  /* Center Menu */ }
  .header.is-hidden-header {
    transform: translateY(-100%); }
  .header.is-sticky {
    transform: translateY(0); }
  .header .header__inner {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 17px 0 4px; }
  .header .header__aside {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    align-items: center;
    margin-left: 20px; }
  .header .header__search {
    margin-right: 16px; }
  .header .header__aside > a:not(.header__btn) {
    width: 16px;
    height: 16px;
    margin-left: 27px;
    transition: opacity 0.3s; }
    .header .header__aside > a:not(.header__btn):hover {
      opacity: 0.6; }
  .header .header__aside svg {
    width: 16px;
    height: 16px; }
  .header .header__aside a path {
    fill: #212121; }
  @media (max-width: 1369px) {
    .header .header__search {
      margin-right: 10px; }
    .header .header__aside > a:not(.header__btn) {
      margin-left: 10px; } }
  @media (max-width: 1023px) {
    .header .header__inner {
      padding: 15px 0;
      justify-content: space-between;
      align-items: center; }
    .header .header__aside > a:not(:first-child) {
      margin-left: 20px; }
    .header .header__aside > a:first-child {
      margin-left: 0; }
    .header .header__search {
      visibility: hidden;
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 10;
      width: 100%;
      padding: 11px 20px;
      opacity: 0;
      background-color: #fff;
      transition: opacity 0.3s, visibility 0.3s; }
    .header .header__search.is-active {
      visibility: visible;
      opacity: 1; }
    .header .header__aside {
      width: calc(50% - 71px);
      margin-left: 0;
      justify-content: flex-start; }
    .header .header__aside ~ .header__aside {
      justify-content: flex-end; }
    .header .header__nav.is-active {
      height: calc(100vh - 66px); }
    .header .header--with-bar .header__nav.is-active {
      height: calc(100vh - 98px); }
    .header.is-hidden-header .header__nav.is-active {
      height: 100vh; } }
  @media (max-width: 767px) {
    .header .header__nav.is-active {
      height: calc(100vh - 56px); }
    .header.header--with-bar .header__nav.is-active {
      height: calc(100vh - 86px); }
    .header.is-hidden-header .header__nav.is-active {
      height: 100vh; }
    .header .header__aside > a:not(:first-child) {
      margin-left: 28px; } }
  @media (min-width: 1024px) {
    .header .header__inner--center {
      justify-content: space-between; }
      .header .header__inner--center .nav {
        margin-left: 0; }
      .header .header__inner--center .header__aside {
        margin-left: 0; } }

/* ------------------------------------------------------------ *\
	Shell
\* ------------------------------------------------------------ */
.shell {
  max-width: 1370px;
  padding-right: 15px;
  padding-left: 15px;
  margin: auto; }
  .shell--fluid {
    max-width: none; }

/* ------------------------------------------------------------ *\
  Sidebar
\* ------------------------------------------------------------ */
.sidebar {
  display: block; }

/* ------------------------------------------------------------ *\
  Wrapper
\* ------------------------------------------------------------ */
.wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  /* IE11 fix */
  /* Gift Card */ }
  .wrapper #shopify-section-footer {
    margin-top: auto; }
  .wrapper > * {
    flex: 0 0 auto; }
  .wrapper--gift-card {
    background-color: #f4f5f4; }

/* IE11 fix */
body {
  display: flex;
  flex-direction: column; }

/* Components */
/* ------------------------------------------------------------ *\
  Bar
\* ------------------------------------------------------------ */
.bar {
  background-color: #004c97;
  color: #fff; }

/* ------------------------------------------------------------ *\
  Block
\* ------------------------------------------------------------ */
.block {
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  height: 310px;
  padding: 24px 19px;
  font-size: 18px;
  line-height: 1.33;
  font-weight: 500;
  color: #fff;
  /*  Block Large  */
  /* Tablet Portrait */
  /* Mobile */ }
  .block + .block {
    margin-top: 27px; }
  .block:hover .block__image {
    background-color: #004c97;
    background-blend-mode: multiply, normal;
    transform: scale(1.05); }
  .block .block__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: background 0.3s, transform 0.3s; }
  .block .block__subtitle {
    margin-bottom: -6px;
    letter-spacing: 0.05em;
    text-transform: uppercase; }
  .block .block__title {
    margin-bottom: 1px;
    text-transform: uppercase;
    font-weight: 700; }
  .block .block__title--large {
    margin-bottom: 18px;
    font-size: 90px;
    line-height: 0.89; }
  .block .block__btn {
    display: inline-block;
    min-width: 190px;
    text-align: center; }
  .block:hover .block__btn {
    border-color: #fff;
    background-color: #fff;
    color: #212121; }
  .block p {
    margin-bottom: 20px;
    letter-spacing: 0.05em; }
  .block a {
    text-decoration: none;
    font-size: 0; }
  .block--large {
    height: 647px;
    padding: 44px 40px; }
    .block--large .block__subtitle {
      margin-bottom: 4px; }
    .block--large p {
      max-width: 413px;
      margin-bottom: 38px; }
  @media (max-width: 1023px) {
    .block {
      width: calc(50% - 26px);
      margin: 0 13px 13px; }
      .block--large {
        width: 100%; }
      .block + .block {
        margin-top: 0; } }
  @media (max-width: 767px) {
    .block {
      width: 100%;
      height: 67vw;
      padding: 16px 20px;
      margin: 0 0 10px;
      font-size: 12px;
      line-height: 1.17; }
      .block:hover .block__image {
        transform: scale(1); }
      .block .block__subtitle {
        margin-bottom: 0;
        letter-spacing: 0; }
      .block .block__title {
        margin-bottom: 10px;
        font-size: 36px; }
      .block p {
        max-width: none;
        margin-bottom: 18px; }
      .block br {
        display: none; } }

/* ------------------------------------------------------------ *\
  Blocks
\* ------------------------------------------------------------ */
.blocks {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 -13px 0 -14px;
  padding-bottom: 17px;
  /* Tablet Portrait */
  /* Mobile */ }
  .blocks .blocks__item {
    width: 437px;
    margin: 0 13px 0 14px; }
  .blocks .blocks__item--large {
    width: calc(100% - 491px); }
  @media (max-width: 1023px) {
    .blocks {
      margin: 0; }
      .blocks .blocks__item {
        display: flex;
        flex-flow: row wrap;
        justify-content: flex-start;
        align-items: flex-start;
        width: auto;
        margin: 0 -13px; }
      .blocks .blocks__item--large {
        width: 100%;
        margin: 0 0 26px; } }
  @media (max-width: 767px) {
    .blocks {
      padding: 0;
      margin: 0 -15px; }
      .blocks .blocks__item {
        width: 100%;
        margin: 0; }
      .blocks .blocks__item--large {
        margin-bottom: 10px; } }

/* ------------------------------------------------------------ *\
  Logo
\* ------------------------------------------------------------ */
.logo {
  display: inline-block;
  max-width: 141px;
  font-size: 0;
  line-height: 1;
  transition: transform 0.3s;
  /* Mobile */ }
  .logo img {
    width: 100%;
    height: auto; }
  .logo:hover {
    transform: scale(1.05, 1.05); }
  @media (max-width: 767px) {
    .logo {
      max-width: 122px; } }

/* ------------------------------------------------------------ *\
  Nav
\* ------------------------------------------------------------ */
.nav {
  display: block;
  margin-left: 91px;
  flex: 1 0;
  /* Small Desktop */
  /* Tablet Portrait */ }
  .nav > ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: 0.05em;
    margin: 0 -21px; }
  .nav .nav__link-level-1 {
    margin: 0 12px; }
  .nav .nav__link-level-1 > a {
    position: relative;
    display: block;
    padding: 11px 9px 17px;
    color: #333;
    font-weight: 700;
    text-transform: uppercase; }
    .nav .nav__link-level-1 > a::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 4px;
      background-color: #004c97;
      opacity: 0;
      transition: opacity 0.3s; }
  .nav .nav__link-level-2 > a {
    font-size: 16px;
    line-height: 1.5;
    color: #004c97;
    letter-spacing: 0.04em;
    font-weight: 700;
    text-transform: uppercase;
    transition: opacity 0.3s; }
    .nav .nav__link-level-2 > a:hover {
      opacity: 0.6; }
  .nav .nav__link-level-3 > a {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    transition: opacity 0.3s; }
    .nav .nav__link-level-3 > a:hover {
      opacity: 0.6; }
  .nav .nav__link-level-3 figure {
    width: 25px;
    height: 25px;
    margin: 1px 6px; }
  .nav .nav__dropdown {
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff; }
  .nav .nav__dropdown-inner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: stretch;
    padding: 0; }
  .nav .nav__dropdown-inner > ul {
    flex: 0 0 auto;
    -moz-columns: 2;
         columns: 2;
    -moz-column-gap: 0;
         column-gap: 0;
    padding: 35px 42px 0 0; }
  .nav .nav__dropdown-inner > ul.is-large {
    position: relative;
    -moz-columns: 3;
         columns: 3;
    -moz-column-gap: 65px;
         column-gap: 65px;
    max-width: 671px;
    width: 100%; }
    .nav .nav__dropdown-inner > ul.is-large::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      width: 1px;
      background-color: rgba(0, 0, 0, 0.1); }
  .nav .nav__dropdown-inner > ul.is-large > li {
    width: 220px; }
  .nav .nav__link-level-2 {
    width: 181px;
    margin-right: 51px; }
  .nav .nav__link-level-2 + .nav__link-level-2 {
    margin-top: 5px; }
  .nav .nav__dropdown-inner > ul > li {
    -moz-column-break-inside: avoid;
         break-inside: avoid; }
  .nav .nav__dropdown ul ul {
    padding: 7px 0 17px;
    font-size: 16px;
    line-height: 1.5;
    color: #212121;
    letter-spacing: 0.05em; }
  .nav .is-current > a::after,
  .nav .nav__link-level-1:hover > a::after {
    opacity: 1; }
  .nav .nav__item {
    flex: 0 0 auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    margin-right: -50px; }
  .nav .nav__item-image {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-end;
    width: 347px; }
  .nav .nav__item-image img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%; }
  .nav .nav__item-content {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    width: 369px;
    padding: 70px 23px 134px;
    text-align: center; }
  .nav .nav__item-title {
    margin-bottom: 17px;
    line-height: 1;
    color: #004c97;
    font-weight: 700;
    text-transform: uppercase; }
  .nav .nav__item-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #212121;
    letter-spacing: 0.05em; }
  .nav .nav__item-btn {
    margin-top: 50px; }
  .nav a {
    text-decoration: none; }
  @media (max-width: 1369px) {
    .nav {
      margin-left: 15px; }
      .nav > ul {
        margin: 0 -5px;
        font-size: 13px; }
      .nav .nav__link-level-1 {
        margin: 0 5px; }
      .nav .nav__link-level-1 > a {
        padding: 11px 2px 17px; }
      .nav .nav__dropdown-inner > ul {
        padding-right: 25px; }
      .nav .nav__item {
        flex: 1;
        margin-right: 0; }
      .nav .nav__item-image {
        width: 50%; }
      .nav .nav__item-content {
        width: 50%;
        padding: 30px 10px 30px; }
      .nav .nav__item-title {
        font-size: 36px; }
      .nav .nav__item-content p {
        font-size: 14px; }
      .nav .nav__item-btn {
        min-width: 144px; } }
  @media (max-width: 1023px) {
    .nav {
      overflow: hidden;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 0;
      border-top: 1px solid rgba(33, 33, 33, 0.1);
      margin: 0;
      background-color: #fff;
      transition: height 0.4s; }
      .nav.is-active {
        overflow-y: auto;
        height: calc(100vh - 86px); }
      .nav .nav__link-level-1 {
        position: relative;
        margin: 0 0 1px; }
      .nav .nav__link-level-1 > a {
        position: relative;
        display: block;
        width: 100%;
        padding: 20px 50px 17px 24px;
        background-color: #f2f2f2;
        font-size: 16px;
        line-height: 1.5;
        color: #212121; }
        .nav .nav__link-level-1 > a::after {
          display: none; }
      .nav .nav__arrow {
        position: absolute;
        right: 36px;
        top: 11px;
        z-index: 2;
        width: 40px;
        height: 40px;
        background-color: #dbdbdb; }
        .nav .nav__arrow::after {
          position: absolute;
          top: 50%;
          left: 50%;
          content: '';
          width: 7px;
          height: 7px;
          display: inline-block;
          vertical-align: middle;
          border-width: 0 0 2px 2px;
          border-style: solid;
          border-color: #212121;
          margin: 0 0 0 0;
          transform: rotate(0deg);
          transform-origin: 50% 50%;
          transition: all 0.3s;
          transform: translate(-50%, -50%) rotate(-135deg);
          transition: transform 0.3s; }
      .nav .is-active > .nav__arrow::after {
        transform: translate(-50%, -50%) rotate(-45deg); }
      .nav .nav__dropdown {
        position: static;
        display: none; }
      .nav .nav__dropdown-inner > ul,
      .nav .nav__dropdown-inner > ul.is-large {
        -moz-columns: 1;
             columns: 1;
        width: 100%;
        padding: 26px 0 0;
        max-width: none; }
      .nav .nav__dropdown-inner > ul.is-large::after {
        display: none; }
      .nav .nav__link-level-1.is-active > a::before {
        transform: translateY(-50%) rotate(-45deg); }
      .nav .nav__link-level-2,
      .nav .nav__dropdown-inner > ul.is-large > li {
        width: 100%; }
      .nav .nav__link-level-2 > a:not([class]) {
        display: block;
        margin-bottom: 20px;
        font-size: 14px; }
      .nav .nav__link-level-3 {
        margin-bottom: 15px; }
      .nav .nav__dropdown-inner {
        padding: 0 10px; }
      .nav .nav__dropdown ul ul {
        padding: 0 0 10px; }
      .nav .nav__dropdown-inner ul.is-large ul.is-large {
        padding: 0; }
      .nav .nav__dropdown-inner ul.is-large .is-hidden-text + ul.is-large {
        padding-bottom: 27px; }
      .nav > ul {
        display: block; } }

/* ------------------------------------------------------------ *\
  Slider Text
\* ------------------------------------------------------------ */
.slider-text {
  /* Mobile */ }
  .slider-text .slider__slide {
    padding: 5px 0;
    font-size: 14px;
    line-height: 1.43;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center; }
  .slider-text p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; }
  @media (max-width: 767px) {
    .slider-text .slider__slide {
      padding: 7px 0 3px;
      line-height: 1.14; } }

/* ------------------------------------------------------------ *\
  Slider Items
\* ------------------------------------------------------------ */
.slider-items {
  position: relative;
  /* Small Desktop */
  /* Tablet Portrait */
  /* Mobile */ }
  .slider-items .slider__slides {
    position: static;
    margin-left: -68px; }
  .slider-items .slider__slide {
    padding-left: 68px; }
  .slider-items figure {
    max-width: 80px; }
  .slider-items img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    transition: transform 0.3s; }
  .slider-items a {
    display: block;
    text-decoration: none; }
  .slider-items figure:hover img {
    transform: scale(1.05); }
  .slider-items .slick-list {
    padding: 18px 0 26px; }
  .slider-items .slick-dots {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    list-style: none outside none;
    margin: 20px 0 0 68px; }
  .slider-items .slick-dots li {
    margin: 0 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #77777a;
    opacity: 0.3;
    transition: opacity 0.3s; }
  .slider-items .slick-dots button {
    display: none; }
  .slider-items .slick-dots .slick-active,
  .slider-items .slick-dots li:hover {
    background-color: #77777a; }
  .slider-items .slick-arrow {
    position: absolute;
    top: 43px;
    z-index: 2;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 0;
    background: none;
    font-size: 0;
    line-height: 1;
    box-shadow: none;
    transition: opacity 0.3s; }
    .slider-items .slick-arrow:hover {
      opacity: 0.6; }
    .slider-items .slick-arrow::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 16px;
      height: 16px;
      border-bottom: 2px solid #004c97;
      border-right: 2px solid #004c97;
      transform: rotate(-45deg);
      transform-origin: right center; }
  .slider-items .slick-next {
    right: -35px; }
  .slider-items .slick-prev {
    left: -35px; }
    .slider-items .slick-prev::before {
      transform: rotate(45deg) scale(-1, 1); }
  @media (max-width: 1369px) {
    .slider-items .slick-list {
      padding: 18px 60px 26px; }
    .slider-items .slick-next {
      right: 0; }
    .slider-items .slick-prev {
      left: 0; } }
  @media (max-width: 1023px) {
    .slider-items .slider__slides {
      margin-left: 0; }
    .slider-items .slider__slide {
      padding: 0 15px; }
    .slider-items .slick-list {
      padding: 18px 15px 26px; }
    .slider-items .slick-arrow {
      top: 50%;
      transform: translateY(-50%); }
    .slider-items .slick-dots {
      margin-left: 0; }
    .slider-items figure {
      margin: 0 auto; } }
  @media (max-width: 767px) {
    .slider-items figure {
      max-width: 68px;
      margin-bottom: 10px; }
    .slider-items figure:hover img {
      transform: scale(1); }
    .slider-items img {
      max-height: 68px; }
    .slider-items .slick-dots {
      margin-top: 17px; } }

/* ------------------------------------------------------------ *\
  Section
\* ------------------------------------------------------------ */
.section {
  padding: 21px 0 8px;
  /* Mobile */ }
  .section .section__head {
    margin-bottom: 26px;
    text-align: center; }
  .section .section__title {
    margin-bottom: 4px;
    text-transform: uppercase; }
  .section .section__subtitle {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em; }
  @media (max-width: 767px) {
    .section .section__head {
      margin-bottom: 22px; }
    .section .section__title {
      margin-bottom: 2px; } }

/* ------------------------------------------------------------ *\
  Images
\* ------------------------------------------------------------ */
.images {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 -13px;
  /* Tablet Portrait */
  /* Mobile */ }
  .images .images__item {
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
    flex-flow: row wrap;
    width: calc(25% - 26px);
    height: 430px;
    padding: 34px 20px;
    margin: 0 13px 28px; }
  .images .images__item--large {
    width: calc(50% - 26px);
    height: 404px; }
  .images .images__item-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 0.3s; }
  .images .images__item:hover .images__item-image {
    transform: scale(1.05, 1.05); }
  .images a {
    width: 190px;
    max-width: 100%; }
  @media (max-width: 1023px) {
    .images {
      margin: 0 -10px; }
      .images .images__item {
        width: calc(50% - 20px);
        height: 40vw;
        padding: 15px;
        margin: 0 10px 20px; } }
  @media (max-width: 767px) {
    .images {
      position: static;
      padding: 0 5px;
      margin: 0 -5px 0 -6px; }
      .images .images__item {
        width: calc(50% - 11px);
        height: auto;
        padding: 0;
        margin: 0 5px 19px 6px; }
      .images .images__item--large {
        width: 100%; }
      .images .images__item-image {
        position: static;
        height: 53vw; }
      .images .images__item:hover .images__item-image {
        transform: scale(1); }
      .images .images__item--large .images__item-image {
        height: 55vw; }
      .images a {
        width: 100%;
        padding: 10px 14px;
        min-width: 0; } }

/* ------------------------------------------------------------ *\
  Tabs
\* ------------------------------------------------------------ */
.tabs {
  padding-bottom: 49px;
  /* Mobile */ }
  .tabs .tabs__nav ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    margin: 0 -29px 30px;
    font-size: 14px;
    color: #004c97;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    list-style: none outside none; }
  .tabs .tabs__nav li {
    margin: 0 29px; }
  .tabs .tabs__nav a {
    position: relative;
    display: block;
    padding-bottom: 5px;
    text-decoration: none; }
    .tabs .tabs__nav a:hover::after {
      width: 100%; }
    .tabs .tabs__nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 4px;
      background-color: currentColor;
      transition: width 0.3s; }
  .tabs .is-current > a::after {
    width: 100%; }
  .tabs .tab {
    display: none;
    text-align: center; }
  .tabs .tab.is-current {
    display: block; }
  .tabs .tab > a {
    min-width: 210px; }
  @media (max-width: 767px) {
    .tabs {
      padding-bottom: 56px; }
      .tabs .tabs__nav ul {
        overflow-x: auto;
        display: block;
        margin: 0 -15px 37px;
        line-height: 1.43;
        white-space: nowrap;
        text-align: center; }
      .tabs .tabs__nav li {
        display: inline-block;
        vertical-align: top;
        margin: 0 20px; } }

/* ------------------------------------------------------------ *\
  Product Item
\* ------------------------------------------------------------ */
.product-item {
  /* Tablet Portrait */
  /* Mobile */ }
  .product-item .product-item__badge-new {
    position: absolute;
    z-index: 1;
    transform: rotate(90deg);
    color: #fff;
    left: 1.25rem;
    top: -30px;
    width: auto;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.125rem 1.75rem 0.125rem 0.66rem;
    transform-origin: bottom left;
    border-radius: 0 0.2rem 0.2rem 0; }
    .product-item .product-item__badge-new::before, .product-item .product-item__badge-new::after {
      content: "";
      background-color: #0070cc;
      top: 0;
      left: 0;
      position: absolute;
      z-index: -1;
      border-radius: 0 0.2rem 0.2rem 0;
      width: calc(100% - 1rem);
      height: 100%;
      display: block; }
    .product-item .product-item__badge-new::before {
      transform: skewX(30deg); }
    .product-item .product-item__badge-new::after {
      transform: skewX(-30deg); }
  .product-item .product-item__image-holder {
    overflow: hidden;
    position: relative;
    display: block;
    height: 316px;
    margin-bottom: 6px;
    text-decoration: none; }
  .product-item .product-item__image-holder:hover .product-item__image {
    transform: scale(1.05); }
  .product-item .product-item__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-bottom: 6px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 0.3s; }
  .product-item .product-item__tags {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1; }
  .product-item .product-item__tags span {
    display: inline-block;
    padding: 4px 10px;
    margin-bottom: 10px;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    line-height: 1.33;
    letter-spacing: 0.05em; }
  .product-item .product-item__title {
    margin-bottom: 2px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center; }
  .product-item .product-item__title a {
    text-decoration: none;
    transition: opacity 0.3s;
    white-space: normal; }
    .product-item .product-item__title a:hover {
      opacity: 0.6; }
  .product-item .product-item__price {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.31;
    color: #004c97;
    letter-spacing: 0.05em;
    text-align: center; }
  .product-item .product-item__price ins {
    margin-left: 5px;
    color: #d43900;
    text-decoration: none; }
  .product-item .product-item__price del {
    color: #828282; }
  @media (max-width: 1023px) {
    .product-item .product-item__image-holder {
      height: 30vw; } }
  @media (max-width: 767px) {
    .product-item {
      /*  Product Item Large  */ }
      .product-item .product-item__image-holder {
        height: 272px;
        margin-bottom: 5px; }
      .product-item .product-item__title {
        padding: 0 22px;
        margin-bottom: 5px;
        font-size: 14px;
        line-height: 1.29; }
      .product-item .product-item__price {
        font-size: 14px;
        line-height: 1.29; }
      .product-item .product-item__image-holder:hover .product-item__image {
        transform: scale(1); }
      .product-item--large .product-item__image-holder {
        height: 324px;
        margin-bottom: 10px; }
      .product-item--large .product-item__title {
        margin-bottom: 14px; } }

.product-item--alt {
  /* Mobile */ }
  @media (max-width: 767px) {
    .product-item--alt .product-item__image-holder {
      height: 328px;
      margin-bottom: 6px; }
    .product-item--alt .product-item__title {
      margin-bottom: 15px; } }

/* ------------------------------------------------------------ *\
  Slider Four Items
\* ------------------------------------------------------------ */
.slider-four-items {
  position: relative;
  margin-bottom: 27px;
  /* Small Desktop */
  /* Mobile */ }
  .slider-four-items .slider__slides {
    position: static;
    margin-left: -25px; }
  .slider-four-items .slider__slide {
    padding-left: 25px; }
  .slider-four-items .slick-arrow {
    position: absolute;
    top: 109px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 0;
    background: none;
    font-size: 0;
    transition: opacity 0.3s;
    z-index: 1; }
    .slider-four-items .slick-arrow:hover {
      opacity: 0.6; }
    .slider-four-items .slick-arrow::after {
      content: '';
      width: 14px;
      height: 14px;
      display: inline-block;
      vertical-align: middle;
      border-width: 0 0 3px 3px;
      border-style: solid;
      border-color: #004c97;
      margin: 0 0 0 0;
      transform: rotate(-135deg);
      transform-origin: 50% 50%;
      transition: all 0.3s; }
  .slider-four-items .slick-prev {
    left: -25px; }
    @media (min-width: 1441px) {
      .slider-four-items .slick-prev {
        left: -56px; } }
    .slider-four-items .slick-prev::after {
      content: '';
      width: 14px;
      height: 14px;
      display: inline-block;
      vertical-align: middle;
      border-width: 0 0 3px 3px;
      border-style: solid;
      border-color: #004c97;
      margin: 0 0 0 0;
      transform: rotate(45deg);
      transform-origin: 50% 50%;
      transition: all 0.3s; }
  .slider-four-items .slick-next {
    right: -56px; }
  @media (max-width: 1450px) {
    .slider-four-items .slider__slides {
      padding: 0 30px;
      margin: 0; }
    .slider-four-items .slider__slide {
      padding: 0 15px; }
    .slider-four-items .slick-list {
      position: relative; }
    .slider-four-items .slick-prev {
      left: 0; }
    .slider-four-items .slick-next {
      right: 0; } }
  @media (max-width: 767px) {
    .slider-four-items {
      margin-bottom: 28px; }
      .slider-four-items .slider__slides {
        overflow-x: auto;
        padding: 0 0 30px;
        white-space: nowrap; }
      .slider-four-items .slider__slides::-webkit-scrollbar {
        width: 100%;
        height: 5px; }
      .slider-four-items .slider__slides::-webkit-scrollbar-track {
        background-color: #bdbdbd; }
      .slider-four-items .slider__slides::-webkit-scrollbar-thumb {
        background-color: #004c97; }
      .slider-four-items .slider__slide {
        display: inline-block;
        min-width: 287px;
        max-width: 287px;
        padding: 0 5px;
        vertical-align: top; }
      .slider-four-items .slick-dots {
        display: flex;
        flex-flow: row wrap;
        justify-content: flex-start;
        align-self: flex-start;
        margin: 28px -15px 0 5px;
        background-color: #bdbdbd;
        list-style: none outside none; }
      .slider-four-items .slick-dots li {
        flex: 1;
        height: 5px;
        transition: background 0.3s; }
      .slider-four-items .slick-dots button {
        display: none; }
      .slider-four-items .slick-dots .slick-active {
        background-color: #004c97; } }

/* ------------------------------------------------------------ *\
  Section Columns
\* ------------------------------------------------------------ */
.section-columns {
  padding-bottom: 7px;
  /* Small Desktop */
  /* Tablet Portrait */
  /* Mobile */ }
  .section-columns .section__inner {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0 -50px; }
  .section-columns .section__inner--inverse {
    margin: 0; }
  .section-columns .section__inner--inverse .section__content {
    width: calc(100% - 692px); }
  .section-columns .section__inner--inverse .section__image {
    width: 692px;
    min-height: 692px; }
  .section-columns .section__content {
    display: flex;
    flex-flow: row nowrap;
    width: 50%;
    min-height: 720px;
    border: 1px solid #fff;
    border-right: none; }
    .section-columns .section__content::after {
      content: '';
      width: 0;
      min-height: inherit;
      font-size: 0;
      line-height: 1; }
  .section-columns .section__content--inverse {
    min-height: 629px; }
  .section-columns .section__title {
    margin-bottom: 26px;
    line-height: 1;
    text-transform: uppercase; }
  .section-columns .section__subtitle {
    margin: -5px 0 25px;
    line-height: 1.14;
    text-transform: uppercase; }
  .section-columns .section__image {
    width: 50%;
    border: 1px solid #fff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; }
  .section-columns .section__btn:first-child:last-child {
    width: 220px;
    max-width: 100%; }
  .section-columns .section__entry {
    max-width: 529px;
    padding: 20px 0; }
  .section-columns .section__actions {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start; }
  .section-columns .section__btn + .section__btn {
    margin-left: 14px; }
  .section-columns p {
    margin-bottom: 56px;
    font-family: "Roboto", sans-serif; }
  @media (max-width: 1369px) {
    .section-columns .section__content--inverse {
      padding-right: 20px; }
    .section-columns .section__actions {
      margin: 0 -5px; }
    .section-columns .section__btn,
    .section-columns .section__btn + .section__btn {
      margin: 5px; } }
  @media (max-width: 1023px) {
    .section-columns .section__content {
      min-height: 0;
      padding: 10vw 0; }
    .section-columns .section__inner--inverse .section__content {
      width: 50%;
      padding: 20px 10px; }
    .section-columns .section__inner--inverse .section__image {
      align-self: center;
      width: 50%;
      min-height: 56.25vw; } }
  @media (max-width: 767px) {
    .section-columns .section__image {
      order: 1;
      width: 100%;
      height: 100vw;
      border: none; }
    .section-columns .section__content {
      order: 2;
      width: 100%;
      padding: 40px 15px 33px; }
    .section-columns .section__entry {
      padding: 0;
      width: 100%;
      max-width: none;
      text-align: center; }
    .section-columns .section__title {
      margin-bottom: 15px; }
    .section-columns .section__actions {
      justify-content: center; }
    .section-columns .section__inner--inverse .section__content {
      order: 1;
      width: 100%;
      padding-left: 0;
      padding-right: 0;
      margin-bottom: 30px; }
    .section-columns .section__inner--inverse .section__image {
      width: 100%;
      order: 2;
      height: 89vw;
      margin: 0 5px 18px; }
    .section-columns .section__inner--inverse .section__actions {
      order: 3;
      display: block;
      width: 100%;
      text-align: center; }
    .section-columns .section__inner--inverse .section__btn {
      min-width: 208px; }
    .section-columns .section__subtitle {
      margin: 16px 0 23px;
      font-size: 16px;
      line-height: 1.5; }
    .section-columns .section__inner--inverse br {
      display: none; }
    .section-columns p {
      margin-bottom: 24px;
      letter-spacing: 0.05em; }
    .section-columns br:first-child:last-child {
      display: none; }
    .section-columns img {
      width: 100%;
      height: auto; } }

/* ------------------------------------------------------------ *\
  Products
\* ------------------------------------------------------------ */
.products {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 30px;
  margin: 0 -12px 0 -13px;
  /* Tablet Portrait */
  /* Mobile */ }
  .products .products__item {
    width: calc(25% - 25px);
    margin: 0 12px 85px 13px; }
  .products .products__item--collection {
    width: calc(33.33% - 26px);
    margin: 0 13px 85px; }
  .products .products__item--fluid {
    min-width: 100%;
    text-align: center; }
  @media (max-width: 1023px) {
    .products .products__item--collection {
      width: calc(50% - 26px); } }
  @media (max-width: 767px) {
    .products {
      justify-content: center;
      padding-bottom: 13px; }
      .products .products__item {
        width: 100%;
        max-width: 335px;
        margin-bottom: 37px; } }

.products--alt {
  margin: 0 -22px;
  /* Tablet Portrait */
  /* Mobile */ }
  .products--alt .products__item {
    width: calc(25% - 44px);
    margin: 0 22px 85px; }
  @media (max-width: 1023px) {
    .products--alt .products__item {
      width: calc(50% - 44px); } }
  @media (max-width: 767px) {
    .products--alt .products__item {
      width: calc(100% - 44px);
      margin: 0 22px 32px; } }

/* ------------------------------------------------------------ *\
  Section Fluid
\* ------------------------------------------------------------ */
.section-fluid {
  position: relative;
  padding-bottom: 141px;
  /* Tablet Portrait */
  /* Mobile */ }
  .section-fluid .section__head {
    position: absolute;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 1;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    transition: opacity 0.3s, visibility 0.3s; }
  .section-fluid .section__image {
    position: absolute;
    top: -103px;
    left: -1px;
    z-index: 5;
    width: 37.72222vw;
    transition: opacity 0.3s, visibility 0.3s; }
  .section-fluid.has-hidden-elements .section__head,
  .section-fluid.has-hidden-elements .section__image {
    overflow: hidden;
    visibility: hidden;
    opacity: 0; }
  @media (max-width: 1023px) {
    .section-fluid .section__image {
      top: auto;
      bottom: 6vw;
      left: -5vw; } }
  @media (max-width: 767px) {
    .section-fluid {
      padding-bottom: 134px; }
      .section-fluid .section__head {
        top: 24px; }
      .section-fluid .section__image {
        bottom: 51px;
        left: -7px;
        width: 275px; }
      .section-fluid .section__image img {
        max-width: 100%;
        max-height: 406px;
        width: auto;
        height: auto; } }

/* ------------------------------------------------------------ *\
  Video
\* ------------------------------------------------------------ */
.video {
  position: relative;
  padding-bottom: 41.75%;
  height: 0;
  transition: padding 0.3s;
  /* Tablet Portrait */
  /* Mobile */ }
  .video .video__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; }
  .video .video__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 129px;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s, visibility 0.3s; }
  .video .video__play-btn span {
    display: block;
    margin: 20px 0 1px;
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: 0.05em;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    transition: opacity 0.3s, visibility 0.3s; }
  .video.has-video-playing {
    padding-bottom: 56.25%; }
  .video.has-video-playing .video__image,
  .video.has-video-playing .video__play-btn {
    overflow: hidden;
    visibility: hidden;
    opacity: 0; }
  .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  @media (max-width: 1023px) {
    .video {
      padding-bottom: 56.25%; } }
  @media (max-width: 767px) {
    .video {
      min-height: 600px;
      transition: padding 0.3s, min-height 0.3s; }
      .video .video__play-btn {
        width: 106px;
        margin-top: -79px; }
      .video .video__play-btn svg {
        width: 106px;
        height: 106px; }
      .video .video__play-btn span {
        margin: 13px 0 0;
        line-height: 1.14; }
      .video.has-video-playing {
        min-height: 0; } }

/* ------------------------------------------------------------ *\
  Section Fluid Image
\* ------------------------------------------------------------ */
.section-fluid-image {
  position: relative;
  margin-bottom: 28px;
  background-color: #ebebeb;
  /* Tablet Portrait */
  /* Mobile */ }
  .section-fluid-image .section__container {
    position: relative;
    height: 100%; }
  .section-fluid-image .section__content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%; }
  .section-fluid-image .section__content-inner {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    height: 100%;
    padding: 30px 65px; }
  .section-fluid-image .section__entry {
    max-width: 376px; }
  .section-fluid-image .section__title {
    margin-bottom: 15px;
    line-height: 1;
    color: inherit;
    text-transform: uppercase; }
  .section-fluid-image .section__subtitle {
    margin-bottom: 32px;
    font-family: "Roboto", sans-serif;
    line-height: 1.33;
    font-weight: 500;
    color: inherit;
    letter-spacing: 0.05em; }
  .section-fluid-image .section__btn {
    min-width: 250px; }
  .section-fluid-image img {
    width: 100%;
    height: auto; }
  @media (max-width: 1023px) {
    .section-fluid-image .section__content-inner {
      padding: 20px 0; } }
  @media (max-width: 767px) {
    .section-fluid-image .section__content {
      top: auto;
      bottom: 0;
      height: auto; }
    .section-fluid-image .section__content-inner {
      padding: 25px 0; }
    .section-fluid-image .section__entry {
      width: 100%;
      max-width: none;
      text-align: center; }
    .section-fluid-image .section__title {
      margin-bottom: 13px; }
    .section-fluid-image .section__subtitle {
      margin-bottom: 19px;
      font-size: 12px;
      line-height: 1.17; }
    .section-fluid-image br {
      display: none; } }

/* ------------------------------------------------------------ *\
  Socials
\* ------------------------------------------------------------ */
.socials {
  /* Mobile */ }
  .socials h6 {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: 0.05em;
    text-transform: uppercase; }
  .socials ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    list-style: none outside none;
    margin: 0 -9px 12px; }
  .socials li {
    margin: 0 9px; }
  .socials ul a {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    width: 15px;
    height: 15px;
    transition: opacity 0.3s; }
    .socials ul a:hover {
      opacity: 0.7; }
  .socials p {
    font-size: 14px;
    letter-spacing: 0.05em; }
  .socials p a {
    text-decoration: none;
    transition: opacity 0.3s; }
    .socials p a:hover {
      opacity: 0.7; }
  @media (max-width: 767px) {
    .socials h6 {
      margin-bottom: 4px; } }

/* ------------------------------------------------------------ *\
  Newsletter
\* ------------------------------------------------------------ */
.newsletter {
  color: #fff;
  /*  Newsletter Alt  */
  /* Mobile */ }
  .newsletter .newsletter__title {
    margin-bottom: 11px;
    font-size: 14px;
    line-height: 1.43;
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase; }
  .newsletter .newsletter__subtitle {
    max-width: 296px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.05em;
    font-weight: 400; }
  .newsletter [class*='View__FormView'],
  .newsletter [class*='FormComponent'] {
    padding: 0 !important; }
  .newsletter [class*='Button__Form'] {
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    margin-left: 3px !important;
    border-radius: 0 !important;
    background: #fff url('//cdn.shopify.com/s/files/1/0279/0234/5304/t/157/assets/ico-arrow.png?v=13729406655794963952') center center/7px 16px no-repeat !important;
    font-size: 0 !important;
    transition: opacity 0.3s !important; }
    .newsletter [class*='Button__Form']:hover {
      opacity: 0.8; }
  .newsletter [class*='TextInput__Form'] {
    height: 44px !important;
    padding: 0 15px !important;
    border-radius: 0 !important;
    border-color: #fff !important;
    font-family: "Roboto", sans-serif !important;
    font-size: 16px !important;
    color: #212121 !important;
    font-weight: 400 !important;
    box-shadow: none !important; }
    .newsletter [class*='TextInput__Form']::-moz-placeholder {
      color: rgba(33, 33, 33, 0.5) !important; }
    .newsletter [class*='TextInput__Form']:-ms-input-placeholder {
      color: rgba(33, 33, 33, 0.5) !important; }
    .newsletter [class*='TextInput__Form']::placeholder {
      color: rgba(33, 33, 33, 0.5) !important; }
  .newsletter--alt .newsletter__title {
    font-size: 28px;
    line-height: 1.14;
    letter-spacing: 0; }
  .newsletter--alt .newsletter__subtitle {
    margin-bottom: 21px;
    font-size: 16px;
    line-height: 1.5; }
  @media (max-width: 767px) {
    .newsletter {
      padding: 0 5px;
      /*  Newsletter Alt  */ }
      .newsletter .newsletter__title {
        margin-bottom: 14px;
        line-height: 1.14; }
      .newsletter .newsletter__subtitle {
        margin-bottom: 16px;
        font-size: 16px;
        line-height: 1.75; }
      .newsletter--alt {
        padding: 0; }
      .newsletter--alt .newsletter__title {
        font-size: 24px;
        line-height: 1.14;
        letter-spacing: 0; }
      .newsletter--alt .newsletter__subtitle {
        display: none;
        margin-bottom: 29px;
        font-family: "Roboto", sans-serif;
        font-size: 14px;
        line-height: 1.5; } }

/* ------------------------------------------------------------ *\
  List Links
\* ------------------------------------------------------------ */
.list-links {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 -14px;
  font-size: 14px;
  line-height: 1.71;
  font-weight: 400;
  letter-spacing: 0.05em;
  /* Mobile */ }
  .list-links li {
    margin: 0 14px; }
  .list-links a {
    opacity: 0.6;
    text-decoration: none;
    transition: opacity 0.3s; }
    .list-links a:hover {
      opacity: 1; }
  @media (max-width: 767px) {
    .list-links {
      margin: 0 -11px 3px;
      font-size: 12px;
      line-height: 1.3; }
      .list-links li {
        margin: 0 17px; } }

/* ------------------------------------------------------------ *\
  Copyright
\* ------------------------------------------------------------ */
.copyright {
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.05em;
  opacity: 0.6;
  /* Mobile */ }
  @media (max-width: 767px) {
    .copyright {
      padding: 0 5px;
      font-size: 12px;
      line-height: 2.33; } }

/* ------------------------------------------------------------ *\
  Popup
\* ------------------------------------------------------------ */
.popup {
  visibility: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  flex-flow: row wrap;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  /*  Popup Small  */
  /*  Popup cookies  */
  /* Mobile */ }
  .popup.is-active {
    visibility: visible;
    z-index: 9999;
    opacity: 1; }
  .popup .popup__close {
    position: absolute;
    top: 15px;
    right: 15px; }
  .popup .popup__content {
    position: relative;
    max-width: 100%; }
  .popup--small .popup__content {
    width: 384px;
    padding: 23px 20px;
    border: 1px solid #fff;
    background-color: #004c97; }
  .popup--cookies {
    left: auto;
    right: 0; }
    .popup--cookies .popup__title {
      margin-bottom: 9px;
      font-family: "Roboto Condensed", sans-serif;
      font-size: 14px;
      color: #000;
      letter-spacing: 0.05em;
      text-transform: uppercase; }
    .popup--cookies .popup__content {
      width: 289px;
      padding: 27px 29px 31px;
      background-color: #f4f5f4;
      font-family: "Roboto", sans-serif;
      font-size: 12px;
      line-height: 1.33;
      text-align: center;
      letter-spacing: 0.05em; }
    .popup--cookies p {
      margin-bottom: 10px; }
    .popup--cookies p:first-of-type {
      margin-bottom: 29px; }
    .popup--cookies path {
      stroke: #212121; }
    .popup--cookies a:hover {
      text-decoration: none; }
  @media (max-width: 767px) {
    .popup {
      /*  Popup Small  */
      /*  Popup cookies  */ }
      .popup--small {
        bottom: 0;
        padding: 0;
        width: 100%; }
      .popup--small .popup__content {
        width: 100%;
        padding: 23px 20px;
        background-color: #004c97; }
      .popup--cookies {
        bottom: auto;
        top: 0;
        padding: 0;
        width: 100%; }
      .popup--cookies .popup__content {
        display: flex;
        flex-flow: row nowrap;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        padding: 9px 55px 8px 24px;
        text-align: left; }
      .popup--cookies .popup__title {
        overflow: hidden;
        flex: 0 0 auto;
        margin: 0 29px 0 0;
        white-space: nowrap;
        text-overflow: ellipsis; }
      .popup--cookies p {
        overflow: hidden;
        flex: 0 0 auto;
        margin-bottom: 0;
        white-space: nowrap;
        text-overflow: ellipsis; }
      .popup--cookies .popup__close {
        top: 11px;
        right: 18px; } }

.crop-modal {
  z-index: 99999999999 !important; }

/* ------------------------------------------------------------ *\
  Button Menu
\* ------------------------------------------------------------ */
.btn-menu {
  position: relative;
  display: block;
  width: 30px;
  height: 31px;
  transition: 0.3s all ease-in-out; }
  .btn-menu.is-active span:nth-child(2) {
    opacity: 0; }
  .btn-menu.is-active span:nth-child(1),
  .btn-menu.is-active span:nth-child(3) {
    top: 14px;
    transform: rotate(45deg); }
  .btn-menu.is-active span:nth-child(3) {
    transform: rotate(-45deg); }
  .btn-menu span {
    position: absolute;
    height: 2px;
    width: 20px;
    margin-left: 5px;
    background-color: #212121; }
    .btn-menu span:nth-child(1) {
      top: 9px; }
    .btn-menu span:nth-child(2) {
      top: 14px; }
    .btn-menu span:nth-child(3) {
      top: 19px; }

/* ------------------------------------------------------------ *\
  Hero Small
\* ------------------------------------------------------------ */
.hero-small {
  position: relative;
  z-index: 1;
  min-height: 370px;
  padding: 32px 0;
  /* Tablet Portrait */
  /* Mobile */ }
  .hero-small .hero__image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; }
  .hero-small figure {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    max-width: 506px;
    min-height: 306px;
    margin: 0 auto; }
    .hero-small figure::before {
      content: '';
      width: 0;
      font-size: 0;
      line-height: 1; }
  @media (max-width: 1023px) {
    .hero-small {
      min-height: 250px; } }
  @media (max-width: 767px) {
    .hero-small {
      min-height: 95px;
      padding: 20px 0; }
      .hero-small figure {
        max-width: 250px;
        min-height: 55px; } }

/* ------------------------------------------------------------ *\
  Bar Gray
\* ------------------------------------------------------------ */
.bar-gray {
  padding: 11px 0 9px;
  background-color: #f4f5f4;
  /* Mobile */ }
  @media (max-width: 767px) {
    .bar-gray {
      padding: 0;
      background: none; } }

/* ------------------------------------------------------------ *\
  List Links Alt
\* ------------------------------------------------------------ */
.list-links-alt {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin: 0 -18px;
  font-size: 14px;
  line-height: 1.43;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  /* Mobile */ }
  .list-links-alt li {
    position: relative;
    padding: 0 18px; }
  .list-links-alt li + li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -1px;
    width: 2px;
    height: 10px;
    background-color: #212121;
    transform: translateY(-50%); }
  .list-links-alt a {
    text-decoration: none;
    transition: opacity 0.3s; }
    .list-links-alt a:hover {
      opacity: 0.7; }
  @media (max-width: 767px) {
    .list-links-alt {
      display: block;
      margin: 0 -15px;
      font-size: 16px;
      line-height: 1.5;
      letter-spacing: 0; }
      .list-links-alt li {
        padding: 0;
        margin-top: 1px; }
      .list-links-alt li + li::before {
        display: none; }
      .list-links-alt a {
        display: block;
        padding: 20px 5px 19px;
        background-color: #f2f2f2;
        text-align: center; } }

/* ------------------------------------------------------------ *\
  Section Text
\* ------------------------------------------------------------ */
.section-text {
  padding: 34px 0;
  text-align: center;
  /* Mobile */ }
  .section-text--bottom {
    padding: 0 0 40px 0; }
  .section-text .section__content {
    max-width: 874px;
    margin: 0 auto; }
  .section-text .section__title {
    margin-bottom: 16px; }
  .section-text .section__subtitle {
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase; }
  .section-text p {
    font-family: "Roboto", sans-serif;
    letter-spacing: 0.05em; }
  @media (max-width: 767px) {
    .section-text {
      padding-bottom: 0; }
      .section-text .section__title {
        margin-bottom: 25px; }
      .section-text .section__subtitle {
        margin-bottom: 18px;
        letter-spacing: 0; }
      .section-text p {
        padding: 0 5px; } }

/* ------------------------------------------------------------ *\
  Section Default
\* ------------------------------------------------------------ */
.section-default {
  padding: 42px 0 33px;
  /* Mobile */ }
  .section-default .section__head {
    margin-bottom: 25px;
    text-align: center; }
  .section-default .section__title {
    text-transform: uppercase; }
  @media (max-width: 767px) {
    .section-default {
      padding: 45px 0 0; }
      .section-default .section__head {
        margin-bottom: 20px; } }

/* ------------------------------------------------------------ *\
  List Logos
\* ------------------------------------------------------------ */
.list-logos {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  padding-top: 38px;
  margin: 0 -21px -39px;
  /* Small Desktop */
  /* Mobile */ }
  .list-logos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 21px;
    right: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1); }
  .list-logos li {
    width: 85px;
    margin: 0 20px 39px; }
  .list-logos figure {
    position: relative; }
  .list-logos a {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    text-decoration: none; }
  .list-logos span {
    position: absolute;
    top: -10px;
    left: -10px;
    bottom: -10px;
    right: -10px;
    z-index: 1;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.3;
    color: #212121;
    font-weight: 700;
    transition: opacity 0.3s;
    text-shadow: 0 0 4px #fff;
    text-align: center;
    text-transform: uppercase;
    opacity: 0; }
  .list-logos img {
    width: 100%;
    height: auto;
    transition: transform 0.3s; }
  .list-logos li:hover img {
    transform: scale(1.05); }
  .list-logos li:hover span {
    opacity: 1; }
  @media (max-width: 1369px) {
    .list-logos {
      justify-content: center; } }
  @media (max-width: 767px) {
    .list-logos {
      padding: 31px 10px 0;
      margin: 0 -10px -20px; }
      .list-logos li {
        width: calc(25% - 20px);
        margin: 0 10px 20px; }
      .list-logos li:hover img {
        transform: scale(1); }
      .list-logos figure {
        max-width: 65px;
        margin: 0 auto; } }

/* ------------------------------------------------------------ *\
  List Images
\* ------------------------------------------------------------ */
.list-images {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 -13px -13px;
  /*  Small  */
  /* Small Desktop */
  /* Tablet Portrait */
  /* Mobile */ }
  .list-images li {
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-end;
    width: 315px;
    height: 430px;
    padding: 34px;
    margin: 0 13px 13px; }
  .list-images div {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 0.3s; }
  .list-images span {
    width: 190px;
    max-width: 100%;
    padding-right: 5px;
    padding-left: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }
  .list-images li:hover div {
    transform: scale(1.05); }
  .list-images a {
    display: block;
    text-decoration: none; }
  .list-images--small {
    margin: 0 -13px 5px -14px; }
    .list-images--small li {
      height: 315px;
      margin-bottom: 26px; }
    .list-images--small span {
      box-shadow: none; }
  @media (max-width: 1369px) {
    .list-images li {
      width: calc(25% - 26px);
      height: 30vw; } }
  @media (max-width: 1023px) {
    .list-images li {
      width: calc(50% - 26px);
      margin-bottom: 26px;
      height: 60vw; } }
  @media (max-width: 767px) {
    .list-images {
      padding-top: 18px;
      margin: 0 -5px -20px -6px;
      /*  Small  */ }
      .list-images li {
        width: calc(50% - 11px);
        height: auto;
        padding: 0;
        margin: 0 5px 24px 6px; }
      .list-images li:hover div {
        transform: scale(1); }
      .list-images div {
        position: static;
        height: 59vw; }
      .list-images span {
        padding: 9px 5px;
        width: auto;
        box-shadow: none; }
      .list-images--small {
        padding: 16px 0 50px; }
      .list-images--small li {
        margin-bottom: 10px; }
      .list-images--small div {
        height: 43vw; } }

/* ------------------------------------------------------------ *\
  Section Grid
\* ------------------------------------------------------------ */
.section-grid {
  overflow: hidden;
  margin-bottom: -23px;
  /*  Modifiers  */
  /* Small Desktop */
  /* Mobile */ }
  .section-grid .section__inner {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
    border-collapse: collapse;
    margin: 0 -50px; }
  .section-grid .section__inner--reverse .section__image {
    order: 2; }
  .section-grid .section__inner--reverse .section__content {
    order: 1; }
  .section-grid .section__image {
    width: 50%;
    min-height: 722px;
    border: 1px solid #fff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; }
  .section-grid .section__content {
    display: flex;
    flex-flow: row wrap;
    width: 50%;
    padding: 30px;
    border: 1px solid #fff; }
  .section-grid .section__entry {
    max-width: 413px;
    margin-left: 20px;
    text-align: left; }
  .section-grid .section__entry--right {
    text-align: right; }
  .section-grid .section__title {
    margin-bottom: 29px;
    line-height: 1;
    text-transform: uppercase; }
  .section-grid p {
    margin-bottom: 57px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.05em; }
  .section-grid a {
    min-width: 190px; }
  .section-grid--alt {
    margin-bottom: 0; }
  @media (max-width: 1369px) {
    .section-grid .section__inner {
      margin: 0 -15px; } }
  @media (max-width: 767px) {
    .section-grid {
      margin-bottom: -24px;
      /*  Modifiers  */ }
      .section-grid .section__inner {
        display: block; }
      .section-grid .section__image {
        width: 100%;
        height: 100vw;
        min-height: 0;
        border: none;
        margin-bottom: 2px; }
      .section-grid .section__content {
        width: 100%;
        padding: 31px 35px;
        border: none; }
      .section-grid .section__entry {
        max-width: none;
        margin: 0; }
      .section-grid .section__title {
        margin-bottom: 18px;
        line-height: 0.89; }
      .section-grid p {
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.29; }
      .section-grid--alt {
        margin-bottom: 0; } }

/* ------------------------------------------------------------ *\
  Breadcrumbs
\* ------------------------------------------------------------ */
.breadcrumbs {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  padding: 11px 0 8px;
  background-color: #f4f5f4;
  font-size: 14px;
  line-height: 1.71;
  color: #828282;
  letter-spacing: 0.05em;
  /*  Alt  */
  /* Mobile */ }
  .breadcrumbs .breadcrumbs__divider {
    margin: 0 8px; }
  .breadcrumbs a {
    text-decoration: none;
    transition: opacity 0.3s; }
    .breadcrumbs a:hover {
      opacity: 0.6; }
  .breadcrumbs span {
    color: #212121; }
  .breadcrumbs--alt {
    justify-content: flex-start;
    margin: 0;
    background: none; }
    .breadcrumbs--alt .breadcrumbs__divider {
      margin: 0 14px; }
  @media (max-width: 767px) {
    .breadcrumbs {
      padding-top: 9px; } }

/* ------------------------------------------------------------ *\
  Section Collection
\* ------------------------------------------------------------ */
.section-collection {
  padding-bottom: 36px;
  /* Tablet Portrait */
  /* Mobile */ }
  .section-collection .section__head {
    position: relative;
    z-index: 1;
    margin: 0 -50px;
    background-color: #004c97; }
  .section-collection .section__head-inner {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    max-width: 513px;
    padding: 50px;
    font-family: "Roboto", sans-serif;
    color: #fff;
    letter-spacing: 0.05em; }
  .section-collection .section__head-inner--center {
    display: block;
    max-width: 778px;
    padding: 80px 50px;
    margin: 0 auto;
    text-align: center; }
  .section-collection .section__head-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right center; }
  .section-collection .section__head-image img {
    width: 100%;
    height: auto; }
  .section-collection .section__title {
    margin-bottom: 14px;
    font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0; }
  .section-collection .section__body {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start; }
  .section-collection .section__body-inner {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 22px 0 26px; }
  .section-collection .section__count {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.5; }
  .section-collection .section__aside {
    width: 297px;
    margin-right: 44px;
    margin-left: -2px; }
  .section-collection .section__content {
    width: calc(100% - 341px); }
  .section-collection .section__head + .section__body {
    padding-top: 30px; }
  .section-collection .section__body.no-products-section {
    align-items: unset;
    position: relative; }
    .section-collection .section__body.no-products-section .section__aside {
      position: relative;
      z-index: 2; }
    .section-collection .section__body.no-products-section .section__content {
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0; }
      @media (max-width: 767px) {
        .section-collection .section__body.no-products-section .section__content {
          position: relative;
          margin-top: 60px; } }
    .section-collection .section__body.no-products-section .products {
      padding: 0; }
      .section-collection .section__body.no-products-section .products .products__item {
        margin: 0; }
    @media (max-width: 767px) {
      .section-collection .section__body.no-products-section .block-option {
        position: fixed; } }
  .section-collection__bottom-description {
    border-top: 1px solid #e0e0e0;
    margin-top: 60px;
    padding-top: 18px; }
    .section-collection__bottom-description.no-products--bottom {
      margin-left: 341px;
      margin-top: 0; }
  .section-collection__bottom-title {
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    margin-bottom: 16px;
    text-transform: uppercase; }
  .section-collection__bottom-text {
    letter-spacing: 0.05em; }
  @media (max-width: 1440px) {
    .section-collection .section__head {
      margin: 0 -15px; } }
  @media (max-width: 1023px) {
    .section-collection .section__head {
      background: none; }
    .section-collection .section__aside {
      width: 240px;
      margin: 0 30px 0 0; }
    .section-collection .section__content {
      width: calc(100% - 270px); }
    .section-collection .section__head-image {
      position: static; }
    .section-collection .section__head-image:not(.section__head-image--alt) {
      height: 30vw;
      min-height: 100px; }
    .section-collection .section__head-image--alt {
      height: auto;
      min-height: 0; }
    .section-collection .section__head-inner {
      display: block;
      padding: 28px 15px 0;
      max-width: none;
      margin: 0;
      color: #212121;
      text-align: center; }
    .section-collection .section-collection__bottom-description.no-products--bottom {
      margin-left: 270px; } }
  @media (max-width: 767px) {
    .section-collection {
      padding-bottom: 26px; }
      .section-collection .section__head-inner {
        padding: 29px 25px 0; }
      .section-collection .section__title {
        margin-bottom: 18px; }
      .section-collection .section__body {
        display: block; }
      .section-collection .section__head + .section__body {
        padding-top: 0; }
      .section-collection .section__body-inner {
        display: block;
        padding: 18px 0; }
      .section-collection .section__count {
        font-size: 14px;
        line-height: 1.29;
        letter-spacing: 0.05em;
        text-align: center; }
      .section-collection .section__actions {
        position: fixed;
        bottom: 10px;
        left: 20px;
        right: 20px;
        z-index: 9998;
        font-size: 0;
        border-radius: 60px;
        background-color: #004c97; }
      .section-collection .section__actions a {
        position: relative;
        display: inline-block;
        width: 50%;
        padding: 12px 5px;
        font-size: 14px;
        line-height: 1.2;
        font-weight: 700;
        color: #fff;
        text-transform: uppercase;
        text-decoration: none;
        text-align: center; }
      .section-collection .section__actions a + a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 1px;
        height: 25px;
        background-color: #fff;
        transform: translateY(-50%); }
      .section-collection .section__content {
        width: 100%; }
      .section-collection .section-collection__bottom-description.no-products--bottom {
        margin-top: 60px;
        margin-left: 0; } }

/* ------------------------------------------------------------ *\
  Sort
\* ------------------------------------------------------------ */
.sort {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  /* Mobile */ }
  .sort .sort__label {
    margin-right: 18px;
    font-family: "Roboto", sans-serif;
    color: #212121;
    letter-spacing: 0.05em; }
  .sort .sort__dropdown {
    position: relative;
    z-index: 99;
    width: 280px;
    border: 1px solid #e0e0e0;
    background-color: #fff; }
  .sort .sort__dropdown-inner {
    visibility: hidden;
    overflow-y: auto;
    position: absolute;
    top: 100%;
    left: -1px;
    right: -1px;
    max-height: 0;
    padding: 0 15px;
    border: 1px solid #e0e0e0;
    border-top: none;
    margin-top: 1px;
    background-color: #fff;
    transition: max-height 0.3s, padding 0.3s, visibility 0.3s, opacity 0.3s; }
  .sort .sort__dropdown-inner.is-active {
    visibility: visible;
    max-height: 250px;
    padding: 15px;
    opacity: 1; }
  .sort .sort__dropdown-label {
    position: relative;
    width: 100%;
    display: block;
    padding: 8px 40px 7px 10px;
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none; }
  .sort svg {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%); }
  @media (max-width: 767px) {
    .sort .sort__label {
      display: none; }
    .sort .sort__dropdown {
      flex: 1;
      display: flex;
      flex-flow: column nowrap;
      width: 100%;
      border: none; }
    .sort .sort__dropdown-label {
      display: none; }
    .sort .sort__dropdown-inner {
      flex: 1;
      visibility: visible;
      position: static;
      display: flex;
      flex-flow: column nowrap;
      max-height: none;
      padding: 0;
      border: none;
      opacity: 1; }
    .sort .sort__radio {
      padding: 22px 20px;
      border-bottom: 1px solid #f2f2f2; } }

/* ------------------------------------------------------------ *\
  Filter
\* ------------------------------------------------------------ */
.filter {
  /* Mobile */ }
  .filter ul.is-selected li:not(.is-current) {
    display: none; }
  @media (max-width: 767px) {
    .filter {
      overflow-y: auto;
      flex: 1; } }

/* ------------------------------------------------------------ *\
  Filter Option
\* ------------------------------------------------------------ */
.filter-option {
  border-top: 1px solid #f2f2f2;
  /* Mobile */ }
  .filter-option > a {
    position: relative;
    display: block;
    width: 100%;
    padding: 12px 30px 12px 0;
    font-size: 14px;
    line-height: 1.14;
    color: #212121;
    letter-spacing: 0.05em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none; }
  .filter-option > a svg {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    transition: transform 0.3s; }
  .filter-option > a.is-active svg {
    transform: translateY(-50%) rotate(180deg); }
  .filter-option > a svg path {
    stroke: #212121; }
  .filter-option ul {
    display: none;
    padding: 13px 0 24px;
    margin: 0;
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.05em;
    color: #212121;
    list-style: none outside none; }
  .filter-option ul li {
    margin-bottom: 1px; }
  .filter-option ul a {
    position: relative;
    text-decoration: none; }
  .filter-option li.is-current a::after,
  .filter-option li.is-current a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 10px;
    height: 2px;
    margin: -2px 0 0 4px;
    background: #d43900; }
  .filter-option li.is-current a::before {
    transform: rotate(-45deg); }
  .filter-option li.is-current a::after {
    transform: rotate(45deg); }
  @media (max-width: 767px) {
    .filter-option {
      border-top: none;
      margin-top: 1px; }
      .filter-option > a {
        padding: 22px 40px 17px 20px;
        background-color: #f2f2f2;
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: 0; }
      .filter-option > a svg {
        right: 28px; }
      .filter-option ul {
        padding: 17px 20px;
        font-size: 16px; }
      .filter-option li.is-current a::after,
      .filter-option li.is-current a::before {
        width: 14px; } }

/* ------------------------------------------------------------ *\
  Paging
\* ------------------------------------------------------------ */
.paging {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1.56;
  color: #bdbdbd;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-transform: uppercase;
  /* Tablet Portrait */
  /* Mobile */ }
  .paging .paging__prev svg {
    transform: scale(-1, 1); }
  .paging ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    margin: 0 103px;
    list-style: none outside none; }
  .paging li {
    margin: 0 6px; }
  .paging ul .is-current span {
    position: relative;
    color: #004c97; }
    .paging ul .is-current span::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: #004c97; }
  .paging a {
    text-decoration: none;
    transition: opacity 0.3s; }
    .paging a:hover {
      opacity: 0.6; }
  .paging > span,
  .paging > a {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center; }
  .paging > span svg,
  .paging > a svg {
    margin: 0 8px; }
  .paging > span {
    color: #e0e0e0; }
  .paging > span svg path {
    stroke: #e0e0e0; }
  @media (max-width: 1023px) {
    .paging ul {
      margin: 0 40px; } }
  @media (max-width: 767px) {
    .paging {
      font-size: 20px; }
      .paging ul {
        margin: 0; }
      .paging ul span,
      .paging ul a {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
        min-width: 34px;
        height: 34px;
        padding: 0 5px;
        text-align: center; }
      .paging > span,
      .paging > a {
        font-size: 0; }
      .paging > span svg,
      .paging > a svg {
        width: 14px;
        height: 32px; }
      .paging > a svg path {
        stroke: #004c97; }
      .paging > span svg path {
        stroke: #bdbdbd; }
      .paging ul .is-current span {
        color: #fff;
        background-color: #004c97; } }

/* ------------------------------------------------------------ *\
  Block Option
\* ------------------------------------------------------------ */
.block-option {
  /* Mobile */ }
  @media (max-width: 767px) {
    .block-option {
      position: fixed;
      top: 0;
      left: -100%;
      z-index: 9999;
      display: flex;
      flex-flow: column nowrap;
      min-width: 100%;
      height: 100%;
      background-color: #fff;
      transition: left 0.3s; }
      .block-option.is-active {
        left: 0; }
      .block-option .block-option__label {
        flex: 0 0 auto;
        display: flex;
        flex-flow: row wrap;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        padding: 11px 25px;
        background-color: #004c97;
        font-size: 24px;
        line-height: 1.17;
        color: #fff;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase; }
      .block-option .block-option__label svg {
        position: static;
        margin-right: 9px;
        transform: none; }
      .block-option .block-option__actions {
        flex: 0 0 auto;
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        align-items: center;
        padding: 20px 10px;
        margin-top: auto; }
      .block-option .block-option__actions a {
        margin: 0 5px; } }

/* ------------------------------------------------------------ *\
  Product
\* ------------------------------------------------------------ */
.product {
  margin-bottom: 50px;
  /* Small Desktop */
  /* Mobile */ }
  .product .product__inner {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start; }
  .product .product__images {
    width: 645px;
    margin-right: 51px; }
  .product .product__images img {
    width: 100%; }
  .product .product__content {
    max-width: 526px;
    width: calc(100% - 696px);
    padding-top: 3px; }
    .product .product__content:first-child {
      width: 100%; }
  .product .product__badges {
    margin-bottom: 10px;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    text-transform: uppercase; }
  .product .product__badge {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start; }
  .product .product__badge--champions {
    color: #d40000; }
  .product .product__badge--all-star {
    color: #ffc539; }
  .product .product__badge--best-seller {
    color: #72c850; }
  .product .product__badge svg {
    margin-right: 7px; }
  .product .product__title {
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700; }
  .product .product__sku {
    font-size: 12px;
    text-transform: uppercase;
    color: #828282;
    line-height: 1.4; }
  .product .product__rating {
    margin-bottom: 15px; }
  .product .product__price-wrapper {
    display: flex;
    flex-direction: row;
    align-items: baseline; }
  .product .product__badge-new {
    color: #fff;
    width: auto;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.125rem 1.75rem 0.125rem 0.66rem;
    margin-right: 0.5rem;
    border-radius: 0 0.2rem 0.2rem 0;
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: text-top; }
    .product .product__badge-new::before, .product .product__badge-new::after {
      background: #0070cc;
      z-index: -1;
      top: 0;
      left: 0;
      content: "";
      position: absolute;
      border-radius: 0 0.2rem 0.2rem 0;
      width: calc(100% - 1rem);
      height: 100%;
      display: block; }
    .product .product__badge-new::before {
      transform: skewX(30deg); }
    .product .product__badge-new::after {
      transform: skewX(-30deg); }
  .product .product__price {
    margin-bottom: 0;
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    line-height: 1.42;
    color: #004c97;
    font-weight: 400;
    letter-spacing: 0.05em; }
  .product .product__price ins {
    text-decoration: none; }
  .product .product__price del {
    margin: 0 11px 0 9px;
    font-size: 18px;
    line-height: 1.89;
    color: #828282; }
  .product .product__price span {
    font-size: 18px;
    line-height: 1.89;
    color: #212121; }
  .product .product-personalizer {
    width: calc(100% - 230px); }
  .product .product-personalizer .pplr-btn {
    font-size: 21px;
    margin: 0;
    width: 100%; }
  @media (max-width: 1369px) {
    .product .product__images {
      width: 50%;
      margin: 0; }
    .product .product__content {
      width: 50%;
      padding-left: 30px; } }
  @media (max-width: 767px) {
    .product {
      margin-bottom: 56px; }
      .product .product__images {
        width: calc(100% + 15px * 2);
        margin: 0 -15px; }
      .product .product__content {
        max-width: none;
        width: 100%;
        padding: 0 5px; }
      .product .product__title {
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 1.5; }
      .product .product__rating {
        margin-bottom: 9px; }
      .product .product__price {
        margin-bottom: 16px;
        font-size: 16px; }
      .product .product__price del {
        margin: 0 8px 0 0;
        font-size: inherit; }
      .product .product__price span {
        font-size: inherit; }
      .product .product__sku {
        font-size: 14px; }
      .product .product-personalizer {
        width: auto; } }

/* ------------------------------------------------------------ *\
  Tooltip
\* ------------------------------------------------------------ */
.tooltip {
  position: relative;
  z-index: 2;
  width: 16px;
  height: 16px;
  margin: 0 7px; }
  .tooltip > span {
    display: inline-block; }
    .tooltip > span svg {
      vertical-align: sub; }
  .tooltip .tooltip__content {
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    max-width: 300px;
    width: 50vw;
    padding: 8px;
    border: 2px solid #aaa;
    border-radius: 4px;
    margin-top: 12px;
    background-color: #fff;
    font-size: 15px;
    box-shadow: 0 0 5px #aaa;
    opacity: 0; }
  .tooltip:hover .tooltip__content {
    visibility: visible;
    opacity: 1; }

/* ------------------------------------------------------------ *\
  Counter
\* ------------------------------------------------------------ */
.counter {
  position: relative;
  /*  Small  */
  /* Mobile */ }
  .counter .counter__field {
    display: block;
    width: 100%;
    height: 54px;
    padding: 0 58px;
    border: 1px solid #e0e0e0;
    text-align: center;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none; }
  .counter .counter__minus {
    left: 0; }
  .counter .counter__minus::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    background-color: #212121;
    transform: translate(-50%, -50%); }
  .counter .counter__plus {
    right: 0; }
  .counter .counter__plus::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    background-color: #212121;
    transform: translate(-50%, -50%); }
  .counter .counter__plus::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 10px;
    background-color: #212121;
    transform: translate(-50%, -50%); }
  .counter a {
    position: absolute;
    top: 0;
    height: 54px;
    width: 54px;
    text-decoration: none; }
  .counter input[type='number'] {
    -moz-appearance: textfield; }
  .counter input[type='number']::-webkit-inner-spin-button,
  .counter input[type='number']::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none; }
  .counter--small {
    max-width: 100px; }
    .counter--small .counter__field {
      height: 36px;
      padding: 0 36px; }
    .counter--small .counter__minus,
    .counter--small .counter__plus {
      height: 36px;
      width: 36px; }
  @media (max-width: 767px) {
    .counter {
      /*  Small  */ }
      .counter .counter__field {
        padding: 0 54px; }
      .counter--small .counter__field {
        padding: 0 36px; } }

/* ------------------------------------------------------------ *\
  Form Product
\* ------------------------------------------------------------ */
.form-product {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
  /*  Alt  */
  /* Tablet Portrait */
  /* Mobile */ }
  .form-product .selector-wrapper,
  .form-product .form__row {
    width: calc(50% - 10px);
    margin-bottom: 25px; }
    .form-product .selector-wrapper--fluid,
    .form-product .form__row--fluid {
      width: 100%; }
  .form-product .selector-wrapper--large {
    width: 100%; }
  .form-product .form__customizable-checkbox {
    color: #212121;
    margin-top: 15px; }
  .form-product .form__customizable-error {
    font-family: "Roboto", sans-serif;
    color: #d43900; }
  .form-product .form__controls {
    position: relative; }
  .form-product .form__counter {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: #828282;
    position: absolute;
    top: 11px;
    right: 11px; }
  .form-product .form__customizable-name input {
    padding-right: 60px; }
  .form-product .selector-wrapper label,
  .form-product .form__label,
  .form-product .form__customizable-name label {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 11px;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
    line-height: 1.43;
    color: #212121;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em; }
  .form-product .form__inner {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%; }
  .form-product .form__row--small {
    width: 210px; }
  .form-product .form__btn {
    width: calc(100% - 230px); }
    .form-product .form__btn--not-elegible {
      font-size: 15px;
      padding: 6px 14px; }
      @media (max-width: 767px) {
        .form-product .form__btn--not-elegible {
          font-size: 12px;
          padding: 10px 2px; } }
  .form-product .form__btn--small {
    flex: 1;
    width: 100px;
    max-width: 100px;
    min-width: 0;
    padding: 8px 5px;
    margin-left: 10px; }
  .form-product__option-text {
    font-weight: 400;
    margin-left: 5px; }
    @media (min-width: 768px) {
      .form-product__option-text {
        display: none; } }
  .form-product--alt {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 0; }
  @media (max-width: 1023px) {
    .form-product .selector-wrapper,
    .form-product .form__row {
      width: 100%; }
    .form-product .form__btn {
      width: 100%; } }
  @media (max-width: 767px) {
    .form-product {
      margin-bottom: 8px;
      /*  Alt  */ }
      .form-product .form__inner {
        margin-top: -3px; }
      .form-product .form__row--small {
        width: 162px; }
      .form-product .form__btn {
        min-width: 0;
        width: calc(100% - 173px);
        padding-left: 2px;
        padding-right: 2px; }
      .form-product--alt {
        margin-bottom: 0; } }

/* ------------------------------------------------------------ *\
  Selectric
\* ------------------------------------------------------------ */
.selectric-wrapper .selectric {
  border: 1px solid #e0e0e0;
  background: none; }

.selectric-wrapper .selectric .label {
  height: 42px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 2.63; }

.selectric-wrapper .selectric .button {
  height: 42px;
  background: none;
  font-size: 0; }
  .selectric-wrapper .selectric .button::before {
    content: '';
    width: 8px;
    height: 8px;
    display: inline-block;
    vertical-align: middle;
    border-width: 0 0 2px 2px;
    border-style: solid;
    border-color: #828282;
    margin: 0 0 0 0;
    transform: rotate(-45deg);
    transform-origin: 50% 50%;
    transition: all 0.3s;
    position: absolute;
    top: 50%;
    right: 18px;
    margin-top: -5px; }
  .selectric-wrapper .selectric .button::after {
    display: none; }

.selectric-wrapper .selectric-items ul,
.selectric-wrapper .selectric-items li {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.3; }

.selectric-wrapper .selectric-items li:hover {
  background-color: #d5d5d57a; }

.selectric-wrapper .selectric-items li.highlighted,
.selectric-wrapper .selectric-items li.highlighted:hover {
  background-color: #d0d0d0; }

/* ------------------------------------------------------------ *\
  Accordion
\* ------------------------------------------------------------ */
.accordion {
  border-top: 1px solid #f2f2f2; }
  .accordion .accordion__section {
    border-bottom: 1px solid #f2f2f2; }
  .accordion .accordion__head {
    position: relative;
    padding: 10px 0; }
    .accordion .accordion__head::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 12px;
      width: 10px;
      height: 2px;
      margin-top: -1px;
      background-color: #dadada; }
    .accordion .accordion__head::before {
      content: '';
      position: absolute;
      top: 50%;
      right: 16px;
      width: 2px;
      height: 10px;
      margin-top: -5px;
      background-color: #dadada;
      transition: right 0.3s, transform 0.3s; }
  .accordion .accordion__head h4 {
    font-size: 14px;
    line-height: 1.43;
    color: #212121;
    letter-spacing: 0.05em;
    text-transform: uppercase; }
  .accordion .accordion__head.is-active::before {
    right: 12px;
    transform: rotate(90deg); }
  .accordion .accordion__body,
  .accordion .accordion__body h6 {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: 0.05em; }
  .accordion .accordion__body h6 {
    font-weight: 500; }
  .accordion .accordion__body p {
    margin-bottom: 18px; }
    .accordion .accordion__body p:last-child {
      margin-bottom: 0; }
  .accordion .accordion__body {
    display: none;
    padding: 5px 0 15px; }

/* ------------------------------------------------------------ *\
  Section Related Products
\* ------------------------------------------------------------ */
.section-related-products .section__head {
  margin-bottom: 25px;
  text-align: center; }

.section-related-products .section__title {
  text-transform: uppercase; }

.section-related-products .section__products {
  padding-bottom: 6px; }

/* ------------------------------------------------------------ *\
  Section Reviews
\* ------------------------------------------------------------ */
.section-reviews {
  padding-top: 55px;
  background: #f4f5f4; }
  .section-reviews .section__head {
    margin-bottom: 11px;
    text-align: center; }
  .section-reviews .section__title {
    text-transform: uppercase; }

/* ------------------------------------------------------------ *\
  Section Images
\* ------------------------------------------------------------ */
.section-images {
  padding-top: 39px;
  /* Mobile */ }
  .section-images .section__head {
    margin-bottom: 29px;
    text-align: center; }
  .section-images .section__title {
    margin-bottom: 6px;
    text-transform: uppercase; }
  .section-images .section__subtitle {
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: 0.05em;
    text-transform: uppercase; }
  @media (max-width: 767px) {
    .section-images {
      padding-top: 42px; }
      .section-images .section__head {
        margin-bottom: 35px; }
      .section-images .section__title {
        margin-bottom: 20px; } }

/* ------------------------------------------------------------ *\
  Slider
\* ------------------------------------------------------------ */
.slider {
  margin-bottom: 20px;
  font-size: 0;
  /* Mobile */ }
  .slider img {
    margin: 0; }
  .slider .slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 0;
    background: #fff;
    font-size: 0;
    box-shadow: none;
    transform: translateY(-50%);
    transition: opacity 0.3s; }
    .slider .slick-arrow::after {
      content: '';
      width: 14px;
      height: 14px;
      display: inline-block;
      vertical-align: middle;
      border-width: 0 0 3px 3px;
      border-style: solid;
      border-color: #004c97;
      margin: 0 0 0 0;
      transform: rotate(-135deg);
      transform-origin: 50% 50%;
      transition: all 0.3s; }
    .slider .slick-arrow:hover {
      opacity: 0.7; }
  .slider .slick-prev {
    left: -20px; }
    .slider .slick-prev::after {
      transform: rotate(45deg); }
  .slider .slick-next {
    right: -20px; }
  .slider .slick-dots {
    visibility: hidden;
    position: absolute;
    bottom: 13px;
    right: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
    opacity: 0;
    list-style: none outside none; }
  .slider .slick-dots li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: #fff;
    opacity: 0.3;
    transition: opacity 0.3s; }
  .slider .slick-dots button {
    display: none; }
  .slider .slick-dots .slick-active {
    opacity: 1; }
  @media (max-width: 767px) {
    .slider {
      margin-bottom: 14px; }
      .slider .slick-arrow {
        display: none;
        visibility: hidden;
        opacity: 0; }
      .slider .slick-dots {
        visibility: inherit;
        opacity: 1; } }

/* ------------------------------------------------------------ *\
  Slider Thumbs
\* ------------------------------------------------------------ */
.slider-thumbs .slider__slides {
  margin: 0 -10px; }

.slider-thumbs .slider__slide {
  max-width: 120px;
  padding: 0 10px; }

.slider-thumbs img {
  max-width: 100%;
  max-height: 100px;
  width: auto;
  height: auto; }

.slider-thumbs .slick-track {
  margin: 0; }
  .slider-thumbs .slick-track.fixedSlider {
    transform: translate3d(0, 0, 0) !important; }

.slider-thumbs .slick-slide {
  transition: opacity 0.3s; }

.slider-thumbs .slick-current {
  opacity: 0.5; }

.slider-thumbs.fixedSlider .slick-track {
  transform: translate3d(0, 0, 0) !important; }

/* ------------------------------------------------------------ *\
  Cart Dropdown
\* ------------------------------------------------------------ */
.cart-dropdown {
  position: fixed;
  top: 0;
  right: -514px;
  bottom: 0;
  z-index: 99999;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  width: 514px;
  background-color: #fff;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  transition: right 0.3s;
  /* Mobile */ }
  .cart-dropdown.is-active {
    right: 0; }
  .cart-dropdown .cart-dropdown__head {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    padding: 16px 80px 13px 51px;
    background-color: #004c97;
    margin-top: 0;
    color: #fff;
    display: flex; }
  .cart-dropdown .cart-dropdown__title {
    text-transform: uppercase; }
  .cart-dropdown .cart-dropdown__close {
    position: absolute;
    top: 50%;
    right: 51px;
    width: 16px;
    height: 16px;
    transform: translateY(-50%); }
  .cart-dropdown .cart-dropdown__body {
    overflow-y: auto;
    position: relative;
    flex: 1;
    width: 100%;
    max-height: calc(100vh - 298px);
    padding: 42px 50px 42px 51px; }
  .cart-dropdown .cart-dropdown__body > p {
    position: absolute;
    top: 50%;
    left: 50px;
    right: 50px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #212121;
    letter-spacing: 0.05em;
    text-align: center; }
  .cart-dropdown .cart-dropdown__foot {
    flex: 0 0 auto;
    width: 100%;
    padding: 35px 35px 23px;
    border-top: 1px solid #e0e0e0;
    margin-top: auto; }
  @media (max-width: 767px) {
    .cart-dropdown {
      width: 100%;
      right: -100%; }
      .cart-dropdown .cart-dropdown__head {
        padding: 12px 46px 11px 21px; }
      .cart-dropdown .cart-dropdown__close {
        right: 20px; }
      .cart-dropdown .cart-dropdown__body {
        max-height: calc(100vh - 258px);
        padding: 19px 20px; }
      .cart-dropdown .cart-dropdown__body > p {
        font-size: 14px;
        line-height: 1.29; }
      .cart-dropdown .cart-dropdown__foot {
        padding: 15px 20px 17px; } }

/* ------------------------------------------------------------ *\
  Cart Shipping
\* ------------------------------------------------------------ */
.shipping-cart {
  margin-bottom: 40px; }
  .shipping-cart.shipping-cart--page {
    margin: 40px -20px 40px -20px;
    padding: 24px 20px;
    background: #f4f5f4; }
  .shipping-cart.shipping-cart--checkout {
    margin: 60px 0 0 0;
    padding: 27px 14px;
    border: 1px solid #e8e8e8;
    border-radius: 9px; }
    @media (max-width: 767px) {
      .shipping-cart.shipping-cart--checkout {
        margin: 30px 0; } }

.shipping-cart__message {
  text-align: center; }
  .shipping-cart__message.shipping-cart__message--uppercase {
    text-transform: uppercase; }
  .shipping-cart__message p {
    margin-bottom: 0;
    display: none; }
    [data-progress="0"] .shipping-cart__message p:nth-child(1) {
      display: inline; }
    [data-progress="1"] .shipping-cart__message p:nth-child(2) {
      display: inline; }
    [data-progress="2"] .shipping-cart__message p:nth-child(3) {
      display: inline; }
  .shipping-cart__message span {
    font-weight: bold; }

.shipping-cart__progress {
  background: #e0e0e0;
  border-radius: 10px;
  height: 8px;
  margin: 13px 0;
  width: 100%;
  position: relative; }

.shipping-cart__progress-active {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: block;
  background: #004c97;
  border-radius: 10px;
  width: 0;
  max-width: 100%;
  height: 8px;
  transition: all 0.3s; }

.shipping-cart__progress-standard,
.shipping-cart__progress-express {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e0e0e0;
  transform: translate(0, -50%);
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center; }
  .shipping-cart__progress-standard path,
  .shipping-cart__progress-express path {
    fill: #bdbdbd; }
  .shipping-cart__progress-standard.is-active,
  .shipping-cart__progress-express.is-active {
    background: #004c97; }
    .shipping-cart__progress-standard.is-active path,
    .shipping-cart__progress-express.is-active path {
      fill: #fff; }

.shipping-cart__progress-standard {
  right: 20%; }

.shipping-cart__progress-express {
  right: 0; }

.shipping-cart-wrapper {
  display: none; }

/* ------------------------------------------------------------ *\
  Products Cart
\* ------------------------------------------------------------ */
.products-cart {
  /* Mobile */ }
  .products-cart .products-cart__item {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 22px; }
  .products-cart .products-cart__item-image {
    width: 106px; }
  .products-cart .products-cart__item-image a {
    display: block;
    width: 106px;
    font-size: 0;
    text-decoration: none;
    transition: opacity 0.3s; }
    .products-cart .products-cart__item-image a:hover {
      opacity: 0.6; }
  .products-cart .products-cart__item-content {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(100% - 106px);
    padding: 5px 65px 0 10px; }
    .products-cart .products-cart__item-content:first-child {
      width: 100%;
      padding-left: 0; }
  .products-cart .is-hidden + .products-cart__item-content {
    width: 100%;
    padding-left: 0; }
  .products-cart .products-cart__item-title,
  .products-cart .products-cart__item-option,
  .products-cart .products-cart__item-property {
    width: 100%;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    line-height: 1.33;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: #212121; }
  .products-cart .products-cart__item-title a {
    text-decoration: none;
    transition: opacity 0.3s; }
    .products-cart .products-cart__item-title a:hover {
      opacity: 0.6; }
  .products-cart .products-cart__item-option {
    margin: 0;
    color: #828282;
    font-weight: 400; }
  .products-cart .products-cart__item-property {
    font-size: 11px;
    font-weight: 400;
    color: #828282;
    margin: 0; }
  .products-cart .products-cart__item-property + .products-cart__item-option {
    margin-bottom: 20px;
    margin-top: 15px; }
  .products-cart .products-cart__item-price {
    position: absolute;
    top: 5px;
    right: 0;
    width: 65px;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    line-height: 1.33;
    color: #004c97;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-align: right; }
  .products-cart .products-cart__item-price ins {
    display: block;
    color: #d43900;
    text-decoration: none; }
  .products-cart .products-cart__item-price del {
    display: block;
    color: #828282; }
  .products-cart .products-cart__item-remove {
    position: absolute;
    bottom: 8px;
    right: 0;
    width: 20px;
    height: 20px;
    transition: opacity 0.3s; }
    .products-cart .products-cart__item-remove:hover {
      opacity: 0.6; }
  .products-cart .products-cart__item-row {
    width: 100px;
    margin-top: 5px; }
  .products-cart .products-cart__item-row--alt {
    width: 100%; }
  .products-cart .products-cart__item-form {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start; }
  @media (max-width: 767px) {
    .products-cart .products-cart__item {
      margin-bottom: 19px; }
    .products-cart .products-cart__item-content {
      padding: 0 65px 0 10px; }
    .products-cart .products-cart__item-title,
    .products-cart .products-cart__item-option,
    .products-cart .products-cart__item-price {
      font-size: 10px;
      line-height: 1.4; }
    .products-cart .products-cart__item-price {
      top: 0; }
    .products-cart .products-cart__item-row--alt {
      width: calc(100% + 65px);
      margin-right: -65px; } }

.products-clear-container {
  text-align: right; }

/* ------------------------------------------------------------ *\
  Form Cart
\* ------------------------------------------------------------ */
.form-cart {
  /* Mobile */ }
  .form-cart .form__btn {
    width: 100%;
    margin-bottom: 10px; }
  @media (max-width: 767px) {
    .form-cart .form__btn {
      margin-bottom: 9px; } }

/* ------------------------------------------------------------ *\
  Products Cart Holder
\* ------------------------------------------------------------ */
.products-cart-holder {
  margin-top: 45px;
  /* Mobile */ }
  .products-cart-holder .products-cart-holder__title {
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 26px;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase; }
  @media (max-width: 767px) {
    .products-cart-holder {
      margin-top: 42px; }
      .products-cart-holder .products-cart-holder__title {
        padding-bottom: 13px;
        margin-bottom: 23px;
        font-size: 16px; } }

/* ------------------------------------------------------------ *\
  Total
\* ------------------------------------------------------------ */
.total {
  /*  Alt  */
  /* Mobile */ }
  .total .total__inner {
    max-width: 414px;
    margin: 0 auto; }
  .total .total__inner > p:not([class]) {
    margin-top: 17px;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    line-height: 1.33;
    color: rgba(35, 31, 32, 0.6);
    letter-spacing: 0.05em;
    text-align: center; }
  .total .total__row {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.43;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase; }
  .total .total__row strong {
    font-size: 28px;
    line-height: 1.14; }
  .total--alt {
    margin: 196px 0 100px; }
  @media (max-width: 767px) {
    .total {
      /*  Alt  */ }
      .total .total__inner {
        max-width: 100%; }
      .total .total__row {
        align-items: center;
        margin-bottom: 10px; }
      .total .total__row strong {
        font-size: 24px;
        line-height: 1.17;
        letter-spacing: 0; }
      .total .total__inner > p:not([class]) {
        margin-top: 0;
        font-size: 14px;
        line-height: 1.29; }
      .total--alt {
        margin: 0; } }

/* ------------------------------------------------------------ *\
  Section Cart
\* ------------------------------------------------------------ */
.section-cart {
  margin-bottom: -24px;
  /* Tablet Portrait */
  /* Mobile */ }
  .section-cart .section__inner {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0 -25px; }
  .section-cart .section__group {
    width: 50%;
    padding: 64px 15px 70px; }
  .section-cart .section__group ~ .section__group {
    border-left: 1px solid #e0e0e0; }
  .section-cart .section__group-inner {
    max-width: 413px;
    margin: 0 auto; }
  .section-cart .section__title {
    display: flex;
    max-width: 413px;
    margin: 0 auto 32px;
    text-transform: uppercase; }
  @media (max-width: 1023px) {
    .section-cart .section__inner {
      margin: 0 -15px; } }
  @media (max-width: 767px) {
    .section-cart .section__inner {
      display: block;
      margin: 0; }
    .section-cart .section__group {
      width: 100%;
      padding: 22px 4px 35px; }
    .section-cart .section__group ~ .section__group {
      border-left: none;
      border-top: 1px solid #e0e0e0; }
    .section-cart .section__title {
      margin-bottom: 21px; } }

.section-cart__clear {
  display: inline-block;
  padding-left: 12px;
  padding-top: 6px; }

/* ------------------------------------------------------------ *\
  Section content
\* ------------------------------------------------------------ */
.section-content {
  padding: 54px 0 67px;
  /* Mobile */ }
  .section-content .section__head {
    margin-bottom: 29px;
    text-align: center; }
  .section-content .section__title {
    text-transform: uppercase; }
  .section-content .section__body h1,
  .section-content .section__body h2,
  .section-content .section__body h3,
  .section-content .section__body h4,
  .section-content .section__body h5,
  .section-content .section__body h6,
  .section-content .section__body img {
    margin-bottom: 57px; }
  .section-content .section__body h1,
  .section-content .section__body h2,
  .section-content .section__body h3,
  .section-content .section__body h4 {
    text-transform: uppercase; }
  .section-content .section__body h1 {
    line-height: 1;
    margin-bottom: 50px; }
  .section-content .section__body h2 {
    line-height: 1.34;
    margin-bottom: 73px; }
  .section-content .section__body h3 {
    margin-bottom: 36px; }
  .section-content .section__body h4 {
    letter-spacing: 0.05em; }
  .section-content .section__body h5 {
    letter-spacing: 0.05em;
    margin-bottom: 55px; }
  .section-content .section__body h6 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    margin-bottom: 61px; }
  .section-content .section__body p {
    font-family: "Roboto", sans-serif;
    letter-spacing: 0.05em;
    margin-bottom: 25px; }
  .section-content .section__body blockquote {
    line-height: 1.51;
    margin-top: 57px; }
  .section-content .section__body blockquote p {
    font-family: "Roboto Condensed", sans-serif;
    letter-spacing: 0; }
  .section-content .section__body img {
    margin-top: 41px;
    margin-bottom: 63px; }
  .section-content .section__body a {
    color: #004c97;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.3s ease; }
    .section-content .section__body a:hover {
      opacity: 0.4; }
  @media (max-width: 767px) {
    .section-content {
      padding: 40px 0 20px; }
      .section-content .section__head {
        margin-bottom: 30px; }
      .section-content .section__body {
        padding: 0 5px; }
      .section-content .section__body p {
        margin-bottom: 18px; }
      .section-content .section__body p img {
        margin-top: 32px;
        margin-bottom: 41px; }
      .section-content .section__body h1,
      .section-content .section__body h2,
      .section-content .section__body h3,
      .section-content .section__body h4,
      .section-content .section__body h5,
      .section-content .section__body h6,
      .section-content .section__body img {
        margin-bottom: 25px; }
      .section-content .section__body h1 {
        line-height: 0.89;
        margin-bottom: 28px; }
      .section-content .section__body h2 {
        line-height: 1.17;
        margin-bottom: 40px; }
      .section-content .section__body h4 {
        letter-spacing: 0;
        margin-bottom: 30px; }
      .section-content .section__body h5 {
        line-height: 2; }
      .section-content .section__body h6 {
        letter-spacing: 0.02em; }
      .section-content .section__body blockquote {
        font-size: 24px;
        line-height: 1.17;
        letter-spacing: 0;
        margin-top: 36px; } }

.section-content--about {
  font-family: "Roboto", sans-serif;
  text-align: center;
  padding-top: 52px;
  padding-bottom: 28px;
  /* Mobile */ }
  @media (max-width: 767px) {
    .section-content--about {
      padding-top: 37px;
      padding-bottom: 26px; } }
  .section-content--about .section__title {
    color: #004c97;
    /* Mobile */ }
    @media (max-width: 767px) {
      .section-content--about .section__title {
        line-height: 1.1;
        letter-spacing: 0; } }
  .section-content--about .section__head {
    margin-bottom: 19px; }
  .section-content--about .section__body h2 {
    text-transform: uppercase;
    line-height: 1.17;
    margin-bottom: 26px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .section-content--about .section__body h2 {
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: 0;
        margin-bottom: 23px; } }
  .section-content--about .section__title,
  .section-content--about h2 {
    font-family: "Roboto Condensed", sans-serif; }
  .section-content--about .section__body p {
    letter-spacing: 0.05em;
    /* Mobile */ }
    @media (max-width: 767px) {
      .section-content--about .section__body p {
        margin-bottom: 18px; } }

/* ------------------------------------------------------------ *\
  Animate Holder
\* ------------------------------------------------------------ */
.animate-holder {
  opacity: 0;
  transition: opacity 0.3s; }
  .animate-holder.is-animated {
    opacity: 1; }

/* ------------------------------------------------------------ *\
  Section Access
\* ------------------------------------------------------------ */
.section-access .section__cols {
  display: flex;
  flex-flow: row wrap;
  min-height: 823px;
  margin-bottom: -45px;
  /* Tablet Portrait */ }
  @media (max-width: 1023px) {
    .section-access .section__cols {
      min-height: 90vh;
      margin-left: -15px;
      margin-right: -15px; } }

.section-access .section__nav {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex: 1;
  min-width: 100%;
  padding: 6px 5px 0; }
  .section-access .section__nav ul {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -5px; }
  .section-access .section__nav li {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: center;
    padding: 0 5px; }
  .section-access .section__nav a {
    text-decoration: none;
    display: block;
    padding: 18px 5px;
    border-bottom: 4px solid #e0e0e0; }
    .section-access .section__nav a.is-active {
      border-color: #004c97; }

.section-access .section__col {
  flex: 1;
  min-width: 50%;
  padding-top: 116px;
  /* Tablet Portrait */
  /* Mobile */ }
  @media (max-width: 1023px) {
    .section-access .section__col {
      padding: 90px 15px 120px; } }
  @media (max-width: 767px) {
    .section-access .section__col {
      min-width: 100%;
      padding: 55px 20px 57px; } }

.section-access .section__col:last-child {
  background-color: #f2f2f2;
  padding-left: 5px;
  /* Tablet Portrait */
  /* Mobile */ }
  @media (max-width: 1023px) {
    .section-access .section__col:last-child {
      padding-left: 15px; } }
  @media (max-width: 767px) {
    .section-access .section__col:last-child {
      background-color: transparent;
      padding-left: 20px; } }

/* ------------------------------------------------------------ *\
  Section Account
\* ------------------------------------------------------------ */
.section-account {
  margin-bottom: -24px;
  /* Mobile */ }
  @media (max-width: 767px) {
    .section-account {
      padding-bottom: 78px; } }
  .section-account .section__inner {
    min-height: 833px;
    display: flex;
    flex-flow: row wrap;
    /* Mobile */ }
    @media (max-width: 767px) {
      .section-account .section__inner {
        min-height: auto; } }
  .section-account .section__aside {
    background-color: #f2f2f2;
    flex: 0 0 23.9%;
    max-width: 23.9%;
    padding-top: 118px;
    padding-left: 44px;
    padding-right: 20px;
    /* Tablet Portrait */
    /* Mobile */ }
    @media (max-width: 1023px) {
      .section-account .section__aside {
        padding-top: 80px;
        padding-left: 20px; } }
    @media (max-width: 767px) {
      .section-account .section__aside {
        flex: 0 0 100%;
        max-width: 100%;
        padding-top: 17px;
        padding-bottom: 32px; } }
  .section-account .section__aside h1 {
    font-size: 28px;
    line-height: 1.14;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 67px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .section-account .section__aside h1 {
        font-size: 18px;
        line-height: 1.56;
        letter-spacing: 0.05em;
        text-align: center;
        margin-bottom: 21px; } }
  .section-account .section__aside ul {
    list-style-type: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: inherit;
    padding: 0;
    margin: 0; }
    .section-account .section__aside ul li + li {
      margin-top: 8px; }
    .section-account .section__aside ul a {
      text-decoration: none;
      display: inline-block;
      padding: 10px 0;
      position: relative; }
      .section-account .section__aside ul a::after {
        content: '';
        background-color: currentColor;
        width: 0;
        height: 1px;
        position: absolute;
        left: 0;
        bottom: 6px;
        transition: width 0.3s ease; }
      .section-account .section__aside ul a.is-active::after, .section-account .section__aside ul a:hover::after {
        width: 100%; }
      .section-account .section__aside ul a.is-faded {
        opacity: 0.5; }
  .section-account .section__content {
    flex: 0 0 76.1%;
    max-width: 76.1%;
    padding-top: 119px;
    padding-left: 116px;
    /* Tablet Portrait */
    /* Mobile */ }
    @media (max-width: 1023px) {
      .section-account .section__content {
        padding-top: 70px;
        padding-left: 50px; } }
    @media (max-width: 767px) {
      .section-account .section__content {
        flex: 0 0 100%;
        max-width: 100%;
        padding-top: 40px;
        padding-left: 20px;
        padding-right: 20px; } }
  .section-account .section__content p {
    font-family: "Roboto", sans-serif;
    letter-spacing: 0.05em;
    /* Mobile */ }
    @media (max-width: 767px) {
      .section-account .section__content p {
        margin-bottom: 22px; } }
  .section-account .section__content h6 {
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 31px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .section-account .section__content h6 {
        margin-bottom: 13px; } }
  .section-account .section__head {
    margin-bottom: 76px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .section-account .section__head {
        margin-bottom: 37px; } }
  .section-account .section__head h2 {
    font-size: 28px;
    line-height: 1.14;
    text-transform: uppercase;
    /* Mobile */ }
    @media (max-width: 767px) {
      .section-account .section__head h2 {
        font-size: 24px;
        line-height: 1.17; } }
  .section-account .section__cols {
    display: flex;
    flex-flow: row wrap;
    padding-right: 276px; }
    @media (max-width: 1369px) {
      .section-account .section__cols {
        padding-right: 0; } }
  .section-account .section__col {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 50px;
    /* Mobile */ }
    .section-account .section__col > * {
      flex: 0 0 auto; }
    .section-account .section__col a {
      padding-top: 5px;
      margin-top: auto; }
    @media (max-width: 767px) {
      .section-account .section__col {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0; }
        .section-account .section__col + .section__col {
          margin-top: 59px; } }
  .section-account .section__form {
    display: none;
    min-width: 100%;
    padding-top: 20px; }
    .section-account .section__form.is-active {
      display: block; }
  .section-account .selectric-wrapper {
    background-color: #fff; }

.section-account--addresses {
  /* Mobile */ }
  @media (max-width: 767px) {
    .section-account--addresses {
      padding-bottom: 70px; } }
  .section-account--addresses .section__content + .section__content {
    display: none; }
    .section-account--addresses .section__content + .section__content.is-active {
      display: block; }
  .section-account--addresses .section__head {
    /* Mobile */ }
    @media (max-width: 767px) {
      .section-account--addresses .section__head {
        margin-bottom: 35px; } }
  .section-account--addresses .section__content h6 {
    /* Mobile */ }
    @media (max-width: 767px) {
      .section-account--addresses .section__content h6 {
        margin-bottom: -7px; } }

.section-account--order {
  padding-bottom: 62px; }
  .section-account--order .section__breadcrumbs {
    padding-bottom: 11px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .section-account--order .section__breadcrumbs {
        padding-bottom: 8px; } }
  .section-account--order .section__breadcrumbs a + span {
    margin: 0 10px; }
  .section-account--order .section__content {
    padding-top: 73px;
    padding-bottom: 107px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .section-account--order .section__content {
        padding-top: 30px;
        padding-bottom: 0; } }
  .section-account--order .section__content h6 {
    margin-bottom: 13px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .section-account--order .section__content h6 {
        margin-bottom: 15px; } }
  .section-account--order .section__head {
    margin-bottom: 79px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .section-account--order .section__head {
        margin-bottom: 38px; } }
  .section-account--order .section__entry-cols {
    display: flex;
    flex-flow: row wrap; }
    .section-account--order .section__entry-cols + .section__entry-cols {
      margin-top: 25px;
      /* Mobile */ }
      @media (max-width: 767px) {
        .section-account--order .section__entry-cols + .section__entry-cols {
          margin-top: 1px; } }
    .section-account--order .section__entry-cols:last-child {
      margin-bottom: 37px;
      /* Tablet Portrait */ }
      @media (max-width: 1023px) {
        .section-account--order .section__entry-cols:last-child {
          margin-bottom: 0; } }
  .section-account--order .section__entry-cols:last-child .section__entry-col {
    /* Mobile */ }
    @media (max-width: 767px) {
      .section-account--order .section__entry-cols:last-child .section__entry-col {
        flex: 0 0 100%;
        max-width: 100%; } }
  .section-account--order .section__entry-col {
    /* Tablet Portrait */
    /* Mobile */ }
    @media (max-width: 1023px) {
      .section-account--order .section__entry-col {
        margin-bottom: 37px; } }
    @media (max-width: 767px) {
      .section-account--order .section__entry-col {
        margin-bottom: 4px; } }
  .section-account--order .section__entry-col:first-child {
    width: 231px;
    /* Tablet Portrait */ }
    @media (max-width: 1023px) {
      .section-account--order .section__entry-col:first-child {
        width: auto;
        flex: 0 0 50%;
        max-width: 50%; } }
  .section-account--order .section__entry-col:nth-child(2) {
    width: 230px; }
    @media (max-width: 1023px) {
      .section-account--order .section__entry-col:nth-child(2) {
        width: auto;
        flex: 0 0 50%;
        max-width: 50%; } }
  .section-account--order .section__entry-col:last-child {
    flex: 1;
    max-width: 346px; }
    @media (max-width: 1023px) {
      .section-account--order .section__entry-col:last-child {
        width: auto;
        flex: 0 0 50%;
        max-width: 50%; } }
  .section-account--order .section__entry-col--additional-text {
    color: #828282;
    display: flex;
    align-items: flex-end;
    padding-right: 50px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .section-account--order .section__entry-col--additional-text {
        padding-right: 0; } }
  .section-account--order .section__body {
    padding-right: 106px;
    /* Tablet Portrait */
    /* Mobile */ }
    @media (max-width: 1023px) {
      .section-account--order .section__body {
        padding-right: 50px; } }
    @media (max-width: 767px) {
      .section-account--order .section__body {
        padding-right: 0; } }

/* ------------------------------------------------------------ *\
  Section Password Reset
\* ------------------------------------------------------------ */
.section-password-reset {
  padding: 80px 0; }

/* ------------------------------------------------------------ *\
  Addresses
\* ------------------------------------------------------------ */
.addresses .addresses__actions {
  padding-top: 40px;
  padding-bottom: 45px;
  margin-top: 45px;
  position: relative;
  /* Mobile */ }
  .addresses .addresses__actions::before {
    content: '';
    background-color: #f2f2f2;
    width: calc(100%);
    height: 1px;
    position: absolute;
    top: 0;
    left: -50px; }
  @media (max-width: 767px) {
    .addresses .addresses__actions::before {
      left: 0; } }

.addresses .addresses__actions a {
  min-width: 250px; }

.addresses .address + .addresses__actions {
  margin-top: 66px;
  /* Mobile */ }
  @media (max-width: 767px) {
    .addresses .address + .addresses__actions {
      padding-bottom: 0;
      margin-top: 60px; } }

.addresses .addresses__body--empty {
  padding-top: 3px;
  margin-bottom: -6px;
  /* Mobile */ }
  @media (max-width: 767px) {
    .addresses .addresses__body--empty {
      margin-bottom: 59px; } }

/* ------------------------------------------------------------ *\
  Address
\* ------------------------------------------------------------ */
.address + .address {
  margin-top: 68px;
  /* Mobile */ }
  @media (max-width: 767px) {
    .address + .address {
      margin-top: 64px; } }

.address p {
  margin-bottom: 0; }

.address .address__actions {
  margin-top: 19px;
  /* Mobile */ }
  @media (max-width: 767px) {
    .address .address__actions {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-top: 26px; } }

.address .address__actions a {
  margin-right: 10px;
  /* Mobile */ }
  @media (max-width: 767px) {
    .address .address__actions a + a {
      margin-top: 22px; } }

/* ------------------------------------------------------------ *\
  Order Item
\* ------------------------------------------------------------ */
.order-item {
  max-width: 861px;
  display: flex;
  flex-flow: row wrap;
  padding-top: 31px;
  position: relative;
  /* Mobile */
  /* Tablet Portrait */ }
  @media (max-width: 767px) {
    .order-item {
      padding-top: 20px; } }
  .order-item::before {
    content: '';
    background-color: #f2f2f2;
    width: calc(100% + 130px);
    height: 1px;
    position: absolute;
    top: 0;
    left: -65px; }
  .order-item + .order-item {
    margin-top: 35px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .order-item + .order-item {
        margin-top: 13px; } }
  @media (max-width: 1023px) {
    .order-item::before {
      width: 100%;
      left: 0; } }
  .order-item .order-item__image {
    display: block;
    width: 116px;
    height: 116px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .order-item .order-item__image {
        width: 104px;
        height: 104px; } }
  .order-item .order-item__content {
    flex: 1;
    display: flex;
    flex-flow: row wrap;
    padding-left: 51px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .order-item .order-item__content {
        display: block;
        padding-left: 11px;
        padding-top: 2px; } }
  .order-item .order-item__content h5 {
    font-size: 16px;
    line-height: 1.5;
    color: #212121;
    /* Mobile */ }
    @media (max-width: 767px) {
      .order-item .order-item__content h5 {
        font-size: 14px;
        line-height: 1.29;
        letter-spacing: 0.05em;
        margin-bottom: 9px; } }
  .order-item .order-item__content h5 a {
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.3s ease; }
    .order-item .order-item__content h5 a:hover {
      opacity: 0.6; }
  .order-item .order-item__content p {
    color: #828282;
    /* Mobile */ }
    @media (max-width: 767px) {
      .order-item .order-item__content p {
        margin-bottom: 7px; } }
  .order-item .order-item__content p strong {
    color: #000; }
  .order-item .order-item__meta {
    max-width: 346px;
    padding-right: 45px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .order-item .order-item__meta {
        padding-right: 0; } }
  .order-item .order-item__price {
    margin-left: auto; }

/* ------------------------------------------------------------ *\
  Section about gallery
\* ------------------------------------------------------------ */
.section-about-gallery {
  padding-bottom: 50px;
  margin-top: 2px;
  /* Mobile */ }
  @media (max-width: 767px) {
    .section-about-gallery {
      padding-bottom: 7px; } }
  .section-about-gallery .section__inner {
    padding-top: 49px;
    border-top: 1px solid #e0e0e0;
    /* Mobile */ }
    @media (max-width: 767px) {
      .section-about-gallery .section__inner {
        padding: 20px 5px 0; } }
  .section-about-gallery .section__head {
    text-align: center;
    padding: 0 30px;
    margin-bottom: 24px; }
  .section-about-gallery .section__head h2 {
    text-transform: uppercase;
    color: #004c97;
    margin-bottom: 2px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .section-about-gallery .section__head h2 {
        font-size: 24px;
        line-height: 1.17;
        margin-bottom: 8px; } }
  .section-about-gallery .section__head h6 {
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #212121; }
    .section-about-gallery .section__head h6 a {
      text-decoration: none;
      opacity: 1;
      transition: opacity 0.3s ease; }
      .section-about-gallery .section__head h6 a:hover {
        opacity: 0.5; }
  .section-about-gallery .section__image-wrapper {
    overflow: hidden; }
  .section-about-gallery .section__image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: block;
    padding-top: 100%;
    transform: scale(1);
    transition: transform 0.4s ease-out; }
    .section-about-gallery .section__image:hover {
      transform: scale(1.2); }

/* ------------------------------------------------------------ *\
  Section 404
\* ------------------------------------------------------------ */
.section-404 {
  padding-top: 58px;
  /* Mobile */ }
  .section-404::after {
    content: '';
    background-color: #e0e0e0;
    display: block;
    width: calc(100% - 28px);
    height: 1px;
    margin: 65px auto 48px; }
  @media (max-width: 767px) {
    .section-404 {
      padding-top: 59px; }
      .section-404::after {
        margin: 54px auto 49px; } }
  .section-404 .section__inner {
    display: flex;
    flex-flow: row wrap;
    /* Tablet Portrait */ }
    @media (max-width: 1023px) {
      .section-404 .section__inner {
        display: block; } }
  .section-404 .section__image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 462px;
    height: 238px;
    /* Tablet Portrait */
    /* Mobile */ }
    @media (max-width: 1023px) {
      .section-404 .section__image {
        margin: 0 auto; } }
    @media (max-width: 767px) {
      .section-404 .section__image {
        width: 295px;
        height: 152px; } }
  .section-404 .section__content {
    flex: 1;
    padding-top: 24px;
    padding-left: 58px;
    /* Tablet Portrait */
    /* Mobile */ }
    @media (max-width: 1023px) {
      .section-404 .section__content {
        text-align: center;
        padding-left: 0; } }
    @media (max-width: 767px) {
      .section-404 .section__content {
        padding-top: 35px; } }
  .section-404 h1 {
    line-height: 1;
    text-transform: uppercase;
    color: #004c97;
    margin-bottom: 18px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .section-404 h1 {
        line-height: 0.89;
        margin-bottom: 35px; } }
  .section-404 .section__actions a {
    min-width: 150px; }

/* ------------------------------------------------------------ *\
  Section Blog
\* ------------------------------------------------------------ */
.section-blog {
  padding: 57px 41px 25px;
  /* Mobile */ }
  .section-blog h1 {
    font-size: 28px;
    line-height: 1.14;
    text-transform: uppercase;
    color: #212121;
    margin-bottom: 12px; }
    .section-blog h1:last-child {
      margin-bottom: 0; }
  .section-blog .section__head {
    padding: 0 20px;
    text-align: center;
    margin-bottom: 29px; }
  .section-blog .section__head p {
    font-family: "Roboto", sans-serif;
    letter-spacing: 0.05em; }
  .section-blog .section__head h2 {
    text-transform: uppercase;
    /* Mobile */ }
    .section-blog .section__head h2:first-child:last-child {
      margin-bottom: 35px; }
    @media (max-width: 767px) {
      .section-blog .section__head h2:first-child:last-child {
        margin-bottom: -25px; } }
  .section-blog .section__paging {
    padding-top: 54px; }
  @media (max-width: 767px) {
    .section-blog {
      padding: 32px 20px 18px; }
      .section-blog h1 {
        font-size: 24px;
        line-height: 1.17;
        margin-bottom: 18px; }
      .section-blog .section__head {
        padding: 0;
        margin-bottom: 52px; }
      .section-blog .section__paging {
        padding-top: 42px; } }

.article + .section-blog {
  padding-bottom: 42px; }

/* ------------------------------------------------------------ *\
  Articles
\* ------------------------------------------------------------ */
.articles {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -25px -50px;
  /* Tablet Portrait */
  /* Mobile */ }
  .articles .articles__item {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 25px;
    margin-bottom: 50px; }
  @media (max-width: 1023px) {
    .articles .articles__item {
      flex: 0 0 50%;
      max-width: 50%; } }
  @media (max-width: 767px) {
    .articles {
      margin-bottom: -30px; }
      .articles .articles__item {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px; } }

.articles--centered {
  justify-content: center; }

#comment_form {
  display: table;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 80px; }

.comment_form__wrapper {
  display: flex;
  flex-wrap: wrap; }
  .comment_form__wrapper p label {
    display: block;
    width: 100%; }
  .comment_form__wrapper p input {
    display: block;
    width: 100%; }
  .comment_form__wrapper p textarea {
    display: block;
    width: 100%; }

.reply__form-author {
  width: 50%; }
  @media (max-width: 767px) {
    .reply__form-author {
      width: 100%; } }

.reply__form-email {
  width: 50%; }
  @media (max-width: 767px) {
    .reply__form-email {
      width: 100%; } }

.reply__form-comment {
  width: 100%; }

.reply__form-submit {
  width: 100%; }

.reply__notes {
  width: 100%; }

.comment_form__wrapper > p {
  padding: 5px 12px; }

.reply__form-notice {
  padding: 0 12px; }

.comments__listing {
  max-width: 800px;
  margin: 0 auto;
  padding: 12px; }

.comments__listing .comment__entry {
  position: relative;
  word-break: break-word;
  border: 1px solid #cecece;
  margin: 15px 0;
  padding: 15px;
  border-bottom: 3px solid #f2c202; }
  .comments__listing .comment__entry .comment__author {
    font-weight: bold; }
  .comments__listing .comment__entry .comment__meta {
    border-bottom: 1px dotted #cecece; }
  .comments__listing .comment__entry .comment__text p:last-child {
    margin-bottom: 0; }

.reply__form-subtext.error {
  display: block;
  width: 100%;
  font-weight: bold;
  color: #d21313; }

.reply__notes--success {
  font-weight: bold;
  color: #0c6f0c; }

/* ------------------------------------------------------------ *\
  Section Search
\* ------------------------------------------------------------ */
.section-search {
  padding-top: 41px;
  padding-bottom: 36px;
  /* Mobile */ }
  .section-search .section__head {
    font-family: "Roboto", sans-serif;
    text-align: center;
    margin-bottom: 37px; }
  .section-search .section__head h2 {
    font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase;
    color: #212121;
    margin-bottom: 0;
    margin-top: 28px; }
  .section-search .section__head p {
    letter-spacing: 0.05em;
    margin-bottom: 0; }
  .section-search .section__body {
    padding: 0 25px; }
  .section-search .section__paging {
    margin-top: -56px; }
  @media (max-width: 767px) {
    .section-search .section__body {
      padding: 0; }
    .section-search .section__paging {
      margin-top: 0; } }

.section-search--empty {
  padding-top: 29px; }

/* ------------------------------------------------------------ *\
  Section Contact Alt
\* ------------------------------------------------------------ */
.section-contact-alt {
  font-family: "Roboto", sans-serif;
  padding-top: 66px;
  padding-bottom: 47px;
  /* Tablet Portrait */
  /* Mobile */ }
  .section-contact-alt .section__head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 54px; }
  .section-contact-alt .section__head h1 {
    font-family: "Roboto Condensed", sans-serif;
    text-transform: uppercase;
    line-height: 1;
    color: #004c97;
    margin-bottom: 38px; }
  .section-contact-alt p {
    letter-spacing: 0.05em;
    margin-bottom: 24px; }
    .section-contact-alt p:last-child {
      margin-bottom: 0; }
  .section-contact-alt .section__body {
    max-width: 760px;
    margin: 0 auto; }
  .section-contact-alt .section__entry {
    margin-bottom: 38px; }
  @media (max-width: 1023px) {
    .section-contact-alt .section__head,
    .section-contact-alt .section__body {
      max-width: none;
      padding-left: 20px;
      padding-right: 20px; }
    .section-contact-alt .section__entry {
      text-align: center; } }
  @media (max-width: 767px) {
    .section-contact-alt {
      padding-top: 38px;
      padding-bottom: 20px; }
      .section-contact-alt .section__head {
        margin-bottom: 39px; }
      .section-contact-alt .section__head h1 {
        line-height: 0.89;
        margin-bottom: 24px; }
      .section-contact-alt p {
        margin-bottom: 18px; }
        .section-contact-alt p:last-child {
          margin-bottom: 0; } }

/* ------------------------------------------------------------ *\
  Section images alt
\* ------------------------------------------------------------ */
.section-images-alt {
  padding-top: 47px;
  padding-bottom: 54px;
  /* Mobile */ }
  .section-images-alt .section__inner {
    padding: 0 25px; }
  .section-images-alt .section__cols {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: 0 -12px; }
  .section-images-alt .section__col {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 12px; }
  .section-images-alt .section__image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 100%; }
  @media (max-width: 767px) {
    .section-images-alt {
      padding-top: 20px;
      padding-bottom: 42px; }
      .section-images-alt .section__inner {
        padding: 0 5px; }
      .section-images-alt .section__cols {
        margin: 0 -6px -12px; }
      .section-images-alt .section__col {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 6px;
        margin-bottom: 12px; } }

/* ------------------------------------------------------------ *\
  Filestack
\* ------------------------------------------------------------ */
.fsp-picker--inline {
  min-width: auto !important;
  min-height: 360px !important;
  margin-bottom: 30px;
  /* Mobile */ }
  .fsp-picker--inline .fsp-modal {
    z-index: 0; }
  .fsp-picker--inline .fsp-modal__body {
    position: static; }
  .fsp-picker--inline .fsp-drop-area {
    padding: 30px 0;
    border: 0; }
  .fsp-picker--inline .fsp-footer {
    padding: 30px 10px; }
  .fsp-picker--inline .fsp-button {
    font-family: "Roboto Condensed", sans-serif;
    display: inline-block;
    min-width: 166px;
    height: auto;
    padding: 12px 14px;
    border-radius: 0;
    border: 1px solid #004c97;
    background-color: #004c97;
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    transition: border 0.3s, opacity 0.3s, background 0.3s, color 0.3s; }
  .fsp-picker--inline .fsp-button--disabled {
    opacity: 0.3;
    pointer-events: none; }
  @media (max-width: 767px) {
    .fsp-picker--inline .fsp-modal {
      display: block; }
    .fsp-picker--inline .fsp-modal__body {
      padding-bottom: 0; }
    .fsp-picker--inline .fsp-footer__nav--left,
    .fsp-picker--inline .fsp-footer__nav--center,
    .fsp-picker--inline .fsp-footer__nav--right {
      float: none; }
    .fsp-picker--inline .fsp-footer__nav--right {
      margin-top: 10px; }
    .fsp-picker--inline .fsp-summary {
      padding-bottom: 15px; }
    .fsp-picker--inline .fsp-button {
      display: block; }
    .fsp-picker--inline .fsp-footer {
      display: block;
      height: auto;
      position: static;
      transform: none; }
    .fsp-picker--inline .fsp-footer .fsp-button + .fsp-button {
      margin-top: 10px; } }

/* ------------------------------------------------------------ *\
  Customizer
\* ------------------------------------------------------------ */
@media (max-width: 1199px) {
  #fathead-customizer .bottom-bar {
    padding: 15px; }
  #fathead-customizer .price {
    font-size: 20px; }
  #fathead-customizer .quantity-selector .quantity-selected {
    width: 50px; }
  #fathead-customizer .quantity-selector .btn.minus-one,
  #fathead-customizer .quantity-selector .btn.plus-one {
    width: 30px; }
  #fathead-customizer .btn.btn-action {
    font-size: 19px;
    min-width: unset; } }

@media (max-width: 1023px) {
  #fathead-customizer .toolbar .item-label {
    display: none; } }

@media (max-width: 480px) {
  #fathead-customizer .bottom-bar {
    padding: 30px 20px; }
  #fathead-customizer .price {
    font-size: 24px; }
  #fathead-customizer .quantity-selector .quantity-selected {
    width: 100px; }
  #fathead-customizer .quantity-selector .btn.minus-one,
  #fathead-customizer .quantity-selector .btn.plus-one {
    width: 35px; }
  #fathead-customizer .btn.btn-action {
    font-size: 21px;
    min-width: 300px; } }

/* Custom pages */
.section-grid {
  margin-bottom: 0; }

.landing-container {
  display: flex;
  flex-direction: column; }

.landing-container > div,
.landing-container > section {
  flex-basis: 100%; }

.hero-small {
  text-align: center; }

.hero-logo {
  max-width: 20%; }

.section-grid .section__content,
.section-grid .section__image {
  border: 0; }

@media (max-width: 767px) {
  .btn--white {
    border-color: #212121; } }

/* Modules */
/* ------------------------------------------------------------ *\
  Button
\* ------------------------------------------------------------ */
.btn {
  display: inline-block;
  min-width: 166px;
  padding: 12px 14px;
  border-radius: 0;
  border: 1px solid #fff;
  background-color: #004c97;
  font-size: 14px;
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border 0.3s, opacity 0.3s, background 0.3s, color 0.3s;
  /*  Button White  */
  /*  Button Dark  */
  /*  Button Gray  */
  /*  Button Orange  */
  /*  Button Rounded  */
  /*  Button Block  */
  /* Button Loading */ }
  .btn:hover {
    border-color: #212121;
    background-color: #fff;
    color: #212121; }
  .btn--white {
    background-color: #fff;
    border-color: #212121;
    color: #212121;
    /* Mobile */ }
    .btn--white:hover {
      border-color: #fff;
      background-color: #004c97;
      color: #fff; }
    @media (max-width: 767px) {
      .btn--white {
        border-color: #fff; } }
  .btn--dark {
    background-color: #212121;
    border-color: #212121;
    color: #fff; }
    .btn--dark:hover {
      border-color: #fff;
      background-color: #004c97;
      color: #fff; }
  .btn--gray {
    border-color: #e0e0e0;
    background-color: #e0e0e0;
    color: #212121; }
    .btn--gray:hover {
      border-color: #212121;
      background-color: #212121;
      color: #e0e0e0; }
  .btn--orange {
    border-color: #d43900;
    background-color: #d43900;
    font-size: 21px;
    line-height: 1.35;
    color: #fff; }
    .btn--orange:hover {
      border-color: #d43900;
      background: none;
      color: #d43900; }
  .btn--rounded {
    padding: 10px 14px;
    border-radius: 30px; }
  .btn--block {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0; }
  .btn--red {
    background-color: #d43900;
    border-color: #d43900;
    color: #fff; }
  .btn--submit {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 21px; }
  .btn:disabled {
    pointer-events: none;
    background-color: #828282;
    border-color: #828282;
    opacity: 0.3; }
  .btn--loading {
    color: transparent;
    position: relative;
    pointer-events: none;
    opacity: 0.5;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
    .btn--loading::after {
      content: '';
      width: 20px;
      height: 20px;
      border-top: 3px solid white;
      border-right: 3px solid white;
      border-bottom: 3px solid white;
      border-left: 3px solid rgba(255, 255, 255, 0.4);
      border-radius: 50%;
      margin: auto;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      -webkit-animation: spin 0.7s linear infinite;
              animation: spin 0.7s linear infinite; }

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

#liveagent_button_online_5734x000000QH2m {
  background: #004c97;
  position: fixed;
  bottom: 30px;
  color: #fff;
  right: 30px;
  padding: 15px 20px;
  border-radius: 7px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid #fff;
  box-shadow: 10px 10px 36px -10px rgba(0, 0, 0, 0.56);
  -webkit-box-shadow: 10px 10px 36px -10px rgba(0, 0, 0, 0.56);
  -moz-box-shadow: 10px 10px 36px -10px rgba(0, 0, 0, 0.56); }

/* ------------------------------------------------------------ *\
  Form Elements Reset
\* ------------------------------------------------------------ */
input::-moz-placeholder {
  color: inherit;
  opacity: 1; }
input:-ms-input-placeholder {
  color: inherit;
  opacity: 1; }
input::placeholder {
  color: inherit;
  opacity: 1; }

textarea::-moz-placeholder {
  color: inherit;
  opacity: 1; }

textarea:-ms-input-placeholder {
  color: inherit;
  opacity: 1; }

textarea::placeholder {
  color: inherit;
  opacity: 1; }

input:-webkit-autofill {
  -webkit-text-fill-color: inherit;
  -webkit-box-shadow: 0 0 0 1000px #fff inset; }

/* ------------------------------------------------------------ *\
  Field
\* ------------------------------------------------------------ */
.field,
.cf-field input {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #333;
  width: 100%;
  padding: 9px 15px;
  border: 1px solid;
  border-color: #e0e0e0;
  border-radius: 0;
  transition: border-color 0.4s ease;
  /* Mobile */ }
  .field:focus,
  .cf-field input:focus {
    border-color: #000; }
  .field::-moz-placeholder, .cf-field input::-moz-placeholder {
    color: #212121;
    opacity: 0.7; }
  .field:-ms-input-placeholder, .cf-field input:-ms-input-placeholder {
    color: #212121;
    opacity: 0.7; }
  .field::placeholder,
  .cf-field input::placeholder {
    color: #212121;
    opacity: 0.7; }
  .field.field--error,
  .cf-field input.field--error {
    color: #d43900;
    border-color: #d43900; }
    .field.field--error::-moz-placeholder, .cf-field input.field--error::-moz-placeholder {
      color: #d43900;
      opacity: 1; }
    .field.field--error:-ms-input-placeholder, .cf-field input.field--error:-ms-input-placeholder {
      color: #d43900;
      opacity: 1; }
    .field.field--error::placeholder,
    .cf-field input.field--error::placeholder {
      color: #d43900;
      opacity: 1; }
  @media (max-width: 767px) {
    .field,
    .cf-field input {
      font-size: 14px;
      line-height: 1.29;
      padding: 13px 15px 11px; } }

/* ------------------------------------------------------------ *\
  Textarea
\* ------------------------------------------------------------ */
.textarea {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #333;
  width: 100%;
  padding: 9px 15px;
  border: 1px solid;
  border-color: #e0e0e0;
  border-radius: 0;
  transition: border-color 0.4s ease;
  /* Mobile */ }
  .textarea:focus {
    border-color: #000; }
  .textarea::-moz-placeholder {
    color: #212121;
    opacity: 0.7; }
  .textarea:-ms-input-placeholder {
    color: #212121;
    opacity: 0.7; }
  .textarea::placeholder {
    color: #212121;
    opacity: 0.7; }
  .textarea.field--error {
    color: #d43900;
    border-color: #d43900; }
    .textarea.field--error::-moz-placeholder {
      color: #d43900;
      opacity: 1; }
    .textarea.field--error:-ms-input-placeholder {
      color: #d43900;
      opacity: 1; }
    .textarea.field--error::placeholder {
      color: #d43900;
      opacity: 1; }
  @media (max-width: 767px) {
    .textarea {
      font-size: 14px;
      line-height: 1.29;
      padding: 13px 15px 11px; } }

/* ------------------------------------------------------------ *\
  Select
\* ------------------------------------------------------------ */
.select {
  position: relative; }
  .select:not(.select--without-arrow)::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 4px 0 4px;
    border-color: #000 transparent transparent transparent;
    position: absolute;
    top: 19px;
    right: 8px;
    pointer-events: none; }
  .select select {
    display: block;
    width: 100%;
    border: 1px solid #000;
    padding: 8px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 1px;
    text-overflow: ellipsis;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #333;
    width: 100%;
    padding: 9px 15px;
    border: 1px solid;
    border-color: #e0e0e0;
    border-radius: 0;
    transition: border-color 0.4s ease;
    /* Mobile */
    padding-right: 25px; }
    .select select:focus {
      border-color: #000; }
    .select select::-moz-placeholder {
      color: #212121;
      opacity: 0.7; }
    .select select:-ms-input-placeholder {
      color: #212121;
      opacity: 0.7; }
    .select select::placeholder {
      color: #212121;
      opacity: 0.7; }
    .select select.field--error {
      color: #d43900;
      border-color: #d43900; }
      .select select.field--error::-moz-placeholder {
        color: #d43900;
        opacity: 1; }
      .select select.field--error:-ms-input-placeholder {
        color: #d43900;
        opacity: 1; }
      .select select.field--error::placeholder {
        color: #d43900;
        opacity: 1; }
    @media (max-width: 767px) {
      .select select {
        font-size: 14px;
        line-height: 1.29;
        padding: 13px 15px 11px; } }
    .select select::-ms-expand {
      display: none; }

.select--custom::after {
  display: none; }

/* ------------------------------------------------------------ *\
  Radio
\* ------------------------------------------------------------ */
.radio {
  position: relative;
  /* Mobile */ }
  .radio input {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0; }
  .radio label {
    position: relative;
    display: inline-block;
    padding-left: 20px; }
  .radio label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 14px;
    height: 14px;
    border: 1px solid #828282;
    border-radius: 50%;
    transform: translateY(-50%); }
  .radio input:checked + label::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #004c97;
    transform: translateY(-50%); }
  @media (max-width: 767px) {
    .radio label {
      padding-left: 27px; }
    .radio label::before {
      width: 20px;
      height: 20px; }
    .radio input:checked + label::after {
      left: 5px;
      width: 10px;
      height: 10px; } }

/* ------------------------------------------------------------ *\
  Checkbox
\* ------------------------------------------------------------ */
.checkbox {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #828282; }
  .checkbox input {
    position: absolute;
    opacity: 0;
    visibility: hidden; }
  .checkbox label {
    padding-left: 25px;
    position: relative; }
    .checkbox label::before {
      content: '';
      background-color: #fff;
      border: 1px solid #828282;
      width: 15px;
      height: 15px;
      position: absolute;
      top: 2px;
      left: 1px;
      transition: background-color 0.3s ease, border 0.3s ease; }
    .checkbox label::after {
      content: '';
      width: 10px;
      height: 6px;
      border-left: 2px solid #fff;
      border-bottom: 2px solid #fff;
      transform: rotate(-45deg) scale(0);
      position: absolute;
      top: 5px;
      left: 4px;
      transition: transform 0.3s ease; }
  .checkbox input:checked + label::before {
    background-color: #004c97;
    border: 1px solid #004c97; }
  .checkbox input:checked + label::after {
    transform: rotate(-45deg) scale(1); }

/* ------------------------------------------------------------ *\
  Form Row
\* ------------------------------------------------------------ */
.form__row {
  margin-bottom: 17px; }

/* ------------------------------------------------------------ *\
  Form Label
\* ------------------------------------------------------------ */
.form__label {
  display: block;
  margin-bottom: 8px; }

/* ------------------------------------------------------------ *\
  Form Cols
\* ------------------------------------------------------------ */
.form__cols {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between; }

.form__col {
  flex: 0 0 48%;
  max-width: 48%;
  /* Mobile */ }
  @media (max-width: 767px) {
    .form__col {
      flex: 0 0 100%;
      max-width: 100%; } }

.form__cols--location {
  justify-content: flex-start;
  margin: 0 -11px; }
  .form__cols--location .form__col {
    flex: 0 0 37.5%;
    max-width: 37.5%;
    padding: 0 11px;
    /* Mobile */ }
    .form__cols--location .form__col:last-child {
      flex: 0 0 25%;
      max-width: 25%; }
    @media (max-width: 767px) {
      .form__cols--location .form__col {
        flex: 0 0 100%;
        max-width: 100%; }
        .form__cols--location .form__col:last-child {
          flex: 0 0 100%;
          max-width: 100%; } }
  .form__cols--location .form__col[style='display: none;'] + .form__col {
    flex: 1;
    min-width: 50%;
    max-width: none;
    /* Mobile */ }
    @media (max-width: 767px) {
      .form__cols--location .form__col[style='display: none;'] + .form__col {
        flex: 0 0 100%;
        max-width: 100%; } }

/* ------------------------------------------------------------ *\
  Form
\* ------------------------------------------------------------ */
.form {
  display: block; }

/* ------------------------------------------------------------ *\
  List
\* ------------------------------------------------------------ */
[class^='list-'] {
  list-style: none outside none; }

/* ------------------------------------------------------------ *\
  Logo
\* ------------------------------------------------------------ */
.logo {
  display: block; }

/* ------------------------------------------------------------ *\
  Main
\* ------------------------------------------------------------ */
.main {
  display: block;
  padding-top: 100px;
  /* Small Desktop */
  /* Tablet Portrait */
  /* Mobile */ }
  @media (max-width: 1369px) {
    .main {
      padding-top: 97px; } }
  @media (max-width: 1023px) {
    .main {
      padding-top: 98px; } }
  @media (max-width: 767px) {
    .main {
      padding-top: 89px; } }

/* ------------------------------------------------------------ *\

\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
  Search
\* ------------------------------------------------------------ */
.search {
  position: relative;
  width: 210px;
  /* Tablet Portrait */ }
  .search .search__field {
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 40px 0 15px;
    border: none;
    border-radius: 10px;
    background-color: #f4f5f4;
    font-size: 14px;
    line-height: 1.71;
    color: #333;
    letter-spacing: 0.05em;
    box-shadow: none; }
  .search .search__btn {
    position: absolute;
    top: 50%;
    right: 13px;
    z-index: 2;
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
    transform: translateY(-50%);
    transition: opacity 0.3s; }
    .search .search__btn:hover {
      opacity: 0.6; }
  @media (max-width: 1023px) {
    .search form {
      position: relative; } }

/* ------------------------------------------------------------ *\
  Section
\* ------------------------------------------------------------ */
.section {
  display: block; }

/* ------------------------------------------------------------ *\
  Slider
\* ------------------------------------------------------------ */
.slider {
  display: block; }

/* ------------------------------------------------------------ *\
  Table
\* ------------------------------------------------------------ */
.table {
  display: block; }

/* ------------------------------------------------------------ *\
  Table Orders
\* ------------------------------------------------------------ */
.table-orders {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 1.33;
  letter-spacing: 0.05em;
  color: #212121;
  overflow-y: auto;
  padding-right: 20px;
  /* Mobile */ }
  @media (max-width: 767px) {
    .table-orders {
      margin-top: -4px; } }
  .table-orders table {
    width: 680px; }
  .table-orders th {
    font-family: "Roboto Condensed", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.43;
    letter-spacing: inherit;
    text-transform: uppercase;
    color: #000;
    padding-bottom: 7px; }
  .table-orders td {
    padding-top: 13px;
    padding-bottom: 12px; }
  .table-orders th,
  .table-orders td {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px; }
    .table-orders th:first-child,
    .table-orders td:first-child {
      width: 220px; }
    .table-orders th:last-child,
    .table-orders td:last-child {
      text-align: right; }
  .table-orders td a {
    text-decoration: none; }
    .table-orders td a:hover {
      text-decoration: underline; }
  .table-orders tr:nth-child(odd) td {
    background-color: #f2f2f2; }
  .table-orders tr:nth-child(odd) td:first-child {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px; }
  .table-orders tr:nth-child(odd) td:last-child {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px; }

/* ------------------------------------------------------------ *\
  Table Order
\* ------------------------------------------------------------ */
.table-order {
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05em;
  padding-top: 35px;
  margin-top: 34px;
  position: relative;
  /* Mobile */
  /* Tablet Portrait */ }
  .table-order::before {
    content: '';
    background-color: #f2f2f2;
    width: calc(100% + 130px);
    height: 1px;
    position: absolute;
    top: 0;
    left: -65px; }
  @media (max-width: 767px) {
    .table-order {
      padding-top: 28px;
      margin-top: 12px; } }
  @media (max-width: 1023px) {
    .table-order::before {
      width: 100%;
      left: 0; } }
  .table-order td:last-child {
    text-align: right; }
  .table-order tfoot td {
    padding-top: 50px;
    /* Mobile */ }
    @media (max-width: 767px) {
      .table-order tfoot td {
        padding-top: 18px; } }

/* ------------------------------------------------------------ *\
  Link - Action
\* ------------------------------------------------------------ */
.link-action {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-decoration: none;
  color: #004c97;
  position: relative;
  /* Mobile */ }
  .link-action::after {
    content: '';
    background-color: currentColor;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -2px;
    left: 0;
    opacity: 1;
    transition: opacity 0.3s ease; }
  .link-action:hover::after {
    opacity: 0; }
  @media (max-width: 767px) {
    .link-action {
      font-size: 14px;
      line-height: 1.29; }
      .link-action::after {
        bottom: -3px; } }
