@charset "UTF-8";
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  /*margin-top: -0px !important;*/
  padding: 10px 0 !important;
  /*border: 1px solid $border-color;*/
  border-radius: 0;
  background-color: #ffffff;
  line-height: 1.2;
  box-shadow: 0 7px 22px -5px rgba(54, 54, 54, 0.2);
}

.sub-menu > li {
  display: block;
  position: relative;
}

.sub-menu > li > a {
  display: block;
  padding: 5px 20px !important;
  transition: color .3s;
  color: #606060;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
}

.sub-menu > li > a > i {
  display: inline-block;
  margin-top: -2px;
  margin-right: 6px;
  font-size: .9em;
  vertical-align: middle;
}

.sub-menu > li.sub-menu-user {
  display: table;
  width: 100%;
  padding: 4px 17px 6px;
}

.sub-menu > li.sub-menu-user .user-ava,
.sub-menu > li.sub-menu-user .user-info {
  display: table-cell;
  vertical-align: middle;
}

.sub-menu > li.sub-menu-user .user-ava {
  width: 44px;
}

.sub-menu > li.sub-menu-user .user-ava > img {
  display: block;
  width: 44px;
  padding: 3px;
  border: 1px solid #eaeaea;
  border-radius: 50%;
}


.sub-menu > li.sub-menu-user .user-info {
  padding-left: 8px;
}

.sub-menu > li.sub-menu-user .user-info > .user-name {
  margin-bottom: 2px;
  font-size: 14px;
}

.sub-menu > li.sub-menu-user .user-info > span {
  display: block;
}

.sub-menu > li.sub-menu-separator {
  margin-top: 5px;
  margin-bottom: 3px;
  border-top: 1px solid #eaeaea;
}

.sub-menu > li:hover > a {
  color: #B5D6F0;
}

.sub-menu > li.active > a {
  color: #B5D6F0;
}

.sub-menu > li.has-children > a {
  padding-right: 35px !important;
}

.sub-menu > li.has-children > a::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 18px;
  width: 0;
  height: 0;
  margin-top: -4px;
  border-top: .3em solid transparent;
  border-bottom: .3em solid transparent;
  border-left: .32em solid;
  content: '';
}

.sub-menu > li > .sub-menu {
  top: -4px;
  left: 10%;
  margin-left: -5px;
}

.sub-menu > li > .sub-menu > li > a {
  font-weight: normal;
}

.mega-menu {
  display: none;
  /*position: absolute;*/
  top: 100%;
  left: 0;
  /*width: 100%;*/
  /*margin-top: -1px !important;*/
  /*border: 1px solid $border-color;*/
  /*background-color: $white-color;*/
  /*box-shadow: $sub-menu-shadow;*/
  table-layout: fixed;
}

.mega-menu > li {
  display: table-cell !important;
  position: relative;
  padding: 25px !important;
  /*border-left: 1px solid $border-color;*/
  vertical-align: top;
}

.mega-menu > li .mega-menu-title {
  display: block;
  /*margin-bottom: 16px;*/
  padding-bottom: 10px;
  /*border-bottom: 1px solid $border-color;*/
  color: #999999;
  font-weight: 500;
  text-transform: uppercase;
  text-align: left;
}

.mega-menu > li:first-child {
  border-left: 0;
}

.mega-menu .sub-menu {
  display: block !important;
  position: relative;
  width: 100%;
  padding: 0 !important;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
}

.mega-menu .sub-menu > li > a {
  padding: 5px 0 !important;
}

.slideable-route {
  position: relative;
  /*right: -30px;
        left: -30px;*/
  /*border-top: 1px solid $border-color;*/
  overflow: hidden;
}

.slideable-route .route {
  /*height: 500px;*/
  display: block;
  position: relative;
  transform: translate3d(0, 0, 0);
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.slideable-route .route.off-view {
  transform: translate3d(-100%, 0, 0);
}

.slideable-route .route.in-view {
  transform: translate3d(0, 0, 0);
}

.slideable-route .route .slideable-subroute {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: auto;
  transform: translate3d(100%, 0, 0);
  transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.slideable-route .route .slideable-subroute.in-view {
  transform: translate3d(0, 0, 0);
}

.slideable-route .route .slideable-subroute.off-view {
  transform: translate3d(-100%, 0, 0);
}

.slideable-menu {
  position: relative;
  /*margin: {
        right: -15px;
        left: -15px;
    }*/
  border-top: 1px solid #eaeaea;
  overflow: hidden;
}

.slideable-menu ul {
  margin: 0;
  padding: 0;
}

.slideable-menu .menu {
  display: block;
  position: absolute;
  width: 100%;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  transition: transform 0.2s cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: transform 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}

.slideable-menu .menu.off-view {
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  /*right:100%;*/
}

.slideable-menu .menu.in-view {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  /*right:0;*/
}

.slideable-menu .menu li {
  display: block;
}

.slideable-menu .menu li > span > a {
  display: block;
  padding: 15px 20px;
  transition: color .3s;
  border-bottom: 1px solid #eaeaea;
  border-left: 2px solid transparent;
  color: #606060;
  font-size: 14px;
  letter-spacing: .025em;
  text-transform: uppercase;
  text-decoration: none;
}

@media (hover: hover) {
  .slideable-menu .menu li > span > a:hover {
    color: #B5D6F0;
  }
}

.slideable-menu .menu li.active > a,
.slideable-menu .menu li.active > span > a {
  border-left-color: #B5D6F0;
  color: #B5D6F0;
}

.slideable-menu .menu li.has-url {
  background: #fff;
}

.slideable-menu .menu li.has-children > span {
  display: block;
  position: relative;
  width: 100%;
}

.slideable-menu .menu li.has-children .sub-menu-toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  height: calc(100% - 1px);
  transition: background-color .3s;
  border-left: 1px solid #eaeaea;
  color: #606060 !important;
  cursor: pointer;
  z-index: 1;
  /*{
                        display: block;
                        position: absolute;
                        top: 50%;
                        left: 0;
                        width: 100%;
                        margin-top: -11px;

                        font: {
                            family: 'Material Icons';
                            size: 22px;
                        }

                        line-height: 1;
                        text-align: center;
                        content: '\e315';
                    }*/
}

.slideable-menu .menu li.has-children .sub-menu-toggle > svg.svg-inline--fa {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin-top: -11px;
  line-height: 1;
  text-align: center;
  font-size: 1.5em;
}

@media (hover: hover) {
  .slideable-menu .menu li.has-children .sub-menu-toggle:hover {
    background-color: #f5f5f5;
  }
}

.slideable-menu .menu li.has-children .slideable-submenu {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: auto;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transition: transform 0.2s cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: transform 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}

.slideable-menu .menu li.has-children .slideable-submenu.no-animation {
  transition: none !important;
}

.slideable-menu .menu li.has-children .slideable-submenu.in-view {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  /*right:0;*/
}

.slideable-menu .menu li.has-children .slideable-submenu.off-view {
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  /*right:100%*/
}

.slideable-menu .menu li.back-btn > span > a {
  background-color: #f5f5f5;
  /*&::before {
                    display: inline-block;
                    margin-right: 2px;

                    font: {
                        family: 'Material Icons';
                        size: 22px;
                    }

                    line-height: 1;
                    content: '\e314';
                    vertical-align: middle;
                }*/
}

@media (hover: hover) {
  .slideable-menu .menu li.back-btn > span > a:hover {
    color: #606060;
  }
}

.slideable-menu .menu li.back-btn > span > a > svg.svg-inline--fa {
  display: inline-block;
  margin-right: 10px;
  line-height: 1;
  vertical-align: middle;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideDown {
  0% {
    transform: translate3d(0, -15px, 0);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}

@keyframes slideUpLong {
  0% {
    transform: translate3d(0, 25px, 0);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}

@keyframes slideRight {
  0% {
    transform: translate3d(-15px, 0, 0);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}

html * {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.main {
  overflow-y: scroll;
}

@media (min-width: 1440px) {
  .scrollbar-padding {
    padding-left: calc(100vw - 100%);
  }
}

body {
  background-position: center;
  background-color: #d5d5d5;
  background-repeat: no-repeat;
  background-size: cover;
  color: #000000;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: normal;
  text-transform: none;
}

@media (min-width: 1440px) {
  body {
    padding-left: calc(100vw - 100%);
  }
}

html {
  font-size: 12px;
}

@media screen and (min-width: 320px) {
  html {
    font-size: calc(12px + 4 * ((100vw - 320px) / 1120));
  }
}

@media screen and (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}

/*.scroll-lock {
    overflow: hidden;
    height:100vh;
}*/
a {
  color: #B5D6F0;
  text-decoration: underline;
}

a:hover {
  color: #B5D6F0;
  text-decoration: none;
}

a:focus {
  outline: none;
}

.small, small {
  font-size: 85%;
}

.navi-link,
.navi-link-light {
  transition: color .3s;
  color: #606060;
  text-decoration: none;
}

.navi-link:hover,
.navi-link-light:hover {
  color: #B5D6F0 !important;
}

.navi-link-light {
  color: #ffffff;
}

img,
figure {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

svg {
  max-width: 100%;
}

svg -fa.fa-w-1 {
  width: 0.0625em;
}

svg.svg-inline--fa.fa-w-2 {
  width: 0.125em;
}

svg.svg-inline--fa.fa-w-3 {
  width: 0.1875em;
}

svg.svg-inline--fa.fa-w-4 {
  width: 0.25em;
}

svg.svg-inline--fa.fa-w-5 {
  width: 0.3125em;
}

svg.svg-inline--fa.fa-w-6 {
  width: 0.375em;
}

svg.svg-inline--fa.fa-w-7 {
  width: 0.4375em;
}

svg.svg-inline--fa.fa-w-8 {
  width: 0.5em;
}

svg.svg-inline--fa.fa-w-9 {
  width: 0.5625em;
}

svg.svg-inline--fa.fa-w-10 {
  width: 0.625em;
}

svg.svg-inline--fa.fa-w-11 {
  width: 0.6875em;
}

svg.svg-inline--fa.fa-w-12 {
  width: 0.75em;
}

svg.svg-inline--fa.fa-w-13 {
  width: 0.8125em;
}

svg.svg-inline--fa.fa-w-14 {
  width: 0.875em;
}

svg.svg-inline--fa.fa-w-15 {
  width: 0.9375em;
}

svg.svg-inline--fa.fa-w-16 {
  width: 1em;
}

svg.svg-inline--fa.fa-w-17 {
  width: 1.0625em;
}

svg.svg-inline--fa.fa-w-18 {
  width: 1.125em;
}

svg.svg-inline--fa.fa-w-19 {
  width: 1.1875em;
}

svg.svg-inline--fa.fa-w-20 {
  width: 1.25em;
}

svg.svg-inline--fa.fa-pull-left {
  margin-right: 0.3em;
  width: auto;
}

svg.svg-inline--fa.fa-pull-right {
  margin-left: 0.3em;
  width: auto;
}

svg.svg-inline--fa.fa-border {
  height: 1.5em;
}

svg.svg-inline--fa.fa-li {
  width: 2em;
}

svg.svg-inline--fa.fa-fw {
  width: 1.25em;
}

/* Responsive iframes */
iframe {
  width: 100%;
}

/* Box Model */
* {
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

hr {
  margin: 0;
  border: 0;
  border-top: 1px solid #eaeaea;
}

hr.hr-light {
  border-top-color: rgba(255, 255, 255, 0.14);
}

pre {
  display: block;
  padding: 15px;
  border: 1px solid #eaeaea;
  border-radius: 5px;
  background-color: #f5f5f5;
}

::selection {
  background: #404040;
  color: #ffffff;
}

::-moz-selection {
  background: #404040;
  color: #ffffff;
}

figure {
  position: relative;
  margin: 0;
}

figure figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 12px;
  font-size: 14px;
}

/* Bootstrap Overrides */
.container, .container-fluid, [class*="col-"] {
  /*padding-left: 1.25vw;
    padding-right: 1.25vw;*/
}

.row {
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 768px) {
  .row {
    padding-left: 1.25vw;
    padding-right: 1.25vw;
    margin-right: -1.25vw;
    margin-left: -1.25vw;
  }
}

@media (max-width: 768px) {
  .row > [class*="col-"] {
    padding-left: 1.25vw;
    padding-right: 1.25vw;
  }
}

/*@media (max-width: $screen-md) {
    .container {
        padding-left:0px;
        padding-right:0px;
    }
}*/
@media (min-width: 1200px) {
  /*.toolbar-open {
        .container {
            width: 100% !important;
            max-width: 1170px;
        }
    }*/
  .container {
    width: 100%;
    max-width: 1170px;
  }
}

@media (max-width: 1200px) {
  .container {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.container-fluid {
  max-width: 1440px;
  /*
    margin: {
        right: auto;
        left: auto;
    }

    padding: {
        right: 30px;
        left: 30px;
    }*/
}

@media (max-width: 768px) {
  .container-fluid {
    padding-left: 1.25vw;
    padding-right: 1.25vw;
  }
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 4px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  vertical-align: middle;
}

.close {
  transition: opacity .25s;
  border: 0;
  background: 0;
  color: #606060;
  font-family: sans-serif;
  font-size: 18px;
  cursor: pointer;
}

.close:hover {
  opacity: .6;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-static {
  position: static !important;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.w-20 {
  width: 20px !important;
}

.w-90 {
  width: 90px !important;
}

.w-110 {
  width: 110px !important;
}

.w-150 {
  width: 150px !important;
}

.w-200 {
  width: 200px !important;
}

.w-250 {
  width: 250px !important;
}

.w-270 {
  width: 270px !important;
}

.w-300 {
  width: 300px !important;
}

.img-thumbnail {
  padding: 5px !important;
  border: 2px solid #eaeaea;
  border-radius: 0;
  background-color: #ffffff;
}

.img-thumbnail.rounded-circle {
  border-radius: 50%;
}

.border-default {
  border: 1px solid #eaeaea;
}

.border-default.border-light {
  border-color: rgba(255, 255, 255, 0.14);
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.rounded {
  border-radius: 5px;
}

.rounded-top {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.rounded-right {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.rounded-bottom {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.rounded-left {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.rounded-circle {
  border-radius: 50%;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-right-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-bottom-0 {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-left-0 {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.box-shadow {
  box-shadow: 0 7px 22px -5px rgba(54, 54, 54, 0.2);
}

.img-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

[class^='col-'] .img-cover {
  left: 15px;
  width: calc(100% - 30px);
}

.opacity-100 {
  opacity: 1 !important;
}

.opacity-90 {
  opacity: .9 !important;
}

.opacity-80 {
  opacity: .8 !important;
}

.opacity-75 {
  opacity: .75 !important;
}

.opacity-70 {
  opacity: .7 !important;
}

.opacity-60 {
  opacity: .6 !important;
}

.opacity-50 {
  opacity: .5 !important;
}

.opacity-25 {
  opacity: .25 !important;
}

.opacity-15 {
  opacity: .15 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: '';
}

.text-muted {
  color: #999999 !important;
}

.text-primary {
  color: #B5D6F0 !important;
}

.text-info {
  color: #93c4ef !important;
}

.text-warning {
  color: #e68305 !important;
}

.text-success {
  color: #a7c04d !important;
}

.text-danger {
  color: #ef0568 !important;
}

.text-gray-dark,
.text-dark {
  color: #404040 !important;
}

.text-gray-light {
  color: #d6d6d6 !important;
}

.text-body {
  color: #606060 !important;
}

.text-light,
.text-white {
  color: #ffffff !important;
}

.text-highlighted {
  background-color: #fff8b0 !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-crossed {
  text-decoration: line-through !important;
}

.text-shadow {
  text-shadow: 0 1px rgba(0, 0, 0, 0.5) !important;
}

.text-black {
  font-weight: 900 !important;
}

.text-bold {
  font-weight: bold !important;
}

.text-medium {
  font-weight: 500 !important;
}

.text-normal {
  font-weight: normal !important;
}

.text-thin {
  font-weight: 300 !important;
}

.text-uppercase {
  letter-spacing: .025em;
}

.bg-primary {
  background-color: #B5D6F0 !important;
}

.bg-success {
  background-color: #a7c04d !important;
}

.bg-info {
  background-color: #93c4ef !important;
}

.bg-warning {
  background-color: #e68305 !important;
}

.bg-danger {
  background-color: #ef0568 !important;
}

.bg-inverse {
  background-color: #404040 !important;
}

.bg-faded,
.bg-secondary {
  background-color: #f5f5f5 !important;
}

.bg-dark {
  background-color: #404040 !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-repeat {
  background-repeat: repeat;
}

.bg-center {
  background-position: center;
}

.bg-cover {
  background-size: cover;
}

.border-primary {
  border-color: #B5D6F0 !important;
}

.border-success {
  border-color: #a7c04d !important;
}

.border-info {
  border-color: #93c4ef !important;
}

.border-warning {
  border-color: #e68305 !important;
}

.border-danger {
  border-color: #ef0568 !important;
}

.border-secondary {
  border-color: #f5f5f5 !important;
}

.border-dark {
  border-color: #404040 !important;
}

.padding-top-1x {
  padding-top: 24px !important;
}

@media (max-width: 768px) {
  .padding-top-1x {
    padding-top: 16px !important;
  }
}

.padding-top-2x {
  padding-top: 48px !important;
}

@media (max-width: 768px) {
  .padding-top-2x {
    padding-top: 32px !important;
  }
}

.padding-top-3x {
  padding-top: 72px !important;
}

@media (max-width: 768px) {
  .padding-top-3x {
    padding-top: 48px !important;
  }
}

.padding-top-4x {
  padding-top: 96px !important;
}

@media (max-width: 768px) {
  .padding-top-4x {
    padding-top: 64px !important;
  }
}

.padding-top-5x {
  padding-top: 120px !important;
}

@media (max-width: 768px) {
  .padding-top-5x {
    padding-top: 80px !important;
  }
}

.padding-top-6x {
  padding-top: 144px !important;
}

@media (max-width: 768px) {
  .padding-top-6x {
    padding-top: 96px !important;
  }
}

.padding-top-7x {
  padding-top: 168px !important;
}

@media (max-width: 768px) {
  .padding-top-7x {
    padding-top: 112px !important;
  }
}

.padding-top-8x {
  padding-top: 192px !important;
}

@media (max-width: 768px) {
  .padding-top-8x {
    padding-top: 128px !important;
  }
}

.padding-top-9x {
  padding-top: 216px !important;
}

@media (max-width: 768px) {
  .padding-top-9x {
    padding-top: 144px !important;
  }
}

.padding-top-10x {
  padding-top: 240px !important;
}

@media (max-width: 768px) {
  .padding-top-10x {
    padding-top: 160px !important;
  }
}

.padding-bottom-1x {
  padding-bottom: 24px !important;
}

@media (max-width: 768px) {
  .padding-bottom-1x {
    padding-bottom: 16px !important;
  }
}

.padding-bottom-2x {
  padding-bottom: 48px !important;
}

@media (max-width: 768px) {
  .padding-bottom-2x {
    padding-bottom: 32px !important;
  }
}

.padding-bottom-3x {
  padding-bottom: 72px !important;
}

@media (max-width: 768px) {
  .padding-bottom-3x {
    padding-bottom: 48px !important;
  }
}

.padding-bottom-4x {
  padding-bottom: 96px !important;
}

@media (max-width: 768px) {
  .padding-bottom-4x {
    padding-bottom: 64px !important;
  }
}

.padding-bottom-5x {
  padding-bottom: 120px !important;
}

@media (max-width: 768px) {
  .padding-bottom-5x {
    padding-bottom: 80px !important;
  }
}

.padding-bottom-6x {
  padding-bottom: 144px !important;
}

@media (max-width: 768px) {
  .padding-bottom-6x {
    padding-bottom: 96px !important;
  }
}

.padding-bottom-7x {
  padding-bottom: 168px !important;
}

@media (max-width: 768px) {
  .padding-bottom-7x {
    padding-bottom: 112px !important;
  }
}

.padding-bottom-8x {
  padding-bottom: 192px !important;
}

@media (max-width: 768px) {
  .padding-bottom-8x {
    padding-bottom: 128px !important;
  }
}

.padding-bottom-9x {
  padding-bottom: 216px !important;
}

@media (max-width: 768px) {
  .padding-bottom-9x {
    padding-bottom: 144px !important;
  }
}

.padding-bottom-10x {
  padding-bottom: 240px !important;
}

@media (max-width: 768px) {
  .padding-bottom-10x {
    padding-bottom: 160px !important;
  }
}

.margin-top-1x {
  margin-top: 24px !important;
}

@media (max-width: 768px) {
  .margin-top-1x {
    margin-top: 16px !important;
  }
}

.margin-top-2x {
  margin-top: 48px !important;
}

@media (max-width: 768px) {
  .margin-top-2x {
    margin-top: 32px !important;
  }
}

.margin-top-3x {
  margin-top: 72px !important;
}

@media (max-width: 768px) {
  .margin-top-3x {
    margin-top: 48px !important;
  }
}

.margin-top-4x {
  margin-top: 96px !important;
}

@media (max-width: 768px) {
  .margin-top-4x {
    margin-top: 64px !important;
  }
}

.margin-top-5x {
  margin-top: 120px !important;
}

@media (max-width: 768px) {
  .margin-top-5x {
    margin-top: 80px !important;
  }
}

.margin-top-6x {
  margin-top: 144px !important;
}

@media (max-width: 768px) {
  .margin-top-6x {
    margin-top: 96px !important;
  }
}

.margin-top-7x {
  margin-top: 168px !important;
}

@media (max-width: 768px) {
  .margin-top-7x {
    margin-top: 112px !important;
  }
}

.margin-top-8x {
  margin-top: 192px !important;
}

@media (max-width: 768px) {
  .margin-top-8x {
    margin-top: 128px !important;
  }
}

.margin-top-9x {
  margin-top: 216px !important;
}

@media (max-width: 768px) {
  .margin-top-9x {
    margin-top: 144px !important;
  }
}

.margin-top-10x {
  margin-top: 240px !important;
}

@media (max-width: 768px) {
  .margin-top-10x {
    margin-top: 160px !important;
  }
}

.margin-bottom-1x {
  margin-bottom: 24px !important;
}

@media (max-width: 768px) {
  .margin-bottom-1x {
    margin-bottom: 16px !important;
  }
}

.margin-bottom-2x {
  margin-bottom: 48px !important;
}

@media (max-width: 768px) {
  .margin-bottom-2x {
    margin-bottom: 32px !important;
  }
}

.margin-bottom-3x {
  margin-bottom: 72px !important;
}

@media (max-width: 768px) {
  .margin-bottom-3x {
    margin-bottom: 48px !important;
  }
}

.margin-bottom-4x {
  margin-bottom: 96px !important;
}

@media (max-width: 768px) {
  .margin-bottom-4x {
    margin-bottom: 64px !important;
  }
}

.margin-bottom-5x {
  margin-bottom: 120px !important;
}

@media (max-width: 768px) {
  .margin-bottom-5x {
    margin-bottom: 80px !important;
  }
}

.margin-bottom-6x {
  margin-bottom: 144px !important;
}

@media (max-width: 768px) {
  .margin-bottom-6x {
    margin-bottom: 96px !important;
  }
}

.margin-bottom-7x {
  margin-bottom: 168px !important;
}

@media (max-width: 768px) {
  .margin-bottom-7x {
    margin-bottom: 112px !important;
  }
}

.margin-bottom-8x {
  margin-bottom: 192px !important;
}

@media (max-width: 768px) {
  .margin-bottom-8x {
    margin-bottom: 128px !important;
  }
}

.margin-bottom-9x {
  margin-bottom: 216px !important;
}

@media (max-width: 768px) {
  .margin-bottom-9x {
    margin-bottom: 144px !important;
  }
}

.margin-bottom-10x {
  margin-bottom: 240px !important;
}

@media (max-width: 768px) {
  .margin-bottom-10x {
    margin-bottom: 160px !important;
  }
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.margin-top-none {
  margin-top: 0 !important;
}

.margin-bottom-none {
  margin-bottom: 0 !important;
}

.padding-top-none {
  padding-top: 0 !important;
}

.padding-bottom-none {
  padding-bottom: 0 !important;
}

.margin-right-none {
  margin-right: 0 !important;
}

.margin-left-none {
  margin-left: 0 !important;
}

.padding-right-none {
  padding-right: 0 !important;
}

.padding-left-none {
  padding-left: 0 !important;
}

.hidden-xs-up {
  display: none !important;
}

@media (max-width: 575px) {
  .hidden-xs-down {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .hidden-sm-up {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hidden-sm-down {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hidden-md-up {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .hidden-md-down {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .hidden-lg-up {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .hidden-lg-down {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-xl-up {
    display: none !important;
  }
}

.hidden-xl-down {
  display: none !important;
}

.d-inline-block img {
  width: 100%;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin: 0;
  color: #000000;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-style: normal;
  text-transform: none;
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small,
.h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small {
  display: block;
  padding-top: 3px;
  color: #999999;
}

h1, .h1 {
  margin-top: 14px;
  margin-bottom: 28px;
  /*size: $font-size-h1;*/
  font-weight: 300;
  /*line-height: $line-height-h1;*/
  /*@media (max-width: $screen-md) {
        font-size: floor($font-size-h1 * .88);
    }*/
}

h2, .h2 {
  margin-bottom: 24px;
  /*size: $font-size-h2;*/
  font-weight: 300;
  /*line-height: $line-height-h2;
  @media (max-width: $screen-md) {
    font-size: floor($font-size-h2 * .95);
  }*/
}

h3, .h3 {
  margin-bottom: 20px;
  /*size: $font-size-h3;*/
  font-weight: 300;
  /*line-height: $line-height-h3;
  @media (max-width: $screen-md) {
    font-size: floor($font-size-h3 * .95);
  }*/
}

h4, .h4 {
  margin-bottom: 17px;
  /*size: $font-size-h4;*/
  font-weight: 400;
  /*line-height: $line-height-h4;*/
}

h5, .h5 {
  margin-bottom: 12px;
  /*size: $font-size-h5;*/
  font-weight: 400;
  /*line-height: $line-height-h5;*/
}

h6, .h6 {
  margin-bottom: 12px;
  /*size: $font-size-h6;*/
  font-weight: 500;
  /*line-height: $line-height-h6;*/
}

.display-1, .display-2,
.display-3, .display-4 {
  font-weight: 300;
  line-height: 1.15;
}

.display-1 {
  font-size: 72px;
}

@media (max-width: 576px) {
  .display-1 {
    font-size: 57px;
  }
}

.display-2 {
  font-size: 60px;
}

@media (max-width: 576px) {
  .display-2 {
    font-size: 48px;
  }
}

.display-3 {
  font-size: 50px;
}

@media (max-width: 576px) {
  .display-3 {
    font-size: 42px;
  }
}

.display-4 {
  font-size: 40px;
}

@media (max-width: 576px) {
  .display-4 {
    font-size: 36px;
  }
}

.display-404 {
  color: #ffffff;
  font-size: 345px;
  font-weight: 900;
  line-height: 1.12;
  text-shadow: 12px 12px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .display-404 {
    font-size: 280px;
  }
}

@media (max-width: 768px) {
  .display-404 {
    font-size: 200px;
  }
}

@media (max-width: 576px) {
  .display-404 {
    font-size: 135px;
  }
}

p {
  margin: 0 0 20px;
}

.lead {
  font-size: 18px;
}

.text-sm {
  font-size: 14px;
}

.text-xs {
  font-size: 13px;
}

.text-xxs {
  font-size: 12px;
}

strong {
  font-weight: 600;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 18px;
  line-height: 1.8;
}

ul ul, ul ol, ol ul, ol ol {
  margin-bottom: 0;
}

li.media {
  line-height: 1.2;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

.list-icon {
  padding: 0;
  list-style: none;
}

.list-icon > li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 22px;
}

.list-icon > li > i {
  display: block;
  position: absolute;
  left: 0;
  margin-top: 1px;
  line-height: inherit;
}

.list-icon.text-lg > li {
  padding-left: 25px;
}

.list-icon.text-sm > li {
  padding-left: 18px;
}

.list-icon.lead > li {
  padding-left: 26px;
}

dl {
  margin-top: 0;
  margin-bottom: 16px;
}

dt, dd {
  line-height: 1.2;
}

dt {
  padding-top: 9px;
  border-top: 1px solid #eaeaea;
  color: #000000;
  font-weight: 500;
}

dt:first-child {
  padding-top: 0;
  border: 0;
}

dd {
  margin-top: 3px;
  margin-bottom: 15px;
  margin-left: 0;
  color: #606060;
}

blockquote {
  position: relative;
  margin: 0;
  margin-bottom: 24px;
  padding: 12px 0 12px 25px;
  border-left: 5px solid #eaeaea;
  color: #000000;
  font-size: 18px;
  font-weight: 300;
}

blockquote cite {
  display: block;
  margin-top: 9px;
  color: #999999;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
}

blockquote cite::before {
  display: inline-block;
  width: 20px;
  height: 1px;
  margin-right: 9px;
  background-color: #999999;
  content: '';
  vertical-align: middle;
}

blockquote p {
  margin-bottom: 0;
}

blockquote.blockquote-reverse {
  padding: 12px 25px 12px 0;
  border-right: 5px solid #eaeaea;
  border-left: 0;
  text-align: right;
}

kbd {
  background-color: #404040;
}

mark {
  color: #404040;
}

.form-control {
  padding: 0 18px 3px;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  background-color: #ffffff;
  color: #606060;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-control:not(textarea) {
  height: 46px;
}

.form-control::-moz-placeholder {
  color: #606060;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #606060;
}

.form-control::-webkit-input-placeholder {
  color: #606060;
}

.form-control:focus {
  border-width: 2px;
  border-color: #B5D6F0;
  outline: none;
  color: #606060;
  box-shadow: none !important;
}

.form-control[type='color'] {
  padding-bottom: 0 !important;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #f5f5f5;
  color: #999999;
  cursor: not-allowed;
}

.form-control:disabled::-moz-placeholder, .form-control[readonly]::-moz-placeholder {
  color: #999999;
  opacity: 1;
}

.form-control:disabled:-ms-input-placeholder, .form-control[readonly]:-ms-input-placeholder {
  color: #999999;
}

.form-control:disabled::-webkit-input-placeholder, .form-control[readonly]::-webkit-input-placeholder {
  color: #999999;
}

textarea.form-control {
  padding-top: 12px;
  padding-bottom: 12px;
}

select.form-control {
  padding-right: 38px;
  padding-left: 8px;
  background-color: #fafafa;
  border-color: #cccccc;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  background-position: center right 17px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCIgdmlld0JveD0iMCAwIDI5Mi4zNjIgMjkyLjM2MiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjkyLjM2MiAyOTIuMzYyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxnPgoJPHBhdGggZD0iTTI4Ni45MzUsNjkuMzc3Yy0zLjYxNC0zLjYxNy03Ljg5OC01LjQyNC0xMi44NDgtNS40MjRIMTguMjc0Yy00Ljk1MiwwLTkuMjMzLDEuODA3LTEyLjg1LDUuNDI0ICAgQzEuODA3LDcyLjk5OCwwLDc3LjI3OSwwLDgyLjIyOGMwLDQuOTQ4LDEuODA3LDkuMjI5LDUuNDI0LDEyLjg0N2wxMjcuOTA3LDEyNy45MDdjMy42MjEsMy42MTcsNy45MDIsNS40MjgsMTIuODUsNS40MjggICBzOS4yMzMtMS44MTEsMTIuODQ3LTUuNDI4TDI4Ni45MzUsOTUuMDc0YzMuNjEzLTMuNjE3LDUuNDI3LTcuODk4LDUuNDI3LTEyLjg0N0MyOTIuMzYyLDc3LjI3OSwyOTAuNTQ4LDcyLjk5OCwyODYuOTM1LDY5LjM3N3oiIGZpbGw9IiM2MDYwNjAiLz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
  background-repeat: no-repeat;
  background-size: 9px 9px;
}

select.form-control:not([size]):not([multiple]) {
  height: 46px;
}

.form-group {
  margin-bottom: 17px !important;
  /*margin-bottom: 12px !important;*/
}

.form-group label {
  margin-bottom: 7px;
  /*padding-left: 18px;*/
  font-size: 12px;
  letter-spacing: .025em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-group label.col-form-label {
  align-self: center !important;
  margin-bottom: 0;
}

.form-group.mb-0 {
  margin-bottom: 0 !important;
}

.form-control-lg {
  border-radius: 4px;
  font-size: 16px;
}

.form-control-lg:not(textarea) {
  height: 54px;
}

.form-control-lg.form-control-pill {
  border-radius: 27px;
}

.form-control-lg.form-control-square {
  border-radius: 0;
}

select.form-control.form-control-lg:not([size]):not([multiple]) {
  height: 54px;
}

.form-control-sm {
  padding-bottom: 2px;
  border-radius: 3px;
}

.form-control-sm:not(textarea) {
  height: 36px;
}

.form-control-sm.form-control-pill {
  border-radius: 18px;
}

.form-control-sm.form-control-square {
  border-radius: 0;
}

select.form-control.form-control-sm:not([size]):not([multiple]) {
  height: 36px;
}

.form-text {
  padding-left: 18px;
}

.custom-control {
  margin-bottom: 8px;
  padding-left: 1.5rem !important;
  color: #000000 !important;
  font-size: 14px !important;
  font-weight: normal !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.custom-control:focus {
  outline: 0;
}

.custom-control .custom-control-label {
  margin: 0;
  padding-left: 0;
  font-size: 14px;
  text-transform: none;
}

.custom-control .custom-control-label::before {
  border: 2px solid #e2e2e2;
  background-color: #ffffff;
  box-shadow: none !important;
}

.custom-control .custom-control-input:checked ~ .custom-control-label::before {
  border: 0;
  border-color: #eaeaea;
  background-color: #B5D6F0;
}

.custom-control .custom-control-input:disabled ~ .custom-control-label::before {
  border-color: rgba(234, 234, 234, 0.9);
  background-color: #ffffff;
}

.custom-control .custom-control-input:disabled ~ .custom-control-label {
  color: #999999;
  cursor: not-allowed;
}

.custom-control .custom-control-input:focus ~ .custom-control-label::before {
  border-color: #000;
}

.custom-control-inline {
  align-items: center;
}

.custom-file,
.custom-file-input {
  height: 46px;
  border-radius: 23px;
  cursor: pointer;
}

.custom-file:focus ~ .custom-file-label,
.custom-file-input:focus ~ .custom-file-label {
  box-shadow: none;
}

.custom-file-label,
.custom-file-label::after {
  height: 46px;
  border: 2px solid #eaeaea;
  border-radius: 4px;
  color: #606060;
  font-size: 14px;
  line-height: 2.1;
}

.custom-file-label::after {
  height: 42px;
  margin: 0;
  border: 0;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  background-color: #f5f5f5;
}

.form-control-pill {
  border-radius: 23px;
}

.form-control-pill .custom-file-control,
.form-control-pill .custom-file-control::before {
  border-radius: 4px;
}

.form-control-square {
  border-radius: 0;
}

.form-control-square .custom-file-control,
.form-control-square .custom-file-control::before {
  border-radius: 0;
}

.input-group {
  display: block;
  position: relative;
}

.input-group .input-group-addon,
.input-group .input-group-btn {
  display: inline-block;
  position: absolute;
  /*top: 50%;*/
  top: 23px;
  margin-top: -3px;
  transform: translateY(-50%);
  font-size: 18px;
}

.input-group .input-group-addon {
  left: 15px;
  transition: color .3s;
  background-color: transparent !important;
  color: #999999;
}

.input-group .form-control {
  padding-left: 38px;
}

.input-group .form-control:focus ~ .input-group-addon {
  color: #B5D6F0;
}

.input-group .input-group-btn {
  right: 8px;
  margin-top: -1px;
}

.input-group .input-group-btn button {
  transition: color .3s;
  border: 0;
  background: 0;
  color: #606060;
  font-size: 1.2em;
  cursor: pointer;
}

.input-group .input-group-btn button:hover {
  color: #B5D6F0;
}

.input-group .input-group-btn .btn {
  margin: 0;
  margin-right: 3px;
  padding: 0;
}

.input-group .input-group-btn ~ .form-control {
  padding-right: 35px;
  padding-left: 18px;
}

.form-control-feedback {
  font-size: 14px;
}

.has-success label,
.has-success .custom-control-label,
.has-success .form-control-feedback,
.has-success .custom-control,
.has-success .input-group .input-group-addon,
.has-success.input-group .input-group-addon,
.has-success .form-control:focus ~ .input-group-addon {
  color: #a7c04d;
}

.has-success .form-control,
.has-success .form-control:focus {
  border-color: #a7c04d;
}

.has-success .form-control-success {
  padding-right: 42px;
  background-position: center right 15px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDI2IDI2IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAyNiAyNiIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCI+CiAgPHBhdGggZD0ibS4zLDE0Yy0wLjItMC4yLTAuMy0wLjUtMC4zLTAuN3MwLjEtMC41IDAuMy0wLjdsMS40LTEuNGMwLjQtMC40IDEtMC40IDEuNCwwbC4xLC4xIDUuNSw1LjljMC4yLDAuMiAwLjUsMC4yIDAuNywwbDEzLjQtMTMuOWgwLjF2LTguODgxNzhlLTE2YzAuNC0wLjQgMS0wLjQgMS40LDBsMS40LDEuNGMwLjQsMC40IDAuNCwxIDAsMS40bDAsMC0xNiwxNi42Yy0wLjIsMC4yLTAuNCwwLjMtMC43LDAuMy0wLjMsMC0wLjUtMC4xLTAuNy0wLjNsLTcuOC04LjQtLjItLjN6IiBmaWxsPSIjYTdjMDRkIi8+Cjwvc3ZnPgo=);
  background-repeat: no-repeat;
  background-size: 14px 14px;
}

.has-warning label,
.has-warning .custom-control-label,
.has-warning .form-control-feedback,
.has-warning .custom-control,
.has-warning .input-group .input-group-addon,
.has-warning.input-group .input-group-addon,
.has-warning .form-control:focus ~ .input-group-addon {
  color: #e68305;
}

.has-warning .form-control,
.has-warning .form-control:focus {
  border-color: #e68305;
}

.has-warning .form-control-warning {
  padding-right: 42px;
  background-position: center right 15px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDQ4Ni40NjMgNDg2LjQ2MyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDg2LjQ2MyA0ODYuNDYzOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTI0My4yMjUsMzMzLjM4MmMtMTMuNiwwLTI1LDExLjQtMjUsMjVzMTEuNCwyNSwyNSwyNWMxMy4xLDAsMjUtMTEuNCwyNC40LTI0LjQgICAgQzI2OC4yMjUsMzQ0LjY4MiwyNTYuOTI1LDMzMy4zODIsMjQzLjIyNSwzMzMuMzgyeiIgZmlsbD0iI2ZmY2UyYiIvPgoJCTxwYXRoIGQ9Ik00NzQuNjI1LDQyMS45ODJjMTUuNy0yNy4xLDE1LjgtNTkuNCwwLjItODYuNGwtMTU2LjYtMjcxLjJjLTE1LjUtMjcuMy00My41LTQzLjUtNzQuOS00My41cy01OS40LDE2LjMtNzQuOSw0My40ICAgIGwtMTU2LjgsMjcxLjVjLTE1LjYsMjcuMy0xNS41LDU5LjgsMC4zLDg2LjljMTUuNiwyNi44LDQzLjUsNDIuOSw3NC43LDQyLjloMzEyLjggICAgQzQzMC43MjUsNDY1LjU4Miw0NTguODI1LDQ0OS4yODIsNDc0LjYyNSw0MjEuOTgyeiBNNDQwLjYyNSw0MDIuMzgyYy04LjcsMTUtMjQuMSwyMy45LTQxLjMsMjMuOWgtMzEyLjggICAgYy0xNywwLTMyLjMtOC43LTQwLjgtMjMuNGMtOC42LTE0LjktOC43LTMyLjctMC4xLTQ3LjdsMTU2LjgtMjcxLjRjOC41LTE0LjksMjMuNy0yMy43LDQwLjktMjMuN2MxNy4xLDAsMzIuNCw4LjksNDAuOSwyMy44ICAgIGwxNTYuNywyNzEuNEM0NDkuMzI1LDM2OS44ODIsNDQ5LjIyNSwzODcuNDgyLDQ0MC42MjUsNDAyLjM4MnoiIGZpbGw9IiNmZmNlMmIiLz4KCQk8cGF0aCBkPSJNMjM3LjAyNSwxNTcuODgyYy0xMS45LDMuNC0xOS4zLDE0LjItMTkuMywyNy4zYzAuNiw3LjksMS4xLDE1LjksMS43LDIzLjhjMS43LDMwLjEsMy40LDU5LjYsNS4xLDg5LjcgICAgYzAuNiwxMC4yLDguNSwxNy42LDE4LjcsMTcuNmMxMC4yLDAsMTguMi03LjksMTguNy0xOC4yYzAtNi4yLDAtMTEuOSwwLjYtMTguMmMxLjEtMTkuMywyLjMtMzguNiwzLjQtNTcuOSAgICBjMC42LTEyLjUsMS43LTI1LDIuMy0zNy41YzAtNC41LTAuNi04LjUtMi4zLTEyLjVDMjYwLjgyNSwxNjAuNzgyLDI0OC45MjUsMTU1LjA4MiwyMzcuMDI1LDE1Ny44ODJ6IiBmaWxsPSIjZmZjZTJiIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
}

.has-danger label,
.has-danger .custom-control-label,
.has-danger .form-control-feedback,
.has-danger .custom-control,
.has-danger .input-group .input-group-addon,
.has-danger.input-group .input-group-addon,
.has-danger .form-control:focus ~ .input-group-addon {
  color: #ef0568;
}

.has-danger .form-control,
.has-danger .form-control:focus {
  border-color: #ef0568;
}

.has-danger .form-control-danger {
  padding-right: 42px;
  background-position: center right 15px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDIxMi45ODIgMjEyLjk4MiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjEyLjk4MiAyMTIuOTgyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCI+CjxnIGlkPSJDbG9zZSI+Cgk8cGF0aCBzdHlsZT0iZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7IiBkPSJNMTMxLjgwNCwxMDYuNDkxbDc1LjkzNi03NS45MzZjNi45OS02Ljk5LDYuOTktMTguMzIzLDAtMjUuMzEyICAgYy02Ljk5LTYuOTktMTguMzIyLTYuOTktMjUuMzEyLDBsLTc1LjkzNyw3NS45MzdMMzAuNTU0LDUuMjQyYy02Ljk5LTYuOTktMTguMzIyLTYuOTktMjUuMzEyLDBjLTYuOTg5LDYuOTktNi45ODksMTguMzIzLDAsMjUuMzEyICAgbDc1LjkzNyw3NS45MzZMNS4yNDIsMTgyLjQyN2MtNi45ODksNi45OS02Ljk4OSwxOC4zMjMsMCwyNS4zMTJjNi45OSw2Ljk5LDE4LjMyMiw2Ljk5LDI1LjMxMiwwbDc1LjkzNy03NS45MzdsNzUuOTM3LDc1LjkzNyAgIGM2Ljk4OSw2Ljk5LDE4LjMyMiw2Ljk5LDI1LjMxMiwwYzYuOTktNi45OSw2Ljk5LTE4LjMyMiwwLTI1LjMxMkwxMzEuODA0LDEwNi40OTF6IiBmaWxsPSIjZWYwNTY4Ii8+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
  background-size: 11px 11px;
  background-repeat: no-repeat;
}

.form-control-feedback {
  padding-top: 2px;
  padding-left: 18px;
}

.input-light.form-control,
.input-light .form-control {
  border-color: rgba(255, 255, 255, 0.17) !important;
  background-color: transparent;
  color: #ffffff;
}

.input-light.form-control::-moz-placeholder,
.input-light .form-control::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}

.input-light.form-control:-ms-input-placeholder,
.input-light .form-control:-ms-input-placeholder {
  color: #ffffff;
}

.input-light.form-control::-webkit-input-placeholder,
.input-light .form-control::-webkit-input-placeholder {
  color: #ffffff;
}

.input-light.form-control:focus,
.input-light .form-control:focus {
  border-color: #B5D6F0 !important;
  color: #ffffff;
}

.input-light.input-group .input-group-addon {
  color: rgba(255, 255, 255, 0.65);
}

.input-light.input-group .input-group-btn button {
  color: #ffffff;
}

.input-light.input-group .input-group-btn button:hover {
  color: #B5D6F0;
}

.search-form {
  position: relative;
}

.search-form > i {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -11px;
  transition: color .35s;
  color: #999999;
  font-size: 24px;
}

.search-form > input {
  display: block;
  font-size: 16px;
  width: 100%;
  height: 50px;
  padding-left: 32px;
  transition: border-color .35s;
  border: 0;
  border-bottom: 2px solid #eaeaea;
  border-radius: 0;
  color: #606060;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.search-form > input::-moz-placeholder {
  color: #606060;
  opacity: 1;
}

.search-form > input:-ms-input-placeholder {
  color: #606060;
}

.search-form > input::-webkit-input-placeholder {
  color: #606060;
}

.search-form > input:focus {
  border-color: #B5D6F0;
  outline: none;
}

.search-form > input:focus + i {
  color: #B5D6F0;
}

.search-form.dark > input {
  background-color: transparent;
  border-bottom: 2px solid #d5d5d5;
}

.search-form.dark > input:focus {
  border-color: #B5D6F0;
  outline: none;
}

.search-form.dark > input:focus + i {
  color: #B5D6F0;
}

.subscribe-form .input-group {
  width: calc(100% - 88px);
  float: left;
}

.subscribe-form .btn {
  margin: 0;
  float: right;
}

.subscribe-form .btn > i {
  margin-top: -6px;
  font-size: 1.5em;
}

.subscribe-form .form-text {
  padding-top: 12px;
}

.shop-search-box {
  width: 60%;
}

@media (max-width: 576px) {
  .shop-search-box {
    width: 100%;
  }
}

.container-fluid .shop-search-box {
  width: 40%;
}

@media (max-width: 1200px) {
  .container-fluid .shop-search-box {
    width: 60%;
  }
}

@media (max-width: 576px) {
  .container-fluid .shop-search-box {
    width: 100%;
  }
}

.coupon-form .form-control {
  display: inline-block;
  width: 100%;
  max-width: 235px;
  margin-right: 12px;
}

.coupon-form .btn {
  margin-right: 0;
}

@media (max-width: 768px) {
  .coupon-form .form-control {
    display: block;
    max-width: 100%;
  }
}

.card-wrapper {
  margin: 30px 0;
}

@media (max-width: 576px) {
  .jp-card-container {
    width: 285px !important;
  }
  .jp-card {
    min-width: 250px !important;
  }
}

.table thead th, .table td, .table th {
  border-color: #eaeaea;
}

.table.table-inverse {
  background-color: #404040;
  color: #ffffff;
}

.table.table-inverse thead th, .table.table-inverse td, .table.table-inverse th {
  border-color: rgba(255, 255, 255, 0.14);
}

.table th {
  font-weight: 500;
}

.table:not(.table-inverse) th {
  color: #404040;
}

.table-inverse td {
  color: rgba(255, 255, 255, 0.75);
}

.thead-inverse th {
  background-color: #404040;
  color: #ffffff !important;
  font-weight: 600;
}

.thead-default th {
  background-color: #f5f5f5;
  color: #000000;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f5f5f5;
}

.table-striped.table-inverse tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.08);
}

.table-hover tbody tr:hover {
  background-color: #f5f5f5;
}

.table-hover.table-inverse tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.08);
}

.table-active,
.table-active td,
.table-active th {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-success,
.table-success td,
.table-success th {
  background-color: rgba(167, 192, 77, 0.09);
}

.table-info,
.table-info td,
.table-info th {
  background-color: rgba(147, 196, 239, 0.09);
}

.table-warning,
.table-warning td,
.table-warning th {
  background-color: rgba(230, 131, 5, 0.09);
}

.table-danger,
.table-danger td,
.table-danger th {
  background-color: rgba(239, 5, 104, 0.09);
}

.btn {
  display: inline-block;
  position: relative;
  height: 46px;
  margin-top: 8px;
  margin-right: 12px;
  margin-bottom: 8px;
  padding: 0 20px;
  transform: translateZ(0);
  transition: all .35s;
  border: 2px solid transparent;
  border-radius: 4px;
  background-color: transparent;
  background-image: none;
  color: #606060;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: .025em;
  line-height: 42px;
  white-space: nowrap;
  cursor: pointer;
  vertical-align: middle;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn:hover, .btn:focus .btn:active, .btn.active {
  outline: none;
  background-image: none;
  text-decoration: none;
  box-shadow: none;
}

.btn:hover {
  color: #606060;
}

.btn > i {
  display: inline-block;
  margin-top: -2px;
  font-size: 2em;
  vertical-align: middle;
}

.btn[disabled], .btn.disabled {
  cursor: not-allowed;
  opacity: .55;
  pointer-events: none;
}

button:focus {
  outline: none;
}

.btn-lg {
  height: 54px;
  border-radius: 5px;
  line-height: 50px;
}

.btn-sm {
  height: 36px;
  padding: 0 18px;
  border-radius: 3px;
  /*font-size: floor($font-size-base * .75); //~12px
    line-height: ($btn-sm-height - 4);*/
}

.btn-pill {
  border-radius: 23px;
}

.btn-pill.btn-lg {
  border-radius: 27px;
}

.btn-pill.btn-sm {
  border-radius: 18px;
}

.btn-square {
  border-radius: 0;
}

.btn-secondary {
  border-color: #d5d5d5;
  background-color: #d5d5d5;
}

.btn-secondary:hover {
  border-color: #afafaf;
  background-color: #afafaf;
}

.btn-primary,
.btn-success,
.btn-info,
.btn-warning,
.btn-danger {
  color: #ffffff;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus,
.btn-success:hover,
.btn-success:active,
.btn-success:focus,
.btn-info:hover,
.btn-info:active,
.btn-info:focus,
.btn-warning:hover,
.btn-warning:active,
.btn-warning:focus,
.btn-danger:hover,
.btn-danger:active,
.btn-danger:focus {
  color: #ffffff;
}

.btn-primary {
  background-color: #B5D6F0;
}

.btn-primary:hover {
  background-color: #404040;
}

.btn-success {
  background-color: #a7c04d;
}

.btn-success:hover {
  background-color: #8aa139;
}

.btn-info {
  background-color: #93c4ef;
}

.btn-info:hover {
  background-color: #67ace8;
}

.btn-warning {
  background-color: #e68305;
}

.btn-warning:hover {
  background-color: #b46704;
}

.btn-danger {
  background-color: #ef0568;
}

.btn-danger:hover {
  background-color: #bd0452;
}

.btn-white {
  background-color: #ffffff;
}

.btn-white:hover {
  background-color: #e6e5e5;
}

.btn-outline-secondary {
  border-color: #eaeaea;
}

.btn-outline-secondary:hover {
  border-color: #f5f5f5;
  background-color: #f5f5f5;
}

.btn-outline-primary {
  border-color: #B5D6F0;
  color: #B5D6F0;
}

.btn-outline-primary:hover {
  border-color: #404040;
  color: #404040;
}

.btn-outline-success {
  border-color: #a7c04d;
  background-color: transparent;
  color: #a7c04d;
}

.btn-outline-success:hover {
  background-color: #a7c04d;
  color: #ffffff;
}

.btn-outline-info {
  border-color: #93c4ef;
  background-color: transparent;
  color: #93c4ef;
}

.btn-outline-info:hover {
  background-color: #93c4ef;
  color: #ffffff;
}

.btn-outline-warning {
  border-color: #e68305;
  background-color: transparent;
  color: #e68305;
}

.btn-outline-warning:hover {
  background-color: #e68305;
  color: #ffffff;
}

.btn-outline-danger {
  border-color: #ef0568;
  background-color: transparent;
  color: #ef0568;
}

.btn-outline-danger:hover {
  background-color: #ef0568;
  color: #ffffff;
}

.btn-outline-white {
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.btn-outline-white:hover {
  border-color: #ffffff;
  color: #ffffff;
}

.btn-link-secondary {
  color: #606060;
}

.btn-link-secondary:hover {
  color: #474646;
}

.btn-link-primary {
  color: #B5D6F0;
}

.btn-link-primary:hover {
  color: #8bbfe7;
}

.btn-link-success {
  color: #a7c04d;
}

.btn-link-success:hover {
  color: #8aa139;
}

.btn-link-info {
  color: #93c4ef;
}

.btn-link-info:hover {
  color: #67ace8;
}

.btn-link-warning {
  color: #e68305;
}

.btn-link-warning:hover {
  color: #b46704;
}

.btn-link-danger {
  color: #ef0568;
}

.btn-link-danger:hover {
  color: #bd0452;
}

.btn-link-white {
  color: #ffffff;
}

.btn-link-white:hover {
  color: #e6e5e5;
}

.btn-link-secondary > i,
.btn-link-primary > i,
.btn-link-success > i,
.btn-link-info > i,
.btn-link-warning > i,
.btn-link-danger > i,
.btn-link-white > i {
  margin-top: -4px;
}

.btn-group {
  display: inline-flex;
  position: relative;
  margin-top: 8px;
  margin-right: 12px;
  margin-bottom: 8px;
  vertical-align: middle;
}

.btn-group .btn {
  position: relative;
  flex: 0 1 auto;
  margin: 0;
}

.btn-group .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  margin-right: -2px;
  padding-right: 12px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group .btn:first-child:not(:last-child):not(.dropdown-toggle).btn-secondary, .btn-group .btn:first-child:not(:last-child):not(.dropdown-toggle).btn-outline-secondary {
  border-right: 0;
}

.btn-group .btn:hover {
  z-index: 1;
}

.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn + .dropdown-toggle-split {
  padding-right: 15px;
  padding-left: 8px;
}

.text-center .btn, .text-center .btn-group {
  margin-right: 6px;
  margin-left: 6px;
}

.text-right .btn, .text-right .btn-group {
  margin-right: 0;
  margin-left: 12px;
}

.btn-block {
  display: block;
  width: 100%;
  margin-top: 12px;
  margin-right: 0 !important;
  margin-bottom: 12px;
  margin-left: 0 !important;
  padding-right: 15px !important;
  padding-left: 15px !important;
}

.scroll-to-top-btn {
  display: block;
  position: fixed;
  right: 16px;
  bottom: -92px;
  width: 46px;
  height: 46px;
  transition: bottom 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s, color 0.3s;
  border: 2px solid #eaeaea;
  border-radius: 4px;
  background-color: #ffffff;
  color: #606060;
  font-size: 22px;
  line-height: 41px;
  opacity: 0;
  z-index: 2000;
  text-align: center;
  text-decoration: none;
}

.scroll-to-top-btn > i {
  transform: rotate(-90deg);
}

.scroll-to-top-btn:hover {
  color: #B5D6F0;
}

.scroll-to-top-btn.visible {
  bottom: 14px;
  opacity: 1;
}

@media (max-width: 768px) {
  .scroll-to-top-btn {
    bottom: -72px;
    width: 36px;
    height: 36px;
    line-height: 31px;
  }
}

.market-button {
  display: inline-block;
  margin-right: 14px;
  margin-bottom: 14px;
  padding: 5px 14px 5px 45px;
  transition: background-color .3s;
  border: 0;
  border-radius: 4px;
  background-position: center left 12px;
  background-color: #f5f5f5;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  text-decoration: none;
}

.market-button .mb-subtitle {
  display: block;
  margin-bottom: -4px;
  color: #999999;
  /*font-size: floor(($font-size-base / 1.33)); //~12px*/
}

.market-button .mb-title {
  display: block;
  color: #606060;
  /*font-size: $font-size-lead;*/
}

.market-button.apple-button {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCAzMDUgMzA1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzMDUgMzA1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnIGlkPSJYTUxJRF8yMjhfIj4KCTxwYXRoIGlkPSJYTUxJRF8yMjlfIiBkPSJNNDAuNzM4LDExMi4xMTljLTI1Ljc4NSw0NC43NDUtOS4zOTMsMTEyLjY0OCwxOS4xMjEsMTUzLjgyQzc0LjA5MiwyODYuNTIzLDg4LjUwMiwzMDUsMTA4LjIzOSwzMDUgICBjMC4zNzIsMCwwLjc0NS0wLjAwNywxLjEyNy0wLjAyMmM5LjI3My0wLjM3LDE1Ljk3NC0zLjIyNSwyMi40NTMtNS45ODRjNy4yNzQtMy4xLDE0Ljc5Ny02LjMwNSwyNi41OTctNi4zMDUgICBjMTEuMjI2LDAsMTguMzksMy4xMDEsMjUuMzE4LDYuMDk5YzYuODI4LDIuOTU0LDEzLjg2MSw2LjAxLDI0LjI1Myw1LjgxNWMyMi4yMzItMC40MTQsMzUuODgyLTIwLjM1Miw0Ny45MjUtMzcuOTQxICAgYzEyLjU2Ny0xOC4zNjUsMTguODcxLTM2LjE5NiwyMC45OTgtNDMuMDFsMC4wODYtMC4yNzFjMC40MDUtMS4yMTEtMC4xNjctMi41MzMtMS4zMjgtMy4wNjZjLTAuMDMyLTAuMDE1LTAuMTUtMC4wNjQtMC4xODMtMC4wNzggICBjLTMuOTE1LTEuNjAxLTM4LjI1Ny0xNi44MzYtMzguNjE4LTU4LjM2Yy0wLjMzNS0zMy43MzYsMjUuNzYzLTUxLjYwMSwzMC45OTctNTQuODM5bDAuMjQ0LTAuMTUyICAgYzAuNTY3LTAuMzY1LDAuOTYyLTAuOTQ0LDEuMDk2LTEuNjA2YzAuMTM0LTAuNjYxLTAuMDA2LTEuMzQ5LTAuMzg2LTEuOTA1Yy0xOC4wMTQtMjYuMzYyLTQ1LjYyNC0zMC4zMzUtNTYuNzQtMzAuODEzICAgYy0xLjYxMy0wLjE2MS0zLjI3OC0wLjI0Mi00Ljk1LTAuMjQyYy0xMy4wNTYsMC0yNS41NjMsNC45MzEtMzUuNjExLDguODkzYy02LjkzNiwyLjczNS0xMi45MjcsNS4wOTctMTcuMDU5LDUuMDk3ICAgYy00LjY0MywwLTEwLjY2OC0yLjM5MS0xNy42NDUtNS4xNTljLTkuMzMtMy43MDMtMTkuOTA1LTcuODk5LTMxLjEtNy44OTljLTAuMjY3LDAtMC41MywwLjAwMy0wLjc4OSwwLjAwOCAgIEM3OC44OTQsNzMuNjQzLDU0LjI5OCw4OC41MzUsNDAuNzM4LDExMi4xMTl6IiBmaWxsPSIjMmUyZTJlIi8+Cgk8cGF0aCBpZD0iWE1MSURfMjMwXyIgZD0iTTIxMi4xMDEsMC4wMDJjLTE1Ljc2MywwLjY0Mi0zNC42NzIsMTAuMzQ1LTQ1Ljk3NCwyMy41ODNjLTkuNjA1LDExLjEyNy0xOC45ODgsMjkuNjc5LTE2LjUxNiw0OC4zNzkgICBjMC4xNTUsMS4xNywxLjEwNywyLjA3MywyLjI4NCwyLjE2NGMxLjA2NCwwLjA4MywyLjE1LDAuMTI1LDMuMjMyLDAuMTI2YzE1LjQxMywwLDMyLjA0LTguNTI3LDQzLjM5NS0yMi4yNTcgICBjMTEuOTUxLTE0LjQ5OCwxNy45OTQtMzMuMTA0LDE2LjE2Ni00OS43N0MyMTQuNTQ0LDAuOTIxLDIxMy4zOTUtMC4wNDksMjEyLjEwMSwwLjAwMnoiIGZpbGw9IiMyZTJlMmUiLz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
}

.market-button.google-button {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4Ij4KPHBvbHlnb24gc3R5bGU9ImZpbGw6IzVDREFERDsiIHBvaW50cz0iMjkuNTMsMCAyOS41MywyNTEuNTA5IDI5LjUzLDUxMiAyOTkuMDA0LDI1MS41MDkgIi8+Cjxwb2x5Z29uIHN0eWxlPSJmaWxsOiNCREVDQzQ7IiBwb2ludHM9IjM2OS4wNjcsMTgwLjU0NyAyNjIuMTc1LDExOS40NjcgMjkuNTMsMCAyOTkuMDA0LDI1MS41MDkgIi8+Cjxwb2x5Z29uIHN0eWxlPSJmaWxsOiNEQzY4QTE7IiBwb2ludHM9IjI5LjUzLDUxMiAyOS41Myw1MTIgMjYyLjE3NSwzODMuNTUxIDM2OS4wNjcsMzIyLjQ3IDI5OS4wMDQsMjUxLjUwOSAiLz4KPHBhdGggc3R5bGU9ImZpbGw6I0ZGQ0E5NjsiIGQ9Ik0zNjkuMDY3LDE4MC41NDdsLTcwLjA2Myw3MC45NjFsNzAuMDYzLDcwLjk2MWwxMDguNjg4LTYyLjg3N2M2LjI4OC0zLjU5Myw2LjI4OC0xMS42NzcsMC0xNS4yNyAgTDM2OS4wNjcsMTgwLjU0N3oiLz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}

.market-button.windows-button {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAwIDQ4MCA0ODAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ4MCA0ODA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8cGF0aCBkPSJNMC4xNzYsMjI0TDAuMDAxLDY3Ljk2M2wxOTItMjYuMDcyVjIyNEgwLjE3NnogTTIyNC4wMDEsMzcuMjQxTDQ3OS45MzcsMHYyMjRIMjI0LjAwMVYzNy4yNDF6IE00NzkuOTk5LDI1NmwtMC4wNjIsMjI0ICAgbC0yNTUuOTM2LTM2LjAwOFYyNTZINDc5Ljk5OXogTTE5Mi4wMDEsNDM5LjkxOEwwLjE1Nyw0MTMuNjIxTDAuMTQ3LDI1NmgxOTEuODU0VjQzOS45MTh6IiBmaWxsPSIjMDBiY2YyIi8+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}

.market-button.blackberry-button {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MDMuMzIyIDUwMy4zMjIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUwMy4zMjIgNTAzLjMyMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiPgo8Zz4KCTxnPgoJCTxwYXRoIGQ9Ik0xMTYuMjg1LDYwLjc0Nkg0NS45OTNsLTIwLjgyNyw5NS40NThoNzMuNzYzYzU3LjI3NSwwLDczLjc2My0yOC42MzcsNzMuNzYzLTUzLjgwMyAgICBDMTczLjU1OSw4NC4xNzYsMTYyLjI3OCw2MC43NDYsMTE2LjI4NSw2MC43NDZ6IiBmaWxsPSIjMmUyZTJlIi8+Cgk8L2c+CjwvZz4KPGc+Cgk8Zz4KCQk8cGF0aCBkPSJNMjM4LjY0NCwzNDcuMTE5aC03MS4xNTlsLTE5Ljk1OSw5NS40NThoNzMuNzYzYzU3LjI3NSwwLDczLjc2My0yOC42MzcsNzMuNzYzLTUzLjgwMyAgICBDMjk1LjA1MSwzNzAuNTQ5LDI4NC42MzcsMzQ3LjExOSwyMzguNjQ0LDM0Ny4xMTl6IiBmaWxsPSIjMmUyZTJlIi8+Cgk8L2c+CjwvZz4KPGc+Cgk8Zz4KCQk8cGF0aCBkPSJNOTEuMTE5LDE5OS41OTNIMTkuOTU5TDAsMjk1LjA1MWg3My43NjNjNTcuMjc1LDAsNzMuNzYzLTI4LjYzNyw3My43NjMtNTMuODAzICAgIEMxNDcuNTI1LDIyMy4wMjQsMTM3LjExMiwxOTkuNTkzLDkxLjExOSwxOTkuNTkzeiIgZmlsbD0iIzJlMmUyZSIvPgoJPC9nPgo8L2c+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTQyMC44ODEsMjk1LjA1MWgtNzEuMTU5bC0xOS45NTksODYuNzhoNzMuNzYzYzU3LjI3NSwwLDczLjc2My0yNC4yOTgsNzMuNzYzLTQ5LjQ2NCAgICBDNDc3LjI4OCwzMTQuMTQyLDQ2Ni44NzUsMjk1LjA1MSw0MjAuODgxLDI5NS4wNTF6IiBmaWxsPSIjMmUyZTJlIi8+Cgk8L2c+CjwvZz4KPGc+Cgk8Zz4KCQk8cGF0aCBkPSJNNDQ2LjkxNSwxNDcuNTI1aC03MS4xNTlsLTE5Ljk1OSw4Ni43OGg3My43NjNjNTcuMjc1LDAsNzMuNzYzLTI0LjI5OCw3My43NjMtNDkuNDY0ICAgIEM1MDMuMzIyLDE2Ni42MTcsNDkyLjkwOCwxNDcuNTI1LDQ0Ni45MTUsMTQ3LjUyNXoiIGZpbGw9IiMyZTJlMmUiLz4KCTwvZz4KPC9nPgo8Zz4KCTxnPgoJCTxwYXRoIGQ9Ik0yNjUuNTQ2LDE5OS41OTNoLTcxLjE1OWwtMTkuOTU5LDk1LjQ1OGg3My43NjNjNTcuMjc1LDAsNzMuNzYzLTI4LjYzNyw3My43NjMtNTMuODAzICAgIEMzMjIuODIsMjIzLjAyNCwzMTEuNTM5LDE5OS41OTMsMjY1LjU0NiwxOTkuNTkzeiIgZmlsbD0iIzJlMmUyZSIvPgoJPC9nPgo8L2c+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTI5MS41OCw2MC43NDZIMjIwLjQybC0xOS45NTksOTUuNDU4aDczLjc2M2M1Ny4yNzUsMCw3My43NjMtMjguNjM3LDczLjc2My01My44MDMgICAgQzM0Ny45ODYsODQuMTc2LDMzNy41NzMsNjAuNzQ2LDI5MS41OCw2MC43NDZ6IiBmaWxsPSIjMmUyZTJlIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}

.market-button.amazon-button {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2FpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0idXVpZDo1RDIwODkyNDkzQkZEQjExOTE0QTg1OTBEMzE1MDhDOCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpGQUJGNjhGNDRGNkMxMUU3OUY5REJEQzBGNkVBQUI5QiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpGQUJGNjhGMzRGNkMxMUU3OUY5REJEQzBGNkVBQUI5QiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IFdpbmRvd3MiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2QUM1ODJFMkIxNEExMUUzQkY1NEUzQkNCRjlEODA1RSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo2QUM1ODJFM0IxNEExMUUzQkY1NEUzQkNCRjlEODA1RSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgNXCVIAAAc7SURBVHja5FwJbFRVFH0tQimgUCiubKJCWWSwKIooVhG3aESkETRqBEEEEURExBXiVhElkRiIEFwTQEHciQiIMQhFkUGFihErIJjWUgg0LFXqPf4z9jvMTOe/v9ebnEw78+//b85/y7n33T8ZNTU1yo5FIhEdtxMEXQRtBGcLOglO5ftoUKagSrBLUCLYKCgVbBEcNJ8oGo0qN+045Z2dJCgU9BdcJ2igcY4DgsWC9wTvetHoTA+u0ZlfCL3hJcFATXJgzQS3C5YIKgWT3G58hotDDMNlvmCQy9+hAj1ThtqqMPWgywXlHpADayVYKTfq0bAQdJ9guaCR8tamCUlPBZ2gcYIXlH82RUgaFlSCCgQzlf82T0hqFzSCGgreUsGxqUEj6BkKvaBYofSi5kERihCAE2z4rxYs4qp3WNBY0F0wVtBC85xNKUrnBoGgUdBTGn4IH24UbEvwGQh7TDBdMNGGQA3EELtGw2eh4Jwk5JjtAcFDmu0633clLeMcweYOi24IOLta9CnR6BF/CE4Whf2Xnz3oKg2fJzR8PtTwyaXK9nWIHbF4PFIYn2hcZ6Vm+5r4SpB039c5T5RwqO0VHE3hgoByv8alSm3oM99XsecJxSUaUXyOoKPgTOIMEjdK8xrVYSbIbIeIMsGPDp43Q/lkmap+W0bQepDTliU43oam+bM+EIT5qZcyEve5nL9aCtpzHmtq49zVYSOoraCv4AZBHgPc3P/7EOsgGCoYzt4SKnOTIAyZGYJrwzzLu0XQi4Lx9WEZdJqg0wVfqmAlzwJDUB/BmvompJwiqLND5FQwXtuujJ3TA1TlmM8eDytB2P9absMfaVbshryN+DeJuDsrzATNor7RMezV3xvkWMwWQZFIpIe8jNB0v0kZuedAm91gdaSm31iL5NSEjiDuO92h4bqGwzIUMaOdHnSe0ktpztfwaRwqgqT3QAheqHnNZZoyIlQ9COT00/BDzrpcwy9fs51ZfhEEXdJRw+8AdY9XBPm2q4HyklM0/HRqE7H3f4mN2NAXgrKUXgUZihGsVl0Mt7GKDfKLIAyTIxp+2cqoj7bSeybb+H5DZEE5zQ+CsEn4u6avlb2x2cpI2tuxiX4Q9JOquzIjmaHOuXcax6H0ZaADK/V46UW9vCYIavgLG43+XHBRks9QLP6B3TsfZ6/pOmqXv8hdGSAvn9psOIiap4zcD5bkQsINQ+agKBqN/uZVjFOsjAdLsm2co4DwwhAgY5/sfk9iMbkT++TlVRUus7zTajfdMcvjL7hEWa9oi9llclMf9JQgueBmVVv64rY9p4yiz9kW/VC01U33YRcnqjtQQLXWZXIeFsTu/tOC9Wn6oR6yPW+kljmViOrDRp/rMDEourpeHVujiJ60VaXOEy0TYq72K9RIZEigLXbwfNBZJ6rEBZw7Uugo2CtOkOM0QbDBmAyVveqybwUDGMFXpDjuG5W4bmiKkDPSqS/0r1A8PEfvAZneL+ck+wgJNVR1RIhEuRkEvHhUcyNJhWwosdgElNEsYGA7pnh05ZI0fJARRSF7W8Z6hxhbQtv9+k+64q7tx8xBmEca2gwh4odIMYce5qaWJKkBswEQbfvZIPSGn1XqCtnEanV0ZYncpNHKKLz6uI7DeyojGwr0IlHZvFEoPF/H6AAPDO+J70GLKPNxwC10qC92heBJ3qx0rEh60OT4HnQrleZQ3s1xIVTKiexKVbtRUEEgL76XqyBSx/GZx6aJlnl0+5s5JlH0hO2Z25i/2RpigjaRgHKKxkTWjcMrRsy+VKsYHvp/n39fyskTlWKtQ0rQbmVU6lelOOYHwXem/0vrWuYhzpaa/p9A7TFJ+biJ55BlUZVv4nSiuHDE6icxOa9KRwehEnVu3ImLBDuV8Qhm85AR04TtRvufVcZvhtzNz9qYRshazsFpCUVUbsTX5eARI8zwSDwh2ZUfcGIwv8yh3kK7c00TdkxQ9jcdP9Oqkp7GSbsqwUw/jBpmC4dh94CQAvF4D1X59ySieZwK72wSpbGNhF9UXDFYusHqR7woqsAuSNKgGSaBCE21QfCVh6REGHoMZqiSzCBdzFUpOaYg+0470fxOqu0pglQ/AdFP1e7bl/IubuHEt07pPS8Wbw05tLHK9mDYkFeHTzV7/Jtx76PCLYOB9kqnYrF8jtWLLX4xSPrNXHrLuWJgQizj31Uc9kd58zBf4PmzTozsWzPm6mJxkXiHwndX3PvNTOFOh/8sdQliMSu2gb1kiDJ+qyPdffpGjId6ejTs0HORrF+R5PNWXKnHuJXuWMCAD3tY21Rw7GtGAV1TkKPYc0aoFNvoTuWDZlBoTWLj/LIV7NUISt8IYsJsOhtXoIxk/l4PSNlMZYzJGj/stNDJk7tVHLmaeIQTeV9qqTxOjHasjAm2pZwL17nJvtvVo8gQfEZMZXKqHXVHPlekFswgNFK1JXPwO8gVZg/lwnpKht1ejtm/BRgAKCaVSdcawG4AAAAASUVORK5CYII=);
}

.market-button.mb-light-skin, .market-button.mb-alt {
  background-color: rgba(255, 255, 255, 0.07);
}

.market-button.mb-light-skin .mb-subtitle,
.market-button.mb-light-skin .mb-title, .market-button.mb-alt .mb-subtitle,
.market-button.mb-alt .mb-title {
  color: #ffffff;
}

.market-button.mb-light-skin .mb-subtitle, .market-button.mb-alt .mb-subtitle {
  opacity: .55;
}

.market-button.mb-light-skin.apple-button, .market-button.mb-alt.apple-button {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCAzMDUgMzA1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzMDUgMzA1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnIGlkPSJYTUxJRF8yMjhfIj4KCTxwYXRoIGlkPSJYTUxJRF8yMjlfIiBkPSJNNDAuNzM4LDExMi4xMTljLTI1Ljc4NSw0NC43NDUtOS4zOTMsMTEyLjY0OCwxOS4xMjEsMTUzLjgyQzc0LjA5MiwyODYuNTIzLDg4LjUwMiwzMDUsMTA4LjIzOSwzMDUgICBjMC4zNzIsMCwwLjc0NS0wLjAwNywxLjEyNy0wLjAyMmM5LjI3My0wLjM3LDE1Ljk3NC0zLjIyNSwyMi40NTMtNS45ODRjNy4yNzQtMy4xLDE0Ljc5Ny02LjMwNSwyNi41OTctNi4zMDUgICBjMTEuMjI2LDAsMTguMzksMy4xMDEsMjUuMzE4LDYuMDk5YzYuODI4LDIuOTU0LDEzLjg2MSw2LjAxLDI0LjI1Myw1LjgxNWMyMi4yMzItMC40MTQsMzUuODgyLTIwLjM1Miw0Ny45MjUtMzcuOTQxICAgYzEyLjU2Ny0xOC4zNjUsMTguODcxLTM2LjE5NiwyMC45OTgtNDMuMDFsMC4wODYtMC4yNzFjMC40MDUtMS4yMTEtMC4xNjctMi41MzMtMS4zMjgtMy4wNjZjLTAuMDMyLTAuMDE1LTAuMTUtMC4wNjQtMC4xODMtMC4wNzggICBjLTMuOTE1LTEuNjAxLTM4LjI1Ny0xNi44MzYtMzguNjE4LTU4LjM2Yy0wLjMzNS0zMy43MzYsMjUuNzYzLTUxLjYwMSwzMC45OTctNTQuODM5bDAuMjQ0LTAuMTUyICAgYzAuNTY3LTAuMzY1LDAuOTYyLTAuOTQ0LDEuMDk2LTEuNjA2YzAuMTM0LTAuNjYxLTAuMDA2LTEuMzQ5LTAuMzg2LTEuOTA1Yy0xOC4wMTQtMjYuMzYyLTQ1LjYyNC0zMC4zMzUtNTYuNzQtMzAuODEzICAgYy0xLjYxMy0wLjE2MS0zLjI3OC0wLjI0Mi00Ljk1LTAuMjQyYy0xMy4wNTYsMC0yNS41NjMsNC45MzEtMzUuNjExLDguODkzYy02LjkzNiwyLjczNS0xMi45MjcsNS4wOTctMTcuMDU5LDUuMDk3ICAgYy00LjY0MywwLTEwLjY2OC0yLjM5MS0xNy42NDUtNS4xNTljLTkuMzMtMy43MDMtMTkuOTA1LTcuODk5LTMxLjEtNy44OTljLTAuMjY3LDAtMC41MywwLjAwMy0wLjc4OSwwLjAwOCAgIEM3OC44OTQsNzMuNjQzLDU0LjI5OCw4OC41MzUsNDAuNzM4LDExMi4xMTl6IiBmaWxsPSIjRkZGRkZGIi8+Cgk8cGF0aCBpZD0iWE1MSURfMjMwXyIgZD0iTTIxMi4xMDEsMC4wMDJjLTE1Ljc2MywwLjY0Mi0zNC42NzIsMTAuMzQ1LTQ1Ljk3NCwyMy41ODNjLTkuNjA1LDExLjEyNy0xOC45ODgsMjkuNjc5LTE2LjUxNiw0OC4zNzkgICBjMC4xNTUsMS4xNywxLjEwNywyLjA3MywyLjI4NCwyLjE2NGMxLjA2NCwwLjA4MywyLjE1LDAuMTI1LDMuMjMyLDAuMTI2YzE1LjQxMywwLDMyLjA0LTguNTI3LDQzLjM5NS0yMi4yNTcgICBjMTEuOTUxLTE0LjQ5OCwxNy45OTQtMzMuMTA0LDE2LjE2Ni00OS43N0MyMTQuNTQ0LDAuOTIxLDIxMy4zOTUtMC4wNDksMjEyLjEwMSwwLjAwMnoiIGZpbGw9IiNGRkZGRkYiLz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
}

.market-button.mb-light-skin.blackberry-button, .market-button.mb-alt.blackberry-button {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MDMuMzIyIDUwMy4zMjIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUwMy4zMjIgNTAzLjMyMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiPgo8Zz4KCTxnPgoJCTxwYXRoIGQ9Ik0xMTYuMjg1LDYwLjc0Nkg0NS45OTNsLTIwLjgyNyw5NS40NThoNzMuNzYzYzU3LjI3NSwwLDczLjc2My0yOC42MzcsNzMuNzYzLTUzLjgwMyAgICBDMTczLjU1OSw4NC4xNzYsMTYyLjI3OCw2MC43NDYsMTE2LjI4NSw2MC43NDZ6IiBmaWxsPSIjRkZGRkZGIi8+Cgk8L2c+CjwvZz4KPGc+Cgk8Zz4KCQk8cGF0aCBkPSJNMjM4LjY0NCwzNDcuMTE5aC03MS4xNTlsLTE5Ljk1OSw5NS40NThoNzMuNzYzYzU3LjI3NSwwLDczLjc2My0yOC42MzcsNzMuNzYzLTUzLjgwMyAgICBDMjk1LjA1MSwzNzAuNTQ5LDI4NC42MzcsMzQ3LjExOSwyMzguNjQ0LDM0Ny4xMTl6IiBmaWxsPSIjRkZGRkZGIi8+Cgk8L2c+CjwvZz4KPGc+Cgk8Zz4KCQk8cGF0aCBkPSJNOTEuMTE5LDE5OS41OTNIMTkuOTU5TDAsMjk1LjA1MWg3My43NjNjNTcuMjc1LDAsNzMuNzYzLTI4LjYzNyw3My43NjMtNTMuODAzICAgIEMxNDcuNTI1LDIyMy4wMjQsMTM3LjExMiwxOTkuNTkzLDkxLjExOSwxOTkuNTkzeiIgZmlsbD0iI0ZGRkZGRiIvPgoJPC9nPgo8L2c+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTQyMC44ODEsMjk1LjA1MWgtNzEuMTU5bC0xOS45NTksODYuNzhoNzMuNzYzYzU3LjI3NSwwLDczLjc2My0yNC4yOTgsNzMuNzYzLTQ5LjQ2NCAgICBDNDc3LjI4OCwzMTQuMTQyLDQ2Ni44NzUsMjk1LjA1MSw0MjAuODgxLDI5NS4wNTF6IiBmaWxsPSIjRkZGRkZGIi8+Cgk8L2c+CjwvZz4KPGc+Cgk8Zz4KCQk8cGF0aCBkPSJNNDQ2LjkxNSwxNDcuNTI1aC03MS4xNTlsLTE5Ljk1OSw4Ni43OGg3My43NjNjNTcuMjc1LDAsNzMuNzYzLTI0LjI5OCw3My43NjMtNDkuNDY0ICAgIEM1MDMuMzIyLDE2Ni42MTcsNDkyLjkwOCwxNDcuNTI1LDQ0Ni45MTUsMTQ3LjUyNXoiIGZpbGw9IiNGRkZGRkYiLz4KCTwvZz4KPC9nPgo8Zz4KCTxnPgoJCTxwYXRoIGQ9Ik0yNjUuNTQ2LDE5OS41OTNoLTcxLjE1OWwtMTkuOTU5LDk1LjQ1OGg3My43NjNjNTcuMjc1LDAsNzMuNzYzLTI4LjYzNyw3My43NjMtNTMuODAzICAgIEMzMjIuODIsMjIzLjAyNCwzMTEuNTM5LDE5OS41OTMsMjY1LjU0NiwxOTkuNTkzeiIgZmlsbD0iI0ZGRkZGRiIvPgoJPC9nPgo8L2c+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTI5MS41OCw2MC43NDZIMjIwLjQybC0xOS45NTksOTUuNDU4aDczLjc2M2M1Ny4yNzUsMCw3My43NjMtMjguNjM3LDczLjc2My01My44MDMgICAgQzM0Ny45ODYsODQuMTc2LDMzNy41NzMsNjAuNzQ2LDI5MS41OCw2MC43NDZ6IiBmaWxsPSIjRkZGRkZGIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}

.market-button.mb-light-skin.amazon-button, .market-button.mb-alt.amazon-button {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2FpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0idXVpZDo1RDIwODkyNDkzQkZEQjExOTE0QTg1OTBEMzE1MDhDOCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1QjFCQzQ2QjRGNkQxMUU3OUY5REJEQzBGNkVBQUI5QiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1QjFCQzQ2QTRGNkQxMUU3OUY5REJEQzBGNkVBQUI5QiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IFdpbmRvd3MiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2QUM1ODJFMkIxNEExMUUzQkY1NEUzQkNCRjlEODA1RSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo2QUM1ODJFM0IxNEExMUUzQkY1NEUzQkNCRjlEODA1RSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk2CzRIAAAcFSURBVHja5FxpbBZVFH2ULlhQCq2oiBWLWqCI0AoqKILgGo2KEqlGjSKKIuJaC9EgRKNYURL9YQ2KawKICO5RqZYYsKDFtS1VsSpaU2ypgQYo0HpP5lTGz2/pvNnrTU7yLXNn3px5775777tvurW3tysf5DDBEMEAwUmCEwX9+TsalCRoEfwuqBF8KagTVAt2e9nQZA+vdYRgimCi4GJBd41z7BK8LlgjeMOTVqMHuYxcwRrBgXZnZYegyO32d3NxiGG4LBVMdvkZN7JnfuzGyZNcavQkwXYPyIFkCsoED4SFoDsFHwpSPTb8CwQPO31Sp4fYbMFi5a9MEzwfRILGu2UHNORYwS9BGmIpgldVcGR+0GzQI3T0giKY1XoHZYjBAazHuTT1ywUrOOvtFfQQDBPMEmTYaNd0wZIgOIrzNB29zYKcBOcuseFIljjhKDoxxC7U0FkuGCnYmuC4ewVzNNt1ahCGGILNXy3qIOAcalEHAWuuRZ0/BUcKDvhppM/X0HlQQ+dtDZ0setm+zmKtFo9HCuM9jeuUabYv3e90x0uCfvReewoOZZAai3g4kjs1rlNnwz8LVKjRgwT1EeQIjicGCdoEM5gEsyonCGo19PIEVUFKmO0hGgRbnIwZ/fI4k1TXFtvEJgf8BtNo13R9mv1dgSDYpwJlJO6zaL/6MiLPofHXlX1hI+gYwVjBZYLBDHCz/u9DbKCgkK7AoLAZMTcJwpBZJLgozFbeLYKeFNzRFaZBpwk6TvCpClbyLDAEnS5Y39UcKacIynWInEbGa0i471DGUnMD7dk8XzxNB2IxrH/9wClcR5BmxVLRa4KvYjh3urEY4sAf/e5BT9sg5ynB7UGOxewSNFwZyXEduVIZyfpAi91g9SZNvVkWyWkPI0FYd7peQ289h2UoYkY7BI1SeinNpRo6PcJGEBzBMZq672u6EaEiCOSM09BrVsYKqlXJ12xnml8EwS/J0dDbRb/HK4LS/SIoW3CUhp5O4SbW/s+yERv6QlCa0qsgy1DWqy6m2ZjFJvtFEIZJq4beIcqoj7bSe4pt3N9UwdF+EIT1+D80dWdYOPYZZSTt7cg9fhD0vUpcmRFLrhOM7sRxJYJLHZipkbgr8JogeMPrbDT6E8EZMf7rJXjL7pOPkBf9SHecI/jAZsNB1HPKyP1gSp5CuCHIHCwU/OYVQZiN6ml4wyJPCO72Khb7S/CCCpfs93KIQVAp9p2HN7iKQbJOgu5spVHHbTcfhNKSxz0i5zHB5Zz6rQiKtvKUbpG7Q9uGNrS7K3Mjrrexk3pVgsygbIfaJDjF4V6DoqtL1H9rFDHEahPkiZBWucB2CxzegLbSwV5TnuDpF8TRfdape3Jjl94EQY0NYioFkzp5rdFR9Oe4suNwb2m2Xlh/c8xNNUiooarjZCJabgYBL2oWsWl3C92GGotNQBnNMga2M+U+VnVCBxnRkRyqiPX2MLbcKPjZfF/mNAKWjlNshhBmWccLjqJt6kuSujMbgOKmnWzQF8pY4GuznFYoza6Rm7lVGYVX7yY4fASzoWMYn/Wno4sHhcLzCkYH2DDc9C8/SC60gm4+DriaCl1FzhU8xIfVGVkopBdH9qBr6GkW8mnODqGnHE3OUwcXChoJ5MWbOQvmRMk8/lP2lxyRBLuKYxJFT1ieuZb5m9oQE/Q1CdhOpzGa5HF49TSFUTE9aWz6f5OfJ9B4olLs8JAShIC6Lg45iuHSN6bvdYlCDThnq03f72IWsUj5uIjnkCCffh97ViF/w8TRUT/ZZA5L4sViqERdEnFi5FO2KWMLZu+QEZPOdqP9jyrjnSG38L8BphHymTKVzCQKVlG5EVm4hC1GxUw8IdmVH3BiYF9K6W+h3Vkmg91RfDHRdPxiq9H8AhrtliiW/gb6MNUchsMCQgqcx9sEmwXfkghzj0ebc01OacdCwk/KeCmCijaLxZN3eFFUgZ0Wo0GLTA4ifKpKwQYPSYG3ji0LVzAdHEvgupirUvqYguwbIw+2siC3jd72XBX/FRDj1MF1+zo+xWoavgqlt18sUlI4tDHLDmfYMDiBzj72+FcifkeFGyrY8NqdspgZRYuxWD7H6pkWb6yVSbZ6+iVNNIgN/NzCYd/Ghwd7gf1nKOLsR0OKmGuIxUliJR3fyL1qvUzhzsBoMabukm4le8lUJsI7u06fynhohEfDDj0X1WxrY/yfyZl6plsp12UM+LCGtVUFRz5nFDA0DjmKPWe6irOM7tSGukV0tIrYOL9kLXs1gtKXnTih0zsOS9i48cpI5jd7QEoVPWMYa7zYabmTJ3erOLKcuJ+GfCx9qcE0jHakgQm21bSFFW6y73b1KDIEHxHzmZzKpt+RzxkpgxmEVHWwZA56uznDNNFd2ESXod7LMfu3AAMA3eQjZHI91/8AAAAASUVORK5CYII=);
}

.market-button.mb-alt {
  background-color: #404040;
}

.media-btn {
  display: block;
  position: relative;
  width: 240px;
  height: 46px;
  margin-bottom: 12px;
  padding-left: 64px;
  color: #ffffff;
  /*font-size: $font-size-sm;*/
  /*line-height: $btn-height;*/
  text-decoration: none;
}

.media-btn > i {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 46px;
  transition: width .3s;
  background-color: rgba(255, 255, 255, 0.12);
  /*font-size: $font-size-base;*/
  line-height: 46px;
  text-align: center;
}

.media-btn > i::before {
  line-height: 46px;
}

.media-btn > i.socicon-googleplus {
  /*font-size: $font-size-lead;*/
}

.media-btn > span {
  transition: opacity .2s;
  opacity: 1;
}

.media-btn:focus, .media-btn:active {
  color: #ffffff;
  text-decoration: none;
}

.media-btn:hover {
  color: #ffffff;
}

.media-btn:hover > i {
  width: 100%;
}

.media-btn:hover > span {
  opacity: 0;
}

.media-btn.media-facebook {
  background-color: #3b5998;
}

.media-btn.media-google {
  background-color: #dd4b39;
}

.media-btn.media-twitter {
  background-color: #55acee;
}

.nav-tabs {
  border-bottom: 2px solid #eaeaea;
}

.nav-tabs .nav-item {
  margin-bottom: -2px;
}

.nav-tabs .nav-link {
  padding: 10px 18px;
  transition: all .3s;
  border: 0;
  border-bottom: 2px solid transparent;
  color: #606060;
  font-size: 14px;
  letter-spacing: .025em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-tabs .nav-link.active {
  background-color: transparent;
}

.nav-tabs .nav-link.disabled {
  cursor: not-allowed;
}

.nav-tabs .nav-link.disabled {
  color: #999999;
}

.nav-tabs .nav-link > i {
  margin-top: -3px;
  margin-right: 5px;
  transition: color .3s;
  color: #999999;
  font-size: 1.1em;
}

@media (hover: hover) {
  .nav-tabs .nav-link:focus {
    border-color: transparent;
  }
  .nav-tabs .nav-link:hover {
    border-color: transparent;
  }
  .nav-tabs .nav-link:hover,
  .nav-tabs .nav-link:hover > i {
    color: #B5D6F0;
  }
  .nav-tabs .nav-link.disabled:hover {
    color: #999999;
  }
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-item.show .nav-link > i,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link.active > i {
  border-bottom-color: #B5D6F0;
  color: #B5D6F0;
}

.nav-link.dropdown-toggle {
  position: relative;
  z-index: 1001;
}

.tab-content {
  padding: 0;
  padding-top: 24px;
  border: 0;
  overflow: hidden;
}

.tab-content p:last-child, .tab-content ul:last-child, .tab-content ol:last-child {
  margin-bottom: 0;
}

.nav-pills .nav-link {
  margin-right: 5px;
  padding: 8px 16px;
  transition: all .3s;
  border-radius: 3px;
  color: #606060;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
}

@media (hover: hover) {
  .nav-pills .nav-link:hover:not(.disabled) {
    background-color: #f5f5f5;
  }
}

.nav-pills .nav-link.disabled {
  color: #999999;
  cursor: not-allowed;
}

.nav-pills .nav-link > i {
  margin-top: -4px;
  margin-right: 5px;
}

.nav-pills .nav-item.show .nav-link,
.nav-pills .nav-link.active {
  background-color: #B5D6F0 !important;
  color: #ffffff;
  cursor: default;
}

.nav-pills + .tab-content {
  padding: 24px 0 0;
  border: 0;
  border-radius: 0;
}

.nav-pills.nav-justified .nav-link {
  margin-right: 0;
}

.nav-pills.justify-content-center .nav-link {
  margin: 0 3px;
}

.nav-pills.justify-content-end .nav-link {
  margin: 0 0 0 5px;
}

.nav-pills.flex-column .nav-link {
  margin: 0 0 5px;
}

.nav-filters {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-filters > li {
  display: inline-block;
  margin: 0 22px 10px 0;
}

.nav-filters > li > a {
  padding-bottom: 8px;
  transition: color .25s;
  border-bottom: 2px solid transparent;
  color: #606060;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
}

@media (hover: hover) {
  .nav-filters > li > a:hover {
    color: #B5D6F0;
  }
}

.nav-filters > li > sup {
  margin-left: 4px;
  color: #999999;
}

.nav-filters > li.active > a {
  border-color: #B5D6F0;
  color: #B5D6F0;
  cursor: default;
  pointer-events: none;
}

.transition.fade {
  transition: all .4s ease-in-out;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.transition.fade.show {
  opacity: 1;
}

.transition.scale.fade {
  transform: scale(0.9);
}

.transition.scaledown.fade {
  transform: scale(1.1);
}

.transition.scale.fade.show, .transition.scaledown.fade.show {
  transform: scale(1);
}

.transition.left.fade {
  transform: translateX(40px);
}

.transition.right.fade {
  transform: translateX(-40px);
}

.transition.left.fade.show, .transition.right.fade.show {
  transform: translateX(0);
}

.transition.top.fade {
  transform: translateY(-40px);
}

.transition.bottom.fade {
  transform: translateY(40px);
}

.transition.top.fade.show, .transition.bottom.fade.show {
  transform: translateY(0);
}

.transition.flip.fade {
  transform: rotateY(-90deg) scale(1.1);
  transform-origin: 50% 50%;
}

.transition.flip.fade.show {
  transform: rotateY(0deg) scale(1);
  transform-origin: 50% 50%;
}

.slideable-menu-container {
  height: calc(100% - 98px);
  margin: 0 -15px;
}

@media (max-width: 991px) {
  .slideable-menu-container {
    height: calc(100% - 45px);
  }
}

.slideable-menu-container .slideable-menu-inner-container {
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.slideable-menu-container .slideable-menu-inner-container .slideable-menu-content {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  position: relative;
}

.card:not([class*='border-']) {
  border: 0;
  background-color: #f5f5f5;
}

.card {
  border-radius: 0;
}

.card-img-top,
.card-img-bottom {
  border-radius: 0;
}

.card-text {
  margin-bottom: 12px;
  color: #999999;
  /*font-size: $font-size-sm;*/
}

.card-header,
.card-footer {
  border: 0;
  border-radius: 0 !important;
  background-color: #ededed;
}

.card-header h1, .card-header .h1, .card-header h2, .card-header .h2, .card-header h3, .card-header .h3,
.card-header h4, .card-header .h4, .card-header h5, .card-header .h5, .card-header h6, .card-header .h6,
.card-footer h1,
.card-footer .h1,
.card-footer h2,
.card-footer .h2,
.card-footer h3,
.card-footer .h3,
.card-footer h4,
.card-footer .h4,
.card-footer h5,
.card-footer .h5,
.card-footer h6,
.card-footer .h6 {
  margin-bottom: 0;
}

.card-body p:last-child, .card-body ol:last-child, .card-body ul:last-child {
  margin-bottom: 0;
}

.card-body .tab-content {
  padding: 0;
  border: 0;
}

.card.bg-primary .card-header {
  background-color: #a4cded;
}

.card.bg-secondary .card-header,
.card.bg-faded .card-header {
  background-color: #ebebeb;
}

.card.bg-success .card-header {
  background-color: #94ac3d;
}

.card.bg-info .card-header {
  background-color: #6fb1ea;
}

.card.bg-warning .card-header {
  background-color: #aa6104;
}

.card.bg-danger .card-header {
  background-color: #d1045b;
}

.card.bg-dark .card-header {
  background-color: #313131;
}

.text-white .card-title,
.text-light .card-title {
  color: #ffffff;
}

.text-white .card-text,
.text-light .card-text {
  color: rgba(255, 255, 255, 0.85);
}

.card-group .card .card-footer {
  border-radius: 0;
}

.card-group .card:first-child .card-footer {
  border-bottom-left-radius: 5px;
}

.card-group .card:last-child .card-footer {
  border-bottom-right-radius: 5px;
}

.accordion .card {
  margin-bottom: -2px;
  background-color: transparent;
}

.accordion .card-header {
  padding: 0;
  border-top: 2px solid #eaeaea;
  border-bottom: 2px solid #eaeaea;
  background-color: transparent;
}

.accordion [data-toggle='collapse'] {
  display: block;
  position: relative;
  padding: 15px 1.2rem;
  padding-right: 40px;
  transition: background-color .25s;
  background-color: #f5f5f5;
  color: #606060;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .025em;
  text-transform: uppercase;
  text-decoration: none;
}

.accordion [data-toggle='collapse']::after {
  position: absolute;
  top: 50%;
  right: 1.15rem;
  margin-top: -11px;
  transition: transform .25s;
  font-family: 'Material Icons';
  font-size: 16px;
  content: '\e5cd';
}

.accordion [data-toggle='collapse'].collapsed {
  background-color: transparent;
}

.accordion [data-toggle='collapse'].collapsed:hover {
  background-color: #f5f5f5;
}

.accordion [data-toggle='collapse'].collapsed::after {
  transform: rotate(-45deg);
}

.accordion [data-toggle='collapse'] > i {
  margin-top: -3px;
  margin-right: 7px;
  color: #999999;
  font-size: 1.1em;
}

.accordion [data-toggle='collapse'] > i.socicon-paypal {
  display: inline-block;
  margin-top: 1px;
  font-size: .8em;
  vertical-align: middle;
}

.pagination {
  display: table;
  width: 100%;
}

.pagination > .column {
  display: table-cell;
  padding-top: 16px;
  vertical-align: middle;
}

.pagination .pages {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination .pages > li {
  display: inline-block;
  width: 36px;
  height: 36px;
  font-size: 14px;
  font-weight: 500;
  line-height: 34px;
  text-align: center;
}

.pagination .pages > li > a {
  display: block;
  width: 36px;
  height: 36px;
  transition: all .3s;
  border: 2px solid transparent;
  border-radius: 3px;
  color: #606060;
  line-height: 32px;
  text-decoration: none;
}

.pagination .pages > li > a:hover {
  border-color: #eaeaea;
}

.pagination .pages > li.active > a {
  border-color: #B5D6F0;
  color: #B5D6F0;
}

.pagination .btn > i {
  font-size: 1.2em;
}

.pagination .text-right .btn {
  padding-right: 12px;
}

.pagination .text-left .btn {
  padding-left: 12px;
}

.entry-navigation {
  display: table;
  width: 100%;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  table-layout: fixed;
}

.entry-navigation > .column {
  display: table-cell;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  vertical-align: middle;
}

.entry-navigation .btn {
  margin: 0;
}

.entry-navigation .btn > i {
  font-size: 1.2em;
}

.entry-navigation .btn.view-all {
  width: 46px;
  padding-right: 0;
  padding-left: 1px;
}

.entry-navigation .btn.view-all > i {
  margin-top: -5px;
  font-size: 1.4em;
}

.entry-navigation .text-right .btn {
  padding-right: 12px;
}

.entry-navigation .text-left .btn {
  padding-left: 12px;
}

.comment {
  display: block;
  position: relative;
  margin-bottom: 30px;
  padding-left: 66px;
}

.comment .comment-author-ava {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  border-radius: 4px;
  overflow: hidden;
}

.comment .comment-author-ava > img {
  display: block;
  width: 100%;
}

.comment .comment-body {
  position: relative;
  padding: 24px;
  background-color: #f5f5f5;
}

.comment .comment-title {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}

.comment .comment-text {
  margin-bottom: 12px;
  /*font-size: $comment-text-size;*/
}

.comment .comment-footer {
  display: table;
  width: 100%;
}

.comment .comment-footer > .column {
  display: table-cell;
  vertical-align: middle;
}

.comment .comment-footer > .column:last-child {
  text-align: right;
}

.comment .comment-meta {
  color: #999999;
  /*font-size: $font-size-xs;*/
}

.comment .reply-link {
  transition: color .3s;
  color: #606060;
  /*font-size: $font-size-xs;*/
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
}

.comment .reply-link > i {
  display: inline-block;
  margin-top: -3px;
  margin-right: 4px;
  /*font-size: 1.1em;*/
  vertical-align: middle;
}

.comment .reply-link:hover {
  color: #B5D6F0;
}

.comment.comment-reply {
  margin-top: 30px;
  margin-bottom: 0;
}

.comment.comment-reply .comment-body {
  background-color: #ededed;
}

.comment .product-rating {
  position: relative;
  top: auto;
  right: auto;
}

@media (max-width: 576px) {
  .comment {
    padding-left: 0;
  }
  .comment .comment-author-ava {
    display: none;
  }
  .comment .comment-body {
    padding: 15px;
  }
  .comment .comment-body::before, .comment .comment-body::after {
    display: none;
  }
}

.tooltip {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
}

.tooltip.bs-tooltip-top .arrow::before {
  border-top-color: #363636;
}

.tooltip.bs-tooltip-right .arrow::before {
  border-right-color: #363636;
}

.tooltip.bs-tooltip-bottom .arrow::before {
  border-bottom-color: #363636;
}

.tooltip.bs-tooltip-left .arrow::before {
  border-left-color: #363636;
}

.tooltip.show {
  opacity: 1;
}

.tooltip-inner {
  border-radius: 0;
  background-color: #363636;
  color: #ffffff;
  font-size: 13px;
}

.popover {
  border: 0;
  border-radius: 0;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
}

.popover.bs-popover-top .arrow::before {
  border-top-color: transparent;
}

.popover.bs-popover-top .arrow::after {
  border-top-color: #404040;
}

.popover.bs-popover-right .arrow::before {
  border-right-color: transparent;
}

.popover.bs-popover-right .arrow::after {
  border-right-color: #404040;
}

.popover.bs-popover-bottom .arrow::before {
  border-bottom-color: transparent;
}

.popover.bs-popover-bottom .arrow::after {
  border-bottom-color: #363636;
}

.popover.bs-popover-left .arrow::before {
  border-left-color: transparent;
}

.popover.bs-popover-left .arrow::after {
  border-left-color: #404040;
}

.popover-header {
  border: 0;
  border-radius: 0;
  background-color: #333333;
  color: #ffffff;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-weight: 500;
}

.popover-body {
  border: 0;
  background-color: #404040;
  color: rgba(255, 255, 255, 0.75);
}

.example-tooltip .tooltip {
  display: inline-block;
  position: relative;
  margin: 10px 20px;
  opacity: 1;
}

.example-popover .popover {
  display: block;
  position: relative;
  width: 260px;
  margin: 1.25rem;
  float: left;
}

.bs-tooltip-bottom-demo .arrow,
.bs-tooltip-top-demo .arrow {
  left: 50%;
  margin-left: -2px;
}

.bs-tooltip-left-demo .arrow,
.bs-tooltip-right-demo .arrow {
  top: 50%;
  margin-top: -2px;
}

.bs-popover-bottom-demo .arrow,
.bs-popover-top-demo .arrow {
  left: 50%;
  margin-left: -11px;
}

.bs-popover-left-demo .arrow,
.bs-popover-right-demo .arrow {
  top: 50%;
  margin-top: -8px;
}

.popover.bs-popover-bottom .popover-header::before,
.popover.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  border-bottom: 0;
}

.dropdown-menu {
  border-color: #eaeaea;
  border-radius: 0;
  font-size: 14px;
  box-shadow: 0 7px 22px -5px rgba(54, 54, 54, 0.2);
}

.dropdown-menu .dropdown-item {
  padding: 5px 20px;
  transition: color 0.3s;
  color: #606060;
  font-size: 12px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  text-decoration: none;
}

.dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item.active, .dropdown-menu .dropdown-item:focus, .dropdown-menu .dropdown-item:active {
  background: 0;
}

.dropdown-menu .dropdown-item:hover {
  color: #B5D6F0;
}

.dropdown-menu .dropdown-item.active {
  color: #B5D6F0;
}

.dropdown-toggle::after {
  margin-top: 1px;
  margin-left: 0.3em;
  vertical-align: 0.2em;
}

.btn.dropdown-toggle::after {
  vertical-align: 0.2em;
}

.show .dropdown-menu {
  animation: dropdown-show 0.25s;
}

@keyframes dropdown-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.dropdown-menu {
  border-color: #eaeaea;
  border-radius: 0;
  font-size: 14px;
  box-shadow: 0 7px 22px -5px rgba(54, 54, 54, 0.2);
}

.dropdown-menu .dropdown-item {
  padding: 5px 20px;
  transition: color 0.3s;
  color: #606060;
  font-size: 12px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  text-decoration: none;
}

.dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item.active, .dropdown-menu .dropdown-item:focus, .dropdown-menu .dropdown-item:active {
  background: 0;
}

.dropdown-menu .dropdown-item:hover {
  color: #B5D6F0;
}

.dropdown-menu .dropdown-item.active {
  color: #B5D6F0;
}

.dropdown-toggle::after {
  margin-top: 1px;
  margin-left: 0.3em;
  vertical-align: 0.2em;
}

.btn.dropdown-toggle::after {
  vertical-align: 0.2em;
}

.show .dropdown-menu {
  animation: dropdown-show 0.25s;
}

@keyframes dropdown-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.list-group-item {
  border: 0;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  border-radius: 0 !important;
  background-color: #f5f5f5;
  font-size: 14px;
  text-transform: uppercase;
  text-letter-spacing: .025em;
  text-decoration: none;
}

.list-group-item i {
  margin-top: -4px;
  margin-right: 8px;
  font-size: 1.1em;
}

.list-group-item p, .list-group-item ul, .list-group-item ol, .list-group-item li, .list-group-item span, .list-group-item small {
  font-weight: normal !important;
  letter-spacing: 0;
  text-transform: none;
}

.list-group-item h1, .list-group-item .h1, .list-group-item h2, .list-group-item .h2, .list-group-item h3, .list-group-item .h3,
.list-group-item h4, .list-group-item .h4, .list-group-item h5, .list-group-item .h5, .list-group-item h6, .list-group-item .h6 {
  letter-spacing: 0;
  text-transform: none;
}

.list-group-item::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: transparent;
  content: '';
}

a.list-group-item,
.list-group-item-action {
  transition: all .25s;
  color: #606060;
}

a.list-group-item:hover, a.list-group-item:focus, a.list-group-item:active,
.list-group-item-action:hover,
.list-group-item-action:focus,
.list-group-item-action:active {
  background-color: #f5f5f5;
  color: #B5D6F0;
}

a.list-group-item {
  padding-top: .87rem;
  padding-bottom: .87rem;
}

.with-badge {
  position: relative;
  padding-right: 3.3rem;
}

.with-badge .badge {
  position: absolute;
  top: 50%;
  right: 1.15rem;
  transform: translateY(-50%);
}

.badge {
  color: #ffffff;
  font-size: 90%;
  font-weight: 500;
}

.badge.badge-default {
  background-color: #ffffff;
  color: #606060;
}

.badge.badge-primary {
  background-color: #B5D6F0;
}

.badge.badge-info {
  background-color: #93c4ef;
}

.badge.badge-success {
  background-color: #a7c04d;
}

.badge.badge-warning {
  background-color: #e68305;
}

.badge.badge-danger {
  background-color: #ef0568;
}

.list-group-item.active {
  border-color: #ffffff;
  background-color: #f5f5f5;
  color: #B5D6F0;
  cursor: default;
  pointer-events: none;
}

.list-group-item.active::before {
  background-color: #B5D6F0;
}

.list-group-item.active p, .list-group-item.active ul, .list-group-item.active ol, .list-group-item.active li, .list-group-item.active span, .list-group-item.active small,
.list-group-item.active h1, .list-group-item.active .h1, .list-group-item.active h2, .list-group-item.active .h2, .list-group-item.active h3, .list-group-item.active .h3,
.list-group-item.active h4, .list-group-item.active .h4, .list-group-item.active h5, .list-group-item.active .h5, .list-group-item.active h6, .list-group-item.active .h6 {
  color: #000000;
}

.list-group-item-info {
  background-color: rgba(147, 196, 239, 0.15);
  color: #93c4ef !important;
}

.list-group-item-info > *,
.list-group-item-info h1, .list-group-item-info h2, .list-group-item-info h3, .list-group-item-info h4, .list-group-item-info h5, .list-group-item-info h6, .list-group-item-info p, .list-group-item-info ul, .list-group-item-info ol, .list-group-item-info a {
  color: #93c4ef !important;
}

.list-group-item-success {
  background-color: rgba(167, 192, 77, 0.15);
  color: #a1bb42 !important;
}

.list-group-item-success > *,
.list-group-item-success h1, .list-group-item-success h2, .list-group-item-success h3, .list-group-item-success h4, .list-group-item-success h5, .list-group-item-success h6, .list-group-item-success p, .list-group-item-success ul, .list-group-item-success ol, .list-group-item-success a {
  color: #a1bb42 !important;
}

.list-group-item-warning {
  background-color: rgba(230, 131, 5, 0.15);
  color: #d77a05 !important;
}

.list-group-item-warning > *,
.list-group-item-warning h1, .list-group-item-warning h2, .list-group-item-warning h3, .list-group-item-warning h4, .list-group-item-warning h5, .list-group-item-warning h6, .list-group-item-warning p, .list-group-item-warning ul, .list-group-item-warning ol, .list-group-item-warning a {
  color: #d77a05 !important;
}

.list-group-item-danger {
  background-color: rgba(239, 5, 104, 0.15);
  color: #ef0568 !important;
}

.list-group-item-danger > *,
.list-group-item-danger h1, .list-group-item-danger h2, .list-group-item-danger h3, .list-group-item-danger h4, .list-group-item-danger h5, .list-group-item-danger h6, .list-group-item-danger p, .list-group-item-danger ul, .list-group-item-danger ol, .list-group-item-danger a {
  color: #ef0568 !important;
}

.list-group-item-action:hover.list-group-item-info,
.list-group-item-action.active.list-group-item-info {
  background-color: rgba(147, 196, 239, 0.3);
}

.list-group-item-action:hover.list-group-item-success,
.list-group-item-action.active.list-group-item-success {
  background-color: rgba(167, 192, 77, 0.3);
}

.list-group-item-action:hover.list-group-item-warning,
.list-group-item-action.active.list-group-item-warning {
  background-color: rgba(230, 131, 5, 0.3);
}

.list-group-item-action:hover.list-group-item-danger,
.list-group-item-action.active.list-group-item-danger {
  background-color: rgba(239, 5, 104, 0.3);
}

.card:not([class*='mb-']):not([class*='margin-bottom-']) + .list-group {
  margin-top: 1px;
}

.alert {
  position: relative;
  padding: 24px;
  border: 5px solid transparent;
  border-radius: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: padding-box;
}

.alert i {
  display: inline-block;
  margin-top: -2px;
  vertical-align: middle;
}

.alert > *:last-child:not(.btn),
.alert h1:last-child:not(.btn), .alert h2:last-child:not(.btn), .alert h3:last-child:not(.btn), .alert h4:last-child:not(.btn), .alert h5:last-child:not(.btn), .alert h6:last-child:not(.btn), .alert p:last-child:not(.btn), .alert ul:last-child:not(.btn), .alert ol:last-child:not(.btn), .alert a:last-child:not(.btn) {
  margin: 0;
}

.alert::before {
  display: block;
  position: absolute;
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  border: 1px solid transparent;
  border-radius: 0;
  content: '';
  z-index: -1;
}

.alert .alert-dismissible {
  transition: opacity .4s;
}

.alert .alert-dismissible.fade.show {
  opacity: 1;
}

.alert .alert-close {
  display: block;
  position: absolute;
  top: 7px;
  right: 9px;
  font-family: 'Material Icons';
  font-size: 16px;
  cursor: pointer;
}

.alert .alert-close::before {
  content: '\e5cd';
}

.alert-default {
  background-color: rgba(96, 96, 96, 0.05);
  color: #606060;
}

.alert-default::before {
  border-color: rgba(96, 96, 96, 0.13);
}

.alert-default > *:not(.text-white), .alert-default > *:not(.text-light),
.alert-default h1:not(.text-white),
.alert-default h1:not(.text-light), .alert-default h2:not(.text-white), .alert-default h2:not(.text-light), .alert-default h3:not(.text-white), .alert-default h3:not(.text-light), .alert-default h4:not(.text-white), .alert-default h4:not(.text-light), .alert-default h5:not(.text-white), .alert-default h5:not(.text-light), .alert-default h6:not(.text-white), .alert-default h6:not(.text-light), .alert-default p:not(.text-white), .alert-default p:not(.text-light), .alert-default ul:not(.text-white), .alert-default ul:not(.text-light), .alert-default ol:not(.text-white), .alert-default ol:not(.text-light), .alert-default a:not(.text-white), .alert-default a:not(.text-light) {
  color: #606060;
}

.alert-default .alert-close {
  color: #606060;
}

.alert-primary {
  background-color: rgba(181, 214, 240, 0.12);
  color: #B5D6F0;
}

.alert-primary::before {
  border-color: rgba(181, 214, 240, 0.25);
}

.alert-primary > *:not(.text-white), .alert-primary > *:not(.text-light),
.alert-primary h1:not(.text-white),
.alert-primary h1:not(.text-light), .alert-primary h2:not(.text-white), .alert-primary h2:not(.text-light), .alert-primary h3:not(.text-white), .alert-primary h3:not(.text-light), .alert-primary h4:not(.text-white), .alert-primary h4:not(.text-light), .alert-primary h5:not(.text-white), .alert-primary h5:not(.text-light), .alert-primary h6:not(.text-white), .alert-primary h6:not(.text-light), .alert-primary p:not(.text-white), .alert-primary p:not(.text-light), .alert-primary ul:not(.text-white), .alert-primary ul:not(.text-light), .alert-primary ol:not(.text-white), .alert-primary ol:not(.text-light), .alert-primary a:not(.text-white), .alert-primary a:not(.text-light) {
  color: #B5D6F0;
}

.alert-primary .alert-close {
  color: #B5D6F0;
}

.alert-info {
  background-color: rgba(147, 196, 239, 0.12);
  color: #93c4ef;
}

.alert-info::before {
  border-color: rgba(147, 196, 239, 0.3);
}

.alert-info > *:not(.text-white), .alert-info > *:not(.text-light),
.alert-info h1:not(.text-white),
.alert-info h1:not(.text-light), .alert-info h2:not(.text-white), .alert-info h2:not(.text-light), .alert-info h3:not(.text-white), .alert-info h3:not(.text-light), .alert-info h4:not(.text-white), .alert-info h4:not(.text-light), .alert-info h5:not(.text-white), .alert-info h5:not(.text-light), .alert-info h6:not(.text-white), .alert-info h6:not(.text-light), .alert-info p:not(.text-white), .alert-info p:not(.text-light), .alert-info ul:not(.text-white), .alert-info ul:not(.text-light), .alert-info ol:not(.text-white), .alert-info ol:not(.text-light), .alert-info a:not(.text-white), .alert-info a:not(.text-light) {
  color: #93c4ef;
}

.alert-info .alert-close {
  color: #93c4ef;
}

.alert-success {
  background-color: rgba(167, 192, 77, 0.12);
  color: #a1bb42;
}

.alert-success::before {
  border-color: rgba(167, 192, 77, 0.25);
}

.alert-success > *:not(.text-white), .alert-success > *:not(.text-light),
.alert-success h1:not(.text-white),
.alert-success h1:not(.text-light), .alert-success h2:not(.text-white), .alert-success h2:not(.text-light), .alert-success h3:not(.text-white), .alert-success h3:not(.text-light), .alert-success h4:not(.text-white), .alert-success h4:not(.text-light), .alert-success h5:not(.text-white), .alert-success h5:not(.text-light), .alert-success h6:not(.text-white), .alert-success h6:not(.text-light), .alert-success p:not(.text-white), .alert-success p:not(.text-light), .alert-success ul:not(.text-white), .alert-success ul:not(.text-light), .alert-success ol:not(.text-white), .alert-success ol:not(.text-light), .alert-success a:not(.text-white), .alert-success a:not(.text-light) {
  color: #a1bb42;
}

.alert-success .alert-close {
  color: #a1bb42;
}

.alert-warning {
  background-color: rgba(230, 131, 5, 0.12);
  color: #d77a05;
}

.alert-warning::before {
  border-color: rgba(230, 131, 5, 0.25);
}

.alert-warning > *:not(.text-white), .alert-warning > *:not(.text-light),
.alert-warning h1:not(.text-white),
.alert-warning h1:not(.text-light), .alert-warning h2:not(.text-white), .alert-warning h2:not(.text-light), .alert-warning h3:not(.text-white), .alert-warning h3:not(.text-light), .alert-warning h4:not(.text-white), .alert-warning h4:not(.text-light), .alert-warning h5:not(.text-white), .alert-warning h5:not(.text-light), .alert-warning h6:not(.text-white), .alert-warning h6:not(.text-light), .alert-warning p:not(.text-white), .alert-warning p:not(.text-light), .alert-warning ul:not(.text-white), .alert-warning ul:not(.text-light), .alert-warning ol:not(.text-white), .alert-warning ol:not(.text-light), .alert-warning a:not(.text-white), .alert-warning a:not(.text-light) {
  color: #d77a05;
}

.alert-warning .alert-close {
  color: #d77a05;
}

.alert-danger {
  background-color: rgba(239, 5, 104, 0.12);
  color: #ef0568;
}

.alert-danger::before {
  border-color: rgba(239, 5, 104, 0.25);
}

.alert-danger > *:not(.text-white), .alert-danger > *:not(.text-light),
.alert-danger h1:not(.text-white),
.alert-danger h1:not(.text-light), .alert-danger h2:not(.text-white), .alert-danger h2:not(.text-light), .alert-danger h3:not(.text-white), .alert-danger h3:not(.text-light), .alert-danger h4:not(.text-white), .alert-danger h4:not(.text-light), .alert-danger h5:not(.text-white), .alert-danger h5:not(.text-light), .alert-danger h6:not(.text-white), .alert-danger h6:not(.text-light), .alert-danger p:not(.text-white), .alert-danger p:not(.text-light), .alert-danger ul:not(.text-white), .alert-danger ul:not(.text-light), .alert-danger ol:not(.text-white), .alert-danger ol:not(.text-light), .alert-danger a:not(.text-white), .alert-danger a:not(.text-light) {
  color: #ef0568;
}

.alert-danger .alert-close {
  color: #ef0568;
}

.alert-image-bg {
  border: 0;
}

.alert-image-bg::before {
  display: none;
}

.iziToast {
  border: 0;
  border-radius: 0;
  background: #404040;
  color: #ffffff;
}

.iziToast::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 10px -4px rgba(0, 0, 0, 0.2);
  content: '';
  z-index: -1;
}

.iziToast > .iziToast-body {
  margin-left: 15px;
}

.iziToast > .iziToast-body > .iziToast-icon {
  margin-top: -10px;
}

.iziToast > .iziToast-icon {
  color: #ffffff;
}

.iziToast > .iziToast-close {
  width: 40px;
  transition: opacity .25s;
  background: none;
  color: #ffffff;
}

.iziToast > .iziToast-close::before {
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  font-family: 'Material Icons';
  font-size: 14px;
  text-align: center;
  content: '\e5cd';
}

.iziToast.iziToast-info {
  background-color: #c8e1f7;
  color: #5ea7e7;
}

.iziToast.iziToast-info > .iziToast-close {
  color: #2487df;
}

.iziToast.iziToast-success {
  background-color: #dfe8be;
  color: #849936;
}

.iziToast.iziToast-success > .iziToast-close {
  color: #6a7b2c;
}

.iziToast.iziToast-warning {
  background-color: #fcc47e;
  color: #a05b03;
}

.iziToast.iziToast-warning > .iziToast-close {
  color: #693c02;
}

.iziToast.iziToast-danger {
  background-color: #fd9ac4;
  color: #ef0568;
}

.iziToast.iziToast-danger > .iziToast-close {
  color: #bd0452;
}

.modal {
  z-index: 9999;
}

.modal-content {
  border: 0;
  border-radius: 0;
  box-shadow: 0 7px 22px -5px rgba(54, 54, 54, 0.2);
}

.modal-header,
.modal-footer {
  border: 0;
  border-radius: 0;
  background-color: #f0f0f0;
}

.modal-header,
.modal-body,
.modal-footer {
  padding-right: 20px;
  padding-left: 20px;
}

.modal-body {
  border-right: 1px solid #f0f0f0;
  border-left: 1px solid #f0f0f0;
}

.modal-footer {
  padding-top: 8px;
  padding-bottom: 8px;
}

.modal-footer .btn {
  margin-right: 0;
  margin-left: 12px;
}

.modal-open.hasScrollbar .navbar-stuck {
  width: calc(100% - 15px);
}

.modal-backdrop {
  z-index: 9990;
}

.example-modal .modal {
  display: block;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 1;
}

.example-modal .modal .modal-content {
  box-shadow: none;
}

.progress {
  height: auto;
  border-radius: 0;
  background-color: #f2f2f2;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
}

.progress-bar {
  height: 18px;
  background-color: #B5D6F0;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.steps .step {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: -2px;
  margin-left: -2px;
  padding: 10px 8px;
  border: 2px solid #eaeaea;
  background-color: #ffffff;
  z-index: 1;
  text-align: center;
  text-decoration: none;
}

.steps .step .step-title {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
}

.steps .step .step-title > i {
  margin-top: -2px;
  margin-right: 6px;
  color: #a7c04d;
  font-size: 1.2em;
  vertical-align: middle;
}

.steps .step > i {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(153, 153, 153, 0.6);
  font-size: 2em;
}

.steps .step.active {
  border-color: #B5D6F0;
  cursor: default;
  z-index: 5;
  pointer-events: none;
}

.steps .step.active .step-title, .steps .step.active > i {
  color: #B5D6F0;
}

.steps a.step:not(.active) {
  transition: background-color .35s;
}

.steps a.step:not(.active):hover {
  background-color: #f5f5f5;
}

.multi-steps > li.is-active:before, .multi-steps > li.is-active ~ li:before {
  content: counter(stepNum);
  font-family: inherit;
  font-weight: 700;
}

.multi-steps > li.is-active:after, .multi-steps > li.is-active ~ li:after {
  background-color: #ededed;
}

.multi-steps {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-top: 36px;
}

.multi-steps > li {
  counter-increment: stepNum;
  text-align: center;
  display: table-cell;
  position: relative;
  color: #B5D6F0;
}

.multi-steps > li:before {
  content: '\f00c';
  content: '\2713;';
  content: '\10003';
  content: '\10004';
  content: '\2713';
  display: block;
  margin: 0 -18px 4px;
  background-color: #fff;
  width: 36px;
  height: 36px;
  line-height: 32px;
  text-align: center;
  font-weight: bold;
  position: absolute;
  top: -36px;
  left: 50%;
  z-index: 2;
  border-width: 2px;
  border-style: solid;
  border-color: #B5D6F0;
  border-radius: 50%;
}

.multi-steps > li:after {
  content: '';
  height: 2px;
  width: 100%;
  background-color: #B5D6F0;
  position: absolute;
  left: 50%;
  z-index: 1;
  top: -18px;
}

.multi-steps > li:last-child:after {
  display: none;
}

.multi-steps > li.is-active:before {
  background-color: #fff;
  border-color: #B5D6F0;
}

.multi-steps > li.is-active ~ li {
  color: #808080;
}

.multi-steps > li.is-active ~ li:before {
  background-color: #ededed;
  border-color: #ededed;
}

.apply-scale {
  -moz-transform-origin: top left;
  -o-transform-origin: top left;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

.highlighted-episode {
  padding-bottom: 30px;
}

.episode-hero {
  margin: 0 -15px 30px -15px;
}

.episode-item {
  padding-bottom: 30px;
  cursor: pointer;
}

.episode-title {
  padding: 0 15px;
}

.episode-title h3 {
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.episode-title hr {
  margin-bottom: 20px;
  border-color: #000;
}

.podcast {
  background-color: #fff;
}

.podcast hr {
  border-color: #000;
}

.podcast .image {
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .highlighted-episode .info-container {
    height: 1px;
  }
}

.info-container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.info-container .text {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.info-container .text .title-container {
  padding-top: 30px;
}

.info-container .text .title-container .title h2 {
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 0;
}

.info-container .text .title-container .sub-title h3 {
  font-size: 1.4em;
  font-weight: 300;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 1.2em;
}

.info-container .text .ingress {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  /*font-size: 1.2em;
            line-height: 1.4em;*/
  width: 90%;
  font-weight: 400;
  padding-bottom: 10px;
  overflow: hidden;
  letter-spacing: 1px;
}

@media (min-width: 1415px) {
  .info-container .text .ingress {
    max-height: 100%;
  }
}

.info-container .text .read-more {
  position: absolute;
  bottom: 0;
  text-align: right;
  width: 100%;
  height: 50px;
  vertical-align: bottom;
  background: white;
  background: linear-gradient(0deg, white 46%, rgba(255, 255, 255, 0) 87%);
}

.info-container .text .read-more a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.8em;
  position: absolute;
  line-height: 1em;
  bottom: 0;
  right: 0;
}

.info-container .links {
  height: 100px;
}

.info-container .links h4 {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}

.info-container .links hr {
  border-color: #000;
}

.info-container .links .link {
  display: inline-block;
  margin: 10px 10px 0 0;
}

.info-container .links img {
  width: 50px;
}

.icom-video-container {
  position: relative;
  display: none;
  padding-bottom: 50.02%;
  height: 0;
  overflow: hidden;
}

.icom-video-container.show {
  display: block;
}

.icom-video-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.icom-video-play-icon-container {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translate(0, -50%);
}

.icom-video-play-icon-container .icom-video-play-icon {
  display: block;
  margin: auto;
  opacity: 0.8;
  width: 16%;
  fill: #fff;
  fill-rule: evenodd;
}

.icom-video-play-icon-container .icom-video-play-icon-circle {
  stroke: #fff;
  stroke-dasharray: 650;
  stroke-dashoffset: 650;
  -webkit-transition: all 0.5s ease-in-out;
  opacity: 0.3;
}

.icom-video-play-icon-container .icom-video-play-icon-triangle {
  -webkit-transition: all 0.7s ease-in-out;
  stroke-dasharray: 240;
  stroke-dashoffset: 480;
  stroke: #fff;
  transform: translateY(0);
}

.icom-video-play-icon-container:hover .icom-video-play-icon-triangle {
  stroke-dashoffset: 0;
  opacity: 1;
  stroke: #fff;
  animation: nudge 0.7s ease-in-out;
}

@keyframes nudge {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  70% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0);
  }
}

.icom-video-play-icon-container:hover .icom-video-play-icon-circle {
  stroke-dashoffset: 0;
  opacity: 1;
}

.contact-form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form .inner-container {
  max-width: 600px;
  width: 100%;
}

.contact-form .inner-container .form-row {
  display: block;
  width: 100%;
  margin-bottom: 3%;
}

.contact-form .inner-container .form-row input, .contact-form .inner-container .form-row textarea {
  width: 100%;
  font-size: 16px;
  padding: 16px;
}

.contact-form .inner-container .form-row textarea {
  min-height: 150px;
}

.contact-form .rotate {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  display: inline-block;
}

.contact-form .button-container button {
  float: right;
  margin-right: 0;
  height: 47px;
  background-color: #212121;
}

.contact-form .cap {
  display: inline-block;
  float: left;
  font-size: 20px;
  margin: 8px 0;
}

.contact-form .c-code {
  display: inline-block;
  width: 41px !important;
  padding: 9px 9px !important;
  margin-left: 10px !important;
}

.contact-form .c-code.red {
  border-color: #ff0000;
}

.page-content {
  margin-top: 45px;
  margin-left: auto;
  margin-right: auto;
  /*padding-left:60px;
    padding-right:60px;*/
  /*@media(min-width: 1560px) {
        &.toolbar-open {
            width: calc(100% - 750px);
        }
    }

    @media(max-width: 1560px) {
        &.toolbar-open {
            width: calc(100% - 480px);
        }
    }*/
}

@media (max-width: 768px) {
  .page-content {
    width: 100% !important;
  }
}

/*@media (min-width: 1560px) {
    .toolbar-open {
        .user-info {
            padding-right: $toolbar-width-wide;
        }

        .site-menu {
            padding-right: $toolbar-width-wide;
        }

        .page-content {
            margin-right: $toolbar-width-wide;
        }
    }
}*/
/*@media(max-width: 1560px) {
    .toolbar-open {
        .user-info {
            padding-right: $toolbar-width;
        }

        .site-menu {
            padding-right: $toolbar-width;
        }

        .page-content {
            margin-right: $toolbar-width;
        }
    }
}


@media(max-width: $screen-md) {
    .toolbar-open {
        &.user-info {
            padding-right: 0 !important;
        }

        &.site-menu {
            padding-right: 0 !important;
        }

        &.page-content {
            margin-right: 0 !important;
        }
    }
}*/
.fw-section,
.fh-section {
  position: relative;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.fw-section > .overlay,
.fh-section > .overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  content: '';
  opacity: 0.6;
  z-index: 1;
}

.fw-section > .container,
.fw-section > .container-fluid,
.fw-section > div,
.fh-section > .container,
.fh-section > .container-fluid,
.fh-section > div {
  position: relative;
  z-index: 5;
}

.fw-section.bg-fixed,
.fh-section.bg-fixed {
  background-attachment: fixed;
}

.fw-section.no-cover-bg,
.fh-section.no-cover-bg {
  background-size: auto;
}

.fw-section {
  width: 100%;
}

.fh-section {
  height: 100vh;
}

.isotope-grid {
  position: relative;
  overflow: hidden;
}

.isotope-grid:not(.filter-grid) {
  min-height: 180px;
  background-position: center;
  background-image: url(../img/preloader.gif);
  background-repeat: no-repeat;
  background-size: 64px;
}

.isotope-grid:not(.filter-grid) > .grid-item {
  display: none;
}

.isotope-grid:not(.filter-grid)[style] {
  background: none;
}

.isotope-grid:not(.filter-grid)[style] > .grid-item {
  display: inline-block;
  animation: showGrid .6s;
}

.isotope-grid .gutter-sizer {
  width: 30px;
}

.isotope-grid .grid-item {
  margin-bottom: 30px;
}

.isotope-grid .grid-item .post-tile,
.isotope-grid .grid-item .portfolio-tile {
  margin-bottom: 0;
}

.isotope-grid.cols-1 .gutter-sizer {
  width: 0;
}

.isotope-grid.cols-1 .grid-sizer,
.isotope-grid.cols-1 .grid-item {
  width: 100%;
}

.isotope-grid.cols-2 .grid-sizer,
.isotope-grid.cols-2 .grid-item {
  width: calc((100% / 2) - 15px);
}

.isotope-grid.cols-3 .grid-sizer,
.isotope-grid.cols-3 .grid-item {
  width: calc((100% / 3) - 20px);
}

.isotope-grid.cols-4 .grid-sizer,
.isotope-grid.cols-4 .grid-item {
  width: calc((100% / 4) - 22.5px);
}

.isotope-grid.cols-5 .grid-sizer,
.isotope-grid.cols-5 .grid-item {
  width: calc((100% / 5) - 24px);
}

.isotope-grid.cols-6 .grid-sizer,
.isotope-grid.cols-6 .grid-item {
  width: calc((100% / 6) - 25px);
}

@media (max-width: 1200px) {
  .isotope-grid.cols-6 .grid-sizer,
  .isotope-grid.cols-6 .grid-item, .isotope-grid.cols-5 .grid-sizer,
  .isotope-grid.cols-5 .grid-item, .isotope-grid.cols-4 .grid-sizer,
  .isotope-grid.cols-4 .grid-item, .isotope-grid.cols-3 .grid-sizer,
  .isotope-grid.cols-3 .grid-item {
    width: calc((100% / 3) - 22.5px);
  }
}

@media (max-width: 768px) {
  .isotope-grid.cols-6 .grid-sizer,
  .isotope-grid.cols-6 .grid-item, .isotope-grid.cols-5 .grid-sizer,
  .isotope-grid.cols-5 .grid-item, .isotope-grid.cols-4 .grid-sizer,
  .isotope-grid.cols-4 .grid-item, .isotope-grid.cols-3 .grid-sizer,
  .isotope-grid.cols-3 .grid-item {
    width: calc((100% / 2) - 15px);
  }
}

@media (max-width: 576px) {
  .isotope-grid.cols-6 .gutter-sizer, .isotope-grid.cols-5 .gutter-sizer, .isotope-grid.cols-4 .gutter-sizer, .isotope-grid.cols-3 .gutter-sizer, .isotope-grid.cols-2 .gutter-sizer {
    width: 0;
  }
  .isotope-grid.cols-6 .grid-sizer,
  .isotope-grid.cols-6 .grid-item, .isotope-grid.cols-5 .grid-sizer,
  .isotope-grid.cols-5 .grid-item, .isotope-grid.cols-4 .grid-sizer,
  .isotope-grid.cols-4 .grid-item, .isotope-grid.cols-3 .grid-sizer,
  .isotope-grid.cols-3 .grid-item, .isotope-grid.cols-2 .grid-sizer,
  .isotope-grid.cols-2 .grid-item {
    width: 100%;
  }
}

.isotope-grid.grid-no-gap .gutter-sizer {
  width: 0;
}

.isotope-grid.grid-no-gap .grid-item {
  margin-bottom: 0;
}

.isotope-grid.grid-no-gap.cols-2 .grid-sizer,
.isotope-grid.grid-no-gap.cols-2 .grid-item {
  width: 50%;
}

.isotope-grid.grid-no-gap.cols-3 .grid-sizer,
.isotope-grid.grid-no-gap.cols-3 .grid-item {
  width: 33.3333333333%;
}

.isotope-grid.grid-no-gap.cols-4 .grid-sizer,
.isotope-grid.grid-no-gap.cols-4 .grid-item {
  width: 25%;
}

.isotope-grid.grid-no-gap.cols-5 .grid-sizer,
.isotope-grid.grid-no-gap.cols-5 .grid-item {
  width: 20%;
}

.isotope-grid.grid-no-gap.cols-6 .grid-sizer,
.isotope-grid.grid-no-gap.cols-6 .grid-item {
  width: 16.6666666667%;
}

@media (max-width: 1200px) {
  .isotope-grid.grid-no-gap.cols-6 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-6 .grid-item, .isotope-grid.grid-no-gap.cols-5 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-5 .grid-item, .isotope-grid.grid-no-gap.cols-4 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-4 .grid-item, .isotope-grid.grid-no-gap.cols-3 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-3 .grid-item {
    width: 33.3333333333%;
  }
}

@media (max-width: 768px) {
  .isotope-grid.grid-no-gap.cols-6 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-6 .grid-item, .isotope-grid.grid-no-gap.cols-5 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-5 .grid-item, .isotope-grid.grid-no-gap.cols-4 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-4 .grid-item, .isotope-grid.grid-no-gap.cols-3 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-3 .grid-item {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .isotope-grid.grid-no-gap.cols-6 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-6 .grid-item, .isotope-grid.grid-no-gap.cols-5 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-5 .grid-item, .isotope-grid.grid-no-gap.cols-4 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-4 .grid-item, .isotope-grid.grid-no-gap.cols-3 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-3 .grid-item, .isotope-grid.grid-no-gap.cols-2 .grid-sizer,
  .isotope-grid.grid-no-gap.cols-2 .grid-item {
    width: 100%;
  }
}

.justify-center {
  justify-content: center;
  align-items: center;
}

@keyframes showGrid {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@supports (-ms-ime-align: auto) {
  .isotope-grid:not(.filter-grid) {
    min-height: auto;
    background: none;
  }
  .isotope-grid:not(.filter-grid) > .grid-item {
    display: inline-block;
  }
  .isotope-grid:not(.filter-grid)[style] > .grid-item {
    animation: none;
  }
}

.page-content .row {
  /*margin-bottom: 30px;


    @media (max-width: 768px) {
        margin-bottom: 2.5vw;
    }

    &:last-child {
        margin-bottom: 0;
    }*/
}

.page-content .row img, .page-content .row .icom-video-container {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .page-content .row img, .page-content .row .icom-video-container {
    margin-bottom: 2.5vw;
  }
}

.navbar {
  position: relative;
  top: 0;
  left: 0;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  border-bottom: 0;
  box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.03);
  min-height: 74px;
  background-color: #ffffff;
  z-index: 1032;
}

@media (max-width: 991px) {
  .navbar {
    min-height: 45px;
    border-bottom: 1px solid #e8e8e8;
  }
}

.navbar.navbar-sticky {
  position: fixed;
}

.navbar.navbar-sticky + * {
  margin-top: 98px;
}

@media (max-width: 991px) {
  .navbar.navbar-sticky + * {
    transition: top 0.5s;
    transition: margin 0.1s;
    margin-top: 45px;
  }
}

.navbar.navbar-sticky + .IComCategory, .navbar.navbar-sticky + .IComFilter {
  margin-top: 98px;
}

@media (max-width: 991px) {
  .navbar.navbar-sticky + .IComCategory, .navbar.navbar-sticky + .IComFilter {
    transition: top 0.5s;
    transition: margin 0.1s;
    margin-top: 102px;
  }
}

@media (max-width: 991px) {
  .navbar.navbar-sticky {
    transition: top 0.5s;
  }
  .navbar.navbar-sticky.navbar--hidden {
    top: -150px;
    visibility: hidden;
  }
  .navbar.navbar-sticky.navbar--hidden + * {
    /*margin-top: 0; // + 28px;*/
  }
}

.teh-header-logo {
  display: flex;
  width: 50px;
}

@media (max-width: 991px) {
  .teh-header-logo {
    display: none;
  }
}

.teh-header-logo a {
  margin: auto 0;
}

.teh-header-logo img {
  height: 40px;
}

@media (max-width: 991px) {
  .search-open .navbar.navbar-sticky + * {
    transition: margin 0.1s;
    margin-top: 89px;
  }
}

@media (max-width: 991px) {
  .search-open .navbar.navbar-sticky + .IComCategory, .search-open .navbar.navbar-sticky + .IComFilter {
    transition: margin 0.1s;
    margin-top: 136px;
  }
}

ul.header-navigation {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  /*@media(min-width: $screen-xl) {
        margin: 0 75px; // 60 + 15
    }*/
}

@media (max-width: 768px) {
  ul.header-navigation {
    margin: 0 -1.25vw;
  }
}

ul.header-navigation li.desktop-navigation-area {
  margin-right: auto;
}

ul.header-navigation li.toolbar-area {
  width: 100%;
  margin-left: auto;
}

.site-logo {
  z-index: 10;
}

.site-logo > img {
  max-width: 130px;
}

@media (max-width: 991px) {
  .site-logo > img {
    max-width: 75px;
  }
}

.site-menu {
  height: 45px;
  min-height: 45px;
}

.site-menu ul {
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.site-menu ul > li {
  padding: 0 15px;
  border-bottom: 2px solid transparent;
}

.site-menu ul > li.active {
  border-bottom: 2px solid #606060;
}

.site-menu ul > li > a {
  color: #606060;
  transition: border .3s;
  border: 2px solid transparent;
  /*margin-top: 1px;*/
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
}

.site-menu ul > li > a > span {
  position: relative;
  /*&::after {
                        content: '';
                        height: 2px;
                        position: absolute;
                        bottom: -3px;
                        width: 0;
                        transition: width .2s;
                        background: #3fa4f0;
                        left: 0;
                    }*/
}

@media (hover: hover) {
  .site-menu ul > li:hover > a > span {
    font-weight: 600;
    /*&::after {
                        content: '';
                        height: 2px;
                        position: absolute;
                        bottom: -3px;
                        width: 100%;
                        background: #3fa4f0;
                        left: 0;
                    }*/
  }
}

.site-menu ul > li.active > a > span {
  font-weight: 600;
  /*&::after {
                    content: '';
                    height: 2px;
                    position: absolute;
                    bottom: -3px;
                    width: 100%;
                    background: #3fa4f0;
                    left: 0;
                }*/
}

.site-menu > ul {
  font-family: "LL Akkurat Bold Web", Helvetica, Arial, sans-serif;
  display: table;
  height: 100%;
  min-height: 100%;
}

.site-menu > ul > li {
  display: table-cell;
  position: relative;
  vertical-align: middle;
  height: 74px;
}

@media (max-width: 991px) {
  .site-menu > ul > li {
    height: 45px;
  }
}

.site-menu > ul > li > a {
  display: table;
  height: 100%;
  min-height: 100%;
  border-top: 1px solid transparent;
  letter-spacing: .05em;
  /*text-transform: uppercase;*/
}

.site-menu > ul > li > a > span {
  display: table-cell;
  vertical-align: middle;
}

.site-menu > ul > li > a > span > svg {
  margin-right: 9px;
  font-size: 1em;
}

.site-menu > ul > li > a > span > svg.fa-times {
  margin-right: 11px;
}

.site-menu > ul > li.active > a {
  border-top-color: transparent;
}

.top-menu ul:NOT(.sub-menu) {
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.top-menu ul:NOT(.sub-menu) > li {
  padding: 0px;
}

.top-menu ul:NOT(.sub-menu) > li > a {
  color: #898989;
  transition: border .3s;
  border: 2px solid transparent;
  margin-top: 1px;
  /*font: {
                    size: $nav-link-font-size;
                    weight: $nav-link-font-weight;
                }*/
  text-decoration: none;
}

.top-menu ul:NOT(.sub-menu) > li > a > span {
  position: relative;
  color: #fff;
  /*&::after {
                        content: '';
                        height: 2px;
                        position: absolute;
                        bottom: -3px;
                        width: 0;
                        transition: width .2s;
                        background: #3fa4f0;
                        left: 0;
                    }*/
}

@media (hover: hover) {
  .top-menu ul:NOT(.sub-menu) > li:hover > a > span {
    font-weight: 600;
    /*&::after {
                        content: '';
                        height: 2px;
                        position: absolute;
                        bottom: -3px;
                        width: 100%;
                        background: #3fa4f0;
                        left: 0;
                    }*/
  }
}

.top-menu ul:NOT(.sub-menu) > li.active > a > span {
  font-weight: 600;
  /*&::after {
                    content: '';
                    height: 2px;
                    position: absolute;
                    bottom: -3px;
                    width: 100%;
                    background: #3fa4f0;
                    left: 0;
                }*/
}

.top-menu > ul {
  display: table;
  height: 100%;
  min-height: 100%;
}

.top-menu > ul > li {
  display: table-cell;
  position: relative;
  vertical-align: middle;
  /*height: $navbar-max-height;*/
}

@media (max-width: 991px) {
  .top-menu > ul > li {
    /*height: $navbar-min-height;*/
  }
}

.top-menu > ul > li > a {
  display: table;
  height: 100%;
  min-height: 100%;
  border-top: 1px solid transparent;
  letter-spacing: .05em;
  /*text-transform: uppercase;*/
}

.top-menu > ul > li > a > span {
  display: table-cell;
  vertical-align: middle;
}

.top-menu > ul > li.active > a {
  border-top-color: transparent;
}

.top-menu > ul > li.open > ul {
  left: -50%;
  top: 110%;
}

.top-menu ul.sub-menu {
  border-radius: 7px;
  border: 1px solid #e8e8e8;
}

.top-menu ul > li.open > .sub-menu {
  z-index: 1000;
  display: block;
  animation: submenu-show 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.site-menu ul > li.open > .sub-menu {
  display: block;
  animation: submenu-show 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.site-menu ul > li.open .megamenu-container {
  width: 100vw;
  left: 0;
  position: fixed;
  background: #fff;
  margin-top: 0px;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  /*&.divided-menu {*/
  /*}*/
}

.site-menu ul > li.open .megamenu-container .megamenu-container-left {
  flex: 1;
}

.site-menu ul > li.open .megamenu-container .megamenu-container-right {
  flex: 1;
}

.site-menu ul > li.open .megamenu-container .megamenu-container-right {
  background: #f6cec950;
}

.site-menu ul > li.open .megamenu-container .mega-menu > li:last-child {
  background: #f6cec950;
}

.site-menu ul > li.open .mega-menu {
  display: table;
  animation: megamenu-show 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.site-menu ul > li.open .mega-menu li {
  padding: 0;
  height: 1.5rem;
}

.site-menu ul > li.open .mega-menu li a {
  color: #000000;
  transition: border .3s;
  margin-top: 1px;
  font-size: 1rem;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 300;
  text-transform: none;
  text-decoration: none;
}

.site-menu ul > li.open .mega-menu li.bold a {
  font-weight: 600;
}

.site-menu ul > li.open .mega-menu li.divider {
  height: 1.5rem;
  line-height: 1.5rem;
}

.site-menu ul > li.open .mega-menu li.divider span {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
}

.site-menu ul > li.open .mega-menu li .mega-menu-title a {
  color: #000000;
  transition: border .3s;
  margin-top: 1px;
  font-size: 1.1rem;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
}

.site-menu ul > li.open .mega-menu .sub-menu {
  animation: none;
}

.site-menu > ul > li.has-megamenu {
  position: static;
}

.toolbar {
  position: relative;
  top: 0;
  right: 0;
  /*width: $toolbar-width;*/
  height: 100%;
  /*z-index: 5;*/
  display: flex;
  height: 74px;
  padding: 0;
  z-index: 10;
}

@media (max-width: 991px) {
  .toolbar {
    height: 45px;
    padding: 0;
  }
}

.toolbar .navigation {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 400px;
}

@media (max-width: 991px) {
  .toolbar .navigation {
    max-width: none;
    flex: 1;
  }
}

.toolbar .toolbar-search {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 250px;
}

@media (max-width: 991px) {
  .toolbar .toolbar-search {
    position: absolute;
    min-width: unset;
    display: block;
    top: 45px;
    background: #fff;
    left: 0px;
    right: 0px;
  }
}

@media (min-width: 768px) {
  .toolbar .toolbar-search {
    left: -15px;
    right: -15px;
  }
}

.toolbar .toolbar-search .inline-search {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 991px) {
  .toolbar .toolbar-search .inline-search {
    display: block;
    padding-left: 2.5vw;
    padding-right: 5vw;
    margin-right: -1.25vw;
    margin-left: -1.25vw;
    padding-bottom: 10px;
  }
  .toolbar .toolbar-search .inline-search + .toolbar-filter-search-mobile {
    margin-top: -10px;
  }
}

.toolbar .toolbar-search .inline-search form {
  max-width: 600px;
  width: 100%;
}

@media (max-width: 991px) {
  .toolbar .toolbar-search .inline-search form {
    max-width: none;
  }
  .toolbar .toolbar-search .inline-search form input {
    border: 1px solid #ccc;
    border-radius: 0px;
    margin: 0 1.25vw;
  }
}

.toolbar .toolbar-search .inline-search form svg {
  position: absolute;
  left: 12px;
  right: auto;
  top: calc(50% - 7px);
  cursor: pointer;
}

@media (max-width: 991px) {
  .toolbar .toolbar-search .inline-search form svg {
    font-size: 1.25rem;
    left: auto;
    right: 12px;
  }
}

.toolbar .toolbar-search .inline-search.active .toolbar-background {
  display: block;
  opacity: .35;
  position: fixed;
  transition: transform .2s ease-out,opacity .2s ease-out;
  top: 98px;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #000;
}

@media (max-width: 991px) {
  .toolbar .toolbar-search .inline-search.active .toolbar-background {
    top: 168px;
  }
}

.toolbar .toolbar-search .inline-search .search-result {
  position: fixed;
  display: none;
  top: 74px;
  width: 100%;
  z-index: 1031;
  max-width: 620px;
}

@media (max-width: 991px) {
  .toolbar .toolbar-search .inline-search .search-result {
    position: absolute;
    top: 55px;
    width: calc(100vw);
    margin-left: -2.5vw;
    max-width: none;
  }
}

.toolbar .toolbar-search .inline-search .search-result .toolbar-background {
  display: none;
}

.toolbar .toolbar-search .inline-search .search-result.active {
  display: block;
}

.toolbar .toolbar-search .inline-search .search-result.active .toolbar-background {
  display: block;
  opacity: .35;
  position: fixed;
  transition: transform .2s ease-out,opacity .2s ease-out;
  top: 74px;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #000;
}

@media (max-width: 991px) {
  .toolbar .toolbar-search .inline-search .search-result.active .toolbar-background {
    top: 168px;
  }
}

.toolbar .toolbar-search .inline-search .search-result .view-result {
  text-align: center;
  padding-top: 20px;
}

.toolbar .toolbar-search .inline-search .search-result .view-result .product-button-purchase {
  width: auto;
  padding: 0px 66px;
}

.toolbar .toolbar-search .toolbar-filter-search-mobile {
  display: none;
  margin: 0 1.25vw;
}

@media (min-width: 768px) {
  .toolbar .toolbar-search .toolbar-filter-search-mobile {
    margin: 0 15px;
  }
}

@media (max-width: 991px) {
  .toolbar .toolbar-search .toolbar-filter-search-mobile {
    display: block;
  }
  .toolbar .toolbar-search .toolbar-filter-search-mobile .filter-icon {
    display: block;
    cursor: pointer;
    margin: 10px 0;
    margin-left: 0;
    font-size: 15px;
    padding: 4px 23px;
    border-radius: 0px;
    border: 1px solid gray;
    line-height: 1.8;
    text-align: center;
  }
}

.toolbar .logo {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toolbar .logo.desktop {
  display: flex;
}

@media (max-width: 991px) {
  .toolbar .logo.desktop {
    display: none;
  }
}

.toolbar .logo.mobile {
  display: none;
}

@media (max-width: 991px) {
  .toolbar .logo.mobile {
    display: flex;
    padding-left: 25px;
  }
}

.toolbar .desktop-navigation {
  width: 100%;
}

.toolbar .tools {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 991px) {
  .toolbar .tools {
    padding-right: 10px;
  }
}

.toolbar .tools .toolbar-icon {
  font-size: 1.4em;
}

@media (max-width: 991px) {
  .toolbar .tools .toolbar-icon {
    font-size: 1.25em;
  }
}

.toolbar .toolbar-toggle {
  width: 80px;
  display: table-cell;
  transition: all .3s;
  /*border-right: 2px solid $white-color;*/
  color: #606060;
  font-size: 24px;
  height: 45px;
  line-height: 45px;
  vertical-align: middle;
  border-bottom: 1px solid transparent;
  text-decoration: none;
  text-align: center;
  /*&::after {
            display: block;
            margin-top: -($toolbar-icon-size);
            transform: translateY(20px) scale(.7);
            transition: transform .3s, opacity .15s;
            font-family: 'Material icons';
            content: '\e5cd';
            opacity: 0;
        }*/
}

@media (max-width: 991px) {
  .toolbar .toolbar-toggle {
    height: 45px;
    line-height: 45px;
    width: 45px;
  }
}

.toolbar .toolbar-toggle:last-child {
  border-right: 0;
}

.toolbar .toolbar-toggle > i, .toolbar .toolbar-toggle > svg.toggle {
  display: inline-block;
  position: relative;
  transform: translateY(0) scale(1);
  transition: transform .3s, opacity .15s;
  font-style: normal;
  opacity: 1;
}

.toolbar .toolbar-toggle > svg.close {
  display: block;
  margin: -24px auto 0 auto;
  transform: translateY(20px) scale(0.7);
  transition: transform .3s, opacity .15s;
  content: '';
  opacity: 0;
}

@media (hover: hover) {
  .toolbar .toolbar-toggle:hover {
    color: #999999;
  }
}

.toolbar .toolbar-toggle.active {
  /*box-shadow: 0px -6px 5px 3px rgba(0, 0, 0, 0.1);*/
  background-color: #fff;
}

.toolbar .toolbar-toggle.active > i, .toolbar .toolbar-toggle.active > svg.toggle {
  /*transform: translateY(-20px) scale(.7);
                opacity: 0;*/
  color: #000;
}

.toolbar .toolbar-toggle.active::after, .toolbar .toolbar-toggle.active > svg.close {
  /*transform: translateY(0) scale(1.5);
                opacity: 1;*/
}

.toolbar .toolbar-toggle .total {
  display: block;
  position: absolute;
  top: 30px;
  width: 100px;
  left: -35px;
  height: 16px;
  color: #000;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
}

.toolbar .toolbar-toggle.mobile-search-toggle {
  display: none;
  /*display: table-cell;*/
}

@media (max-width: 991px) {
  .toolbar .toolbar-toggle.mobile-search-toggle {
    display: table-cell;
  }
}

.toolbar .toolbar-toggle.mobile-menu-toggle {
  display: table-cell;
  position: relative;
}

@media (max-width: 991px) {
  .toolbar .toolbar-toggle.mobile-menu-toggle {
    display: table-cell;
  }
}

.toolbar .toolbar-toggle.mobile-menu-toggle .menu-mobile-title {
  position: absolute;
  right: -27px;
  font-size: 14px;
  top: 1px;
}

.toolbar .toolbar-toggle.search-toggle {
  display: table-cell;
}

@media (max-width: 991px) {
  .toolbar .toolbar-toggle.search-toggle {
    display: none;
  }
}

.toolbar .inline-search:not(.search) {
  display: table-cell;
  width: 160px;
  /*max-width: 20%;*/
}

@media (max-width: 991px) {
  .toolbar .inline-search:not(.search) {
    display: none;
  }
}

/*.cart {
    
    right: 0;
    z-index: 9999;
    
   
}*/
@media (max-width: 991px) {
  .page-content + .navbar.navbar-sticky .search-result.active {
    top: 44px;
  }
}

@media (max-width: 991px) {
  .IComCategory + .navbar.navbar-sticky .search-result.active, .IComFilter + .navbar.navbar-sticky .search-result.active {
    top: 44px;
  }
}

.filter-view, .sort-view {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  overflow-x: hidden;
  /*margin-right: -15px;
    margin-left: -15px;*/
  min-height: 110px;
  position: relative;
  background: #fff;
  height: calc(100% - 48px);
}

.toolbar-background {
  opacity: .35;
  position: fixed;
  z-index: 1030;
  transition: transform .2s ease-out,opacity .2s ease-out;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #000;
}

@media (max-width: 991px) {
  .toolbar-background {
    margin-top: 45px;
  }
}

.toolbar-dropdown {
  font-size: 13px;
  margin: 0;
  margin-left: auto;
  position: relative;
  height: 100%;
  z-index: 1031;
  top: 0;
  right: 0;
  bottom: 0;
  width: 480px;
  /*transition: all .35s;*/
  background-color: #fff;
  opacity: 0;
  /*visibility: hidden;*/
  /*box-shadow: -3px -3px 5px 0 rgba(0, 0, 0, 0.1);*/
  /*overflow-y: auto;*/
  -ms-overflow-style: none;
  transform: translateX(100%);
}

.toolbar-dropdown li.has-url {
  background: #fff;
}

.toolbar-dropdown li.white-bg {
  background: #fff;
}

.toolbar-dropdown li.white-bg a {
  border-bottom: 1px solid transparent !important;
  border-left: 2px solid transparent !important;
}

.toolbar-dropdown li.white-bg .sub-menu-toggle {
  border-left: 1px solid transparent !important;
}

.toolbar-dropdown.left {
  margin-left: 0;
  margin-right: auto;
}

.toolbar-dropdown.nav-background {
  background-color: #fff;
}

@media (max-width: 991px) {
  .toolbar-dropdown {
    margin-top: 0px;
  }
}

@media (max-width: 991px) {
  .toolbar-dropdown .header {
    height: 45px;
    font-size: 30px;
    line-height: 74px;
  }
  .toolbar-dropdown .header div {
    display: inline-block;
  }
  .toolbar-dropdown .header .title {
    padding: 0 15px;
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
  }
}

.toolbar-dropdown.search {
  background: transparent;
}

.toolbar-dropdown.wide {
  width: 750px;
}

.toolbar-dropdown.wide .footer, .toolbar-dropdown.wide .header {
  /*width: $toolbar-width-wide;*/
}

.toolbar-dropdown.left {
  left: 0;
  right: auto;
  transform: translateX(-100%);
}

.toolbar-dropdown.left .header-close {
  cursor: pointer;
  left: 14px;
  right: auto !important;
}

.toolbar-dropdown.open {
  opacity: 1;
  animation: slide-open .2s forwards;
  -ms-animation: slide-open .2s forwards;
  -webkit-animation: slide-open .2s forwards;
}

.toolbar-dropdown .toolbar-background {
  position: absolute;
  top: 0;
  height: 45px;
  background: #fff;
  width: 100%;
  z-index: 17;
}

.toolbar-dropdown .header {
  position: relative;
  border-bottom: 1px solid #e5e5e5;
  background-color: #f3f3f3;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.toolbar-dropdown .header.search + .toolbar-section {
  top: 126px;
}

.toolbar-dropdown .header .header-close {
  cursor: pointer;
  height: 98px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0px;
  z-index: 1033;
}

.toolbar-dropdown .header .header-close .close-big {
  font-size: 30px;
}

@media (max-width: 991px) {
  .toolbar-dropdown .header .header-close {
    height: 45px;
  }
}

.toolbar-dropdown .header .title {
  height: 98px;
  display: flex;
  flex: 1;
  justify-content: left;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .toolbar-dropdown .header .title {
    height: 45px;
  }
}

.toolbar-dropdown .read-only-product-edit-header + .toolbar-section {
  top: 20px;
  bottom: 0px;
}

@media (max-width: 576px) {
  .toolbar-dropdown .read-only-product-edit-header + .toolbar-section {
    top: 20px;
  }
}

.toolbar-dropdown .footer {
  height: 80px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #fff;
  padding: 15px;
  border-top: 3px solid #B5D6F0;
}

.toolbar-dropdown .footer.checkout {
  height: 280px;
}

.toolbar-dropdown .footer.expanded {
  height: 280px;
}

.toolbar-dropdown .footer.expanded-settings {
  height: 430px;
}

.toolbar-dropdown .toolbar-section {
  display: none;
  -webkit-overflow-scrolling: touch;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: relative;
  height: 100%;
  padding: 0px 15px;
  overflow-y: auto;
  /*@media(max-width: $nav-collapse) {
            padding-bottom: 50px;
        }*/
}

.toolbar-dropdown .toolbar-section.nav {
  /*-webkit-overflow-scrolling: auto !important;*/
  background: #fff;
}

.toolbar-dropdown .toolbar-section.current {
  display: block;
  /*animation: slideUpLong .4s;*/
}

.toolbar-dropdown.no-header .toolbar-section {
  top: 0;
}

.toolbar-dropdown li.component {
  padding: 15px;
}

.cart {
  height: calc(100% - 98px);
}

@media (max-width: 991px) {
  .cart {
    height: calc(100% - 45px);
  }
}

.cart-inner {
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.cart-inner .cart-close {
  position: fixed;
  left: 14px;
  top: 16px;
  z-index: 1033;
}

.cart-inner .cart-close .close-big {
  font-size: 40px;
  cursor: pointer;
}

.cart-inner .cart-header {
  padding: 15px 20px 0;
  margin: 0 -15px;
  height: 74px;
  position: relative;
  border-bottom: 1px solid #e5e5e5;
  background: #f2f2f2;
  text-align: center;
}

.cart-inner .cart-content {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  overflow-x: hidden;
  margin-right: -15px;
  margin-left: -15px;
  flex: 1;
  position: relative;
  background: #fff;
}

.cart-inner .cart-content .cart-scroll-inner {
  position: relative;
}

.cart-inner .cart-content .cart-content-inner {
  display: table;
  width: 100%;
  table-layout: fixed;
  margin: 0;
  border: 0;
  padding: 0;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .cart-inner .cart-content .cart-content-inner {
    margin: 0;
  }
}

.cart-inner .cart-content .cart-content-inner .cart-empty {
  font-size: 20px;
  font-weight: 600;
  color: #999999;
  text-align: center;
}

.cart-inner .cart-content .cart-content-inner .cart-empty .cart-empty-icon {
  font-size: 40px;
  display: block;
  margin: 0 auto;
  margin-top: 10px;
}

.cart-inner .cart-content .cart-content-inner .orderline {
  position: relative;
  border-bottom: 1px solid #e5e5e5;
  min-height: 0;
  padding: 20px 13px;
  width: 100%;
  display: block;
}

@media (max-width: 991px) {
  .cart-inner .cart-content .cart-content-inner .orderline {
    padding: 13px 13px;
  }
}

.cart-inner .cart-content .cart-content-inner .orderline:last-child {
  border-bottom: none;
}

.cart-inner .cart-content .cart-content-inner .orderline .orderline-image {
  -webkit-flex: 0 0 95px;
  -ms-flex: 0 0 95px;
  flex: 0 0 95px;
  clear: both;
  position: relative;
  text-align: center;
  display: block;
  float: left;
  border-bottom: none;
  margin: 0;
  width: 97px;
  height: 97px;
  padding: 0;
}

@media (max-width: 991px) {
  .cart-inner .cart-content .cart-content-inner .orderline .orderline-image {
    width: 74px;
    height: 74px;
  }
}

@media (min-width: 991px) {
  .cart-inner .cart-content .cart-content-inner .orderline .orderline-image img {
    width: 64px;
    height: 97px;
  }
}

@media (max-width: 991px) {
  .cart-inner .cart-content .cart-content-inner .orderline .orderline-image img {
    max-height: 74px;
  }
}

.cart-inner .cart-content .cart-content-inner .orderline .orderline-text {
  padding: 0 10px 0 125px;
  height: 96px;
  position: relative;
  flex: 0 0 300px;
  -webkit-flex-basis: 335px;
  -ms-flex-preferred-size: 335px;
  flex-basis: 335px;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-bottom: none;
  width: auto;
  display: block;
  float: none;
}

@media (max-width: 991px) {
  .cart-inner .cart-content .cart-content-inner .orderline .orderline-text {
    padding: 0 10px 0 84px;
  }
}

.cart-inner .cart-content .cart-content-inner .orderline .orderline-text a {
  color: #000;
  text-decoration: none;
}

@media (max-width: 991px) {
  .cart-inner .cart-content .cart-content-inner .orderline .orderline-text {
    height: 75px;
    line-height: 14px;
    font-size: 11px;
  }
  .cart-inner .cart-content .cart-content-inner .orderline .orderline-text a {
    font-size: 13px;
  }
}

.cart-inner .cart-content .cart-content-inner .orderline .orderline-text .quantity-container {
  display: block;
  position: absolute;
  bottom: 0;
}

.cart-inner .cart-content .cart-content-inner .orderline .orderline-text .quantity-container .quantity-input {
  display: inline-block;
  margin: 0 5px;
}

.cart-inner .cart-content .cart-content-inner .orderline .orderline-text .quantity-container .quantity-input .quantity {
  display: inline;
  width: 38px;
  height: 28px;
  padding: 0;
  text-align: center;
  font-size: 15px;
  outline: 0 none;
  border: 0 none;
  box-shadow: none;
}

.cart-inner .cart-content .cart-content-inner .orderline .orderline-text .quantity-container .quantity-input .quantity:hover {
  box-shadow: -1px 1px 1px -1px rgba(0, 0, 0, 0.2) inset;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e5e5 #e5e5e5 #f3f3f3;
  transition: all .2s linear;
}

.cart-inner .cart-content .cart-content-inner .orderline .orderline-text .quantity-container .quantity-remove, .cart-inner .cart-content .cart-content-inner .orderline .orderline-text .quantity-container .quantity-add {
  font-size: 24px;
  line-height: 24px;
  display: inline-block;
  float: left;
  cursor: pointer;
}

.cart-inner .cart-content .cart-content-inner .orderline .orderline-text .quantity-container .quantity-add {
  float: right;
}

.cart-inner .cart-content .cart-content-inner .orderline .orderline-price {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-flex: 0 0 130px;
  -ms-flex: 0 0 130px;
  flex: 0 0 130px;
  align-items: flex-start;
  display: block;
  float: left;
  width: auto;
  border-bottom: none;
  line-height: 1.2;
  text-align: right;
  position: absolute;
  padding: 0;
  bottom: 20px;
  right: 13px;
}

@media (max-width: 991px) {
  .cart-inner .cart-content .cart-content-inner .orderline .orderline-price {
    right: 13px;
    bottom: 13px;
  }
}

.cart-inner .cart-content .cart-content-inner .orderline .orderline-price.discount-price {
  bottom: 33px;
  font-size: 0.7rem;
  text-decoration: line-through;
  line-height: 1rem;
  color: #999;
}

@media (max-width: 991px) {
  .cart-inner .cart-content .cart-content-inner .orderline .orderline-price.discount-price {
    bottom: 28px;
  }
}

.cart-inner .voucher-input-container {
  padding: 10px 0;
}

.cart-inner .voucher-input-container .voucher-link {
  text-decoration: underline;
  cursor: pointer;
}

.cart-inner .voucher-input-container .voucher-input input {
  line-height: normal;
  margin: 0;
  -webkit-appearance: none;
  border-radius: 4px;
  font-size: 1rem;
  border: 1px solid #aaa;
  color: #aaa;
  display: inline-block;
  transition: all .25s ease;
  font-weight: bold;
  padding: 0.8rem 1.5rem;
  box-shadow: none;
  background-color: white;
  outline: none;
  width: 20%;
  min-width: 170px;
}

.cart-inner .voucher-input-container .voucher-input input::placeholder {
  color: #b9b9b9;
  font-style: italic;
}

.cart-inner .voucher-input-container .voucher-input button {
  cursor: pointer;
  outline: 0;
  text-align: center;
  text-decoration: none !important;
  font-weight: bold;
  display: inline-block;
  -webkit-appearance: none;
  border: 0;
  line-height: 1;
  border-radius: 4px;
  border: 1px solid #000;
  padding: 0.8rem 1.5rem;
  letter-spacing: 0.04em;
  font-size: 1rem;
  background: #000;
  color: #fff !important;
  margin: 0 10px 0;
}

.cart-inner .cart-footer {
  margin: 0 -15px;
  /*height: 101px;*/
  padding-bottom: 0;
}

.cart-inner .cart-footer .product-button-purchase {
  margin-top: 0;
  width: 100%;
  padding: 0;
  line-height: 48px;
  color: #fff;
  font-weight: 300;
  background: #000;
  border: 0;
  border-radius: 0;
}

.cart-inner .cart-footer .cart-footer-background {
  position: absolute;
  top: 2px;
  bottom: 0px;
  right: -12px;
  background: #f2f2f2;
  left: -20px;
  right: -20px;
}

.cart-inner .cart-footer .cart-order-totals {
  padding: 10px 15px;
  background: #f2f2f2;
  display: flex;
  font-weight: 600;
  flex-wrap: wrap;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  color: #000;
  margin-bottom: 0;
}

.cart-inner .cart-footer .cart-order-totals .voucher-code-remove {
  text-decoration: underline;
  cursor: pointer;
  margin-left: 10px;
}

.cart-inner .cart-footer .cart-order-totals dt {
  flex: 1 1 50%;
  font-weight: 600;
}

.cart-inner .cart-footer .cart-order-totals dd {
  flex: 1 1 50%;
  text-align: right;
}

.cart-inner .cart-footer .cart-order-totals dd .vat-info {
  font-size: 0.7rem;
  color: #999;
  font-weight: 600;
}

.cart-inner .cart-footer .basket-cta-container {
  background: #f2f2f2;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-inner .cart-footer .basket-cta-container .product-button-purchase {
  width: 75%;
  border-radius: 50px;
}

/*.cart-inner {
    .cart-close {
        position: fixed;
        left: 14px;
        top: 16px;
        z-index: 1033;

        .close-big {
            font-size: 40px;
            cursor: pointer;
        }
    }

    .cart-header {
        padding: 15px 20px 0;
        margin: 0 -15px;
        height: 74px;
        position: relative;
        border-bottom: 1px solid #e5e5e5;
        background-color: #f3f3f3;
        text-align: center;
    }

    .cart-content {
        overflow-y: auto;
        overflow-x: hidden;
        margin-right: -15px;
        margin-left: -15px;
        min-height: 110px;
        position: relative;
        background: #fff;

        .cart-content-inner {
            display: table;
            width: 100%;
            table-layout: fixed;
            margin: 11px 0 0;
            border: 0;
            padding: 0;
            margin-bottom: 15px;

            .cart-empty {
                font-size: 20px;
                font-weight: 600;
                color: #999999;
                text-align: center;

                .cart-empty-icon {
                    font-size: 40px;
                    display: block;
                    margin: 0 auto;
                    margin-top: 10px;
                }
            }

            .orderline {
                position: relative;
                border-bottom: 1px solid #e5e5e5;
                min-height: 0;
                padding: 24px 13px;
                width: 100%;
                display: block;


                &:last-child {
                    border-bottom: none;
                }

                .orderline-image {
                    -webkit-flex: 0 0 95px;
                    -ms-flex: 0 0 95px;
                    flex: 0 0 95px;
                    clear: both;
                    position: relative;
                    text-align: center;
                    display: block;
                    float: left;
                    border-bottom: none;
                    margin: 0;
                    width: 64px;
                    height: 97px;
                    padding: 0;

                    img {
                        width: 64px;
                        height: 97px;
                    }
                }

                .orderline-text {
                    padding: 0 10px 0 88px;
                    height: 96px;
                    position: relative;
                    flex: 0 0 300px;
                    -webkit-flex-basis: 335px;
                    -ms-flex-preferred-size: 335px;
                    flex-basis: 335px;
                    -webkit-align-items: flex-start;
                    -ms-flex-align: start;
                    align-items: flex-start;
                    border-bottom: none;
                    width: auto;
                    display: block;
                    float: none;


                    a {
                        color: #000;
                        text-decoration: none;
                    }

                    .quantity-container {
                        display: block;
                        position: absolute;
                        bottom: 0;


                        .quantity-input {
                            display: inline-block;
                            margin: 0 5px;

                            .quantity {
                                display: inline;
                                width: 38px;
                                height: 28px;
                                padding: 0;
                                text-align: center;
                                font-size: 15px;
                                outline: 0 none;
                                border: 0 none;
                                box-shadow: none;

                                &:hover {
                                    box-shadow: -1px 1px 1px -1px rgba(0,0,0,0.2) inset;
                                    border-width: 1px;
                                    border-style: solid;
                                    border-color: #e5e5e5 #e5e5e5 #f3f3f3;
                                    transition: all .2s linear;
                                }
                            }
                        }


                        .quantity-remove, .quantity-add {
                            font-size: 24px;
                            line-height: 24px;
                            display: inline-block;
                            float: left;
                            cursor: pointer;
                        }

                        .quantity-add {
                            float: right;
                        }
                    }
                }

                .orderline-price {
                    -webkit-justify-content: flex-end;
                    -ms-flex-pack: end;
                    justify-content: flex-end;
                    -webkit-flex: 0 0 130px;
                    -ms-flex: 0 0 130px;
                    flex: 0 0 130px;
                    align-items: flex-start;
                    display: block;
                    float: left;
                    width: auto;
                    border-bottom: none;
                    line-height: 1.2;
                    text-align: right;
                    position: absolute;
                    padding: 0;
                    right: 13px;

                    &.discount-price {
                        bottom: 23px;
                        font-size: 0.7rem;
                        text-decoration: line-through;
                        line-height: 1rem;
                        color: #999;
                    }
                }
            }
        }
    }


    .voucher-input-container {
        padding: 10px 0;


        .voucher-link {
            text-decoration: underline;
            cursor: pointer;
        }


        .voucher-input {
            input {
                line-height: normal;
                margin: 0;
                -webkit-appearance: none;
                border-radius: 4px;
                font-size: 1rem;
                border: 1px solid #aaa;
                color: #aaa;
                display: inline-block;
                transition: all .25s ease;
                font-weight: bold;
                padding: 0.8rem 1.5rem;
                box-shadow: none;
                background-color: white;
                outline: none;
                width: 20%;
                min-width: 170px;

                &::placeholder {
                    color: #b9b9b9;
                    font-style: italic;
                }

                &:hover {
                }
            }

            button {
                cursor: pointer;
                outline: 0;
                text-align: center;
                text-decoration: none !important;
                font-weight: bold;
                display: inline-block;
                -webkit-appearance: none;
                border: 0;
                line-height: 1;
                border-radius: 4px;
                border: 1px solid #000;
                padding: 0.8rem 1.5rem;
                letter-spacing: 0.04em;
                font-size: 1rem;
                background: #000;
                color: #fff !important;
                margin: 0 10px 0;
            }
        }
    }


    .cart-footer {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        padding-bottom: 30px;

        .product-button-purchase {
            margin-top: 20px;
            width: 100%;
            padding: 0;
        }

        .cart-footer-background {
            position: absolute;
            top: 2px;
            bottom: 0px;
            right: -12px;
            background: #f3f3f3;
            left: -20px;
            right: -20px;
        }

        .cart-order-totals {
            padding: 10px 15px;
            background-color: #f2f2f2;
            display: flex;
            flex-wrap: wrap;
            border-radius: 4px;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            color: #000;

            .voucher-code-remove {
                text-decoration: underline;
                cursor: pointer;
                margin-left: 10px;
            }

            dt {
                flex: 1 1 50%;
                font-weight: normal;
            }

            dd {
                flex: 1 1 50%;
                text-align: right;

                .vat-info {
                    font-size: 0.7rem;
                    color: #999;
                    font-weight: 600;
                }
            }
        }
    }
}*/
.count {
  display: block;
  position: absolute;
  z-index: 2000;
  top: -12px;
  right: -9px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #B5D6F0;
  color: #ffffff;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
}

@media (max-width: 991px) {
  .count {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    line-height: 20px;
  }
}

.count .count-text {
  font-family: "LL Akkurat Bold Web", Helvetica, Arial, sans-serif;
  position: absolute;
  top: 1px;
  left: 0px;
  text-align: center;
  width: 24px;
  COLOR: #FFF;
}

@media (max-width: 991px) {
  .count .count-text {
    top: 0px;
    left: 0px;
    width: 20px;
    font-size: 10px;
  }
}

.tools .count {
  top: 0;
  right: -17px;
}

@media (max-width: 991px) {
  .tools .count {
    top: 2px;
    right: -13px;
  }
}

.error {
  display: block;
  position: absolute;
  z-index: 2000;
  top: 0;
  right: -17px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ff0000;
  color: #ffffff;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  right: -12px;
  transform: scale(0);
  transition: transform 0.2s ease;
}

.error.visible {
  transform: scale(1);
}

@media (max-width: 991px) {
  .error {
    top: 4px;
    right: -9px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    line-height: 18px;
  }
}

.error .error-text {
  font-family: "LL Akkurat Bold Web", Helvetica, Arial, sans-serif;
  position: absolute;
  top: 1px;
  left: 0px;
  text-align: center;
  width: 24px;
  COLOR: #FFF;
}

@media (max-width: 991px) {
  .error .error-text {
    top: 0px;
    left: 0px;
    width: 18px;
  }
}

@keyframes slide-open {
  100% {
    transform: translateX(0);
  }
}

.toolbar-dropdown::-webkit-scrollbar {
  width: 0 !important;
}

.slideable-menu.edit-product + .toolbar-section {
  top: 56px;
}

@media (max-width: 991px) {
  .site-branding {
    padding-left: 15px;
  }
  .lang-currency-switcher,
  .site-menu {
    display: none;
  }
  .toolbar-section .lang-currency-switcher {
    display: inline-block;
  }
}

@media (max-width: 1560px) {
  .toolbar-dropdown.wide {
    width: 480px;
  }
  .toolbar-dropdown.wide .footer, .toolbar-dropdown.wide .header {
    /*width: $toolbar-width;*/
  }
}

@media (max-width: 768px) {
  /*.toolbar {
        width: 360px;
    }*/
  .toolbar-dropdown {
    width: 80%;
    /*-webkit-overflow-scrolling: touch;*/
    /*overflow-y: auto;*/
  }
  .toolbar-dropdown.wide {
    width: 100%;
  }
  .toolbar-dropdown.wide .header, .toolbar-dropdown.wide .footer {
    /*width: 100%;*/
  }
  .toolbar-dropdown.left {
    width: 80%;
    left: 0;
    right: auto;
  }
  .toolbar-dropdown.left .header, .toolbar-dropdown.left .footer {
    /*width: 100%;*/
  }
}

@media (max-width: 576px) {
  /*.toolbar {
        width: 100%;
    }*/
}

.search-result .search-result-row {
  border: 2px solid transparent;
}

.search-result .search-result-row.active {
  border-left: 2px solid #B5D6F0;
}

@media (hover: hover) {
  .search-result .search-result-row:hover {
    border-left: 2px solid #B5D6F0;
  }
}

.page-title {
  background: #555;
  margin-bottom: 60px;
  /*padding: {
    top: floor($grid-vertical-step * 2); //~60px
    bottom: floor($grid-vertical-step * 2.5); //~60px
  }*/
  /*background-color: $gray-lighter;*/
  text-align: center;
}

.page-title h1 {
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .page-title {
    margin-bottom: 48px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.breadcrumbs {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1rem;
  list-style: none;
}

.breadcrumbs > li {
  display: inline-block;
  color: #999999;
  cursor: default;
}

.breadcrumbs > li.separator {
  color: #999999;
}

.breadcrumbs > li > a {
  transition: color .25s;
  color: #606060;
  text-decoration: none;
}

.breadcrumbs > li > a:hover {
  color: #B5D6F0;
}

.site-footer {
  width: 100%;
  background-color: #212121;
  padding: 70px 0 20px;
  color: #ffffff;
  font-size: 12px;
}

.site-footer h5 {
  color: #ffffff;
}

.site-footer .column {
  width: 100%;
  padding: 45px 25px;
  /*background-color: $gray-lighter;
    &:nth-of-type(even) {
      background-color: darken($gray-lighter, 2%);
    }*/
}

.site-footer .subscribe-form {
  max-width: 365px;
  margin: 0 auto;
}

.site-footer .subscribe-form .form-control {
  border-color: #ffffff;
}

.site-footer .subscribe-form .form-control:focus {
  border-color: #B5D6F0;
}

.site-footer .footer-cards {
  width: 100%;
  max-width: 187px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .site-footer {
    display: block;
  }
  .site-footer .column {
    padding: 45px 15px;
  }
}

.site-footer.footer-dark .column {
  background-color: #404040;
}

.site-footer.footer-dark .column:nth-of-type(even) {
  background-color: #3b3b3b;
}

.cookieConsent > div {
  text-align: center;
}

@media (max-width: 991px) {
  .cookieConsent > div {
    flex: 1 0 100% !important;
    width: 100% !important;
  }
}

.cookieConsent p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .cookieConsent button {
    margin: 15px auto !important;
  }
}

@media (max-width: 991px) {
  .footer-logos {
    text-align: center;
  }
}

@media (min-width: 991px) {
  .footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.footer-logos img {
  max-height: 60px;
  margin: 15px 5px 5px 5px;
}

.footer-logos img.klarna {
  max-height: 80px;
}

.footer-logos img.postnord {
  max-height: 20px;
}

/*
 * Legal Disclaimer
 *
 * These Fonts are licensed only for use on these domains and their subdomains:
 * www.markslojd.com
 *
 * It is illegal to download or use them on other websites.
 *
 * While the @font-face statements below may be modified by the client, this
 * disclaimer may not be removed.
 *
 * Lineto.com, 2019
 */
/*
 *
 * INSTRUCTIONS
 *
 * Copy the Legal Disclaimer and the @font-faces statements to your regular CSS file.
 * The fonts folder(s) should be placed relative to the regular CSS file.
 *
 * You can use either the complete or subsetted fonts:
 * If you don't require the entire range of characters, you can use the smaller, subsetted webfonts instead.
 * See "Glyphs & Languages" for an overview of the characters in the corresponding html file in the root directory of this package.
 *
 */
@font-face {
  font-family: "LL Akkurat Regular Web";
  src: url("/dist/css/fonts/lineto-akkurat-regular.eot");
  src: url("/dist/css/fonts/lineto-akkurat-regular.eot?#iefix") format("embedded-opentype"), url("/dist/css/fonts/lineto-akkurat-regular.woff2") format("woff2"), url("/dist/css/fonts/lineto-akkurat-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "LL Akkurat Bold Web";
  src: url("/dist/css/fonts/lineto-akkurat-bold.eot");
  src: url("/dist/css/fonts/lineto-akkurat-bold.eot?#iefix") format("embedded-opentype"), url("/dist/css/fonts/lineto-akkurat-bold.woff2") format("woff2"), url("/dist/css/fonts/lineto-akkurat-bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "LL Akkurat Light Web";
  src: url("/dist/css/fonts/lineto-akkurat-light.eot");
  src: url("/dist/css/fonts/lineto-akkurat-light.eot?#iefix") format("embedded-opentype"), url("/dist/css/fonts/lineto-akkurat-light.woff2") format("woff2"), url("/dist/css/fonts/lineto-akkurat-light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/* 
*
*     Licensed for use at www.markslojd.com
*     Domaine Display Semibol
*     License: klim.co.nz/blog/licensing-information#web
*
*/
@font-face {
  font-family: "DomaineDisplayWeb-Semibold";
  src: url("/dist/css/fonts/DomaineDisplayWeb-Semibold.eot");
  src: url("/dist/css/fonts/DomaineDisplayWeb-Semibold.eot?#iefix") format("embedded-opentype"), url("/dist/css/fonts/DomaineDisplayWeb-Semibold.woff2") format("woff2"), url("/dist/css/fonts/DomaineDisplayWeb-Semibold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

.image-text {
  position: relative;
}

.image-text .text-container {
  /*position: absolute;*/
  width: 100%;
  color: #fff;
  text-align: center;
  /*top: 50%;*/
  /*transform: translateY(-50%);*/
}

.image-text .text-container .text {
  font-size: 1rem;
  line-height: 5vw;
  text-transform: uppercase;
  width: 80%;
  margin: 0 auto;
  text-shadow: 0 0 20px #6d6d6d;
}

@media (max-width: 1000px) {
  .image-text .text-container .text {
    font-size: 2rem;
  }
}

.salming-tilt {
  font-family: "Hudson";
  text-transform: uppercase;
}

/*@font-face {
    font-family: 'Hudson';
    src: url('/dist/fonts/Hudson/Hudson_NY_Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}*/
.topbar-bg {
  background: #fff;
}

.top-bar {
  padding: 0;
  position: relative;
  min-height: 24px;
  border: 0;
  color: #ffffff;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  list-style-type: none;
  align-items: center;
  min-width: 0;
  /*span {
        padding: 2px 12px;
        color: #fff;
        text-decoration: none;
        display: inline-flex;
        vertical-align: middle;
        align-items: center;

        i {
            margin-right: 6px;
        }
    }*/
}

@media (max-width: 991px) {
  .top-bar {
    display: none;
  }
}

.top-bar .left {
  flex: 1;
  margin-right: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-bar .center {
  width: 50%;
}

.top-bar .right {
  line-height: 34px;
  font-size: 12px;
  white-space: nowrap;
  position: absolute;
  right: 10px;
  display: flex;
}

.top-bar a {
  padding: 0px 12px;
  color: #898989;
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
}

@media (max-width: 991px) {
  .top-bar a {
    padding: 3px 12px;
  }
}

.top-bar a i {
  margin-right: 6px;
}

.top-bar a.customer-link {
  text-decoration: underline;
}

.top-bar a {
  text-decoration: none;
  color: #009fe3;
}

.top-bar a:hover {
  color: #ccc;
}

@media (max-width: 576px) {
  .top-bar {
    padding: 2px 8px;
  }
}

@media (max-width: 768px) {
  .top-bar .md-left {
    flex: 1;
    margin-right: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.ticker-bar {
  min-height: 24px;
  border: 0;
  padding: 0px 12px;
  color: #ffffff;
  display: -webkit-flex;
  display: flex;
  list-style-type: none;
  align-items: center;
  justify-content: center;
  min-width: 0;
  color: #fff;
  font-size: 0.8rem;
}

@media (max-width: 991px) {
  .ticker-bar {
    display: none;
  }
}

.ticker-bar .carousel {
  width: calc(50%);
  height: 24px;
}

.ticker-bar .carousel .carousel__slider-tray-wrapper {
  padding-bottom: 24px !important;
}

.ticker-bar .carousel .carousel__slider-tray-wrapper .carousel__slider-tray {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ticker-bar .carousel .carousel__slider-tray-wrapper .carousel__slider-tray .carousel__slide {
  padding-bottom: 0 !important;
  outline-style: none;
}

.ticker-bar .carousel .carousel__slider-tray-wrapper .carousel__slider-tray .carousel__slide:focus, .ticker-bar .carousel .carousel__slider-tray-wrapper .carousel__slider-tray .carousel__slide:active {
  outline-style: none;
}

.ticker-bar .carousel .carousel__slider-tray-wrapper .carousel__slider-tray .carousel__slide .carousel__inner-slide {
  text-align: center;
  line-height: 24px;
  outline-style: none;
}

.ticker-bar .carousel .carousel__slider-tray-wrapper .carousel__slider-tray .carousel__slide .carousel__inner-slide:focus, .ticker-bar .carousel .carousel__slider-tray-wrapper .carousel__slider-tray .carousel__slide .carousel__inner-slide:active {
  outline-style: none;
}

.ticker-bar .carousel .carousel__slider-tray-wrapper .carousel__slider-tray .carousel__slide .carousel__inner-slide .carousel__slide-focus-ring {
  display: none !important;
}

.ticker-bar .carousel .carousel__slider-tray-wrapper .carousel__slider-tray .carousel__slide .carousel__inner-slide a {
  color: #000;
  font-size: 0.8rem;
  font-weight: 600;
}

@media (max-width: 576px) {
  .ticker-bar {
    padding: 2px 8px;
  }
}

@media (max-width: 768px) {
  .ticker-bar .md-left {
    flex: 1;
    margin-right: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.mce-content-body {
  /*h1 {
        &.BlockHeading-1 {
            font-size: 65px;
            line-height: 70px;
        }
    }


    h2 {
        &.BlockHeading-2 {
            font-size: $font-size-h2;
            line-height: $line-height-h2;
        }
    }

    h3 {

        &.BlockHeading-3 {
            font-size: 30px; //$font-size-h3;
            line-height: 30px; //$line-height-h3;
        }
    }*/
}

.mce-content-body p {
  color: #000;
}

.Hero, .Box, [class*="cropalias-Hero"], [class*="cropalias-Box"] {
  /*h2 {
        @media (max-width: $screen-md) {
            margin-bottom: 2vw;
        }
    }*/
}

.Hero p, .Box p, [class*="cropalias-Hero"] p, [class*="cropalias-Box"] p {
  color: #e9e9e9;
  font-size: 1.2rem;
  /*@media (max-width: $screen-md) {
            font-size: 14px;
            margin-bottom: 8px;
        }*/
  /*@media (min-width: $screen-xl) {
            font-size: 18px;
        }*/
}

/**umb_name:Pill*/
Span.BlockPill {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 16px;
  padding: 6px 8px;
}

/**umb_name:Normal*/
P.BlockNormal {
  font-size: 1rem;
}

.block-button a {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
}

.block-button a:active, .block-button a:visited {
  color: #000;
}

/**umb_name:Button*/
.block-button {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  color: #000;
  border: 1px solid #fff !important;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #fff !important;
  /*font-size: 1vw;
    line-height: 3vw;
    border-radius: 3vw;
    padding: 0vw 1.3vw;
    padding-right: 5.5vw;
    display: inline-block;


    &::after {
        content: url(/dist/img/arrow_black.png?width=20);
        right: 1.3vw;
        top: -0.1vw;
        width: 1.8vw;
        height: inherit;
        position: absolute;
    }*/
  font-size: 0.8rem;
  border-radius: 36px !important;
  line-height: 2rem;
  padding: 0px 16px !important;
  padding-right: 66px !important;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  /*@media (min-width: $screen-xl) {
        font-size: 12px;
        border-radius: 36px;
        line-height: 36px;
        padding: 0px 16px;
        padding-right: 66px;

        &::after {
            right: 16px;
            top: -1.4px;
            width: 21.6px;
            height: inherit;
            position: absolute;
        }
    }*/
  position: relative;
  transition: .3s;
}

.block-button:active, .block-button:visited {
  color: #000;
}

.block-button::after {
  content: url(/dist/img/arrow_black.png?width=20);
  right: 16px;
  top: -1.4px;
  width: 21.6px;
  height: inherit;
  position: absolute;
}

@media (max-width: 768px) {
  .block-button {
    /*font-size: 10px;*/
    border-radius: 24px;
    /*line-height: 24px;*/
    padding: 0px 8px;
    padding-right: 66px;
  }
  .block-button::after {
    right: 16px;
    top: -1.4px;
    width: 21.6px;
    height: inherit;
    position: absolute;
  }
}

.block-button:hover {
  color: #000;
  border-color: #eee;
  background-color: #eee;
  /*&::after {
            content: url(/dist/img/arrow_white.png?width=20);
        }*/
}

.mce-content-body .block-button > a {
  font-size: 0.8rem;
  border-radius: 36px;
  line-height: 2rem;
  padding: 0px 16px;
  padding-right: 66px;
}

.mce-content-body .block-button > a::after {
  right: 16px;
  top: -1.4px;
  width: 21.6px;
  height: inherit;
  position: absolute;
}

.icom-block-content-bg {
  filter: alpha(opacity=20);
  -moz-opacity: 0.2;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.icom-block-content {
  /*top: 0;
    left: 0;
    height: 100%;
    width: 100%;*/
  z-index: 1;
}

/**umb_name:Heading-1*/
h1 {
  font-size: 2.0736rem;
  line-height: 2.0736rem;
}

h1 {
  font-size: 24.8832px;
}

@media screen and (min-width: 320px) {
  h1 {
    font-size: calc(24.8832px + 35.8668 * ((100vw - 320px) / 1120));
  }
}

@media screen and (min-width: 1440px) {
  h1 {
    font-size: 60.75px;
  }
}

h1 {
  line-height: 24.8832px;
}

@media screen and (min-width: 320px) {
  h1 {
    line-height: calc(24.8832px + 35.8668 * ((100vw - 320px) / 1120));
  }
}

@media screen and (min-width: 1440px) {
  h1 {
    line-height: 63.75px;
  }
}

/**umb_name:Heading-2*/
h2 {
  font-size: 1.728rem;
  line-height: 1.728rem;
}

h2 {
  font-size: 20.736px;
}

@media screen and (min-width: 320px) {
  h2 {
    font-size: calc(20.736px + 19.764 * ((100vw - 320px) / 1120));
  }
}

@media screen and (min-width: 1440px) {
  h2 {
    font-size: 40.5px;
  }
}

h2 {
  line-height: 20.736px;
}

@media screen and (min-width: 320px) {
  h2 {
    line-height: calc(20.736px + 19.764 * ((100vw - 320px) / 1120));
  }
}

@media screen and (min-width: 1440px) {
  h2 {
    line-height: 43.5px;
  }
}

h2.product-name {
  font-size: 5.728rem;
  line-height: 5.728rem;
}

h2.product-name {
  font-size: 20.736px;
}

@media screen and (min-width: 320px) {
  h2.product-name {
    font-size: calc(20.736px + 33.264 * ((100vw - 320px) / 1120));
  }
}

@media screen and (min-width: 1440px) {
  h2.product-name {
    font-size: 54px;
  }
}

h2.product-name {
  line-height: 27.648px;
}

@media screen and (min-width: 324px) {
  h2.product-name {
    line-height: calc(27.648px + 26.352 * ((100vw - 324px) / 1120));
  }
}

@media screen and (min-width: 1444px) {
  h2.product-name {
    line-height: 57px;
  }
}

/**umb_name:Heading-3*/
h3 {
  font-size: 1.44rem;
  line-height: 1.44rem;
}

h3 {
  font-size: 17.28px;
}

@media screen and (min-width: 320px) {
  h3 {
    font-size: calc(17.28px + 9.72 * ((100vw - 320px) / 1120));
  }
}

@media screen and (min-width: 1440px) {
  h3 {
    font-size: 27px;
  }
}

h3 {
  line-height: 17.28px;
}

@media screen and (min-width: 320px) {
  h3 {
    line-height: calc(17.28px + 9.72 * ((100vw - 320px) / 1120));
  }
}

@media screen and (min-width: 1440px) {
  h3 {
    line-height: 30px;
  }
}

/**umb_name:Heading-4*/
h4 {
  font-size: 1.2rem;
  line-height: 1.2rem;
}

h4 {
  font-size: 14.4px;
}

@media screen and (min-width: 320px) {
  h4 {
    font-size: calc(14.4px + 3.6 * ((100vw - 320px) / 1120));
  }
}

@media screen and (min-width: 1440px) {
  h4 {
    font-size: 18px;
  }
}

h4 {
  line-height: 14.4px;
}

@media screen and (min-width: 320px) {
  h4 {
    line-height: calc(14.4px + 3.6 * ((100vw - 320px) / 1120));
  }
}

@media screen and (min-width: 1440px) {
  h4 {
    line-height: 21px;
  }
}

.mce-content-body h1 {
  font-size: 60.75px;
  line-height: 60.75px;
}

.mce-content-body h2 {
  font-size: 40.5px;
  line-height: 40.5px;
}

.mce-content-body h3 {
  font-size: 27px;
  line-height: 27px;
}

.mce-content-body h4 {
  font-size: 18px;
  line-height: 18px;
}

.mce-content-body p {
  font-size: 16px;
  line-height: 16px;
}

.mce-content-body .BlockPill {
  font-size: 12.8px;
}

.mce-content-body .block-button > a {
  font-size: 12.8px;
  line-height: 32px;
}

/*.mce-content-body {
    h2 {
        &.BlockHeading-2 {
            font-size: $font-size-h2;
            line-height: $line-height-h2;
        }
    }

    h3 {

        &.BlockHeading-3 {
            font-size: 30px; //$font-size-h3;
            line-height: 30px; //$line-height-h3;
        }
    }

    p {
        color: #000;
    }
}*/
/**umb_name:Header Domaine*/
h3.DomaineHeading {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 22px;
  color: #fff;
}

/**umb_name:Header Akkurat*/
h3.AkkuratHeading {
  font-family: "LL Akkurat Bold Web", Helvetica, Arial, sans-serif;
  font-size: 20px;
  color: #fff;
}

footer {
  position: relative;
}

footer .footer-content-spacer {
  height: 50px;
  width: 100%;
  top: 0;
  position: absolute;
  background: #fff;
}

footer .footer-content-spacer .footer-triangle {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 28px;
  background: #212121;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

footer p {
  font-size: 14px;
  margin-bottom: 15px;
}

footer a {
  color: #fff;
  text-decoration: none;
}

.IComStartpage, .IComPage {
  /*@media(max-width: $screen-md) {

        .container > .row > [class*="col-"],
        .container-fluid > .row > [class*="col-"] {
            padding-left: 0px;
            padding-right: 0px;
        }
    }*/
}

.IComStartpage .container, .IComStartpage .container-fluid, .IComPage .container, .IComPage .container-fluid {
  background-color: #fff;
}

.IComStartpage .container > .row > [class*="col-"].overlap,
.IComStartpage .container-fluid > .row > [class*="col-"].overlap, .IComPage .container > .row > [class*="col-"].overlap,
.IComPage .container-fluid > .row > [class*="col-"].overlap {
  /*@media(max-width: $screen-md) {
                margin-top: -1.25vw;
            }*/
}

@media (min-width: 991px) {
  .IComStartpage .container > .row > [class*="col-"].overlap,
  .IComStartpage .container-fluid > .row > [class*="col-"].overlap, .IComPage .container > .row > [class*="col-"].overlap,
  .IComPage .container-fluid > .row > [class*="col-"].overlap {
    margin-top: -5vw;
  }
}

@media (min-width: 1200px) {
  .IComStartpage .container > .row > [class*="col-"].overlap,
  .IComStartpage .container-fluid > .row > [class*="col-"].overlap, .IComPage .container > .row > [class*="col-"].overlap,
  .IComPage .container-fluid > .row > [class*="col-"].overlap {
    margin-top: -60px;
  }
}

.IComStartpage .rte-padding, .IComPage .rte-padding {
  padding: 5vw;
}

@media (min-width: 1200px) {
  .IComStartpage .rte-padding, .IComPage .rte-padding {
    padding: 60px;
  }
}

.IComStartpage .Hero, .IComPage .Hero {
  margin-left: -30px;
  margin-right: -30px;
  margin-bottom: 30px;
  /*@media(min-width: $screen-xl) {
            margin-left: -30px;
            margin-right: -30px;
            margin-bottom: 30px;
        }*/
}

@media (max-width: 768px) {
  .IComStartpage .Hero, .IComPage .Hero {
    margin-left: -2.5vw;
    margin-right: -2.5vw;
    margin-bottom: 2.5vw;
  }
}

.IComStartpage .Box, .IComPage .Box {
  margin-bottom: 30px;
  /*@media(max-width: $screen-md) {
            margin-bottom: 1.25vw;
        }

        @media(min-width: $screen-xl) {
            margin-bottom: 30px;
        }*/
}

.IComStartpage .rte-padding.rte-framed, .IComPage .rte-padding.rte-framed {
  margin-left: -9vw;
  margin-right: -30px;
  margin-top: -31%;
  padding-left: 14vw;
  background-color: rgba(57, 78, 71, 0.56);
  padding-top: 10vw;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .IComStartpage .rte-padding.rte-framed h1, .IComPage .rte-padding.rte-framed h1 {
    font-size: 5.8vw;
  }
}

@media (max-width: 768px) {
  .IComStartpage .rte-padding.rte-framed, .IComPage .rte-padding.rte-framed {
    margin-left: -2.5vw;
    margin-right: -2.5vw;
    margin-top: 0;
    padding: calc(2.5vw + 25px);
  }
}

@media (min-width: 1200px) {
  .IComStartpage .rte-padding.rte-framed, .IComPage .rte-padding.rte-framed {
    margin-right: -30px;
    margin-left: -108px;
    padding-left: 168px;
    padding-top: 160px;
  }
}

.IComStartpage .framed-ingress-left .rte-framed, .IComPage .framed-ingress-left .rte-framed {
  position: relative;
  z-index: 8;
  margin: -1.6vw;
  margin-right: -7vw;
  margin-left: -30px;
  margin-top: -50%;
  padding: calc(1.6vw + 60px) !important;
  padding-right: calc(7vw + 60px) !important;
  background-color: rgba(57, 78, 71, 0.56);
}

.IComCategory .container, .IComCategory .container-fluid {
  background-color: #fff;
}

@media (max-width: 768px) {
  .IComCategory .container > .row > [class*="col-"],
  .IComCategory .container-fluid > .row > [class*="col-"] {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.IComCategory .container > .row > [class*="col-"].overlap,
.IComCategory .container-fluid > .row > [class*="col-"].overlap {
  margin-top: -5vw;
  /*@media(max-width: $screen-md) {
                margin-top: -1.25vw;
            }*/
}

@media (min-width: 1200px) {
  .IComCategory .container > .row > [class*="col-"].overlap,
  .IComCategory .container-fluid > .row > [class*="col-"].overlap {
    margin-top: -60px;
  }
}

@media (max-width: 991px) {
  .IComCategory .container-fluid:not(.mobile-filter-toolbar) .breadcrumbs {
    display: none;
  }
}

@media (max-width: 1200px) {
  .IComCategory .product-container {
    padding-left: 0;
    padding-right: 0;
  }
}

.IComCategory .product-container.breadcrumbs {
  padding-bottom: 2.5vw;
  padding-top: 1vw;
}

@media (max-width: 768px) {
  .IComCategory .product-container.breadcrumbs {
    padding-bottom: 1.25vw;
    padding-top: 0;
  }
}

@media (min-width: 1200px) {
  .IComCategory .product-container.breadcrumbs {
    padding-bottom: 30px;
    padding-top: 15px;
  }
}

.IComCategory .product-container ul.breadcrumbs {
  margin-top: 9px;
  /*line-height: 34px;*/
}

.IComCategory .product-container .facet {
  width: 50px;
  display: inline-block;
}

@media (max-width: 768px) {
  .IComCategory .product-container .facet {
    width: 50%;
    padding-left: 1.25vw;
    padding-right: 1.25vw;
    padding-bottom: 1.25vw;
  }
}

.IComCategory .grid-card {
  font-size: 1rem;
  line-height: 1rem;
  float: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.IComCategory .grid-card .component-outer {
  position: relative;
}

.IComCategory .grid-card .component-outer .component-card {
  overflow: hidden;
  /*position: absolute;*/
  top: 0px;
  padding-left: calc(1.25vw);
  padding-right: calc(1.25vw);
  bottom: 3px;
}

@media (max-width: 768px) {
  .IComCategory .grid-card .component-outer .component-card {
    top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    bottom: 2.5vw;
    margin-left: 5px;
    margin-right: 5px;
  }
}

@media (min-width: 1200px) {
  .IComCategory .grid-card .component-outer .component-card {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.IComCategory .grid-card .product-outer {
  position: relative;
  /*padding-top: 220%;*/
}

.IComCategory .grid-card .product-outer.large {
  /*padding-top: calc(220% - 2px);*/
}

.IComCategory .grid-card .product-outer.large .product-card {
  bottom: 50px;
  overflow: hidden;
}

.IComCategory .grid-card .product-outer.large .product-card .product-background {
  z-index: 3;
  position: absolute;
  bottom: 0;
  width: 0px;
  border-width: 800px;
  border-color: transparent transparent #f5ebd5 transparent;
  border-style: solid;
}

.IComCategory .grid-card .product-outer .product-card {
  position: relative;
  top: 0px;
  bottom: 0px;
  padding-left: 1.25vw;
  padding-right: 1.25vw;
  margin-bottom: 2.5vw;
}

@media (min-width: 768px) {
  .IComCategory .grid-card .product-outer .product-card {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
  }
}

.IComCategory .grid-card .product-outer .product-card .product-card-ad {
  display: block;
  position: absolute;
  z-index: 5;
  top: -15px;
  right: -15px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #d8aeae;
  color: #ffffff;
  font-size: 14px;
  line-height: 60px;
  text-align: center;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
}

@media (max-width: 768px) {
  .IComCategory .grid-card .product-outer .product-card .product-card-ad {
    top: -8px;
    right: -4px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #d8aeae;
    color: #ffffff;
    font-size: 12px;
    line-height: 50px;
  }
}

.IComCategory .grid-card .product-outer .product-card .product-card-inner img {
  width: 100%;
}

.IComCategory .grid-card .product-outer .product-card .product-card-inner-large {
  position: absolute;
  top: -2.5vw;
  left: -2.5vw;
  right: -2.5vw;
  z-index: 5;
}

@media (min-width: 1200px) {
  .IComCategory .grid-card .product-outer .product-card .product-card-inner-large {
    top: 30px;
    left: -30px;
    right: -30px;
  }
}

.IComCategory .grid-card .product-outer .product-card .product-card-inner-large .product-card-bottom {
  padding-left: 60px;
  width: 300px;
  padding-right: 60px;
}

.IComCategory .grid-card .product-outer .product-card .product-card-inner-large .product-card-price {
  margin-top: 16px;
  position: inherit;
}

.IComCategory .grid-card .product-outer .product-card-bottom {
  padding-top: 15px;
  /*font-size: 13px;*/
  letter-spacing: 0.0em;
  line-height: 1rem;
}

.IComCategory .grid-card .product-outer .product-card-bottom h4 {
  /*font-size: 20px;*/
  margin-bottom: 5px;
  text-transform: capitalize;
}

@media (max-width: 576px) {
  .IComCategory .grid-card .product-outer .product-card-bottom {
    padding-top: 5px;
    /*font-size: 11px;*/
  }
  .IComCategory .grid-card .product-outer .product-card-bottom h4 {
    margin-bottom: 5px;
  }
}

.IComCategory .grid-card .product-outer .product-card-bottom .product-button-purchase {
  font-family: "LL Akkurat Regular Web", Helvetica, Arial, sans-serif;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #000;
  font-size: 1rem;
  border-radius: 36px;
  line-height: 3rem;
  padding: 0px 10px;
  padding-right: 48px;
  width: 82px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  border: none;
  font-size: 10px;
  border-radius: 36px;
  border: 0;
  line-height: 22px;
  padding: 0px 10px;
  padding-right: 23px;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.1s 0.1s;
  /*@media (hover: hover) {
                        &:hover {
                            background-color: $cta-green;
                            border: 1px solid $cta-green;
                            color: #fff;

                            > .bag {
                                color: #fff;
                            }
                        }
                    }*/
}

.IComCategory .grid-card .product-outer .product-card-bottom .product-button-purchase > .bag {
  color: #fff;
  font-size: 10px;
  margin-top: 0px;
  position: absolute;
  top: 5px;
  right: 10px;
  transition: all 0.1s 0.1s;
}

.IComCategory .grid-card .product-outer .product-card-price {
  /*font-family: $font-family-headings;*/
  position: relative;
  left: 0;
  right: 0;
  font-size: 1.2rem;
  height: 27px;
  bottom: 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 20%, white 100%);
}

.IComCategory .grid-card .product-outer .product-card-price .product-card-price-value {
  bottom: 0;
  line-height: 27px;
}

.IComCategory .grid-card .product-outer .product-card-price .product-card-price-currency {
  font-size: 0.6rem;
  /*line-height: 60px;*/
  position: relative;
  bottom: 7px;
  margin-left: 2px;
  letter-spacing: 0;
  text-decoration: none;
}

.IComCategory .rte-padding {
  padding: 5vw;
}

@media (min-width: 1200px) {
  .IComCategory .rte-padding {
    padding: 60px;
  }
}

.IComCategory .Hero {
  margin-left: -30px;
  margin-right: -30px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .IComCategory .Hero {
    margin-left: -1.25vw;
    margin-right: -1.25vw;
    margin-bottom: 2.5vw;
  }
}

.IComCategory .Box {
  margin-bottom: 2.5vw;
}

@media (max-width: 768px) {
  .IComCategory .Box {
    margin-bottom: 1.25vw;
    /*margin-left: -1.25vw;
            margin-right: -1.25vw;*/
    /*margin-left: calc( -2.5vw - 5px);
            margin-right: calc( -2.5vw - 5px);*/
  }
}

@media (min-width: 1200px) {
  .IComCategory .Box {
    margin-bottom: 30px;
  }
}

ul.facet-rows {
  list-style: none;
  padding-left: 0;
}

ul.facet-rows a {
  cursor: pointer;
  color: #000;
  text-decoration: none;
}

.facet-group .facet-header {
  padding: 10px 0;
  font-weight: bold;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.5;
}

.facet-group .facet-header::after {
  content: url(/dist/img/arrow-left.svg);
  transform: rotate(90deg);
  width: 16px;
  height: 16px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  position: absolute;
  right: 2vw;
}

.facet-group .open .facet-header::after {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.facet-group ul.facet-rows {
  padding: 10px 0px;
  margin: 0;
  list-style: none;
  padding-right: 2vw;
}

.facet-group ul.facet-rows.no-header {
  padding: 10px 0px 0px;
}

@media (max-width: 991px) {
  .facet-group ul.facet-rows {
    padding-right: 0;
  }
}

.facet-group ul.facet-rows > li {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  /*margin-bottom: 2px;*/
  position: relative;
}

.facet-group ul.facet-rows > li input[type="checkbox"] {
  /*visibility:hidden;*/
  display: none;
}

.facet-group ul.facet-rows > li.selected:after {
  cursor: pointer;
  position: absolute;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: '';
  border-width: 0 0 2px 2px !important;
  height: 5px;
  width: 8px;
  border: solid #000;
  margin: 7px 0 0 4px;
  left: 0;
  top: 2px;
}

@media (max-width: 991px) {
  .facet-group ul.facet-rows > li.selected:after {
    top: 0;
  }
}

.facet-group ul.facet-rows > li.greyed {
  color: #ccc;
}

.facet-group ul.facet-rows > li label {
  margin: 0;
  cursor: pointer;
  display: block;
}

.facet-group ul.facet-rows > li label:before {
  cursor: pointer;
  content: '';
  top: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  display: inline-block;
  /*margin-left: -27px;*/
  margin-right: 7px;
  position: relative;
}

.facet-group ul.facet-rows.size-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px 3px;
}

.facet-group ul.facet-rows.size-picker > li {
  color: #000;
  text-decoration: none;
  background-color: #fff;
  font-size: 1.1rem;
  border-radius: 7px;
  line-height: 2.5rem;
  padding: 0;
  display: inline-block;
  position: relative;
  cursor: pointer;
  border: 1px solid #ccc;
  /*width: 32%;*/
  margin-right: 2px;
  text-align: center;
}

@media (max-width: 1250px) and (min-width: 991px) {
  .facet-group ul.facet-rows.size-picker > li {
    width: 45%;
  }
}

.facet-group ul.facet-rows.size-picker > li input {
  opacity: 0;
}

.facet-group ul.facet-rows.size-picker > li label::before {
  display: none;
}

.facet-group ul.facet-rows.size-picker > li:hover, .facet-group ul.facet-rows.size-picker > li.selected {
  background-color: #000;
  color: #fff;
}

.facet-group ul.facet-rows.color-picker {
  /*padding-right: 0vw;*/
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px 3px;
}

.facet-group ul.facet-rows.color-picker > li {
  /*width: 33%;*/
  display: inline-block;
  text-align: center;
}

.facet-group ul.facet-rows.color-picker > li input {
  opacity: 0;
}

.facet-group ul.facet-rows.color-picker > li label {
  padding: 3px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.facet-group ul.facet-rows.color-picker > li label::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.2s ease;
  font-size: 12px;
  width: 20px;
  line-height: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.15);
}

.facet-group ul.facet-rows.color-picker > li label::before {
  cursor: pointer;
  content: '';
  top: 2px;
  width: 16px;
  height: 16px;
  border: 0;
  border-radius: 2px;
  display: inline-block;
  /* margin-left: -27px; */
  margin-right: 7px;
  position: relative;
}

.facet-group ul.facet-rows.color-picker > li.selected::after {
  cursor: pointer;
  position: absolute;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: '';
  border-width: 0 0 2px 2px !important;
  height: 7px;
  width: 12px;
  border: solid #ccc;
  margin: 7px 0 0 4px;
  margin-left: -5px;
  left: 50%;
  top: 3px;
}

.load-more-button {
  font-family: "LL Akkurat Regular Web", Helvetica, Arial, sans-serif;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  background-color: transparent;
  font-size: 1rem;
  border-radius: 36px;
  line-height: 3rem;
  padding: 0px 10px;
  max-width: 220px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  border: 1px solid #000;
  margin-top: 20px;
  width: 100%;
  padding: 0;
}

@media (min-width: 1200px) {
  .load-more-button {
    font-size: 14px;
    line-height: 42px;
    padding: 0px 26px;
  }
}

.sidebar {
  will-change: min-height;
}

.sidebar__inner {
  transform: translate(0, 0);
  /* For browsers don't support translate3d. */
  transform: translate3d(0, 0, 0);
  will-change: position, transform;
}

.new-price {
  color: #ff0000;
}

.old-price {
  display: inline-block;
  position: relative;
  color: #808080;
  font-size: 0.8rem;
  margin-left: 3px;
  line-height: 0.8rem;
}

.old-price .product-card-price-currency {
  font-size: 0.4rem !important;
  bottom: 5px !important;
  position: relative;
}

.old-price:after {
  position: absolute;
  left: 0;
  top: 30%;
  height: 1px;
  background: #808080;
  content: "";
  width: 99%;
  display: block;
  -webkit-transform: rotate(-13deg);
  -moz-transform: rotate(-13deg);
  -o-transform: rotate(-13deg);
  -ms-transform: rotate(-13deg);
  transform: rotate(-13deg);
}

.product-dialog {
  -webkit-overflow-scrolling: touch;
  display: block;
  padding: 0;
  /*.image-gallery-image {
        padding-top: 150%;
        position: relative;

        > img {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }
    }*/
}

@media (max-width: 768px) {
  .product-dialog {
    padding: 0;
  }
}

.product-dialog .product-dialog-modal {
  padding: 0;
  max-width: none;
  background: unset;
  box-shadow: unset;
}

.product-dialog .product-dialog-closeIcon {
  display: none;
}

.product-dialog .product-dialog-inner {
  position: relative;
}

.product-dialog .product-dialog-inner .product-column {
  padding-left: 60px;
  padding-right: 60px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .product-dialog .product-dialog-inner .product-column {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.product-dialog .product-dialog-inner .product-column.product-image {
  padding-right: 0;
}

.product-dialog .product-dialog-inner .product-column.hidden {
  visibility: hidden;
}

.product-dialog .product-dialog-inner .product-details {
  padding-top: 60px;
  padding-left: 0px;
  padding-right: 0px;
  /*@media(min-width: $screen-xl) {
                padding-left: 60px;
                padding-right: 60px;
            }*/
}

@media (max-width: 768px) {
  .product-dialog .product-dialog-inner .product-details {
    margin-left: -1.25vw;
    margin-right: -1.25vw;
    padding-top: 0px;
  }
}

.product-dialog .product-dialog-inner .product-details .product-details-main {
  position: relative;
  padding-left: 60px;
  padding-right: 60px;
  background: #fff;
}

@media (max-width: 768px) {
  .product-dialog .product-dialog-inner .product-details .product-details-main {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0px;
  }
}

.product-dialog .product-dialog-inner .product-details .product-details-main .close {
  position: absolute;
  top: 36px;
  right: 50px;
  font-size: 29px;
  color: #000;
  z-index: 999;
}

.product-dialog .product-dialog-inner .product-details .product-details-main .close:after {
  content: '';
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: -10px;
  right: -10px;
}

@media (max-width: 768px) {
  .product-dialog .product-dialog-inner .product-details .product-details-main .close {
    position: fixed;
    top: 10px;
    right: 17px;
  }
  .product-dialog .product-dialog-inner .product-details .product-details-main .close:after {
    content: '';
    position: fixed;
    top: 0;
    bottom: auto;
    left: auto;
    right: 0;
    width: 67px;
    height: 65px;
  }
}

.product-dialog .product-dialog-inner .product-details .product-details-main .product-info {
  position: relative;
}

.product-dialog .product-dialog-inner .product-details .product-details-main .product-info .product-info-inner {
  position: absolute;
  bottom: 100px;
  left: 60px;
  right: 60px;
}

@media (max-width: 768px) {
  .product-dialog .product-dialog-inner .product-details .product-details-main .product-info .product-info-inner {
    position: static;
  }
}

.product-dialog .product-dialog-inner .product-details .product-details-main .product-info .product-info-inner h2.product-name {
  text-transform: capitalize;
  /*font-size: 3.7rem;*/
}

.product-dialog .product-dialog-inner .product-details .product-details-main .product-info .product-info-inner p.product-shortdescription {
  font-size: 1.2rem;
}

.product-dialog .product-dialog-inner .product-details .product-details-main .product-info .product-info-inner .product-longdescription {
  font-size: 1rem;
}

.product-dialog .product-dialog-inner .product-details .product-details-main .product-info .product-price {
  display: block;
  font-size: 2rem;
  font-family: "LL Akkurat Bold Web", Helvetica, Arial, sans-serif;
  margin-bottom: 18px;
}

.product-dialog .product-dialog-inner .product-details .product-details-main .product-info .product-price .product-price-currency {
  font-size: 0.8rem;
  position: relative;
  bottom: 11px;
  margin-left: 2px;
  letter-spacing: 0;
  text-decoration: none;
}

.product-dialog .product-dialog-inner .product-details .product-details-spec {
  padding-left: 60px;
  padding-right: 60px;
  background: #eee;
}

@media (max-width: 768px) {
  .product-dialog .product-dialog-inner .product-details .product-details-spec {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0px;
  }
}

.product-dialog .product-dialog-inner .product-details .product-details-spec .product-spec-column {
  padding-top: 60px;
}

.product-dialog .product-dialog-inner .product-details .product-details-spec .product-details-property-row {
  border-bottom: 1px solid #CCC;
  line-height: 32px;
}

.product-dialog .product-dialog-inner .product-details .product-details-spec .product-details-property-row [class*="col-"] {
  padding-left: 0px;
  padding-right: 0px;
}

.product-dialog .product-dialog-inner .product-details .product-details-spec .product-details-property-row .property-key {
  font-weight: bold;
}

.product-dialog .product-dialog-inner .product-details .product-details-spec .product-properties-column {
  padding-top: 60px;
}

.product-dialog .product-dialog-inner .product-details .product-details-spec h3.product-spec-header {
  font-family: "LL Akkurat Bold Web", Helvetica, Arial, sans-serif;
  font-size: 1.8rem;
}

.product-freetext-input {
  margin-bottom: 18px;
}

.product-freetext-input input {
  width: 100%;
}

.no-modal button.close {
  display: none;
}

.product-button-purchase {
  font-family: "LL Akkurat Regular Web", Helvetica, Arial, sans-serif;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #000;
  font-size: 1rem;
  border-radius: 36px;
  line-height: 3rem;
  padding: 0px 10px;
  padding-right: 48px;
  width: 220px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  border: none;
}

@media (min-width: 1200px) {
  .product-button-purchase {
    font-size: 14px;
    border-radius: 36px;
    line-height: 42px;
    padding: 0px 26px;
    padding-right: 66px;
  }
}

.product-button-purchase:hover {
  background: #333;
}

.product-button-purchase:disabled {
  visibility: hidden;
}

.product-button-purchase > .added {
  color: #4fb74f;
  font-size: 28px;
  margin-top: 0px;
  position: absolute;
  top: 6px;
  right: 8px;
}

.product-button-purchase > .bag {
  color: #ffffff;
  font-size: 18px;
  margin-top: 0px;
  position: absolute;
  top: 9px;
  right: 15px;
}

.product-button-purchase .count {
  right: -9px;
  transform: scale(0);
  transition: transform 0.2s ease;
}

.product-button-purchase .count.visible {
  transform: scale(1);
}

.breadcrumb-container {
  padding-left: 75px;
  padding-right: 75px;
}

.facet-pill, .filter-pill {
  font-family: "LL Akkurat Regular Web", Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  line-height: 0.6rem;
  color: #000;
  border: 1px solid #000;
  border-radius: 16px;
  padding: 6px 8px;
  padding-left: 22px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
}

.facet-pill {
  float: left;
}

.facet-pill:before {
  content: "X";
  left: 10px;
  position: absolute;
  font-size: 1rem;
}

.filter-pill {
  padding-left: 8px;
  padding-right: 50px;
}

.filter-pill:after {
  content: url(/dist/img/arrow_black.png?width=20);
  right: 12px;
  top: 5px;
  width: 21.6px;
  height: inherit;
  position: absolute;
}

.filter-icon {
  display: inline-block;
  cursor: pointer;
  margin-left: 6px;
  font-size: 15px;
  padding: 4px 23px;
  border-radius: 38px;
  border: 1px solid gray;
  line-height: 1.8;
}

.IComCategory .filter-icon {
  display: block;
  cursor: pointer;
  margin: 10px 0;
  margin-left: 1.25vw;
  font-size: 15px;
  padding: 4px 23px;
  border-radius: 0px;
  border: 1px solid gray;
  line-height: 1.8;
  text-align: center;
}

.selected-facet-container {
  display: inline-block;
  padding-top: 3px;
}

.show-products {
  position: fixed;
  width: 100%;
  bottom: 0;
  background: #fff;
  margin: 0 -15px;
  height: 57px;
  padding-top: 5px;
  padding-right: 15px;
  padding-bottom: 15px;
}

.show-products .filter-icon {
  float: right;
}

.sort-container {
  text-align: right;
  cursor: pointer;
}

.sort-container .current-sort {
  font-weight: 600;
}

.sort-container .sortOptionsOutside {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999998;
}

.sort-container .sort-options {
  position: absolute;
  z-index: 999999;
  right: 10px;
  top: 30px;
  border: 1px solid #bdbbbb;
  border-radius: 3px;
  background: #ffffff;
  text-align: left;
  padding-right: 10px;
  padding-left: 10px;
  overflow: auto;
}

.sort-container .arrow-down {
  margin-left: 10px;
  display: inline-block;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

.sort-container .arrow-down.open {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.IComCheckout .container, .IComCheckout .container-fluid {
  background-color: #fff;
}

@media (max-width: 768px) {
  .IComCheckout .container > .row > [class*="col-"] {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.IComCheckout .checkout {
  margin-left: 7.5vw;
  margin-right: 7.5vw;
}

@media (max-width: 768px) {
  .IComCheckout .checkout {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 1200px) {
  .IComCheckout .checkout {
    margin-left: 90px;
    margin-right: 90px;
  }
}

.IComCheckout .checkout .cart-inner .cart-header {
  background: none;
}

.IComCheckout .checkout .cart-inner .cart-footer {
  margin-left: -15px;
  margin-right: -15px;
}

.rmd-modal-dialog .rmd-overlay {
  background: rgba(0, 0, 0, 0.5);
  /*display: flex;
        align-items: flex-start;*/
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1033;
  padding: 0;
}

.rmd-modal-dialog .rmd-overlay .rmd-modal {
  max-width: 1100px;
  position: relative;
  padding: 0;
  background: #ffffff;
  background-clip: padding-box;
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.25);
}

.rmd-modal-dialog .rmd-overlay.product-dialog {
  overflow-y: auto;
  padding: 1.2rem;
}

.rmd-modal-dialog .rmd-overlay.product-dialog .rmd-modal {
  padding: 1.2rem;
}

.rmd-modal-dialog .rmd-modalCenter {
  margin: auto;
}

.rmd-modal-dialog .rmd-closeButton {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  padding: 0;
  background-color: transparent;
  display: flex;
}

.rmd-modal-dialog .rmd-transitionEnter {
  opacity: 0.01;
}

.rmd-modal-dialog .rmd-transitionEnterActive {
  opacity: 1;
  transition: opacity 500ms cubic-bezier(0.23, 1, 0.32, 1);
}

.rmd-modal-dialog .rmd-transitionExit {
  opacity: 1;
}

.rmd-modal-dialog .rmd-transitionExitActive {
  opacity: 0.01;
  transition: opacity 500ms cubic-bezier(0.23, 1, 0.32, 1);
}

.market-overlay {
  background: rgba(0, 0, 0, 0.75);
  /*display: flex;
        align-items: flex-start;*/
  position: fixed;
  top: 69px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 20;
  /*padding: 1.2rem;*/
}

nav .market-selector {
  position: relative;
  padding-left: 1.8rem;
}

nav .market-selector img {
  height: 1.3rem;
  position: absolute;
  left: 0;
  top: 0.4rem;
}

.market-selector-menu {
  position: relative;
  padding: 0px;
  color: #000;
  /*display: inline-flex;*/
  vertical-align: middle;
  align-items: center;
}

.market-selector-menu .market-current {
  cursor: pointer;
  position: relative;
  padding-left: 1.8rem;
  line-height: 24px;
  /*&:hover {
            color: #000;
        }*/
}

.market-selector-menu .market-current img {
  height: 14px;
  margin-right: 5px;
  top: 5px;
  left: 0;
}

.market-selector-menu.mobile-navigation {
  display: none;
  padding: 7px 20px;
}

@media (max-width: 991px) {
  .market-selector-menu.mobile-navigation {
    display: block;
  }
}

.market-selector-menu.mobile-navigation .market-current {
  padding: 0.5rem 0 0.5rem 0;
  font-weight: bold;
  color: #000;
}

.market-selector-menu.mobile-navigation .market-current:hover {
  color: #009fe3;
}

.market-selector-menu.mobile-navigation .market-current img {
  top: 0.7rem;
}

.market-selector-menu.mobile-navigation .market-selector-list {
  position: static;
  background: none;
  border: none;
  padding: 0;
}

.market-selector-menu.mobile-navigation .market-selector-list ul li {
  font-size: 1rem;
}

.market-selector-menu.mobile-navigation .marketSelectorClose {
  display: none;
}

.market-selector-menu .marketSelectorClose {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999998;
}

.market-selector-menu .market-selector-list {
  position: absolute;
  z-index: 999999;
  right: 0px;
  top: 29px;
  border: 1px solid #e8e8e8;
  border-radius: 7px;
  color: #000;
  background: #ffffff;
  text-align: left;
  padding-right: 10px;
  padding-left: 10px;
  overflow: auto;
}

.market-selector-menu .market-selector-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.market-selector-menu .market-selector-list ul li {
  font-size: 0.85rem;
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  background: none;
}

.market-selector-menu .market-selector-list ul li .country-flag img {
  height: 1.3rem;
  position: absolute;
  left: 0;
  top: 0.7rem;
}

.market-selector-menu .market-selector-list ul li .market-divider {
  padding-left: 10px;
  padding-right: 5px;
}

.market-selector-menu .market-selector-list ul li a {
  padding: 0 5px;
}

.market-dialog {
  -webkit-overflow-scrolling: touch;
  display: block;
  padding: 0;
  z-index: 1050;
  top: 0px;
}

@media (max-width: 768px) {
  .market-dialog {
    padding: 0;
  }
}

.market-dialog .market-dialog-modal {
  margin: 0 auto;
  background: unset;
  box-shadow: unset;
  background: #fff;
}

.market-dialog .market-dialog-closeIcon {
  display: none;
}

.market-dialog .market-dialog-inner {
  position: relative;
  padding: 40px 0px;
  max-width: 1440px;
}

.market-dialog .market-dialog-inner .close {
  position: absolute;
  top: 36px;
  right: 50px;
  font-size: 29px;
  color: #000;
  z-index: 999;
}

.market-dialog .market-dialog-inner .choose-country {
  text-align: center;
}

.market-dialog .market-dialog-inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.market-dialog .market-dialog-inner ul li {
  font-size: 1.4rem;
  padding: 0.5rem 0 0.5rem 3rem;
  position: relative;
}

.market-dialog .market-dialog-inner ul li .country-flag img {
  height: 1.4rem;
  position: absolute;
  left: 0;
  top: 0.7rem;
}

.market-dialog .market-dialog-inner ul li a {
  padding: 0 3px;
}

.no-modal button.close {
  display: none;
}

.grid-products .product-card {
  margin-bottom: 30px;
}

.grid-products .product-card-bottom {
  padding-top: 15px;
  /*font-size: 13px;*/
  letter-spacing: 0.0em;
  line-height: 1rem;
}

.grid-products .product-card-bottom h4 {
  /*font-size: 20px;*/
  margin-bottom: 5px;
  text-transform: capitalize;
}

@media (max-width: 576px) {
  .grid-products .product-card-bottom {
    padding-top: 5px;
    /*font-size: 11px;*/
  }
  .grid-products .product-card-bottom h4 {
    margin-bottom: 5px;
  }
}

.grid-products .product-card-bottom .product-button-purchase {
  font-family: "LL Akkurat Regular Web", Helvetica, Arial, sans-serif;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #000;
  font-size: 1rem;
  border-radius: 36px;
  line-height: 3rem;
  padding: 0px 10px;
  padding-right: 48px;
  width: 82px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  border: none;
  font-size: 10px;
  border-radius: 36px;
  border: 0;
  line-height: 22px;
  padding: 0px 10px;
  padding-right: 23px;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.1s 0.1s;
  /*@media (hover: hover) {
                        &:hover {
                            background-color: $cta-green;
                            border: 1px solid $cta-green;
                            color: #fff;

                            > .bag {
                                color: #fff;
                            }
                        }
                    }*/
}

.grid-products .product-card-bottom .product-button-purchase > .bag {
  color: #fff;
  font-size: 10px;
  margin-top: 0px;
  position: absolute;
  top: 5px;
  right: 10px;
  transition: all 0.1s 0.1s;
}

.grid-products .product-card-bottom .product-card-price {
  /*font-family: $font-family-headings;*/
  position: relative;
  left: 0;
  right: 0;
  font-size: 1.2rem;
  height: 27px;
  bottom: 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 20%, white 100%);
}

.grid-products .product-card-bottom .product-card-price .product-card-price-value {
  bottom: 0;
  line-height: 27px;
}

.grid-products .product-card-bottom .product-card-price .product-card-price-currency {
  font-size: 0.6rem;
  /*line-height: 60px;*/
  position: relative;
  bottom: 7px;
  margin-left: 2px;
  letter-spacing: 0;
  text-decoration: none;
}

.IComDealers .Hero {
  margin-left: -30px;
  margin-right: -30px;
}

.dealers-container {
  background: #fff;
  padding-top: 20px;
}

.dealers-container .row:not(.grid-row) {
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}

.dealers-container .dealer-card-container {
  margin-bottom: 50px;
}

.dealers-container .dealer-card {
  background: white;
  height: 100%;
  -webkit-box-shadow: 0 0 7px -2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 7px -2px rgba(0, 0, 0, 0.2);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  -o-transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease,-webkit-box-shadow 0.2s ease;
  display: block;
}

.dealers-container .dealer-card-inner {
  padding: 30px 0;
  position: relative;
  text-align: center;
}

.dealers-container .dealer-logo {
  height: 130px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  max-width: 180px;
  margin: 0 auto;
}

.dealers-container h4 {
  font-size: 20px;
  line-height: 20px;
}

.dealers-container .dealer-info {
  font-size: 11px;
  color: #999;
  line-height: 14px;
  padding: 0 0 5px;
  text-transform: uppercase;
}

.dealers-container .arrow-right:after {
  content: ">";
  transition: margin 0.25s ease;
  margin-left: 5px;
  top: 0px;
  position: relative;
}

.dealers-container .link-small {
  font-size: 12px;
  line-height: 14px;
  text-decoration: none;
}

.dealers-container .dealers-country-dropdown {
  width: 100%;
  outline: none !important;
  padding-right: 15px;
  padding-left: 15px;
}

.dealers-container .dealers-country-dropdown div {
  outline: none !important;
  box-shadow: none;
}

.dealers-container.filter-container {
  min-height: 116px;
  padding-top: 20px;
}

.dealers-container .city-row {
  margin-top: 20px;
}

.dealers-container .country-header {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 20px;
}

.dealers-container .country-header h3.AkkuratHeading {
  color: #000;
}

.dealers-container .dealer-list {
  padding: 0 15px;
}

.dealers-container .dealer-list-item-container .dealer-list-item {
  padding: 10px;
}

.dealers-container .dealer-list-item-container .dealer-link {
  color: #333;
  text-decoration: none;
}

@media (hover: hover) {
  .dealers-container .dealer-list-item-container .dealer-link:hover {
    color: #B5D6F0;
    text-decoration: none;
  }
}

.dealers-container .city-title {
  font-weight: 600;
}

.filter-container .row:not(.grid-row) {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*!
  Ionicons, v2.0.0
  Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
  https://twitter.com/benjsperry  https://twitter.com/ionicframework
  MIT License: https://github.com/driftyco/ionicons

  Android-style icons originally built by Google’s
  Material Design Icons: https://github.com/google/material-design-icons
  used under CC BY http://creativecommons.org/licenses/by/4.0/
  Modified icons to fit ionicon’s grid from original.
*/
@font-face {
  font-family: "Ionicons";
  src: url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/fonts/ionicons.eot?v=2.0.0");
  src: url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"), url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/fonts/ionicons.ttf?v=2.0.0") format("truetype"), url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/fonts/ionicons.woff?v=2.0.0") format("woff"), url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg");
  font-weight: normal;
  font-style: normal;
}

.image-gallery-fullscreen-button::before,
.image-gallery-play-button::before,
.image-gallery-left-nav::before,
.image-gallery-right-nav::before {
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.image-gallery {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media (max-width: 768px) {
  .image-gallery {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.image-gallery.fullscreen-modal {
  background: #000;
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 5;
}

.image-gallery.fullscreen-modal .image-gallery-content {
  top: 50%;
  transform: translateY(-50%);
}

.image-gallery-content {
  position: relative;
  line-height: 0;
  top: 0;
}

.image-gallery-content.fullscreen {
  background: #000;
}

.image-gallery-content.fullscreen .image-gallery-slide {
  background: #000;
}

.image-gallery-slide-wrapper {
  position: relative;
}

.image-gallery-slide-wrapper.left, .image-gallery-slide-wrapper.right {
  display: inline-block;
  width: calc(100% - 113px);
}

@media (max-width: 768px) {
  .image-gallery-slide-wrapper.left, .image-gallery-slide-wrapper.right {
    width: calc(100% - 84px);
  }
}

.image-gallery-slide-wrapper.image-gallery-rtl {
  direction: rtl;
}

.image-gallery-fullscreen-button,
.image-gallery-play-button,
.image-gallery-left-nav,
.image-gallery-right-nav {
  appearance: none;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  outline: none;
  position: absolute;
  z-index: 4;
}

.image-gallery-fullscreen-button::before,
.image-gallery-play-button::before,
.image-gallery-left-nav::before,
.image-gallery-right-nav::before {
  color: #fff;
  line-height: .7;
  text-shadow: 0 2px 2px #1a1919;
  transition: color .2s ease-out;
}

.image-gallery-fullscreen-button:hover::before,
.image-gallery-play-button:hover::before,
.image-gallery-left-nav:hover::before,
.image-gallery-right-nav:hover::before {
  color: #337ab7;
}

@media (max-width: 768px) {
  .image-gallery-fullscreen-button:hover::before,
  .image-gallery-play-button:hover::before,
  .image-gallery-left-nav:hover::before,
  .image-gallery-right-nav:hover::before {
    color: #fff;
  }
}

.image-gallery-fullscreen-button,
.image-gallery-play-button {
  bottom: 0;
}

.image-gallery-fullscreen-button::before,
.image-gallery-play-button::before {
  font-size: 2.7em;
  padding: 15px 20px;
  text-shadow: 0 1px 1px #1a1919;
}

@media (max-width: 768px) {
  .image-gallery-fullscreen-button::before,
  .image-gallery-play-button::before {
    font-size: 2.4em;
  }
}

@media (max-width: 480px) {
  .image-gallery-fullscreen-button::before,
  .image-gallery-play-button::before {
    font-size: 2em;
  }
}

.image-gallery-fullscreen-button:hover::before,
.image-gallery-play-button:hover::before {
  color: #fff;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .image-gallery-fullscreen-button:hover::before,
  .image-gallery-play-button:hover::before {
    transform: none;
  }
}

.image-gallery-fullscreen-button {
  right: 0;
}

.image-gallery-fullscreen-button::before {
  content: "";
}

.image-gallery-fullscreen-button.active::before {
  content: "";
}

.image-gallery-fullscreen-button.active:hover::before {
  transform: scale(0.9);
}

.image-gallery-play-button {
  left: 0;
}

.image-gallery-play-button::before {
  content: "";
}

.image-gallery-play-button.active::before {
  content: "";
}

.image-gallery-left-nav,
.image-gallery-right-nav {
  color: #fff;
  font-size: 5em;
  padding: 50px 15px;
  top: 50%;
  transform: translateY(-50%);
}

.image-gallery-left-nav[disabled],
.image-gallery-right-nav[disabled] {
  cursor: disabled;
  opacity: .6;
  pointer-events: none;
}

@media (max-width: 768px) {
  .image-gallery-left-nav,
  .image-gallery-right-nav {
    font-size: 3.4em;
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .image-gallery-left-nav,
  .image-gallery-right-nav {
    font-size: 2.4em;
    padding: 0 15px;
  }
}

.image-gallery-left-nav {
  left: 0;
}

.image-gallery-left-nav::before {
  content: "";
}

.image-gallery-right-nav {
  right: 0;
}

.image-gallery-right-nav::before {
  content: "";
}

.image-gallery-slides {
  line-height: 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.image-gallery-slide {
  background: #fff;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.image-gallery-slide.center {
  position: relative;
}

.image-gallery-slide img {
  width: 100%;
}

.image-gallery-slide .image-gallery-description {
  background: rgba(0, 0, 0, 0.4);
  bottom: 70px;
  color: #fff;
  left: 0;
  line-height: 1;
  padding: 10px 20px;
  position: absolute;
  white-space: normal;
}

@media (max-width: 768px) {
  .image-gallery-slide .image-gallery-description {
    bottom: 45px;
    font-size: .8em;
    padding: 8px 15px;
  }
}

.image-gallery-bullets {
  bottom: 20px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 80%;
  z-index: 4;
}

.image-gallery-bullets .image-gallery-bullets-container {
  margin: 0;
  padding: 0;
  text-align: center;
}

.image-gallery-bullets .image-gallery-bullet {
  appearance: none;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 0 #1a1919;
  cursor: pointer;
  display: inline-block;
  margin: 0 5px;
  outline: none;
  padding: 5px;
}

@media (max-width: 768px) {
  .image-gallery-bullets .image-gallery-bullet {
    margin: 0 3px;
    padding: 3px;
  }
}

@media (max-width: 480px) {
  .image-gallery-bullets .image-gallery-bullet {
    padding: 2.7px;
  }
}

.image-gallery-bullets .image-gallery-bullet.active {
  background: #fff;
}

.image-gallery-thumbnails-wrapper {
  position: relative;
  height: 100px;
}

@media (max-width: 768px) {
  .image-gallery-thumbnails-wrapper {
    display: none;
  }
}

.image-gallery-thumbnails-wrapper.thumbnails-wrapper-rtl {
  direction: rtl;
}

.image-gallery-thumbnails-wrapper.left, .image-gallery-thumbnails-wrapper.right {
  display: inline-block;
  vertical-align: top;
  width: 108px;
}

@media (max-width: 768px) {
  .image-gallery-thumbnails-wrapper.left, .image-gallery-thumbnails-wrapper.right {
    width: 81px;
  }
}

.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails, .image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails {
  height: 100%;
  width: 100%;
  left: 0;
  padding: 0;
  position: absolute;
  top: 0;
}

.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails .image-gallery-thumbnail, .image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails .image-gallery-thumbnail {
  display: block;
  margin-right: 0;
  padding: 0;
}

.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails .image-gallery-thumbnail + .image-gallery-thumbnail, .image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails .image-gallery-thumbnail + .image-gallery-thumbnail {
  margin-left: 0;
}

.image-gallery-thumbnails-wrapper.left {
  margin-right: 5px;
}

@media (max-width: 768px) {
  .image-gallery-thumbnails-wrapper.left {
    margin-right: 3px;
  }
}

.image-gallery-thumbnails-wrapper.right {
  margin-left: 5px;
}

@media (max-width: 768px) {
  .image-gallery-thumbnails-wrapper.right {
    margin-left: 3px;
  }
}

.image-gallery-thumbnails {
  overflow: hidden;
  padding: 5px 0;
}

@media (max-width: 768px) {
  .image-gallery-thumbnails {
    padding: 3px 0;
  }
}

.image-gallery-thumbnails .image-gallery-thumbnails-container {
  cursor: pointer;
  text-align: center;
  transition: transform .45s ease-out;
  white-space: nowrap;
}

.image-gallery-thumbnail {
  display: inline-block;
  border: 4px solid transparent;
  transition: border .3s ease-out;
  width: 55px;
}

@media (max-width: 768px) {
  .image-gallery-thumbnail {
    border: 3px solid transparent;
    width: 75px;
  }
}

.image-gallery-thumbnail + .image-gallery-thumbnail {
  margin-left: 2px;
}

.image-gallery-thumbnail .image-gallery-thumbnail-inner {
  position: relative;
}

.image-gallery-thumbnail img {
  vertical-align: middle;
  width: 100%;
}

.image-gallery-thumbnail.active {
  border: 4px solid #337ab7;
}

@media (max-width: 768px) {
  .image-gallery-thumbnail.active {
    border: 3px solid #337ab7;
  }
}

.image-gallery-thumbnail-label {
  box-sizing: border-box;
  color: white;
  font-size: 1em;
  left: 0;
  line-height: 1em;
  padding: 5%;
  position: absolute;
  top: 50%;
  text-shadow: 1px 1px 0 black;
  transform: translateY(-50%);
  white-space: normal;
  width: 100%;
}

@media (max-width: 768px) {
  .image-gallery-thumbnail-label {
    font-size: .8em;
    line-height: .8em;
  }
}

.image-gallery-index {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  line-height: 1;
  padding: 10px 20px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4;
}

@media (max-width: 768px) {
  .image-gallery-index {
    font-size: .8em;
    padding: 5px 10px;
  }
}

.flag-select {
  position: relative;
  display: inline-block;
  vertical-align: inherit;
  color: #4d4d4d;
  text-align: left;
}

.flag-select img {
  width: 30px;
  height: 30px;
  position: relative;
}

@media (max-width: 991px) {
  .flag-select img {
    width: 25px;
    height: 25px;
  }
}

.flag-select .selected--flag--option {
  cursor: pointer;
  padding: 0 8px;
}

@media (max-width: 991px) {
  .flag-select .selected--flag--option {
    padding: 0;
  }
}

.flag-select .selected--flag--option:before {
  content: ' ';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 999;
}

.flag-select .selected--flag--option:focus {
  outline: none;
}

.flag-select .selected--flag--option .country-label {
  padding-left: 9px;
}

.flag-select .country-flag {
  font-size: 1rem;
  cursor: pointer;
}

.flag-select .country-flag .country-label {
  font-size: 1em;
  position: relative;
}

.flag-select .flag-options {
  position: absolute;
  z-index: 999999;
  border: 1px solid #bdbbbb;
  border-radius: 3px;
  background: #ffffff;
  margin-top: 8px;
  padding: 8px 0;
  max-height: 160px;
  overflow: auto;
  font-size: 1rem;
}

.flag-select .flag-options.to--left {
  right: 10px;
}

.flag-select .flag-option {
  cursor: pointer;
  padding: 0px 8px 3px 8px;
  margin: 4px 0;
  white-space: nowrap;
}

.flag-select .flag-option.has-label {
  padding: 0px 50px 3px 8px;
}

.flag-select .flag-option:hover {
  background: #eaeaea;
}

.flag-select .flag-option:focus {
  outline: none;
  background: #eaeaea;
}

.flag-select .flag-option .country-label {
  padding: 0 9px;
}

.flag-select .filterBox {
  width: 100%;
}

.flag-select .filterBox input {
  width: 90%;
  margin: 0 4%;
}

.flag-select .filterBox input:focus {
  outline: none;
}

.flag-select .arrow-down {
  color: #4d4d4d;
  padding: 2px;
  font-size: 1.3rem;
}

.flag-select .hidden {
  display: none;
}

.flag-select .no--focus {
  pointer-events: none;
}

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