﻿@charset "UTF-8";
/*!
    ----------------------------------

    * Designa Template
    * Version - 1.0.0
    * Copyright (c) 2018

    ----------------------------------

    [Table of contents]

    1. Default body styles
    2. Page loader
    3. Headings
    4. Anchors
    5. Button styles
    6. Cards
    7. Checkbox
    8. Sections
    9. Header
    10. Main Header
    11. Breadcrumbs
    12. Navigation
    13. Media section
    14. Popular products

    ----------------------------------
 */
/*  
    ----------------------------------
    Default body styles
    ----------------------------------
*/
body {
  font-family: "Geogrotesque-Light", "Calibri";
  font-size: 14px;
  line-height: 1.3;
  color: #000000;
  -webkit-text-size-adjust: 100% !important; }
  body.expanded {
    overflow: hidden; }
  @media (min-width: 992px) {
    body {
      font-size: 16px;
      line-height: 1.6; } }
  body .wrapper {
    position: relative;
    width: 100%; }
  body .go-back {
    text-transform: uppercase;
    font-family: 'Geogrotesque-Regular';
    position: relative;
    display: block;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: .6; }
    body .go-back span {
      position: relative;
      background-color: white;
      z-index: 1; }
    @media (min-width: 768px) {
      body .go-back:hover:before {
        left: -30px;
        opacity: 0; }
      body .go-back:hover:after {
        opacity: 1;
        left: -20px; } }
    body .go-back:after, body .go-back:before {
      position: absolute;
      content: "←";
      left: -20px;
      top: 0;
      -moz-transition: all 0.6s;
      -o-transition: all 0.6s;
      -webkit-transition: all 0.6s;
      transition: all 0.6s; }
      @media (min-width: 768px) {
        body .go-back:after, body .go-back:before {
          left: -20px; } }
    body .go-back:after {
      opacity: 0;
      left: 20px; }
    @media (max-width: 767px) {
      body .go-back {
        padding-left: 20px;
        padding-bottom: 10px; }
        body .go-back:after, body .go-back:before {
          left: 0; } }
  body .dropdown-toggle {
    position: relative;
    padding-right: 30px;
    overflow: hidden; }
    body .dropdown-toggle:after {
      position: absolute;
      border: 0;
      background-image: url(img/icon-dropdown.svg);
      background-position: center;
      background-size: 7px 7px;
      background-repeat: no-repeat;
      width: 15px;
      height: 15px;
      position: absolute;
      right: 5px;
      top: 50%;
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }
    body .dropdown-toggle.btn-primary:after, body .dropdown-toggle.btn-secondary:after, body .dropdown-toggle.btn-success:after, body .dropdown-toggle.btn-danger:after, body .dropdown-toggle.btn-info:after {
      background-image: url(img/icon-dropdown-white.svg); }
  body .dropdown .dropdown-menu-scroll {
    max-height: 280px;
    overflow: auto; }
  body .dropdown .dropdown-item {
    cursor: pointer; }
  body .dropdown .dropdown-menu-filter {
    width: 220px;
    max-height: 300px;
    overflow: auto;
    padding: 15px; }
    body .dropdown .dropdown-menu-filter li {
      font-size: 14px; }
      body .dropdown .dropdown-menu-filter li .form-check label {
        line-height: 20px;
        padding-left: 30px; }
      body .dropdown .dropdown-menu-filter li .form-check input[type="checkbox"] + label:before,
      body .dropdown .dropdown-menu-filter li .form-check input[type="radio"] + label:before {
        line-height: 20px;
        height: 20px;
        width: 20px;
        font-size: 15px; }
  body .form-group-upload .label-info {
    font-family: "Geogrotesque-Semibold";
    display: block;
    font-weight: 600;
    margin-bottom: 15px; }
  body .form-group-upload input[type="file"] {
    display: none; }
  body .page-link {
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 14px;
    padding: 7px;
    margin: 0 1px; }
  body .wow {
    position: relative;
    z-index: 999; }
    @media (max-width: 767px) {
      body .wow.priority {
        z-index: -1 !important; } }

/*  
    ----------------------------------
    Page loader
    ----------------------------------
*/
.page-loader {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 999999;
  background-color: white; }
  .page-loader:before {
    font-family: 'LinearIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 40px;
    -webkit-font-smoothing: antialiased;
    content: "\e810";
    position: fixed;
    font-size: 40px;
    left: 50%;
    top: 50%;
    z-index: 999999;
    width: 40px;
    height: 40px;
    text-align: center;
    margin-left: -20px;
    margin-top: -20px;
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
    color: #F05B37;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
  .page-loader.loaded {
    width: 0;
    left: 0;
    -moz-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
    -o-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
    -webkit-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
    transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9); }
    .page-loader.loaded:before {
      opacity: 0; }

/*  
    ----------------------------------
    Headings
    ----------------------------------
*/
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Geogrotesque-Light", "Calibri"; }
  h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child,
  .h1:first-child, .h2:first-child, .h3:first-child, .h4:first-child, .h5:first-child, .h6:first-child {
    margin-top: 0; }

h1, .h1 {
  font-size: 30px;
  margin-top: 10px;
  margin-bottom: 10px; }
  @media (min-width: 992px) {
    h1, .h1 {
      font-size: 52px;
      margin-top: 20px;
      margin-bottom: 20px; } }

h2, .h2 {
  font-size: 27px;
  margin-top: 11px;
  margin-bottom: 11px; }
  @media (min-width: 992px) {
    h2, .h2 {
      font-size: 45px;
      margin-top: 19px;
      margin-bottom: 19px; } }

h3, .h3 {
  font-size: 24px;
  margin-top: 12px;
  margin-bottom: 12px; }
  @media (min-width: 992px) {
    h3, .h3 {
      font-size: 38px;
      margin-top: 18px;
      margin-bottom: 18px; } }

h4, .h4 {
  font-size: 21px;
  margin-top: 13px;
  margin-bottom: 13px; }
  @media (min-width: 992px) {
    h4, .h4 {
      font-size: 31px;
      margin-top: 17px;
      margin-bottom: 17px; } }

h5, .h5 {
  font-size: 18px;
  margin-top: 14px;
  margin-bottom: 14px; }
  @media (min-width: 992px) {
    h5, .h5 {
      font-size: 24px;
      margin-top: 16px;
      margin-bottom: 16px; } }

h6, .h6 {
  font-size: 15px;
  margin-top: 15px;
  margin-bottom: 15px; }
  @media (min-width: 992px) {
    h6, .h6 {
      font-size: 17px;
      margin-top: 15px;
      margin-bottom: 15px; } }

/*  
    ----------------------------------
    Anchors
    ----------------------------------
*/
a:focus, a:active, a:hover {
  text-decoration: none; }

a,
.btn {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

@media print {
  a[href]:after,
  abbr[title]:after,
  a[href^="#"]:after {
    content: none !important; } }

/* iPad fix */
input, textarea, select {
  -webkit-appearance: none;
  /*disable shaddow nav ipad*/
  -moz-appearance: none;
  /*disable shaddow nav ipad*/
  border-radius: 0;
  /*disable border-radius ipad*/ }

strong {
  font-family: "Geogrotesque-Semibold";
  font-size: 15px; }

/*  
    ----------------------------------
    Button styles
    ----------------------------------
*/
.btn {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  position: relative; }
  .btn.btn-remove {
    padding: 0;
    height: 27px;
    width: 15px;
    float: right; }
    @media (max-width: 767px) {
      .btn.btn-remove {
        line-height: 12px;
        height: 18px; } }
  .btn:active, .btn:focus, .btn:active:focus {
    outline: 0;
    box-shadow: none !important; }
  .btn > * {
    position: relative; }
  .btn.btn-next {
    position: relative;
    padding-right: 40px; }
    .btn.btn-next:after {
      font-family: 'DeisgnaIcons';
      content: "\e908";
      font-size: 10px;
      position: absolute;
      right: 10px;
      top: 50%;
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }
  .btn.btn-light:before, .btn.btn-primary:before, .btn.btn-dark:before, .btn.btn-outline-dark:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
  .btn.btn-light.footer-button, .btn.btn-primary.footer-button, .btn.btn-dark.footer-button, .btn.btn-outline-dark.footer-button {
    margin-right: 7px; }
    @media (max-width: 767px) {
      .btn.btn-light.footer-button, .btn.btn-primary.footer-button, .btn.btn-dark.footer-button, .btn.btn-outline-dark.footer-button {
        padding-right: 30px;
        line-height: 2; } }
  .btn.btn-light:hover:before, .btn.btn-primary:hover:before, .btn.btn-dark:hover:before, .btn.btn-outline-dark:hover:before {
    width: 100%; }
  @media (max-width: 1199px) {
    .btn.btn-light.mobile-no-outline, .btn.btn-primary.mobile-no-outline, .btn.btn-dark.mobile-no-outline, .btn.btn-outline-dark.mobile-no-outline {
      border: none; } }
  .btn.btn-primary:before, .btn.btn-dark:before {
    background-color: white; }
  .btn.btn-primary {
    background-color: #F05B37; }
    .btn.btn-primary:hover {
      color: #F05B37; }
  .btn.btn-dark:hover {
    color: black; }
  .btn.btn-dark:hover:before {
    color: black; }
  .btn.btn-outline-dark {
    background-color: transparent !important; }
    .btn.btn-outline-dark:hover {
      color: white; }
      .btn.btn-outline-dark:hover:before {
        background-color: black; }
  .btn.btn-light:hover {
    border-color: black;
    color: white; }
  .btn.btn-light:before {
    background-color: black; }
  .btn.btn-empty {
    border: 0;
    background-color: transparent; }
    .btn.btn-empty, .btn.btn-empty:focus, .btn.btn-empty:active, .btn.btn-empty:hover {
      outline: none;
      box-shadow: none; }
  .btn.btn-price-filter {
    position: relative;
    margin-left: 15px;
    padding-right: 20px; }
    .btn.btn-price-filter.active:after {
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      -webkit-transform: rotate(180deg);
      transform: rotate(180deg); }
    .btn.btn-price-filter:before, .btn.btn-price-filter:after {
      position: absolute;
      content: ""; }
    .btn.btn-price-filter:before {
      width: 0px;
      height: 100%;
      left: -10px;
      top: 0;
      /*background-color: $color-border;*/ }
    .btn.btn-price-filter:after {
      width: 12px;
      height: 12px;
      right: 0;
      background-image: url(img/icon-price-filter.svg);
      background-position: center;
      background-size: 12px 12px;
      top: 50%;
      margin-top: -6px;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      -webkit-transition: all 0.3s;
      transition: all 0.3s; }
  .btn.btn-wide {
    padding-left: 60px;
    padding-right: 60px; }
  .btn.btn-clean {
    background-color: transparent;
    border-color: white;
    color: white !important; }
    .btn.btn-clean:hover {
      background-color: white;
      border-color: white;
      color: black !important; }
  .btn.btn-clean-dark {
    background-color: transparent;
    border-color: rgba(82, 147, 153, 0.5);
    color: #529399 !important; }
    .btn.btn-clean-dark:hover {
      background-color: #529399;
      border-color: #529399;
      color: white !important; }
  .btn.btn-add {
    background: transparent;
    position: absolute;
    overflow: hidden;
    color: white;
    bottom: 0;
    right: 0;
    border: 0;
    width: 100px;
    height: 100px;
    font-size: 19px;
    cursor: pointer;
    z-index: 9; }
    .btn.btn-add:hover {
      color: white; }
      .btn.btn-add:hover:before {
        background-color: #000000; }
    .btn.btn-add .icon {
      position: absolute;
      bottom: 17px;
      right: 17px; }
    .btn.btn-add:before {
      background-color: #F05B37;
      position: absolute;
      content: "";
      width: 200%;
      height: 200%;
      top: 0%;
      left: 50%;
      z-index: 0;
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      -moz-transition: all 0.5s;
      -o-transition: all 0.5s;
      -webkit-transition: all 0.5s;
      transition: all 0.5s; }

/*  
    ----------------------------------
    Cards
    ----------------------------------
*/
.card.card-item {
  border: none;
  margin-bottom: 40px; }
  @media (max-width: 767px) {
    .card.card-item {
      transition: none !important; } }
  @media (min-width: 992px) {
    .card.card-item {
      margin-bottom: 60px; }
      .card.card-item:hover .card-body {
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        -moz-box-shadow: 0 0 50px rgba(0, 0, 0, 0.3) !important;
        -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.3) !important;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.3) !important; }
      .card.card-item:hover .card-img-top {
        -moz-transform: scale(1.03);
        -ms-transform: scale(1.03);
        -o-transform: scale(1.03);
        -webkit-transform: scale(1.03);
        transform: scale(1.03); } }
  .card.card-item .card-img-top-wrapper {
    position: relative;
    overflow: hidden; }
    .card.card-item .card-img-top-wrapper .card-img-top {
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      -webkit-transition: all 0.3s;
      transition: all 0.3s; }
      .card.card-item .card-img-top-wrapper .card-img-top.fixed-height {
        height: 600px; }
        @media (max-width: 767px) {
          .card.card-item .card-img-top-wrapper .card-img-top.fixed-height {
            height: 251px;
            object-fit: cover;
            object-position: center; } }
      @media (max-width: 767px) {
        .card.card-item .card-img-top-wrapper .card-img-top.height-small {
          height: 180px; } }
  .card.card-item .card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 22; }
    @media (min-width: 768px) {
      .card.card-item .card-badges {
        top: 15px;
        left: 15px; } }
  .card.card-item .card-body {
    position: relative;
    margin-top: -60px;
    margin-left: 15px;
    margin-right: 15px;
    background-color: white;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
    .card.card-item .card-body.large-widget {
      margin-top: -200px; }
      @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
        .card.card-item .card-body.large-widget {
          margin-top: -60px; } }
    @media (min-width: 992px) {
      .card.card-item .card-body {
        margin-left: 20px;
        margin-right: 20px; } }
    @media (max-width: 767px) {
      .card.card-item .card-body {
        transition: none;
        margin-top: -30px !important; } }
    .card.card-item .card-body .card-heading .cart-title,
    .card.card-item .card-body .card-heading .card-price {
      margin-top: 0;
      margin-bottom: 0; }
    .card.card-item .card-body .card-heading .card-title-strong {
      font-family: "Geogrotesque-Medium"; }
    .card.card-item .card-body .card-text-article {
      margin-top: 5px;
      font-family: "Geogrotesque-Light" !important; }
      @media (min-width: 992px) {
        .card.card-item .card-body .card-text-article {
          margin-top: 5px;
          /*font-family: $font-article;*/
          font-size: 85%; } }

.card.card-item-lg .card-body {
  padding: 15px; }
  @media (min-width: 992px) {
    .card.card-item-lg .card-body {
      padding: 30px; } }

.card.card-item-sm:hover .card-body:after {
  right: 10px;
  opacity: 1; }

.card.card-item-sm .card-body {
  position: relative; }
  @media (min-width: 992px) {
    .card.card-item-sm .card-body {
      margin-top: -40px; } }
  .card.card-item-sm .card-body:after {
    content: "\e908";
    font-family: 'DeisgnaIcons' !important;
    font-size: 20px;
    position: absolute;
    bottom: 10px;
    right: 30px;
    opacity: 0;
    /*@include transition(all .3s);*/ }
  @media (max-width: 991px) {
    .card.card-item-sm .card-body {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      color: white;
      margin: 0;
      background-color: transparent;
      padding: 10px;
      background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
      /* FF3.6-15 */
      background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
      /* IE6-9 */ }
      .card.card-item-sm .card-body .card-description {
        display: none; } }

.card.card-item-gallery .card-body {
  padding: 15px; }
  @media (min-width: 992px) {
    .card.card-item-gallery .card-body {
      margin-left: 10px;
      margin-right: 10px; } }

.card.card-item-gallery .results {
  color: gray; }

/*  
    ----------------------------------
    Media
    ----------------------------------
*/
.media .category-title {
  margin-bottom: 30px; }

@media (min-width: 768px) {
  .media h6, .media .h6 {
    font-size: 20px; } }

.media .btn.disabled {
  border-color: rgba(0, 0, 0, 0.3);
  opacity: 0.3; }

.media .media-box {
  margin-bottom: 20px; }
  .media .media-box .image {
    margin-bottom: 5px; }
  .media .media-box .title {
    margin-bottom: 5px;
    text-transform: none !important; }

.media .open-gallery {
  position: relative;
  cursor: pointer; }
  .media .open-gallery:before {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    left: 0;
    top: 0;
    content: "";
    background-image: url(img/icon-zoom-white.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px 30px;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    transition: all 0.4s; }
  .media .open-gallery:hover:before {
    opacity: 1; }

/*  
    ----------------------------------
    Forms & Checkboxes
    ----------------------------------
*/
.form-group {
  margin-bottom: 10px; }
  .form-group.form-measurement {
    margin-bottom: 0; }
  .form-group.butik {
    display: block; }
  .form-group #doc-name {
    background-color: #fcfcfc;
    border-radius: 5px;
    padding: 5px;
    width: 40%;
    margin-bottom: 10px;
    display: none; }
    @media (max-width: 767px) {
      .form-group #doc-name {
        width: 100%; } }

.form-check {
  padding: 5px 0; }
  .form-check.radio-as-checkbox input[type="radio"]:checked + label:before {
    content: "\e905"; }
  .form-check.radio-as-checkbox input[type="radio"] + label:before {
    -moz-border-radius: 10%;
    -webkit-border-radius: 10%;
    border-radius: 10%; }
  .form-check label {
    padding-left: 45px;
    line-height: 35px; }
    .form-check label a {
      color: #8b8b8b;
      text-decoration: underline; }
      .form-check label a:hover {
        color: #F05B37; }
  @media (max-width: 575px) {
    .form-check .visit-at-home, .form-check .visit-store {
      line-height: normal; } }
  .form-check input[type="checkbox"], .form-check input[type="radio"] {
    display: none; }
  .form-check input[type="checkbox"] + label:before,
  .form-check input[type="radio"] + label:before {
    background: white;
    content: "";
    font-family: 'DeisgnaIcons';
    line-height: 35px;
    font-size: 18px;
    position: absolute;
    border: 1px solid #bbc4c7;
    display: inline-block;
    height: 35px;
    width: 35px;
    padding: 0;
    left: 0;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px; }
  .form-check input[type="radio"] + label:before {
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%; }
  .form-check input[type="checkbox"]:checked + label:before,
  .form-check input[type="radio"]:checked + label:before {
    border-color: #F05B37;
    color: #F05B37;
    text-align: center; }
  .form-check input[type="checkbox"]:checked + label:before {
    content: "\e905"; }
  .form-check input[type="radio"]:checked + label:before {
    content: "\e906"; }
  .form-check input[type="checkbox"]:checked + label:after,
  .form-check input[type="radio"]:checked + label:after {
    font-weight: bold; }
  .form-check input[type="checkbox"]:checked + label,
  .form-check input[type="radio"]:checked + label {
    font-family: 'Geogrotesque-Medium'; }

/*  
    ---------------------------------
    Sections
    ---------------------------------
*/
section {
  padding-top: 20px;
  padding-bottom: 20px; }
  @media (min-width: 768px) {
    section {
      padding-top: 40px;
      padding-bottom: 40px; } }
  @media (min-width: 992px) {
    section {
      padding-top: 60px;
      padding-bottom: 60px; } }
  @media (min-width: 1200px) {
    section {
      padding-top: 60px;
      padding-bottom: 60px; } }

.section-inner {
  position: relative;
  z-index: 222;
  padding: 0; }
  .section-inner.section-inner-top {
    margin-top: -40px; }
    @media (min-width: 768px) {
      .section-inner.section-inner-top {
        margin-top: -40px; } }
    @media (min-width: 992px) {
      .section-inner.section-inner-top {
        margin-top: -60px; } }
    @media (min-width: 1200px) {
      .section-inner.section-inner-top {
        margin-top: -40px; }
      .section-inner.section-inner-top.margin-video-top {
        margin-top: -70px; } }
  .section-inner .container {
    position: relative; }
    .section-inner .container:before {
      z-index: -1;
      content: "";
      position: absolute;
      width: auto;
      height: 100%;
      background-color: white;
      left: 0;
      right: 0;
      top: -15px;
      padding-top: 15px;
      -moz-box-shadow: 0 -20px 15px rgba(0, 0, 0, 0.15) !important;
      -webkit-box-shadow: 0 -20px 15px rgba(0, 0, 0, 0.15) !important;
      box-shadow: 0 -20px 15px rgba(0, 0, 0, 0.15) !important;
      -moz-border-radius: 3px;
      -webkit-border-radius: 3px;
      border-radius: 3px; }
    @media (min-width: 768px) {
      .section-inner .container:before {
        left: -40px;
        right: -40px;
        top: -30px;
        padding: 40px;
        padding: 40px;
        min-width: 500px;
        max-height: 600px;
        /*@include boxShaddow(0 -20px 20px rgba(0, 0, 0, 0.15));*/ } }

.section-clean .content-box {
  padding-top: 30px; }
  @media (min-width: 992px) {
    .section-clean .content-box {
      padding-top: 60px; } }
  .section-clean .content-box .title {
    text-transform: uppercase; }

/*  
    ----------------------------------
    Container & Rows
    ----------------------------------
*/
@media (max-width: 767px) {
  .container {
    margin-left: 15px;
    margin-right: 15px;
    width: auto;
    max-width: 100%; }
  .container.no-padding-right {
    padding-right: 0; }
  .container.product-image {
    margin-top: 20px; } }

.container .no-margin-padding {
  position: relative;
  z-index: 99; }
  .container .no-margin-padding .btnMute {
    position: absolute;
    padding-left: 80px;
    margin: 0 auto;
    top: calc(100% - 120px);
    right: calc(100% - 120px) !important; }
    @media (max-width: 767px) {
      .container .no-margin-padding .btnMute {
        top: calc(100% - 80px);
        right: calc(100% - 50px) !important; }
      .container .no-margin-padding .btnMute.btnMute-content {
        left: 30px; } }
    .container .no-margin-padding .btnMute.control {
      background-image: url("img/speaker-mute.svg");
      background-color: transparent;
      background-repeat: no-repeat;
      width: 30px;
      height: 30px;
      display: inline-block;
      margin: 0;
      padding: 0;
      cursor: pointer;
      border: none;
      z-index: 1; }
      .container .no-margin-padding .btnMute.control.unmuted {
        background-image: url("img/speaker.svg"); }

.container.full-video {
  max-width: 100%;
  padding: 0; }

@media print {
  .container {
    width: 100% !important; } }

@media (max-width: 767px) {
  .container .row.text-up {
    margin-top: -15px; } }

@media (max-width: 767px) {
  .container .row .img-resize img {
    width: 100% !important;
    height: auto !important; } }

.container .row .footer-row {
  padding-left: 15px; }

@media (min-width: 768px) {
  .container-wider {
    margin-left: -120px;
    margin-right: -120px; }
  .container-wider.no-margin-padding {
    margin: 0;
    background-color: #2A2A2A; } }

.container-wider.no-margin-padding {
  background-color: #2A2A2A; }

.container-wider-content {
  padding-left: 30px;
  padding-right: 30px; }
  @media (min-width: 768px) {
    .container-wider-content {
      padding-left: 120px;
      padding-right: 120px; } }

.row-sm {
  margin-left: -5px;
  margin-right: -5px; }
  .row-sm > div {
    padding-left: 5px;
    padding-right: 5px; }

.row-clean {
  margin-left: 0;
  margin-right: 0; }
  .row-clean > div {
    padding-left: 0;
    padding-right: 0; }
    .row-clean > div.alternative-hours {
      background-image: url(img/icon-clock2.svg);
      background-position: 0% center;
      background-size: 14px 14px;
      background-repeat: no-repeat; }

/*  
    ----------------------------------
    Price & badges
    ----------------------------------
*/
.price .price-info {
  display: block;
  font-size: 13px;
  color: gray;
  /*font-family: 'Geogrotesque-Ultralight';*/ }

.old-price {
  position: relative;
  font-size: 60%; }
  .old-price:before {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    -moz-transform: rotate(-7deg);
    -ms-transform: rotate(-7deg);
    -o-transform: rotate(-7deg);
    -webkit-transform: rotate(-7deg);
    transform: rotate(-7deg);
    background-color: #F05B37; }

.badge {
  text-transform: uppercase;
  padding: 5px;
  font-size: 13px;
  line-height: 1.3; }
  @media (min-width: 768px) {
    .badge {
      padding: 5px 7.5px;
      font-size: 16px;
      line-height: 1.6; } }

/*  
    ----------------------------------
    Header
    ----------------------------------
*/
header {
  display: block;
  margin-bottom: 40px; }
  header .title {
    margin-top: 0;
    margin-bottom: 5px;
    z-index: 1;
    position: relative; }
    header .title:last-child {
      margin-bottom: 0; }
  header .subtitle {
    margin: 0;
    text-transform: uppercase;
    color: #999999; }
  header .text p:last-child {
    margin-bottom: 0; }
  @media (min-width: 768px) {
    header {
      margin-bottom: 40px; } }
  @media (min-width: 992px) {
    header {
      margin-bottom: 30px; } }
  @media (min-width: 1200px) {
    header {
      margin-bottom: 40px; } }

/*  
    ----------------------------------
    Main Header
    ----------------------------------
*/
.main-header {
  padding-top: 128px;
  padding-bottom: 20px;
  background-color: #529399;
  background-size: cover;
  background-position: center; }
  .main-header header, .main-header .title {
    color: white; }
  .main-header header {
    margin-bottom: 5px; }
  @media (min-width: 992px) {
    .main-header {
      padding-top: 200px; }
      .main-header.main-header-blog {
        padding-bottom: 100px; } }
  @media print {
    .main-header {
      padding: 40px 0 !important; } }

/*  
    ----------------------------------
    Breadcrumbs & Jubmtron
    ----------------------------------
*/
.breadcrumb {
  background-color: #F5F4EF; }

.jumbotron {
  background-color: #F5F4EF; }
  .jumbotron figure {
    padding: 0;
    text-align: left;
    display: inline-block; }
    .jumbotron figure .title {
      font-family: "Geogrotesque-Semibold";
      margin-bottom: 15px; }
    .jumbotron figure:hover figcaption:before {
      -moz-transform: scale(1.2);
      -ms-transform: scale(1.2);
      -o-transform: scale(1.2);
      -webkit-transform: scale(1.2);
      transform: scale(1.2); }
    .jumbotron figure figcaption {
      color: #F05B37;
      font-size: 20px; }
      .jumbotron figure figcaption:before {
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        font-family: 'DeisgnaIcons';
        content: "\e905";
        background-color: #F05B37;
        color: white;
        -moz-border-radius: 100%;
        -webkit-border-radius: 100%;
        border-radius: 100%;
        width: 30px;
        height: 30px;
        line-height: 30px;
        display: inline-block;
        text-align: center;
        margin-right: 10px; }
  @media (max-width: 768px) {
    .jumbotron .text-center {
      text-align: left !important; } }

/*  
    ----------------------------------
    Navigation
    ----------------------------------
*/
.navigation {
  background-color: white;
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15) !important;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15) !important;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
  z-index: 9999999;
  /*
        Icons
    */
  /*
        ULogo
    */
  /*
        Unordered list
    */
  /*
        Navigation overlay
    */
  /*
        Top & main nav animation
    */
  /*
        Main navigation
    */
  /*
        Top navigation
    */
  /*
        Search wrapper
    */
  /*
        Container
    */ }
  @media (max-width: 991px) {
    .navigation {
      padding-top: 5px;
      height: 60px; } }
  .navigation.nav-hidden {
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); }
  .navigation .dicon {
    width: 25px;
    display: inline-block;
    vertical-align: middle;
    /*&.dicon-hamburger {
            font-size: 30px;

            @media(max-width:$screen-max-sm) {
                padding-bottom: 0;

                &:after {
                    position: absolute;
                    left: 60%;
                    bottom: -16.5px;
                    font-size: 10px;
                    font-family: sans-serif;
                    content: attr(data-title);
                    @include transform(translateX(-50%));
                }

                @supports (-webkit-overflow-scrolling: touch) {
                    bottom: -15px;
                }
            }
        }*/ }
    @media (max-width: 767px) {
      .navigation .dicon.dicon-map-pin, .navigation .dicon.dicon-meeting, .navigation .dicon.dicon-menu, .navigation .dicon.dicon-hamburger {
        position: relative; }
        .navigation .dicon.dicon-map-pin:before, .navigation .dicon.dicon-meeting:before, .navigation .dicon.dicon-menu:before, .navigation .dicon.dicon-hamburger:before {
          font-size: 25px; }
        .navigation .dicon.dicon-map-pin.mobile-icon:before, .navigation .dicon.dicon-meeting.mobile-icon:before, .navigation .dicon.dicon-menu.mobile-icon:before, .navigation .dicon.dicon-hamburger.mobile-icon:before {
          font-size: 15px; }
        .navigation .dicon.dicon-map-pin:after, .navigation .dicon.dicon-meeting:after, .navigation .dicon.dicon-menu:after, .navigation .dicon.dicon-hamburger:after {
          position: absolute;
          left: 50%;
          bottom: -15px;
          font-size: 10px;
          font-family: sans-serif;
          content: attr(data-title);
          -moz-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          -o-transform: translateX(-50%);
          -webkit-transform: translateX(-50%);
          transform: translateX(-50%); }
      .navigation .dicon.dicon-map-pin:before, .navigation .dicon.dicon-meeting:before {
        font-size: 20px; }
      .navigation .dicon.dicon-hamburger:after {
        bottom: -13px; } }
    @media (min-width: 1200px) {
      .navigation .dicon.dicon-hamburger {
        font-size: 30px; } }
  .navigation .logo {
    margin-right: 40px; }
    @media (max-width: 991px) {
      .navigation .logo {
        margin-top: 10px; } }
    @media (max-width: 767px) {
      .navigation .logo {
        margin-right: 0; } }
  .navigation .butik-link {
    position: relative;
    display: inline-block !important; }
    .navigation .butik-link:before {
      content: "";
      position: absolute;
      width: 0;
      height: 1px;
      background-color: black;
      left: 0;
      top: 100%;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      -webkit-transition: all 0.3s;
      transition: all 0.3s; }
    .navigation .butik-link:hover:before {
      width: 100%; }
  .navigation ul {
    margin: 0;
    padding: 0; }
    .navigation ul li {
      padding: 0;
      list-style-type: none;
      display: inline-block; }
      .navigation ul li .btn:focus {
        -moz-box-shadow: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important; }
  .navigation .nav-overlay {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9988;
    opacity: 0;
    visibility: hidden;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
  .navigation.expanded .nav-overlay {
    opacity: 1;
    visibility: visible; }
  .navigation.expanded-search .nav-overlay:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    content: "";
    height: 74px;
    background-color: white; }
  .navigation.expanded-search .top-nav {
    opacity: 0; }
  .navigation.expanded-search .search-wrapper {
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible; }
    .navigation.expanded-search .search-wrapper .search {
      width: 100%;
      -moz-transition-delay: 0.5s;
      -o-transition-delay: 0.5s;
      -webkit-transition-delay: 0.5s;
      transition-delay: 0.5s; }
  .navigation.expanded-search .main-nav,
  .navigation.expanded-search .top-nav {
    -moz-transform: translate3d(0, -100px, 0);
    -ms-transform: translate3d(0, -100px, 0);
    -o-transform: translate3d(0, -100px, 0);
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
    opacity: 0;
    visibility: hidden; }
  .navigation .main-nav,
  .navigation .top-nav {
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s; }
  .navigation .main-nav ul li a {
    font-size: 28px;
    margin-left: 15px;
    position: relative; }
    .navigation .main-nav ul li a:before {
      content: "";
      position: absolute;
      background-color: black;
      height: 1px;
      bottom: 0;
      left: 0;
      width: 0;
      -moz-transition: width 0.3s;
      -o-transition: width 0.3s;
      -webkit-transition: width 0.3s;
      transition: width 0.3s; }
  .navigation .main-nav ul li:hover a:before {
    width: 100%; }
  .navigation .top-nav {
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s; }
    .navigation .top-nav .dicon-search,
    .navigation .top-nav .dicon-menu {
      font-size: 20px;
      display: inline; }
  .navigation .dropdown-nav {
    position: fixed;
    width: 100%;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: white;
    z-index: 9999;
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
    @media (min-width: 768px) {
      .navigation .dropdown-nav {
        width: 400px;
        left: auto; } }
    .navigation .dropdown-nav.expanded {
      -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
      -o-transform: translate3d(0, 0, 0);
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0); }
    .navigation .dropdown-nav .mobile-search {
      background-color: #F5F4EF;
      padding: 20px;
      margin-left: -10px;
      margin-right: -10px; }
      @media (min-width: 992px) {
        .navigation .dropdown-nav .mobile-search {
          display: none; } }
      .navigation .dropdown-nav .mobile-search .search-wrapper {
        display: block; }
        .navigation .dropdown-nav .mobile-search .search-wrapper .search .form-control {
          padding-left: 45px;
          line-height: 30px; }
        .navigation .dropdown-nav .mobile-search .search-wrapper .search .search-icon {
          font-size: 16px; }
    .navigation .dropdown-nav .dropdown-scroll {
      position: absolute;
      width: 100%;
      height: 100%;
      padding: 15px;
      overflow-y: scroll;
      -webkit-overflow-scrolling: touch;
      padding-top: 70px; }
      @media (min-width: 992px) {
        .navigation .dropdown-nav .dropdown-scroll {
          padding: 40px; } }
      .navigation .dropdown-nav .dropdown-scroll .logo {
        position: absolute;
        left: 15px;
        top: 15px;
        z-index: 9999; }
        @media (min-width: 768px) {
          .navigation .dropdown-nav .dropdown-scroll .logo {
            display: none; } }
      .navigation .dropdown-nav .dropdown-scroll .main-nav {
        display: none; }
        @media (max-width: 991px) {
          .navigation .dropdown-nav .dropdown-scroll .main-nav {
            display: block;
            border-bottom: 1px solid #e0ded0;
            padding-bottom: 10px;
            margin-bottom: 10px; }
            .navigation .dropdown-nav .dropdown-scroll .main-nav ul li a {
              margin-left: 0;
              font-family: 'Geogrotesque-Light'; } }
    .navigation .dropdown-nav .mobile-links {
      display: block;
      padding: 15px 0; }
      .navigation .dropdown-nav .mobile-links .btn {
        margin-bottom: 15px; }
      .navigation .dropdown-nav .mobile-links .dicon {
        float: left; }
        .navigation .dropdown-nav .mobile-links .dicon.dicon-meeting, .navigation .dropdown-nav .mobile-links .dicon.dicon-ruler, .navigation .dropdown-nav .mobile-links .dicon.dicon-map-pin {
          margin-top: 4px; }
        .navigation .dropdown-nav .mobile-links .dicon.dicon-home {
          margin-top: 4px; }
      @media (min-width: 992px) {
        .navigation .dropdown-nav .mobile-links {
          display: none; } }
    .navigation .dropdown-nav .close-menu {
      font-size: 35px; }
      @media (max-width: 991px) {
        .navigation .dropdown-nav .close-menu {
          position: absolute;
          right: 15px;
          top: 12px;
          z-index: 9999; } }
      .navigation .dropdown-nav .close-menu i {
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        display: inline-block;
        cursor: pointer; }
      .navigation .dropdown-nav .close-menu:hover i {
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg); }
    .navigation .dropdown-nav ul li {
      display: block;
      position: relative; }
      .navigation .dropdown-nav ul li .open-dropdown {
        position: absolute;
        right: 0;
        top: 0;
        height: 52px;
        line-height: 54px;
        cursor: pointer; }
      .navigation .dropdown-nav ul li.expanded > .open-dropdown {
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg); }
      .navigation .dropdown-nav ul li a {
        padding: 5px 0;
        display: block;
        font-family: 'Geogrotesque-Medium';
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s; }
    .navigation .dropdown-nav .multi-menu {
      margin-bottom: 15px; }
      @media (max-width: 991px) {
        .navigation .dropdown-nav .multi-menu {
          border-bottom: 1px solid #e0ded0;
          padding-bottom: 10px;
          margin-bottom: 10px; } }
      .navigation .dropdown-nav .multi-menu li a {
        padding: 5px 0;
        font-family: 'Geogrotesque-Light'; }
        @media (max-width: 991px) {
          .navigation .dropdown-nav .multi-menu li a {
            font-size: 14px; } }
      .navigation .dropdown-nav .multi-menu li > strong {
        padding: 5px 0;
        margin-top: 15px; }
      @media (min-width: 992px) {
        .navigation .dropdown-nav .multi-menu > li {
          border-bottom: 1px solid #e1ded0; } }
      .navigation .dropdown-nav .multi-menu > li ul {
        display: none; }
      .navigation .dropdown-nav .multi-menu > li > ul {
        margin-bottom: 15px; }
        .navigation .dropdown-nav .multi-menu > li > ul > .expanded {
          background-color: #F5F4EF;
          margin-left: -40px;
          padding-left: 40px;
          margin-right: -40px;
          padding-right: 40px; }
          .navigation .dropdown-nav .multi-menu > li > ul > .expanded > a {
            font-family: 'Geogrotesque-Semibold'; }
          .navigation .dropdown-nav .multi-menu > li > ul > .expanded .open-dropdown {
            right: 40px; }
        .navigation .dropdown-nav .multi-menu > li > ul .open-dropdown {
          font-size: 14px;
          line-height: 34px;
          height: 32px; }
      .navigation .dropdown-nav .multi-menu > li:last-child {
        border-bottom: 0; }
      .navigation .dropdown-nav .multi-menu > li > a {
        font-family: 'Geogrotesque-Semibold';
        text-transform: uppercase;
        padding: 10px 0; }
        @media (min-width: 992px) {
          .navigation .dropdown-nav .multi-menu > li > a {
            padding: 15px 0; } }
        @media (max-width: 991px) {
          .navigation .dropdown-nav .multi-menu > li > a {
            font-size: 16px; } }
  @media (min-width: 992px) {
    .navigation .search-wrapper {
      position: absolute;
      top: 0;
      left: 180px;
      right: 60px;
      padding: 10px 0;
      opacity: 0;
      visibility: hidden;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      -webkit-transition: all 0.3s;
      transition: all 0.3s; }
      .navigation .search-wrapper .search {
        width: 0;
        -moz-transition-delay: 0.5s;
        -o-transition-delay: 0.5s;
        -webkit-transition-delay: 0.5s;
        transition-delay: 0.5s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s; }
        .navigation .search-wrapper .search .form-control {
          line-height: 28px; } }
  @media (max-width: 991px) {
    .navigation .search-wrapper {
      display: none; } }
  .navigation .search-wrapper .search .form-control {
    background-color: white; }
  .navigation .search-wrapper .search-results {
    z-index: 11;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    padding: 40px 60px;
    opacity: 0;
    visibility: hidden;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -moz-transform: translate3d(0, 20px, 0);
    -ms-transform: translate3d(0, 20px, 0);
    -o-transform: translate3d(0, 20px, 0);
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
    .navigation .search-wrapper .search-results.expanded {
      -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
      -o-transform: translate3d(0, 0, 0);
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      opacity: 1;
      visibility: visible; }
    .navigation .search-wrapper .search-results ul li {
      display: block; }
      .navigation .search-wrapper .search-results ul li a {
        display: inline-block;
        padding: 3px 0; }
  .navigation .container {
    position: relative;
    z-index: 9989; }
    @media (min-width: 992px) {
      .navigation .container {
        padding: 15px 0; } }
    @media (max-width: 767px) {
      .navigation .container {
        margin-left: 0;
        margin-right: 0; } }

.sticky-top {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 1020; }

/*  
    ----------------------------------
    Media section
    ----------------------------------
*/
.media-section {
  overflow: hidden; }
  @media (max-width: 767px) {
    .media-section .container {
      margin: 0;
      padding: 0; } }
  .media-section.mosaic-padding {
    padding-right: 30px;
    padding-left: 30px; }
  .media-section.media-section-header {
    padding: 0; }
    @media (min-width: 768px) {
      .media-section.media-section-header .media-item {
        height: 400px; } }
    @media (min-width: 992px) {
      .media-section.media-section-header .media-item {
        height: 600px; } }
    @media (min-width: 1200px) {
      .media-section.media-section-header .media-item {
        height: 800px; } }
    .media-section.media-section-header .media-item .media-caption {
      left: 30px;
      right: 30px; }
      .media-section.media-section-header .media-item .media-caption.video-header {
        width: 55%;
        left: 0;
        margin: auto;
        height: 100%;
        margin-top: -100px;
        position: relative;
        padding-top: 140px;
        z-index: 1; }
        @media (max-width: 767px) {
          .media-section.media-section-header .media-item .media-caption.video-header {
            margin-top: 25px;
            margin-bottom: 25px;
            padding-top: 0; } }
        .media-section.media-section-header .media-item .media-caption.video-header .inline {
          position: absolute; }
          .media-section.media-section-header .media-item .media-caption.video-header .inline.text-bottomright {
            bottom: 70px;
            right: 0; }
            @media (max-width: 767px) {
              .media-section.media-section-header .media-item .media-caption.video-header .inline.text-bottomright {
                bottom: 0; } }
          .media-section.media-section-header .media-item .media-caption.video-header .inline.text-topright {
            right: 0;
            text-align: right; }
          .media-section.media-section-header .media-item .media-caption.video-header .inline.text-bottomleft {
            bottom: 70px;
            left: 0; }
            @media (max-width: 767px) {
              .media-section.media-section-header .media-item .media-caption.video-header .inline.text-bottomleft {
                bottom: 0; } }
          .media-section.media-section-header .media-item .media-caption.video-header .inline.text-videocenter {
            top: 60%;
            transform: translateY(-50%) translateX(-50%);
            left: 50%; }
            @media (max-width: 767px) {
              .media-section.media-section-header .media-item .media-caption.video-header .inline.text-videocenter {
                top: 40%; } }
        .media-section.media-section-header .media-item .media-caption.video-header .caption-title {
          margin-top: 0 !important; }
      @media (min-width: 768px) {
        .media-section.media-section-header .media-item .media-caption {
          left: 120px; } }
      @media (max-width: 767px) {
        .media-section.media-section-header .media-item .media-caption .btn-lg {
          padding: 5px;
          font-size: 12px; }
        .media-section.media-section-header .media-item .media-caption.mobile-size {
          width: 55%; }
        .media-section.media-section-header .media-item .media-caption.video-header {
          width: 85%; }
          .media-section.media-section-header .media-item .media-caption.video-header .inline {
            margin-bottom: 60px; } }
  .media-section.media-section-header-sm .media-item {
    height: 150px; }
    @media (min-width: 768px) {
      .media-section.media-section-header-sm .media-item {
        height: 200px; } }
    @media (min-width: 992px) {
      .media-section.media-section-header-sm .media-item {
        height: 300px; } }
    @media (min-width: 1200px) {
      .media-section.media-section-header-sm .media-item {
        height: 400px; } }
  .media-section .media-item {
    width: auto;
    height: 235px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
    .media-section .media-item.media-item-video {
      overflow: hidden; }
      @media (min-width: 992px) {
        .media-section .media-item.media-item-video.height-video {
          height: calc(100vh - 70px);
          position: relative; }
        .media-section .media-item.media-item-video .media-caption .inline {
          position: absolute; }
          .media-section .media-item.media-item-video .media-caption .inline.text-bottomright {
            bottom: 70px;
            right: 0; }
          .media-section .media-item.media-item-video .media-caption .inline.text-bottomleft {
            bottom: 70px;
            left: 0; }
          .media-section .media-item.media-item-video .media-caption .inline.text-topleft {
            text-align: left; }
          .media-section .media-item.media-item-video .media-caption .inline.text-topright {
            right: 0;
            text-align: right; }
          .media-section .media-item.media-item-video .media-caption .inline.text-videocenter {
            top: 60%;
            transform: translateY(-50%) translateX(-50%);
            left: 50%; } }
    @media (min-width: 992px) and (max-width: 767px) {
      .media-section .media-item.media-item-video .media-caption .inline.text-videocenter {
        top: 40%; } }
      .media-section .media-item.media-item-video video {
        position: absolute;
        top: 50%;
        left: 50%;
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%;
        z-index: -1000;
        overflow: hidden; }
        .media-section .media-item.media-item-video video.video-content {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          transform: none; }
        @media (max-width: 767px) {
          .media-section .media-item.media-item-video video {
            /*@supports (-webkit-overflow-scrolling: touch) {
                        top: 46%;
                    }*/ }
            .media-section .media-item.media-item-video video {
              width: 100%;
              top: 100px; } }
      .media-section .media-item.media-item-video .poster, .media-section .media-item.media-item-video .poster-content {
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 1; }
      .media-section .media-item.media-item-video .play {
        z-index: 2;
        left: 50%;
        top: 50%;
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        margin: 0;
        cursor: pointer; }
        @media (max-width: 767px) {
          .media-section .media-item.media-item-video .play {
            background-size: 60px 50px !important;
            background-repeat: no-repeat; } }
    .media-section .media-item.height-small {
      height: 180px; }
    .media-section .media-item + .gallery-cards {
      margin-top: 10px; }
    @media (min-width: 768px) {
      .media-section .media-item {
        height: 200px; }
      .media-section .media-item.height-small {
        height: 380px; } }
    @media (min-width: 992px) {
      .media-section .media-item {
        height: 400px; }
      .media-section .media-item.height-small {
        height: 455px; } }
    @media (min-width: 1200px) {
      .media-section .media-item, .media-section .media-item.height-small {
        height: 600px; } }
    @media only screen and (min-width: 576px) and (max-device-width: 767px) and (orientation: landscape) {
      .media-section .media-item.height-small {
        height: 325px; } }
    .media-section .media-item .play-video, .media-section .media-item .play-video-content {
      position: absolute;
      left: 50%;
      top: 50%;
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 100px;
      height: 100px;
      background-position: center;
      background-image: url(img/icon-play.svg);
      background-size: 100px 100px;
      cursor: pointer; }
      @media (max-width: 767px) {
        .media-section .media-item .play-video, .media-section .media-item .play-video-content {
          left: 50%;
          top: 50%;
          background-size: 70px 85px;
          background-repeat: no-repeat; }
          .media-section .media-item .play-video:after, .media-section .media-item .play-video-content:after {
            /*content: attr(data-title);*/
            display: inline-block;
            width: 300px;
            padding-left: 30px;
            color: white; } }
    .media-section .media-item.media-content {
      z-index: -1;
      background-color: #2A2A2A; }
      @media (min-width: 992px) {
        .media-section .media-item.media-content {
          margin: 0 22px; } }
      .media-section .media-item.media-content .media-caption {
        height: 100%;
        width: 100%;
        left: 0;
        z-index: 2; }
        .media-section .media-item.media-content .media-caption .inline.text-bottomleft {
          bottom: 20px;
          left: 60px; }
          @media (max-width: 767px) {
            .media-section .media-item.media-content .media-caption .inline.text-bottomleft {
              position: absolute;
              bottom: 0; } }
        .media-section .media-item.media-content .media-caption .inline.text-bottomright {
          bottom: 20px;
          right: 60px; }
          @media (max-width: 767px) {
            .media-section .media-item.media-content .media-caption .inline.text-bottomright {
              position: absolute;
              bottom: 0;
              right: 55px; } }
        .media-section .media-item.media-content .media-caption .inline.text-topleft {
          top: 80px;
          left: 30px; }
          @media (max-width: 767px) {
            .media-section .media-item.media-content .media-caption .inline.text-topleft {
              position: absolute;
              top: 20px; } }
        .media-section .media-item.media-content .media-caption .inline.text-topright {
          top: 80px;
          right: 40px; }
          @media (max-width: 767px) {
            .media-section .media-item.media-content .media-caption .inline.text-topright {
              position: absolute;
              top: 20px; } }
        @media (max-width: 767px) {
          .media-section .media-item.media-content .media-caption .inline.text-videocenter {
            top: 60%;
            transform: translateY(-50%) translateX(-50%);
            left: 50%;
            position: absolute; } }
    .media-section .media-item .media-caption {
      position: absolute;
      width: 35%;
      top: 50%;
      left: 15px;
      right: 15px;
      color: white;
      text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }
      @media (min-width: 768px) {
        .media-section .media-item .media-caption {
          width: 420px;
          left: 60px;
          right: auto; } }
      .media-section .media-item .media-caption .caption-title {
        font-family: 'Geogrotesque-Bold';
        margin-bottom: 15px;
        font-size: 30px; }
        .media-section .media-item .media-caption .caption-title .light {
          font-family: "Geogrotesque-Ultralight"; }
        @media (min-width: 768px) {
          .media-section .media-item .media-caption .caption-title {
            font-size: 40px;
            line-height: 1;
            margin-top: -30px; } }
        @media (min-width: 992px) {
          .media-section .media-item .media-caption .caption-title {
            font-size: 50px;
            margin-top: -50px; } }
        @media (min-width: 1200px) {
          .media-section .media-item .media-caption .caption-title {
            font-size: 60px; } }
        @media (max-width: 767px) {
          .media-section .media-item .media-caption .caption-title {
            line-height: 1;
            margin-bottom: 12px;
            font-size: x-large; } }
      @media (min-width: 768px) {
        .media-section .media-item .media-caption .caption-description {
          display: block;
          font-size: 20px;
          line-height: 32px; }
          .media-section .media-item .media-caption .caption-description.caption-description-lg {
            font-size: 26px; } }
      @media (max-width: 767px) {
        .media-section .media-item .media-caption .caption-description .front-width {
          width: 220px; } }
      .media-section .media-item .media-caption.media-caption-lg .caption-title {
        line-height: 0.9;
        margin-bottom: 0;
        margin-top: -50px;
        width: 150px; }
        .media-section .media-item .media-caption.media-caption-lg .caption-title .btn {
          font-family: 'Geogrotesque-Regular';
          font-size: 14px; }
        .media-section .media-item .media-caption.media-caption-lg .caption-title .caption-text {
          margin-bottom: 15px; }
        @media (min-width: 992px) {
          .media-section .media-item .media-caption.media-caption-lg .caption-title {
            width: 300px;
            margin-top: -150px; }
            .media-section .media-item .media-caption.media-caption-lg .caption-title .btn {
              font-size: 24px; }
            .media-section .media-item .media-caption.media-caption-lg .caption-title .caption-text {
              margin-bottom: 40px; } }
      .media-section .media-item .media-caption.media-caption-bottom {
        top: auto;
        bottom: 80px;
        display: none; }
        .media-section .media-item .media-caption.media-caption-bottom > div {
          margin: 0; }
        .media-section .media-item .media-caption.media-caption-bottom small {
          font-size: 75%; }
        @media (min-width: 991px) {
          .media-section .media-item .media-caption.media-caption-bottom {
            display: block; } }
  .media-section .gallery {
    position: relative; }
    .media-section .gallery .slide-counter {
      position: absolute;
      left: 0;
      bottom: 20px; }
    .media-section .gallery figure {
      position: relative; }
      .media-section .gallery figure figcaption {
        padding: 15px; }
      @media (min-width: 768px) {
        .media-section .gallery figure .media-caption {
          left: 160px; } }

/*  
    ----------------------------------
    Products
    ----------------------------------
*/
.products .title {
  margin-bottom: 15px; }
  @media (min-width: 992px) {
    .products .title {
      margin-bottom: 30px; } }

.products .related-products {
  margin-top: 40px; }

.products .colors {
  margin-top: 40px; }

.products .pre-price {
  margin-bottom: 0; }
  .products .pre-price .badges {
    /*margin-right: $spacing-xs;*/ }
    .products .pre-price .badges .badge {
      vertical-align: bottom; }

.products .item-options {
  font-size: 14px; }
  @media (max-width: 767px) {
    .products .item-options {
      position: relative;
      /*padding: $spacing-sm/2 $spacing-xs;*/
      /*margin-top: $spacing-sm/2;*/
      padding: 15px; }
      .products .item-options:before {
        position: absolute;
        width: 100%;
        height: 100%;
        content: "";
        background-color: #F5F4EF;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0; }
    .products .item-options .row {
      padding: 5px 0; } }

.products .item-dimension img {
  max-width: 310px; }

.products .item-dimension p {
  margin-bottom: 5px; }

@media (max-width: 767px) {
  .products .item-dimension {
    /*img {
                margin-left: 40px;
                max-width: 190px;
            }*/ }
    .products .item-dimension {
      /*position: relative;
                padding: $spacing-sm/2 $spacing-xs;
                background-color: $color-section;
                padding-top: 30px;*/
      order: 2;
      padding-top: 25px; }
    .products .item-dimension p {
      float: left; } }

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .products .item-dimension img {
    max-width: 190px; } }

.products .price {
  margin-top: 0; }

.products .price-block {
  padding: 15px; }

.products .filter-wrapper .filter-label {
  display: none; }

@media (max-width: 767px) {
  .products .filter-wrapper {
    background-color: #F5F4EF;
    margin-bottom: 5px;
    padding: 5px 15px 5px; }
    .products .filter-wrapper .filter-label {
      display: block;
      float: left;
      padding-top: 6px; }
    .products .filter-wrapper * {
      font-size: 13px; } }

@media (max-width: 767px) {
  .products .product-box {
    padding-right: 5px;
    padding-left: 5px; } }

@media (max-width: 767px) {
  .products .product-box .card.card-item {
    margin-bottom: 10px; } }

.products .product-box .card.card-item .card-body.shadow-lg {
  -moz-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.14) !important;
  -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.14) !important;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.14) !important; }

.products .product-box .card.card-item .card-body .card-heading .cart-title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden; }

@media (min-width: 992px) {
  .products .product-box .card-body {
    min-height: 205px; } }

.related-products figure {
  position: relative;
  overflow: hidden; }
  .related-products figure:hover img {
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }
  .related-products figure img {
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
  .related-products figure .image {
    overflow: hidden; }
    .related-products figure .image img {
      width: 100%; }
  .related-products figure .card-badges {
    position: absolute;
    top: 15px;
    left: 15px; }
  .related-products figure figcaption {
    padding: 15px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    color: white;
    margin: 0;
    background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
    /* IE6-9 */ }
    .related-products figure figcaption.last-item {
      position: absolute;
      left: 50%;
      top: 50%;
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      background: transparent;
      bottom: auto;
      right: auto; }
    .related-products figure figcaption > span {
      display: block;
      margin: 0; }
    .related-products figure figcaption .title {
      font-family: "Geogrotesque-Medium";
      margin: 0; }
      .related-products figure figcaption .title:hover {
        color: white; }
    .related-products figure figcaption .price {
      font-family: "Geogrotesque-Ultralight"; }

/*  
    ----------------------------------
    Gallery Cards
    ----------------------------------
*/
.gallery-cards .container-fluid {
  padding: 0;
  overflow: hidden; }

@media (min-width: 768px) {
  .gallery-cards.gallery-cards-lg figure.fig-lg {
    height: 710px; }
  .gallery-cards.gallery-cards-lg figure.fig-sm {
    height: 350px; } }

.gallery-cards figure {
  margin-bottom: 10px;
  position: relative;
  background-image: url(/Files/Templates/Designs/Designa/assets/images/dummy.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden; }
  @media (min-width: 768px) {
    .gallery-cards figure {
      position: relative; }
      .gallery-cards figure:before {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        content: "";
        background-image: inherit;
        background-size: cover;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s; }
      .gallery-cards figure:hover:before {
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1); }
      .gallery-cards figure:hover figcaption .btn-light {
        margin-bottom: 0;
        opacity: 1; }
      .gallery-cards figure:hover .lg-text {
        font-size: 40px; }
      .gallery-cards figure:hover .sm-text {
        font-size: 22px; }
      .gallery-cards figure figcaption .btn-light {
        margin-bottom: -20px;
        opacity: 0;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s; } }
  .gallery-cards figure img {
    width: auto;
    max-width: 100%; }
    @media (min-width: 768px) {
      .gallery-cards figure img {
        display: none; } }
  .gallery-cards figure:hover figcaption {
    padding-bottom: 30px;
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s; }
    .gallery-cards figure:hover figcaption:before {
      width: 100%; }
  @media (min-width: 768px) {
    .gallery-cards figure.fig-lg {
      height: 510px; }
    .gallery-cards figure.fig-sm {
      height: 250px; } }
  .gallery-cards figure figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 20px 10px;
    background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
    /* IE6-9 */
    color: white;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-left: 0 solid transparent; }
    .gallery-cards figure figcaption:before {
      content: "";
      position: absolute;
      height: 10px;
      width: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #F05B37;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
      display: none; }
    .gallery-cards figure figcaption .lg-text {
      margin-bottom: 5px; }
    .gallery-cards figure figcaption .lg-text,
    .gallery-cards figure figcaption .sm-text {
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      -webkit-transition: all 0.3s;
      transition: all 0.3s; }

.gallery-cards .owl-gridslider .owl-nav.disabled + .owl-dots,
.gallery-cards .owl-gridslider .owl-dots {
  position: relative;
  z-index: 999;
  margin-top: -66px;
  padding: 30px 0 10px 0;
  background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
  /* IE6-9 */ }
  .gallery-cards .owl-gridslider .owl-nav.disabled + .owl-dots span,
  .gallery-cards .owl-gridslider .owl-dots span {
    background-color: white;
    opacity: 0.5; }
  .gallery-cards .owl-gridslider .owl-nav.disabled + .owl-dots .owl-dot span,
  .gallery-cards .owl-gridslider .owl-dots .owl-dot span {
    background-color: white; }
  .gallery-cards .owl-gridslider .owl-nav.disabled + .owl-dots .owl-dot.active span,
  .gallery-cards .owl-gridslider .owl-dots .owl-dot.active span {
    opacity: 1; }

/*  
    ----------------------------------
    Contact card
    ----------------------------------
*/
.contact-card {
  overflow: hidden; }
  .contact-card .card-sm {
    position: relative;
    padding: 40px 0;
    z-index: 1; }
    .contact-card .card-sm:before {
      z-index: -2;
      content: "";
      width: 1920px;
      height: 100%;
      background-color: #F5F4EF;
      position: absolute;
      right: -10px;
      top: 0;
      bottom: 0; }
      @media (max-width: 767px) {
        .contact-card .card-sm:before {
          right: 0;
          -moz-box-shadow: -5px 10px 60px rgba(0, 0, 0, 0.2) !important;
          -webkit-box-shadow: -5px 10px 60px rgba(0, 0, 0, 0.2) !important;
          box-shadow: -5px 10px 60px rgba(0, 0, 0, 0.2) !important; } }
    .contact-card .card-sm a.link {
      border-bottom: 1px solid #bab391; }
      .contact-card .card-sm a.link:hover {
        border: 0; }
  .contact-card .card-lg {
    position: relative;
    padding: 40px;
    z-index: 2; }
    .contact-card .card-lg p:last-child {
      margin-bottom: 0; }
    .contact-card .card-lg:before {
      content: "";
      width: auto;
      height: auto;
      background-color: #F5F4EF;
      position: absolute;
      z-index: -1;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      -moz-box-shadow: -5px 0px 30px rgba(0, 0, 0, 0.15) !important;
      -webkit-box-shadow: -5px 0px 30px rgba(0, 0, 0, 0.15) !important;
      box-shadow: -5px 0px 30px rgba(0, 0, 0, 0.15) !important; }
      @media (min-width: 768px) {
        .contact-card .card-lg:before {
          background-position: 90% 80%;
          background-image: url(img/contact-1.png);
          background-repeat: no-repeat;
          background-size: 250px 227px;
          top: -40px;
          left: -40px;
          right: -40px;
          bottom: -40px; } }
    @media (max-width: 767px) {
      .contact-card .card-lg {
        margin-top: 40px; }
        .contact-card .card-lg:before {
          right: -40px; } }
  .contact-card .dropdown .dropdown-menu-scroll {
    max-height: 127px; }
  @media (max-width: 767px) {
    .contact-card .btn-primary {
      margin-bottom: 15px; } }

/*  
    ----------------------------------
    Newsletter
    ----------------------------------
*/
.newsletter .pre-subtitle {
  margin-bottom: 0; }
  .newsletter .pre-subtitle span {
    color: #F05B37;
    font-weight: 600; }

.newsletter .title {
  margin-top: 0; }

.newsletter .container {
  position: relative; }
  .newsletter .container:before {
    content: "";
    background-color: #F5F4EF;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }
    @media (min-width: 992px) {
      .newsletter .container:before {
        -moz-box-shadow: -5px 10px 60px rgba(0, 0, 0, 0.2) !important;
        -webkit-box-shadow: -5px 10px 60px rgba(0, 0, 0, 0.2) !important;
        box-shadow: -5px 10px 60px rgba(0, 0, 0, 0.2) !important; } }

.newsletter .newsletter-box {
  padding: 40px 0;
  position: relative; }
  .newsletter .newsletter-box .btn-primary {
    color: white; }
    .newsletter .newsletter-box .btn-primary:hover {
      color: #F05B37; }
  .newsletter .newsletter-box .newsletter-image {
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2); }
    @media (max-width: 991px) {
      .newsletter .newsletter-box .newsletter-image {
        position: absolute;
        width: 50px;
        top: 0;
        right: 0; } }

/*  
    ----------------------------------
    owl Products
    ----------------------------------
*/
.owl-products {
  position: relative; }
  @media (max-width: 767px) {
    .owl-products .owl-item .card-item {
      margin-bottom: 0; } }
  .owl-products .owl-nav {
    display: none;
    position: absolute;
    margin-top: 0;
    top: -65px;
    right: 0; }
    @media (min-width: 768px) {
      .owl-products .owl-nav {
        display: block; } }
    @media (min-width: 992px) {
      .owl-products .owl-nav {
        position: absolute;
        margin-top: 0;
        top: 50%;
        left: 0;
        width: 100%;
        margin-top: -155px;
        height: 64px;
        z-index: -1; } }
    .owl-products .owl-nav [class*='owl-'] {
      margin: 0; }
    .owl-products .owl-nav button.owl-prev,
    .owl-products .owl-nav button.owl-next {
      font-size: 40px;
      width: 0px; }
    .owl-products .owl-nav button.owl-prev {
      float: left;
      margin-left: -40px; }
      .owl-products .owl-nav button.owl-prev .dicon-arrow-prev {
        opacity: inherit;
        font-size: 30px; }
    .owl-products .owl-nav button.owl-next {
      right: 0px;
      float: right;
      margin-right: -12px; }
      .owl-products .owl-nav button.owl-next .dicon-arrow-next {
        opacity: inherit;
        font-size: 30px; }
  .owl-products .owl-dots {
    margin-top: 15px;
    /*width: 65%;*/ }
    @media (min-width: 768px) {
      .owl-products .owl-dots {
        display: none; } }
    @media (max-width: 991px) {
      .owl-products .owl-dots {
        margin-top: 0; } }

/*  
    ----------------------------------
    Owl Gallery
    ----------------------------------
*/
.owl-gallery {
  position: relative;
  /*.owl-dots {
        margin-top: $spacing-xs;
    }*/ }
  .owl-gallery figure {
    margin-bottom: 0; }
  .owl-gallery .owl-stage-outer {
    position: relative;
    z-index: 11; }
  .owl-gallery .owl-nav {
    position: absolute;
    margin-top: 0;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: -55px;
    height: 64px;
    z-index: -1; }
    .owl-gallery .owl-nav [class*='owl-'] {
      margin: 0;
      position: absolute; }
      .owl-gallery .owl-nav [class*='owl-'] span {
        display: inline; }
    .owl-gallery .owl-nav button.owl-prev,
    .owl-gallery .owl-nav button.owl-next {
      font-size: 40px;
      width: 50px;
      color: white; }
    .owl-gallery .owl-nav .owl-prev {
      left: 0; }
    .owl-gallery .owl-nav .owl-next {
      right: 0; }
    @media (min-width: 768px) {
      .owl-gallery .owl-nav button.owl-prev,
      .owl-gallery .owl-nav button.owl-next {
        color: black;
        top: -20px; }
      .owl-gallery .owl-nav .owl-prev {
        left: -50px; }
      .owl-gallery .owl-nav .owl-next {
        right: -50px; } }

.owl-text {
  max-width: 425px; }
  .owl-text .owl-stage-outer {
    margin-bottom: 20px; }
  .owl-text .owl-dots {
    display: block;
    margin-top: -28px; }
    .owl-text .owl-dots .owl-dot span {
      width: 7px;
      height: 7px;
      margin: 5px 4px; }
  .owl-text .owl-nav {
    z-index: 99; }
    .owl-text .owl-nav [class*='owl-'] {
      margin: 0; }
      .owl-text .owl-nav [class*='owl-'] span {
        display: inline; }
    .owl-text .owl-nav button.owl-prev,
    .owl-text .owl-nav button.owl-next {
      font-size: 20px;
      width: 50px;
      color: white;
      margin: 0 20px; }
    .owl-text .owl-nav .owl-prev {
      left: 0; }
    .owl-text .owl-nav .owl-next {
      right: 0; }
    @media (min-width: 768px) {
      .owl-text .owl-nav button.owl-prev,
      .owl-text .owl-nav button.owl-next {
        color: black; }
      .owl-text .owl-nav .owl-prev {
        left: -50px; }
      .owl-text .owl-nav .owl-next {
        right: -50px; } }

/*  
    ----------------------------------
    Owl Gallery
    ----------------------------------
*/
@media (max-width: 767px) {
  .owl-similar-products-lg .owl-nav {
    bottom: 0;
    height: 10%;
    top: 110%;
    z-index: 99; }
    .owl-similar-products-lg .owl-nav .owl-prev, .owl-similar-products-lg .owl-nav .owl-next {
      font-size: 20px !important;
      color: black !important;
      display: contents; }
      .owl-similar-products-lg .owl-nav .owl-prev.disabled, .owl-similar-products-lg .owl-nav .owl-next.disabled {
        opacity: 0.5;
        cursor: default; }
      .owl-similar-products-lg .owl-nav .owl-prev .dicon, .owl-similar-products-lg .owl-nav .owl-next .dicon {
        padding: 5px; } }

/*  
    ----------------------------------
    Owl Content
    ----------------------------------
*/
@media (min-width: 768px) {
  .owl-content .owl-nav, .owl-instagram .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    z-index: -1; }
    .owl-content .owl-nav .owl-prev, .owl-instagram .owl-nav .owl-prev {
      margin-left: -40px;
      font-size: 30px !important;
      float: left; }
    .owl-content .owl-nav .owl-next, .owl-instagram .owl-nav .owl-next {
      float: right;
      margin-right: -40px;
      font-size: 30px !important; } }

/*  
    ----------------------------------
    Color variations
    ----------------------------------
*/
.color-options ul {
  margin: 0;
  padding: 0; }
  .color-options ul li {
    list-style-type: none;
    display: inline-block;
    font-size: 14px;
    vertical-align: middle;
    margin-right: 5px; }
    .color-options ul li:hover.color:before, .color-options ul li:hover.color:after {
      visibility: visible;
      opacity: 1; }
    .color-options ul li.color {
      width: 20px;
      height: 20px;
      -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5) !important;
      -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5) !important;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.5) !important;
      -moz-border-radius: 100%;
      -webkit-border-radius: 100%;
      border-radius: 100%;
      border: 2px solid white;
      position: relative;
      background-size: cover;
      background-position: center; }
      .color-options ul li.color:before {
        content: "";
        height: 100px;
        bottom: 30px;
        background-color: inherit;
        background-image: inherit;
        border: 5px solid white;
        border-bottom-width: 20px;
        -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5) !important;
        -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5) !important;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.5) !important; }
      .color-options ul li.color:after {
        content: attr(data-title);
        bottom: 30px;
        background: white;
        text-align: center;
        line-height: 1;
        padding: 5px; }
      .color-options ul li.color:before, .color-options ul li.color:after {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        left: 50%;
        width: 100px;
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s; }
      .color-options ul li.color.color-gray {
        background-color: #8b8b8b; }
      .color-options ul li.color.color-red {
        background-color: #cb5d5d; }
      .color-options ul li.color.color-gold {
        background-color: #b6a45b; }
      .color-options ul li.color.color-green {
        background-color: #67a36b; }
      .color-options ul li.color.color-blue {
        background-color: #4e5a64; }
      .color-options ul li.color.color-brown {
        background-color: #9f8e6b; }

/*  
    ----------------------------------
    Boxed cards
    ----------------------------------
*/
.boxed-cards.boxed-cards-lg {
  padding-top: 30px;
  padding-bottom: 30px; }
  @media (min-width: 768px) {
    .boxed-cards.boxed-cards-lg {
      padding-top: 40px;
      padding-bottom: 40px; } }
  @media (min-width: 992px) {
    .boxed-cards.boxed-cards-lg {
      padding-top: 60px;
      padding-bottom: 60px; } }
  @media (min-width: 1200px) {
    .boxed-cards.boxed-cards-lg {
      padding-top: 120px;
      padding-bottom: 120px; } }

.boxed-cards.boxed-cards-clean .boxed-text {
  background-color: transparent; }
  .boxed-cards.boxed-cards-clean .boxed-text:before {
    display: none; }
  @media (min-width: 768px) {
    .boxed-cards.boxed-cards-clean .boxed-text {
      padding-left: 60px;
      padding-right: 60px; } }

@media (min-width: 768px) {
  .boxed-cards .row-table {
    display: table;
    width: 100%;
    margin: 0; }
    .boxed-cards .row-table > div {
      display: table-cell;
      vertical-align: middle;
      width: 50%; } }

@media (min-width: 768px) {
  .boxed-cards .boxed-content {
    margin-left: -80px;
    margin-right: -80px; } }

.boxed-cards .boxed-text {
  background-color: #F5F4EF;
  position: relative;
  padding: 40px;
  position: relative;
  z-index: 33; }
  .boxed-cards .boxed-text img {
    max-width: 100%; }
  @media (min-width: 768px) {
    .boxed-cards .boxed-text {
      padding-left: 105px;
      padding-right: 105px; }
      .boxed-cards .boxed-text:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -40px;
        bottom: -40px;
        background-color: #F5F4EF;
        z-index: -1;
        -moz-box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.2) !important;
        -webkit-box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.2) !important;
        box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.2) !important; } }
  @media (max-width: 767px) {
    .boxed-cards .boxed-text {
      order: 2; } }
  .boxed-cards .boxed-text .quote {
    position: relative;
    margin-top: 80px;
    margin-bottom: 60px; }
    .boxed-cards .boxed-text .quote small {
      font-size: 16px; }
    .boxed-cards .boxed-text .quote:before {
      content: "“";
      color: #F05B37;
      font-size: 260px;
      height: 30px;
      line-height: 180px;
      position: absolute;
      left: -40px;
      top: -60px; }
      @media (min-width: 768px) {
        .boxed-cards .boxed-text .quote:before {
          left: -70px;
          top: -60px; } }
    .boxed-cards .boxed-text .quote .title {
      margin-bottom: 40px;
      line-height: 34px; }
      @media (min-width: 768px) {
        .boxed-cards .boxed-text .quote .title {
          line-height: 56px; } }
    .boxed-cards .boxed-text .quote strong, .boxed-cards .boxed-text .quote span {
      display: block; }

.boxed-cards .boxed-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }
  .boxed-cards .boxed-image img {
    width: 100%; }
    @media (min-width: 768px) {
      .boxed-cards .boxed-image img {
        display: none; } }
  @media (max-width: 767px) {
    .boxed-cards .boxed-image {
      order: 1;
      padding: 0; } }

/*  
    ----------------------------------
    Catalog
    ----------------------------------
*/
.catalog img {
  max-width: 100%; }

.catalog .btn {
  margin-top: 15px; }

/*  
    ----------------------------------
    Small cards
    ----------------------------------
*/
.small-cards .row-cards {
  margin-left: -40px;
  margin-right: -40px; }

.small-cards article {
  display: flex;
  height: 100%;
  align-items: flex-start;
  background-color: #F5F4EF;
  padding: 40px;
  -moz-box-shadow: 0 0 50px rgba(0, 0, 0, 0.15) !important;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.15) !important; }
  .small-cards article .h4, .small-cards article h4 {
    font-family: 'Geogrotesque-Regular'; }
  .small-cards article .image {
    text-align: center; }
  @media (max-width: 991px) {
    .small-cards article .text, .small-cards article .image {
      text-align: center; }
    .small-cards article .text {
      order: 2; }
    .small-cards article .image {
      order: 1; }
      .small-cards article .image img {
        margin-bottom: 15px; } }

/*  
    ----------------------------------
    Instagram
    ----------------------------------
*/
.instagram .title .dicon {
  font-size: 80%; }

.instagram .owl-instagram .owl-nav {
  top: 30%; }

@media (max-width: 575px) {
  .instagram .owl-instagram .owl-nav {
    position: absolute;
    top: 20% !important;
    left: 0;
    width: 100%;
    z-index: -1; }
    .instagram .owl-instagram .owl-nav .owl-prev {
      margin-left: -25px;
      font-size: 20px !important;
      float: left; }
    .instagram .owl-instagram .owl-nav .owl-next {
      margin-right: -25px;
      font-size: 20px !important;
      float: right; } }

.instagram .owl-instagram .item {
  height: 221px;
  background-position: center;
  background-size: cover; }
  @media (min-width: 1200px) {
    .instagram .owl-instagram .item {
      height: 266px; }
    .instagram .owl-instagram .item .likes {
      position: absolute;
      bottom: 0;
      margin-bottom: -30px; } }
  @media (max-width: 767px) {
    .instagram .owl-instagram .item {
      height: 190px; } }
  @media (max-width: 480px) {
    .instagram .owl-instagram .item {
      height: 90px; } }
  .instagram .owl-instagram .item .likes {
    position: absolute;
    bottom: 0;
    margin-bottom: -30px; }
    @media (max-width: 1200px) {
      .instagram .owl-instagram .item .likes {
        margin-bottom: -40px; } }
    .instagram .owl-instagram .item .likes .heart-image {
      display: block;
      width: 25px;
      float: left; }
      @media (max-width: 1200px) {
        .instagram .owl-instagram .item .likes .heart-image {
          width: 17px; } }
    .instagram .owl-instagram .item .likes .like-text {
      margin-bottom: -30px;
      float: right;
      margin-left: 5px; }
  .instagram .owl-instagram .item img {
    display: none; }

.instagram .owl-instagram .owl-stage {
  height: 266px; }
  @media (min-width: 1200px) {
    .instagram .owl-instagram .owl-stage {
      height: 305px; } }
  @media (max-width: 575px) {
    .instagram .owl-instagram .owl-stage {
      height: 120px; } }

.instagram img {
  width: 100%; }
  @media (max-width: 767px) {
    .instagram img {
      margin-bottom: 15px; } }

/*  
    ----------------------------------
    Search
    ----------------------------------
*/
.search {
  padding: 0;
  z-index: 22;
  position: relative; }
  .search .form-control {
    position: relative;
    font-size: 22px;
    line-height: 1;
    padding-left: 60px;
    padding-top: 13px;
    padding-bottom: 13px;
    height: auto;
    border: 0;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15) !important;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15) !important; }
  .search .search-icon {
    position: absolute;
    top: 50%;
    z-index: 333;
    font-size: 24px;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
    .search .search-icon.search-icon-left {
      left: 15px; }
    .search .search-icon.search-icon-right {
      right: 15px;
      cursor: pointer; }
  .search .search-header header {
    background-color: #F5F4EF;
    margin: 0;
    padding: 30px 0 80px 0;
    margin-bottom: 15px; }
    @media (min-width: 768px) {
      .search .search-header header {
        padding: 60px 0 180px 0;
        margin-bottom: 15px; } }
  .search .search-header .title {
    margin-bottom: 15px; }
    .search .search-header .title .results {
      float: right;
      font-size: 14px;
      margin-top: 15px;
      display: none; }
      @media (min-width: 992px) {
        .search .search-header .title .results {
          margin-top: 35px; } }
      @media (max-width: 767px) {
        .search .search-header .title .results {
          display: block;
          text-align: left;
          float: none; }
          .search .search-header .title .results button {
            padding: 0; } }
  .search .search-content .articles {
    margin-top: 80px; }

.search-iframe-container {
  overflow: hidden; }
  @media (max-width: 991px) {
    .search-iframe-container .search-iframe {
      margin-left: -30px;
      margin-right: -30px; } }

/*  
    ----------------------------------
    Articles
    ----------------------------------
*/
.articles.articles-block a {
  display: block;
  text-decoration: none; }

.articles a {
  display: inline-block; }
  .articles a:hover .title:before {
    width: 100%; }

.articles .hr-bolder {
  border-width: 3px;
  border-color: black; }

.articles table tr td {
  padding-left: 0;
  padding-right: 0;
  border-bottom: 1px solid #dee2e6;
  border-top: 0; }

.articles figure {
  margin-bottom: 0;
  padding-right: 40px;
  position: relative;
  border-bottom: 1px solid #e1ded0;
  padding-bottom: 15px;
  padding-top: 20px; }
  .articles figure:last-child {
    border-bottom: 0; }
  .articles figure:hover:after {
    right: 0;
    opacity: 1; }
  .articles figure:after {
    position: absolute;
    font-family: 'LinearIcons';
    content: "\e876";
    right: -20px;
    top: 50%;
    opacity: 0;
    margin-top: -12.5px;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
  .articles figure.info {
    margin-top: 40px; }
    .articles figure.info:after {
      display: none; }
    @media (min-width: 768px) {
      .articles figure.info {
        margin-top: 80px; } }
  .articles figure .date {
    color: #F05B37;
    text-transform: uppercase; }
  .articles figure .title {
    font-family: "Geogrotesque-Semibold";
    display: inline-block;
    position: relative;
    margin: 0; }
    .articles figure .title:before {
      position: absolute;
      background-color: black;
      content: "";
      width: 0;
      height: 1px;
      bottom: -2px;
      left: 0;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      -webkit-transition: all 0.3s;
      transition: all 0.3s; }
  .articles figure .link {
    text-decoration: underline;
    margin-top: 5px; }

.articles + .info-footer {
  margin-top: 80px; }

.articles .small-icon {
  font-size: 15px;
  display: inline-block;
  float: left;
  line-height: 43px;
  margin-right: 15px; }

.articles .user-cards-wrapper {
  padding: 40px 0; }

/*  
    ----------------------------------
    Text wrap
    ----------------------------------
*/
@media (max-width: 576px) {
  .text-wrap.no-margin a {
    margin: 0; } }

.text-wrap .video-item a:before {
  content: none !important; }

.text-wrap a {
  position: relative;
  display: inline-block !important; }
  .text-wrap a.link-hours {
    font-size: 13px;
    margin-left: 17px; }
    @media (max-width: 768px) {
      .text-wrap a.link-hours {
        margin-top: 0px; } }
  @media (max-width: 576px) {
    .text-wrap a {
      margin-top: 20px; } }
  .text-wrap a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: black;
    left: 0;
    top: 100%;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
  .text-wrap a:hover:before {
    width: 0; }

.text-wrap.text-wrap-invert a:before {
  width: 0; }

.text-wrap.text-wrap-invert a:hover:before {
  width: 100%; }

/*  
    ----------------------------------
    Press room
    ----------------------------------
*/
.pressroom .pressroom-title {
  margin-top: 40px;
  margin-bottom: 40px; }

.pressroom .pressroom-info {
  margin-top: 80px; }

.pressroom a.btn,
.pressroom .btn {
  display: inline-block; }

.info-footer img {
  width: 100%; }

.footer-mobile-links .mobile-links {
  display: block;
  padding: 15px 0; }
  .footer-mobile-links .mobile-links .btn {
    margin-bottom: 15px; }
  .footer-mobile-links .mobile-links .dicon {
    float: left;
    width: 25px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.4; }

/*  
    ----------------------------------
    User cards
    ----------------------------------
*/
.user-cards figure,
.user-cards article {
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

.user-cards figure {
  display: table;
  width: 100%;
  padding: 15px;
  -moz-box-shadow: 0 0 50px rgba(0, 0, 0, 0.15) !important;
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.15) !important; }
  @media (min-width: 768px) {
    .user-cards figure:hover {
      -moz-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
      -o-transform: translateY(-10px);
      -webkit-transform: translateY(-10px);
      transform: translateY(-10px); } }
  .user-cards figure:after {
    display: none; }
  .user-cards figure > * {
    display: table-cell;
    vertical-align: middle; }
  .user-cards figure .image {
    width: 110px; }
    .user-cards figure .image span {
      display: block;
      width: 100px;
      height: 100px;
      overflow: hidden;
      -moz-border-radius: 100%;
      -webkit-border-radius: 100%;
      border-radius: 100%; }
      .user-cards figure .image span img {
        width: 100%; }
  .user-cards figure figcaption p {
    margin-bottom: 0; }
  .user-cards figure figcaption .light {
    color: gray; }

@media (min-width: 768px) {
  .user-cards article .text {
    min-height: 120px; }
  .user-cards article:hover {
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); } }

/*  
    ----------------------------------
    Blog
    ----------------------------------
*/
.blog {
  margin-bottom: 15px; }
  @media (min-width: 992px) {
    .blog {
      margin-bottom: 80px;
      /*margin-top: -$spacing-lg;*/ }
      .blog > .container {
        padding-top: 20px; } }
  .blog .pre-date {
    padding-bottom: 10px; }
    .blog .pre-date span.sub {
      color: #F05B37;
      text-transform: uppercase; }
    .blog .pre-date span.date {
      opacity: .6; }
    .blog .pre-date + .title {
      margin-top: 0; }
  .blog.blog-related {
    margin: 0;
    padding: 40px 0; }
    .blog.blog-related .related-content {
      margin: 0; }
  .blog blockquote {
    position: relative;
    font-family: 'Geogrotesque-Ultralight';
    background-color: #F5F4EF;
    border-left: 10px solid #ebe9df;
    padding: 40px;
    font-size: 16px;
    font-style: italic; }
    .blog blockquote:before {
      font-family: 'Geogrotesque-Regular';
      content: "“";
      color: #F05B37;
      font-size: 80px;
      height: 40px;
      line-height: 120px;
      position: absolute;
      left: 0;
      top: -5px; }
    @media (min-width: 768px) {
      .blog blockquote {
        padding: 40px 40px 40px 80px;
        margin-left: -80px;
        margin-bottom: 0;
        margin-right: 5%;
        font-size: 24px;
        width: 55%;
        float: left; }
        .blog blockquote:before {
          font-size: 140px;
          top: 14px; } }
  .blog .text.text-graphics {
    padding-top: 15px; }
    @media (min-width: 768px) {
      .blog .text.text-graphics {
        padding-top: 30px; } }
  .blog .text.text-wrap a:before {
    background-color: #F05B37; }
  .blog .text .item {
    margin-bottom: 40px; }
  .blog .text img {
    max-width: 100%;
    margin: 0 auto;
    display: block; }
    @media (max-width: 767px) {
      .blog .text img.mobile-img {
        margin: 112px 15px !important; } }
    @media (max-width: 767px) {
      .blog .text img.mobile-img-2 {
        margin: 70px 15px !important; } }
    @media (max-width: 767px) {
      .blog .text img.mobile-img-3 {
        margin: 45px 15px !important; } }
    @media (max-width: 767px) {
      .blog .text img {
        max-width: 160px;
        margin-bottom: 15px; } }
  .blog .text .blog-cards {
    margin-top: 15px; }
    @media (min-width: 768px) {
      .blog .text .blog-cards {
        margin-top: 80px; } }
  .blog .downloads {
    padding-top: 40px; }
    .blog .downloads p {
      margin-bottom: 5px; }
    .blog .downloads ul, .blog .downloads ul li {
      margin: 0;
      padding: 0; }
    .blog .downloads ul li {
      list-style-type: none;
      padding: 5px 0; }
    .blog .downloads a {
      text-decoration: underline; }
      .blog .downloads a:hover {
        text-decoration: none; }
  .blog .blog-gallery {
    position: relative;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 15px;
    margin-bottom: 15px; }
    @media (min-width: 768px) {
      .blog .blog-gallery {
        margin-left: -80px;
        margin-right: -80px;
        margin-top: 40px;
        margin-bottom: 40px; } }
    .blog .blog-gallery figure figcaption {
      padding: 15px;
      text-align: center;
      font-size: 14px; }
    .blog .blog-gallery .slide-counter {
      background-color: white;
      z-index: 22;
      padding-left: 10px;
      padding-right: 10px;
      position: absolute;
      left: 0;
      bottom: 13px; }
      @media (min-width: 768px) {
        .blog .blog-gallery .slide-counter {
          padding-left: 0; } }
    .blog .blog-gallery .video-item {
      background-position: center;
      background-size: cover;
      min-height: 500px;
      position: relative; }
      .blog .blog-gallery .video-item .video-caption {
        position: absolute;
        right: 60%;
        top: 50%;
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        color: white; }
        .blog .blog-gallery .video-item .video-caption .video-title {
          font-family: 'Geogrotesque-Bold'; }
      .blog .blog-gallery .video-item .play-video {
        position: absolute;
        left: 50%;
        top: 50%;
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 100px;
        height: 100px;
        background-color: white;
        color: #F05B37;
        -moz-border-radius: 100%;
        -webkit-border-radius: 100%;
        border-radius: 100%;
        background-position: center;
        background-image: url(img/icon-play-orange.svg);
        background-size: 100px 100px;
        cursor: pointer; }

.related-content {
  border: 10px solid #F5F4EF;
  padding: 15px;
  margin-top: 40px; }
  .related-content ul li a:before {
    bottom: 0; }
  @media (min-width: 768px) {
    .related-content {
      margin-top: 80px;
      padding: 20px; } }

/*  
    ----------------------------------
    Articles
    ----------------------------------
*/
.pagination .page-link-icon {
  color: #F05B37;
  background-color: transparent;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  font-size: 10px;
  padding: 10px; }

.store-box article {
  min-height: 390px;
  position: relative; }

.find-store.find-store-category {
  margin-top: -5px; }
  @media (min-width: 768px) {
    .find-store.find-store-category {
      margin-top: -15px; } }
  @media (min-width: 992px) {
    .find-store.find-store-category {
      margin-top: -20px; } }
  @media (min-width: 1200px) {
    .find-store.find-store-category {
      margin-top: -30px; } }

.find-store.find-store-contact {
  margin-top: 40px;
  margin-bottom: 60px; }
  .find-store.find-store-contact .user-cards {
    margin-top: 15px; }

.find-store.section-inner .container {
  position: inherit; }

.user-cards {
  margin-top: 40px; }

header h1, header .h1 {
  margin: 0; }
  @media (max-width: 767px) {
    header h1, header .h1 {
      margin-bottom: 20px; } }

/*.form-control {
        padding-top: $spacing-xs;
        padding-bottom: $spacing-xs;
        height: auto;
        @include boxShaddow(0 0 10px rgba(0, 0, 0, 0.15));
        @include radius(0);
        border: 0;
        min-width: 200px;
    }*/
.gm-style-iw-d .ribbon.corner-ribbon {
  top: 0;
  right: 0; }

.gm-style-iw-d article {
  margin-bottom: 0;
  width: 282px;
  font-size: 14px;
  font-family: "Geogrotesque-Light"; }
  @media (max-width: 767px) {
    .gm-style-iw-d article {
      width: auto; } }
  .gm-style-iw-d article .row.row-store {
    max-height: 100px; }
    .gm-style-iw-d article .row.row-store .link-hours, .gm-style-iw-d article .row.row-store .alternative-hours {
      display: none !important; }
  .gm-style-iw-d article .btn {
    margin-top: 40px !important; }

article {
  padding: 20px;
  margin-bottom: 30px;
  -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.15) !important;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15) !important; }
  article h5 {
    margin-bottom: 15px; }
  article p {
    margin-bottom: 5px; }
  article .btn {
    margin-top: 15px; }
  article .image {
    width: 120px;
    height: 120px;
    margin: 15px auto;
    overflow: hidden;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%; }
    article .image img {
      width: 100%; }
  article .text {
    text-align: center; }
    article .text .light {
      color: gray; }

aside .box {
  margin-bottom: 20px; }

aside p {
  margin-bottom: 5px; }

aside a {
  display: block;
  margin-bottom: 15px; }

/*  
    ----------------------------------
    Truspilot
    ----------------------------------
*/
.trustpilot {
  padding: 0; }
  .trustpilot img {
    width: 100%; }

#map {
  min-height: 400px;
  background-color: #F5F4EF; }
  @media (min-width: 768px) {
    #map {
      min-height: 600px; } }
  @media (max-width: 767px) {
    #map {
      min-height: 500px; } }

.info-window {
  width: 270px;
  padding: 20px;
  font-family: "Geogrotesque-Light";
  font-size: 14px;
  line-height: 1.3;
  color: #000000; }
  @media (max-width: 575px) {
    .info-window {
      width: 180px; } }
  .info-window .row {
    margin: 0; }
    .info-window .row > div {
      padding: 0; }
  .info-window p {
    margin-bottom: 3px; }
  .info-window .btn {
    margin-top: 15px; }
  @media (max-width: 768px) {
    .info-window {
      padding: 5px; }
      .info-window hr {
        margin-top: 0.3rem;
        margin-bottom: 0.3rem; }
      .info-window .btn {
        font-size: 11px;
        margin-top: 15px; }
      .info-window h5 {
        margin-bottom: 5px; } }

/*  
    ----------------------------------
    Form box
    ----------------------------------
*/
.form-box {
  background-color: #F5F4EF;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: 60px;
  margin-bottom: 60px; }
  .form-box .confirmation-message {
    padding-left: 30px;
    position: relative; }
    .form-box .confirmation-message:before {
      content: "\e905";
      position: absolute;
      left: 0;
      top: 2px;
      width: 20px;
      height: 20px;
      background-color: #60c300;
      -moz-border-radius: 100%;
      -webkit-border-radius: 100%;
      border-radius: 100%;
      font-family: 'DeisgnaIcons' !important;
      color: white;
      text-align: center;
      line-height: 20px; }
  .form-box .form-wrapper {
    margin-top: 40px; }
    .form-box .form-wrapper .email-check {
      display: none; }
    @media (max-width: 991px) {
      .form-box .form-wrapper .col-m-bottom {
        margin-bottom: 10px; } }
    @media (min-width: 768px) {
      .form-box .form-wrapper .col-m-bottom.margin-none {
        margin-bottom: 0 !important; } }
    @media (max-width: 767px) {
      .form-box .form-wrapper .label-force {
        text-align: left !important; } }
    .form-box .form-wrapper .form-title .number {
      margin-top: -5px;
      width: 35px;
      height: 35px;
      line-height: 35px; }
    .form-box .form-wrapper .dropdown-toggle {
      text-align: left; }
      .form-box .form-wrapper .dropdown-toggle.is-invalid {
        border-color: #a41322; }
    .form-box .form-wrapper .form-control-datetime {
      background-position: 92% center;
      background-size: 16px 16px;
      background-repeat: no-repeat; }
      .form-box .form-wrapper .form-control-datetime.form-control-calendar {
        background-image: url(img/icon-calendar.svg); }
      .form-box .form-wrapper .form-control-datetime.form-control-time {
        background-image: url(img/icon-clock.svg); }
  .form-box .form-group-upload {
    margin: 40px 0; }

.form-group-footer {
  margin-top: 40px; }
  .form-group-footer .btn-primary {
    color: white; }

.number {
  display: inline-block;
  width: 26px;
  height: 26px;
  font-size: 12px;
  text-align: center;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-color: #F5F4EF;
  line-height: 26px;
  vertical-align: middle; }
  .number.number-primary {
    background-color: #F05B37;
    color: white; }
  .number.number-lg {
    width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 50px; }

/*  
    ----------------------------------
    Footer
    ----------------------------------
*/
footer {
  margin-top: 40px; }
  footer ul {
    margin: 0;
    padding: 0; }
    footer ul li {
      list-style-type: none;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
      display: block; }
      footer ul li a {
        padding: 5px 0;
        display: block; }
      footer ul li:hover {
        -moz-transform: translateX(5px);
        -ms-transform: translateX(5px);
        -o-transform: translateX(5px);
        -webkit-transform: translateX(5px);
        transform: translateX(5px); }
  footer .links {
    background-color: #F5F4EF;
    padding: 15px 0; }
    @media (min-width: 768px) {
      footer .links {
        padding: 60px 0; } }
    footer .links .logo {
      text-align: center;
      padding-top: 6px; }
    footer .links strong {
      font-family: 'Geogrotesque-Semibold';
      text-transform: uppercase; }
  footer .footer-end {
    padding: 45px; }
    @media (min-width: 768px) {
      footer .footer-end {
        padding: 60px; } }
    @media (max-width: 767px) {
      footer .footer-end {
        padding-left: 0;
        padding-right: 0; } }
    @media (max-width: 767px) {
      footer .footer-end .links-mobile {
        padding: 0;
        padding-right: 15px;
        padding-bottom: 10px; } }
    @media (max-width: 767px) {
      footer .footer-end .media-mobile {
        padding: 0 5px; } }
    footer .footer-end .btn-flag {
      padding-left: 35px;
      background-position: center left;
      background-size: 22px 16px;
      background-repeat: no-repeat; }
      footer .footer-end .btn-flag.danish {
        background-image: url(img/ico-dk.svg); }
        @media (max-width: 767px) {
          footer .footer-end .btn-flag.danish {
            padding-top: 5px; } }
      footer .footer-end .btn-flag.norway {
        background-image: url(img/ico-no.svg); }
    footer .footer-end ul li {
      display: inline-block; }
      footer .footer-end ul li a {
        font-family: "Geogrotesque-Medium";
        padding: 0 10px; }
    footer .footer-end .btn-link {
      font-family: "Geogrotesque-Medium";
      padding-top: 0;
      padding-bottom: 0;
      vertical-align: top;
      font-size: 16px;
      border: 0;
      line-height: inherit; }

.short-nav .short-nav-preview {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 999999;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }
  .short-nav .short-nav-preview.active {
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  .short-nav .short-nav-preview .short-nav-scroll {
    padding: 80px 0;
    overflow: auto;
    position: absolute;
    width: 100%;
    height: 100%; }

.short-nav ul {
  margin: 0;
  padding: 0; }
  .short-nav ul li {
    list-style-type: none; }
    .short-nav ul li:last-child {
      margin-bottom: 40px; }
    .short-nav ul li.img {
      padding: 15px;
      background-position: center top;
      background-size: 290px auto;
      height: 230px;
      border: 20px solid #F5F4EF;
      margin-bottom: 15px;
      -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2) !important;
      -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2) !important;
      box-shadow: 0 0 40px rgba(0, 0, 0, 0.2) !important; }
    .short-nav ul li strong {
      display: block;
      margin-bottom: 15px; }

.short-nav .spining {
  display: block;
  width: 50px;
  height: 50px;
  position: fixed;
  top: 50px;
  left: 50px;
  background-color: #F05B37;
  color: white;
  overflow: hidden;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  padding: 15px;
  z-index: 9999999; }
  .short-nav .spining .icon {
    font-size: 30px;
    display: block;
    line-height: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }

/*  
    ----------------------------------
    Datepicker
    ----------------------------------
*/
.ui-datepicker {
  width: 17em;
  padding: 15px;
  display: none;
  background-color: white;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  border: 2px solid #F5F4EF; }
  .ui-datepicker.ui-datepicker-top {
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
    .ui-datepicker.ui-datepicker-top:after {
      border-width: 15px 15px 0px 15px;
      bottom: -15px;
      top: auto; }
  .ui-datepicker:after {
    content: '';
    position: absolute;
    border-width: 0px 15px 15px 15px;
    border-style: solid solid solid solid;
    border-color: white transparent white;
    bottom: auto;
    top: -15px;
    z-index: 999;
    left: 20%; }
  .ui-datepicker .ui-icon {
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
    left: .5em;
    top: .3em; }
  .ui-datepicker .ui-datepicker-header {
    position: relative;
    padding: .2em 0; }
  .ui-datepicker .ui-datepicker-prev,
  .ui-datepicker .ui-datepicker-next {
    display: inline-block;
    position: absolute;
    top: 2px;
    width: 1.8em;
    height: 1.8em;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px 10px;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
  .ui-datepicker .ui-datepicker-prev {
    background-image: url(img/icon-arrow-left.svg); }
  .ui-datepicker .ui-datepicker-next {
    background-image: url(img/icon-arrow-right.svg); }
  .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5); }
  .ui-datepicker .ui-datepicker-prev {
    left: 2px; }
  .ui-datepicker .ui-datepicker-next {
    right: 2px; }
  .ui-datepicker .ui-datepicker-prev-hover {
    left: 1px; }
  .ui-datepicker .ui-datepicker-next-hover {
    right: 1px; }
  .ui-datepicker .ui-datepicker-prev span,
  .ui-datepicker .ui-datepicker-next span {
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -8px;
    top: 50%;
    margin-top: -8px; }
  .ui-datepicker .ui-datepicker-title {
    margin: 0 2.3em;
    line-height: 1.8em;
    text-align: center; }
    .ui-datepicker .ui-datepicker-title select {
      font-size: 1em;
      margin: 1px 0; }
  .ui-datepicker .ui-datepicker-unselectable {
    color: lightgrey; }
  .ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
    width: 45%; }
  .ui-datepicker table {
    width: 100%;
    font-size: .9em;
    border-collapse: collapse;
    margin: 0 0 .4em; }
  .ui-datepicker th {
    padding: .7em .3em;
    text-align: center;
    font-weight: bold;
    border: 0; }
  .ui-datepicker td {
    border: 0;
    padding: 1px;
    text-align: center; }
    .ui-datepicker td span, .ui-datepicker td a {
      display: block;
      padding: .2em;
      /*text-align: right;*/
      text-decoration: none; }
    .ui-datepicker td a {
      color: #000000;
      text-align: center; }
  .ui-datepicker .ui-state-active {
    background-color: #F05B37;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    color: white; }
  .ui-datepicker .ui-datepicker-buttonpane {
    background-image: none;
    margin: .7em 0 0 0;
    padding: 0 .2em;
    border-left: 0;
    border-right: 0;
    border-bottom: 0; }
    .ui-datepicker .ui-datepicker-buttonpane button {
      float: right;
      margin: .5em .2em .4em;
      cursor: pointer;
      padding: .2em .6em .3em .6em;
      width: auto;
      overflow: visible; }
      .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
        float: left; }
  .ui-datepicker.ui-datepicker-multi {
    width: auto; }

.datepicker-inline .ui-datepicker {
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  -webkit-transform: none;
  transform: none; }
  .datepicker-inline .ui-datepicker:after {
    display: none; }

/*  
    ----------------------------------
    Popup gallery
    ----------------------------------
*/
.popup-gallery {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s; }
  .popup-gallery.active {
    opacity: 1;
    visibility: visible; }
  .popup-gallery .popup-gallery-content {
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    color: white; }
    .popup-gallery .popup-gallery-content .popup-gallery-title {
      text-transform: uppercase;
      margin-bottom: 30px;
      position: relative; }
    .popup-gallery .popup-gallery-content .popup-gallery-images .image-name-wrapper {
      padding: 15px 0; }
      .popup-gallery .popup-gallery-content .popup-gallery-images .image-name-wrapper .image-name {
        position: relative; }
        .popup-gallery .popup-gallery-content .popup-gallery-images .image-name-wrapper .image-name h4 {
          margin-bottom: 0; }
        .popup-gallery .popup-gallery-content .popup-gallery-images .image-name-wrapper .image-name .btn {
          position: absolute;
          right: 0;
          top: 0; }
        .popup-gallery .popup-gallery-content .popup-gallery-images .image-name-wrapper .image-name p {
          margin: 0;
          opacity: .5; }
  .popup-gallery .close-gallery,
  .popup-gallery .mfp-close {
    overflow: hidden;
    text-indent: -999px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer; }
    .popup-gallery .close-gallery:before,
    .popup-gallery .mfp-close:before {
      font-family: 'LinearIcons';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: "\e870";
      color: white;
      float: right;
      font-size: 38px;
      text-indent: 0; }
  .popup-gallery .owl-nav {
    position: absolute;
    margin-top: 0;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: -55px;
    height: 64px;
    z-index: 99; }
    .popup-gallery .owl-nav [class*='owl-'] {
      margin: 0;
      position: absolute; }
      .popup-gallery .owl-nav [class*='owl-'] span {
        display: inline; }
    .popup-gallery .owl-nav button.owl-prev,
    .popup-gallery .owl-nav button.owl-next {
      font-size: 70px;
      width: 70px;
      color: white; }
    .popup-gallery .owl-nav .owl-prev {
      left: 0; }
    .popup-gallery .owl-nav .owl-next {
      right: 0; }
    @media (min-width: 768px) {
      .popup-gallery .owl-nav .owl-prev {
        left: -90px; }
      .popup-gallery .owl-nav .owl-next {
        right: -90px; } }
  .popup-gallery .owl-media-gallery-thumbs .owl-item {
    opacity: .5; }
    .popup-gallery .owl-media-gallery-thumbs .owl-item img {
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      -webkit-transition: all 0.3s;
      transition: all 0.3s; }
    .popup-gallery .owl-media-gallery-thumbs .owl-item.current {
      opacity: 1; }
      .popup-gallery .owl-media-gallery-thumbs .owl-item.current img {
        border: 3px solid white; }

/*  
    ----------------------------------
    Contact
    ----------------------------------
*/
.contact .content-box > header {
  margin-bottom: 60px; }

.contact .contact-nav {
  margin-top: 40px; }

.contact .btn-scroll {
  border-bottom: 1px solid #F05B37;
  position: relative;
  margin-right: 15px; }
  .contact .btn-scroll:after {
    background-color: gray;
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    right: -10px;
    top: 0; }
  .contact .btn-scroll:last-child:after {
    display: none; }

/*  
    ----------------------------------
    Error 404
    ----------------------------------
*/
.error-page {
  padding: 15px 0;
  background-color: black;
  color: white;
  text-align: center;
  margin-bottom: -40px; }
  .error-page h1 {
    margin-bottom: 5px; }
  .error-page h4 {
    margin-top: 0;
    font-family: 'Geogrotesque-Thin'; }
  @media (min-width: 768px) {
    .error-page {
      padding: 80px 0; } }
  .error-page .image {
    padding: 15px 0; }
    .error-page .image img {
      max-width: 100%; }
    @media (min-width: 768px) {
      .error-page .image {
        padding: 80px 0; } }
  .error-page .error-footer .sub strong {
    display: block;
    text-transform: uppercase; }
  .error-page a {
    color: white;
    display: inline-block;
    padding: 0 5px;
    text-decoration: underline; }

/*  
    ----------------------------------
    Timepicker
    ----------------------------------
*/
.timepicker {
  position: relative; }
  .timepicker.expanded .timepicker-dropdown {
    opacity: 1;
    visibility: visible; }
  .timepicker .timepicker-dropdown {
    min-width: 160px;
    visibility: hidden;
    opacity: 0;
    top: 110%;
    left: 0;
    position: absolute;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    z-index: 111;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
    .timepicker .timepicker-dropdown ul {
      margin: 0;
      padding: 0; }
      .timepicker .timepicker-dropdown ul li {
        list-style-type: none;
        padding: 5px 15px;
        cursor: pointer; }
        .timepicker .timepicker-dropdown ul li:hover {
          background-color: #F5F4EF; }

/*  
    ----------------------------------
    Popup for alternative hours
    ----------------------------------
*/
.popup {
  position: relative;
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .popup .popuptext {
    display: none;
    width: 160px;
    background-color: white;
    color: black;
    border-radius: 3px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 35%;
    margin-left: -100px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    width: 175%; }
    @media (max-width: 768px) {
      .popup .popuptext {
        width: 75%; } }
  .popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 7px;
    border-style: solid;
    border-color: white transparent transparent transparent; }
  .popup .show {
    display: block;
    -webkit-animation: fadeIn 0.5s;
    animation: fadeIn 0.5s; }

/*  
    ----------------------------------
    Financing
    ----------------------------------
*/
.financing .video {
  margin-bottom: 60px; }

.financing .box-fields {
  background-color: #F5F4EF;
  margin-bottom: 80px; }
  .financing .box-fields .header-title {
    text-align: center;
    padding: 40px;
    border-bottom: 2px solid white; }
    .financing .box-fields .header-title h2 {
      margin-bottom: 0; }
    .financing .box-fields .header-title h4 {
      color: #F05B37;
      margin-top: 0; }
  .financing .box-fields .item {
    position: relative;
    padding: 40px;
    overflow: hidden; }
    @media (min-width: 992px) {
      .financing .box-fields .item.item-arrow:before {
        content: "";
        width: 120px;
        height: 150px;
        position: absolute;
        border-right: 3px solid white;
        border-bottom: 3px solid white;
        right: 10px;
        top: 0;
        -moz-transform: rotate(-30deg) skew(0deg, -35deg);
        -ms-transform: rotate(-30deg) skew(0deg, -35deg);
        -o-transform: rotate(-30deg) skew(0deg, -35deg);
        -webkit-transform: rotate(-30deg) skew(0deg, -35deg);
        transform: rotate(-30deg) skew(0deg, -35deg); } }
    .financing .box-fields .item .text {
      display: table;
      width: 100%; }
      .financing .box-fields .item .text > div {
        display: table-cell;
        vertical-align: middle; }
        .financing .box-fields .item .text > div:first-child {
          width: 60px; }
      .financing .box-fields .item .text .title {
        font-size: 22px;
        text-transform: none; }

.financing .financing-info {
  margin-top: 40px; }
  .financing .financing-info .title {
    margin-bottom: 0;
    text-transform: none; }
  .financing .financing-info strong {
    text-transform: uppercase; }
  .financing .financing-info table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    border-spacing: 0;
    border-collapse: collapse; }
  .financing .financing-info th {
    text-align: left;
    background-color: #c19789;
    background-color: transparent;
    color: #000; }
  .financing .financing-info table > tbody > tr:nth-of-type(even) th {
    background-color: #eee;
    background-color: transparent; }
  .financing .financing-info table > tbody > tr:nth-of-type(odd) {
    background-color: #F5F4EF; }
  .financing .financing-info table > tbody > tr > td,
  .financing .financing-info table > tbody > tr > th,
  .financing .financing-info table > tfoot > tr > td,
  .financing .financing-info table > tfoot > tr > th,
  .financing .financing-info table > thead > tr > td,
  .financing .financing-info table > thead > tr > th {
    padding: 5px;
    vertical-align: top;
    border-spacing: 0px;
    font-weight: normal; }
  .financing .financing-info .table-responsive {
    margin-bottom: 40px; }
  .financing .financing-info .store-selector {
    margin: 20px 0;
    padding: 20px;
    background-color: #F5F4EF; }
    .financing .financing-info .store-selector .lg-button {
      padding-left: 2px; }
      @media (max-width: 575px) {
        .financing .financing-info .store-selector .lg-button {
          padding-left: 15px; } }
    .financing .financing-info .store-selector .btn {
      display: block; }
    @media (min-width: 992px) {
      .financing .financing-info .store-selector {
        margin: 40px 0; } }
    @media (max-width: 767px) {
      .financing .financing-info .store-selector .dropdown {
        margin-bottom: 20px; } }
    .financing .financing-info .store-selector .form-control {
      background-color: white; }

.ribbon {
  width: 140px;
  height: 140px;
  overflow: hidden;
  position: absolute; }
  .ribbon.corner-ribbon {
    top: 0px;
    right: 13px; }
    .ribbon.corner-ribbon span {
      position: absolute;
      display: block;
      width: 245px;
      padding: 2px 0;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
      color: #fff;
      text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
      text-transform: uppercase;
      text-align: center;
      left: -25px;
      top: 30px;
      transform: rotate(45deg);
      background-color: #f05b37; }

.ribbon-store {
  width: 118px;
  height: 118px;
  overflow: hidden;
  position: absolute; }
  .ribbon-store.corner-ribbon-store {
    top: -30px;
    right: -41px; }
    @media (max-width: 767px) {
      .ribbon-store.corner-ribbon-store {
        top: -16px;
        right: 0px;
        display: none; } }
    @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
      .ribbon-store.corner-ribbon-store {
        top: -30px;
        right: -30px; } }
    .ribbon-store.corner-ribbon-store span {
      position: absolute;
      display: block;
      width: 182px;
      padding: 2px 0;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
      color: #fff;
      text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
      text-transform: uppercase;
      text-align: center;
      left: -25px;
      top: 30px;
      transform: rotate(45deg);
      background-color: #f05b37;
      z-index: 10; }

.mobile-links-footer {
  padding: 15px;
  padding-bottom: 45px; }

@media (min-width: 992px) {
  .overlap-margin {
    margin-top: -45px; } }

.just-for-test {
  display: none; }

/* Version 1.0.0. 
 * Theme credit InetDesign APS */
