/* Fonts */
@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat Regular'), local('Montserrat-Regular'), url('font/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  font-display: auto
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat Medium'), local('Montserrat-Medium'), url('font/Montserrat-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: auto
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat Bold'), local('Montserrat-Bold'), url('font/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  font-display: auto
}

:root {
  font-size: 11px;
  --primary-color: #0091EA;
  --container-offset: 20px;
}

@media (min-width: 481px) {
  :root {
    --container-offset: 30px;
  }
}

@media (min-width: 1025px) {
  :root {
    font-size: 11px;
  }
}

@media (min-width: 1281px) {
  :root {
    font-size: 12px;
  }
}


* {
  outline: none !important;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #111113;
}
h1, h2, h3, h4, h5, h6 {
  color: #444;
}
/* default font size */
.fa {
  font-size: 14px;
}
/* Override the bootstrap defaults */
h1 {
  font-family: 'Franklin Gothic Book', sans-serif;
  font-size: 2.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
h2 {
  font-size: 27px;
}
h3 {
  font-size: 21px;
}
h4 {
  font-size: 15px;
}
h5 {
  font-size: 12px;
}
h6 {
  font-size: 10.2px;
}
a {
  color: var(--primary-color);
}
a:hover {
  text-decoration: none;
}
legend {
  font-size: 1.5rem;
  padding: .5rem 0
}

label {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: .5rem
}

.form-control {
  font-size: 1.25rem;
  height: auto;
  padding: .833rem 1.25rem;
  border-color: #DADADA;
  border-radius: 8px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control:focus {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(230, 230, 230, .6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(230, 230, 230, .6);
  border-color: rgba(150, 150, 150, .6);
}

.form-control.rounded {
  border-radius: 25px;
}

textarea {
  resize: vertical;
}

.input-group .input-group-addon {
  font-size: 12px;
  height: 30px;
}

.tooltip {
  font-family: inherit;
  font-size: 1rem;
}
.tooltip-inner {
  background-color: #333;
  -webkit-box-shadow: 0 7px 15px rgba(0, 0, 0, .3);
  box-shadow: 0 7px 15px rgba(0, 0, 0, .3);
}
.tooltip.top .tooltip-arrow {
  border-top-color: #333;
  bottom: 1px;
}

.text-reset {
  color: inherit;
}

.disabled {
  pointer-events:none;
}

iframe {
  width: 100%;
  /*height: auto;*/
}

.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-5ths {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-5ths {
    width: 20%;
    float: left;
  }
}

@media (min-width: 992px) {
  .col-md-5ths {
    width: 20%;
    float: left;
  }
}

@media (min-width: 1200px) {
  .col-lg-5ths {
    width: 20%;
    float: left;
  }
}

.product-thumb .btn-primary-outline, #shopping-cart .btn-primary-outline, #product .btn-primary-outline.grow {
  display: none;
}

#shopping-cart .cart-column .total {
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

/* Fix some bootstrap issues */
span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg {
  display: inline;
}

div.required .control-label:after {
  content: ' *';
  color: #E53935;
  font-weight: 500;
}

.dropdown-menu {
  border-color: #f2f2f2;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 1rem 0;
}

.dropdown-menu li > a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1360px;
  padding-left: var(--container-offset);
  padding-right: var(--container-offset);
}

.flex, 
.flex-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
}

.flex-column {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.al-center {
  -ms-flex-align: center;
  align-items: center;
}

.jus-center {
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.jus-between {
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.jus-around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.jus-end {
  -ms-flex-pack: end;
  -webkit-justify-content: end;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .flex-sm-wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.grow {
  flex-grow: 1;
}

.gap-1 {
  gap: .5rem;
}

.gap-2 {
  gap: 1rem;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.gutters-sm {
  margin-left: -1rem;
  margin-right: -1rem;
}

.gutters-sm > [class*="col-"] {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 992px) {
  .gutters-lg {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }

  .gutters-lg > [class*="col-"] {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.w-100 {
  width: 100%;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: .5rem;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-1 {
  margin-left: .5rem;
}

.ml-2 {
  margin-left: 1rem;
}

.mr-1 {
  margin-right: .5rem;
}

.mr-2 {
  margin-right: 1rem;
}

.br-10 {
  border-radius: 10px;
}

.svg-icon {
  display: inline-block;
  vertical-align: middle;
}

.svg-icon.align {
  margin-top: -.125rem;
}

.chevron-top {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.chevron-left {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.chevron-right {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.arrow-left {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

/* header */
.header-top {
  position: relative;
  background-color: #fff;
  padding: 2rem 0;
  margin-bottom: 1.75rem;
  z-index: 1052;
}
.header-top:after {
  content: '';
  position: absolute;
  top: 100%;
  left: var(--container-offset);
  right: var(--container-offset);
  max-width: calc(1360px - var(--container-offset) * 2);
  border-bottom: 1px solid #f0f0f0;
  margin: auto;
}
.header-top.open:after,
.ocf-overflow-hidden .header-top:after {
  left: 0;
  right: 0;
}
.header-top.open .action-list .btn-group,
.ocf-overflow-hidden .action-list .btn-group {
  display: none;
}
.header-top.open .action-list .translate,
.ocf-overflow-hidden .action-list .translate {
  display: inline-block;
  width: 7rem;
}
.header-top.open .action-list .close-menu,
.ocf-overflow-hidden .action-list .close-menu {
  display: inline-block;
  width: 3rem;
}
.user .dropdown-menu {
  right: 1rem;
  border-radius: 20px;
  border-top-right-radius: 0;
}
.action-list .dropdown-menu {
  background-color: #F3F6F9;
  border-color: #F3F6F9;
  animation: scale-up .3s;
}
.action-list .dropdown-menu a {
  font-weight: 500;
}
.action-list .btn-link {
  position: relative;
  color: #111113
}
.action-list .btn-link .sub {
  font-size: 0;
}
.action-list .btn-link .count {
  position: absolute;
  top: -.75rem;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  border-radius: 50%;
  font-size: 1rem;
  color: #FFF;
  background-color: var(--primary-color);   
}
.action-list .customer {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.125;
  max-width: 6.5rem;
  white-space: normal;
  text-align: right;
  margin-right: 1rem;
}
.action-list .translate,
.action-list .close-menu {
  overflow: hidden;
  -webkit-transition: .15s ease-in;
  transition: .15s ease-in
}
.action-list .translate .btn {
  font-weight: 500;
  text-transform: uppercase;
  background-color: #F3F6F9;
  padding: .375rem 1.5rem;
}
.action-list .translate .btn span {
  display: inline-block;
  vertical-align: top;
  width: 2rem;
  overflow: hidden;
}
.action-list .close-menu {
  display: none;
}
@media (max-width: 600px) {
  .action-list .translate,
  .action-list .close-menu {
    width: 0;
  }
}
/* logo */
#logo {
  margin: 0 0 10px 0;
}
/* cart */
#cart > .btn {

}
#cart.open > .btn {
  background-image: none;
  background-color: #FFFFFF;
  border: 1px solid #E6E6E6;
  color: #666;
  box-shadow: none;
  text-shadow: none;
}
#cart.open > .btn:hover {
  color: #444;
}
#cart .dropdown-menu {
  background: #eee;
  z-index: 1001;
}
#cart .dropdown-menu {
  min-width: 100%;
  overflow-y: auto;
  max-height: 800px;
  scrollbar-width: thin;
  overflow-x: hidden;
}
@media (max-width: 478px) {
  #cart .dropdown-menu {
    width: 100%;
  }
}
#cart .dropdown-menu table {
  margin-bottom: 10px;
}
#cart .dropdown-menu li > div {
  min-width: 427px;
  padding: 0 10px;
}
@media (max-width: 478px) {
  #cart .dropdown-menu li > div {
    min-width: 100%;
  }
}
#cart .dropdown-menu li p {
  margin: 20px 0;
}
/* menu */
.burger {
  margin-left: -1rem;
}
.logo .ua {
  width: 4rem;
}
.menu-column {
  position: static;
}
.menu > ul {
  margin-bottom: 0;
}
.menu > ul > li {
  vertical-align: middle;
  padding: 0 .75rem;
}
.menu > ul > li > a {
  font-size: 1rem;
  color: #111113;
}
.menu > ul li a:hover {
  color: var(--primary-color);
}
.menu .btn-catalog {
  font-size: 1rem;
  font-weight: 600;
  color: #111113;
  padding: 0;
}
.menu .btn-catalog .svg-icon {
  margin-left: .5rem;
}
.menu .open .btn-catalog {
  color: var(--primary-color);
}
.menu .open .btn-catalog .svg-icon {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.menu .dropdown-menu {
  background-color: #F3F6F9;
  -webkit-box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.25);
  padding: 1.5rem 0 2.5rem;
  margin: 0;
  animation: slide-up .3s;
}
.menu .dropdown-inner {
  padding: 1rem 0;
}
.menu .dropdown-inner a {
  color: #000;
}
.menu .dropdown-inner a:hover {
  text-decoration: underline;
}
.menu .dropdown-inner .parent {
  display: block;
  font-family: 'Franklin Gothic Book', sans-serif;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.menu .dropdown-inner .parent img {
  margin-right: 1rem;
}
.menu .dropdown-inner ul li {
  font-size: 1.125rem;
  margin-bottom: .5rem
}
.mob-menu .modal-header {
  min-height: 7.5rem;
}
.mob-menu .modal-body {
  height: calc(100% - 7.5rem);
  padding-bottom: 5rem;
  overflow-x: hidden;
}
.mob-menu .modal-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  text-align: left;
  border-top: none;
  z-index: 1;
}
.mob-menu .catalog-btn {
  padding: 2rem 0;
}
.mob-menu .catalog-btn .btn {
  border-radius: 10px;
  padding: 1.445rem
}
.mob-menu .user {
  background-color: #F3F6F9;
  border-radius: 10px;
  padding: 3rem;
  margin: 0 -2rem;
}
.mob-menu .user .welcome {
  font-weight: 500;
}
.mob-menu .user .welcome a {
  font-size: 1.375rem;
  font-weight: 600;
  color: #377BC0;
}
.mob-menu .info {
  padding: 2rem 0;
}
.mob-menu .info ul {
  border-bottom: 1px solid #F3F6F9;
  padding-bottom: 2rem;
}
.mob-menu .list-row ul li:not(:last-child) {
  margin-bottom: 1.5rem;
}
.mob-menu .list-row ul li a {
  font-size: 1.25rem;
  font-weight: 500;
  color: #111113;
}
.mob-menu .list-row a:hover {
  text-decoration: underline;
}
.menu-dropdown {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
  z-index: 1;
  background: #fff;
  padding: 2rem 2rem 6rem;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform .3s ease-out;
  -webkit-transition: transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s cubic-bezier(.25, .8, .25, 1);
}

.menu-dropdown.visible {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.menu-dropdown .dropdown {
  padding-bottom: 1rem;
}
.menu-dropdown .parent {
  font-size: 1.5rem;
  color: #111113;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.menu-dropdown .parent .image {
  display: inline-block;
  width: 2.5rem;
  text-align: center;
  margin-right: 1rem;
}
.menu-dropdown .parent img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}
.menu-dropdown .dropdown:not(.open) .svg-icon {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.menu-dropdown .dropdown-menu {
  position: relative;
  float: none;
  border: none;
  box-shadow: none;
  padding-left: 3.5rem;
  animation: slide-up .3s;    
}
.menu-dropdown .dropdown-menu a {
  padding: 0;
  margin-bottom: 1.5rem;
}
.menu-dropdown .dropdown-menu a:hover {
  font-weight: 500;
  background-color: transparent;
  text-decoration: underline;
}

@media (min-width: 1100px) {
  .menu .btn-catalog,
  .menu > ul > li > a {
    font-size: 1.25rem;
  }
}
/* search */
.search-collapse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  display: none;
  background-color: #F3F6F9;
  padding: 5rem 0;
  z-index: 1052;
}
.search-collapse-info {
  margin-bottom: 4rem
}
.search-collapse__form {
  position: relative;
  margin: 10rem auto;
}
.search-collapse__form .input-lg {
  font-size: 1.5rem;
  color: #616161;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #616161;
  padding: 2.25rem 0;
}
.search-collapse__form .btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.search-collapse--animate .search-collapse__form {
  -webkit-animation: search-collapse-animate .6s;
  animation: search-collapse-animate .6s
}
@media (min-width: 768px) {
  .search-collapse__form {
    max-width: 80%;
  }
}
/* content */
.section {
  padding: 3rem 0;
}
.title {
  font-family: 'Franklin Gothic Book', sans-serif;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.125;
  color: #111113;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  h1, .title {
    font-size: 3.333rem;
  }
}
.second-title {
  font-size: 2.75rem;
  margin-bottom: 2rem;
}

.heading {
  margin-bottom: 1.75rem;
}

.heading h1 {
  margin-top: 0;
  margin-bottom: 0;
}

.swiper-view {
  position: relative;
}
.swiper-view.has-shift {
  margin: 0 calc(-1 * var(--container-offset));    
}
.swiper-view.has-shift .swiper-container {
  padding: 0 var(--container-offset);
}
.swiper-view .swiper-nav {
  position: absolute;
  top: -5.5rem;
  right: 0;
  -webkit-transform: translateX(1rem);
  transform: translateX(1rem);
  z-index: 10;
}
.swiper-view.has-shift .swiper-nav {
  right: var(--container-offset);
}
.swiper-next,
.swiper-prev {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  cursor: pointer;
}
.swiper-prev {
  margin-right: .5rem;
}
.swiper-nav .swiper-button-disabled {
  opacity: .3
}
@media (min-width: 768px) {
  .swiper-prev {
    margin-right: 1rem;
  }
}
@media (min-width: 992px) {
  .swiper-view[data-slides="6"] .swiper-nav {
    opacity: 0;
  }
}
@media (min-width: 1050px) {
  .swiper-view[data-slides="8"] .swiper-nav {
    opacity: 0;
  }
}

.slideshow {
  position: relative;
  margin-bottom: 2rem;
}
.slideshow .swiper-slide {
  height: auto;
  background: linear-gradient(53.33deg, #006EC7 25.47%, #0091EA 66.92%);
  border-radius: 30px;
}
.slideshow .lside {
  padding: 14.5rem 0 3.5rem 3rem;
}
.slideshow .socials {
  position: absolute;
  top: 3rem;
  left: 3rem;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 5rem;
  z-index: 1;
}
.slideshow .socials ul {
  font-size: 0;
  margin-top: -.25rem;
  margin-left: 0;
}
.slideshow .socials li {
  text-align: center;
  padding: 0;
}
.slideshow .socials li a {
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: #fff;
  border-radius: 50%;
  transition: .15s ease-in
}
.slideshow .socials li a:hover {
  opacity: .75
}
.slideshow .teaser {
  min-height: 23rem;
}
.slideshow .swiper-slide-active .teaser {
  opacity: 1;
  visibility: visible;
}
.slideshow .teaser-link {
  max-width: 17rem;
  min-height: 4.75rem;
  margin-bottom: .25rem;
}
.slideshow .teaser-link .link {
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  padding-bottom: .75rem;
}
.slideshow .subtitle {
  font-size: 3.625rem;
  font-weight: 700;
}
.slideshow .text {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.125;
  color: #fff;    
  margin-bottom: 1rem;
}
.slideshow .text span {
  position: relative;
  display: block;
  max-width: fit-content;
}
.slideshow .text span:before {
  content: '';
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -18px;
  right: 14px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(94, 132, 156, 0.2) 100%);
  border-radius: 30px;
  z-index: -1
}
.slideshow .image {
  padding-left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .5s ease-in-out;
  transition: opacity .5s ease-in-out;
}
.slideshow .swiper-slide-active .image {
  opacity: 1;
  visibility: visible;
}
.slideshow .image img {
  height: 100%;
  object-fit: cover;
}
.slideshow .web {
  position: absolute; 
  top: 0; 
  left: 25%; 
  z-index: -1;
}
@media (min-width: 601px) {
  .slideshow .text {
    font-size: 2.925rem;
  }
}
@media (min-width: 768px) {
  .slideshow .web {
    left: 50%;
  }
}
@media (min-width: 992px) {
  .slideshow .socials {
    left: 5rem
  }
  .slideshow .web {
    left: 75%;
  }
  .slideshow .lside {
    padding-left: 5rem;
  }
  .slideshow .subtitle {
    font-size: 5rem;
  }
  .slideshow .text {
    font-size: 3.325rem;
  }
}

.schedule {
  background-color: transparent;
  padding: 4rem 0 0;
  margin-bottom: 0;
}
.schedule-item {
  background-color: #F3F6F9;
  border-radius: .833rem;
  padding: 2rem;
  margin-bottom: 2rem;
}
.schedule-item .text {
  font-size: 1.75rem;
  line-height: 1.125;
  color: #232732;
  padding-left: 3.25rem;
}
/*.schedule {
background-color: #F3F6F9;
border-radius: 20px;
padding: 3.5rem 0;
margin-bottom: 2rem;    
}*/
.schedule .title {
  line-height: 1;
  margin-bottom: 1rem;
}
.schedule .desc {
  max-width: 71.5rem;
  font-size: 1.33rem;
  margin-left: auto;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .schedule .title {
    margin-bottom: 0;   
  }
}
@media (max-width: 575px) {
  .schedule .desc {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.sl-categories .swiper-slide {
  width: 22.5%;
  height: auto;
}
.sl-categories .inner {
  height: 100%;
}
.sl-categories .inner img {
  max-height: 4.333rem;
  margin-bottom: .5rem;
}

.sl-products .swiper-slide {
  width: 50%;
}

.sl-products .product-thumb {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .sl-categories .swiper-slide {
    width: 12.5%;
    width: auto!important;
  }
  .sl-products .swiper-slide {
    width: 25%;
  }  
}

.sl-carousel .inner {
  min-height: 10rem;
  background-color: #F3F6F9;
  border-radius: 10px;
  padding: 2rem 1rem;
}

.marker {
  position: absolute;
  top: 25%;
  right: 11.25%;
}
.marker-shadow {
  position: relative;
  width: 5.5rem;
  height: 5.5rem;
  border: 1px solid #fff;
  border-radius: 50%;
  margin-bottom: 3rem;
  cursor: pointer;
}
.marker-shadow:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #616161;
  border: 1px solid #616161;
  border-radius: 50%;
  -webkit-transform: scale(.35) translateY(-50%) translateX(-50%);
  -ms-transform: scale(.35) translateY(-50%) translateX(-50%);
  transform: scale(.35) translateY(-50%) translateX(-50%);
  opacity: 0;
  -webkit-animation: marker-ripple-animation 2.6s cubic-bezier(.25,.9,.2,1) 0s infinite;
  animation: marker-ripple-animation 2.6s cubic-bezier(.25,.9,.2,1) 0s infinite;
  z-index: 0;
}
.marker-pointer {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.75rem;
  height: 2.75rem;
  line-height: 2.75rem;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  z-index: 1;
}
.marker .product {
  position: absolute;
  top: 8rem;
  right: 0;
  display: none;
  width: 24rem;
  background-color: #fff;
  border-radius: 8px;    
  box-shadow: 0px 8px 16px 0px #DCDFE299;
  animation: slide-up .3s;
  z-index: 2;
}
.marker:hover .product {
  display: block;
}
.marker .product .triangle {
  position: absolute;
  top: -6px;
  right: 2.25rem;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 2px;
  -webkit-box-shadow: 1px 1px 3px -1px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 3px -1px rgba(0, 0, 0, 0.25);
  transform: matrix(0.71, -0.71, -0.71, -0.71, 0, 0);
  z-index: -1;
}
.marker .product .image {
  border-radius: 8px;
  overflow: hidden;
}
.marker .product .image img {
  margin: auto;
}
.marker .product .caption {
  text-align: center;
  padding: 1.25rem;
}
.marker .product .name, 
.marker .product .price {
  font-size: 1.25rem;
}
.marker .product .name {
  font-weight: 500;
  line-height: 1;
}
.marker .product .name a {
  color: #111113;
}
.marker .product .name,
.marker .product .model {
  margin-bottom: .5rem
}
.marker .product .model {
  font-size: 1rem;
  font-weight: 500;
  color: #616161;
}

.merch-text {
  max-width: 38.833rem;
  padding: 2rem 0;
  margin: auto;
}

.merch-text .buttons {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .marker .product {
    left: 0;
    right: 0;
  }
  .marker .product .triangle {
    left: 2.25rem;
    right: auto;
  }
  .merch .col-sm-5 {
    padding-right: 0;
  }
  .merch-text .buttons {
    margin-top: 3rem;
  }
}
@media (min-width: 992px) {
  .merch-text .text {
    padding: 1.5rem 0 2rem;
  }
}

.merch + .advantages {
  padding-top: 1rem;
}

.advantage-item {
  margin-bottom: 2rem;
}
.advantage-item .inner {
  height: 100%;
}
.advantage-item .image {
  margin-bottom: 1.5rem;
}
.advantage-item .number {
  font-size: 4rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.2);
}
.advantage-item .name {
  height: 4.5rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.125;
  margin-bottom: 1rem;
}
.advantage-item .text {
  font-size: 1.333rem;
  color: #535353;
}
.advantage-item .caption {
  min-height: 70px;
}
.advantages.style-2 .advantage-item .inner {
  background-color: #F3F6F9;
  border-radius: 1.667rem;
  padding: 1.5rem 1.5rem 3rem;
}
.contacts.style-1 {
  background-color: #F3F6F9;
  border-radius: 2.75rem;
}
.contacts {
  margin-top: 3rem;
  margin-bottom: 6rem;
}
.contacts .wrapper {
  position: relative;
  z-index: 1;
}
.contacts .contacts-info,
.contacts .contacts-form {
  padding: 3rem;
}
.contacts-info .info-item:not(:last-child) {
  border-bottom: 1px solid #DFE0E3;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.contacts-info .info-item .type {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.contacts .contacts-form {
  height: 100%;
  background-color: #377BC0;
  border-radius: 2.75rem;
}
.contacts-form legend {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  border-bottom: none;
  padding-top: 1.5rem;
}
.contacts-form .required label:before {
  position: absolute;
  top: 3.5rem;
  right: 2.25rem;
}
.contacts-form .form-group {
  color: #fff;
}
.contacts-form .btn {
  background-color: #fff;
}

.social-list .svg-icon {
  -webkit-transition: transform .3s ease-out;
  transition: transform .3s ease-out;
}
.social-list li:hover .svg-icon {
  transform: translateY(-.25rem);
}

.content-bottom .wrapper {
  width: 100%;
  max-width: 1360px;
  padding-left: var(--container-offset);
  padding-right: var(--container-offset);
  margin: auto;
}
/* footer */
footer {
  background-color: #F3F6F9;
  border-top: 1px solid #DFE0E3;
  color: #393939;
}
footer a {
  color: #393939;
}
footer .subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111113;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
footer .info {
  padding-top: 4rem;
}
footer .info .col-sm-3 {
  margin-bottom: 4rem;
}
footer .info ul {
  margin-bottom: 0
}
footer .info ul li:not(:last-child) {
  margin-bottom: .75rem;
}
footer .offices ul li {
  font-size: 1.167rem;
}
footer a:hover {
  text-decoration: underline;
}
footer .contact-us,
footer .contact-us a {
  font-weight: 500;
}
footer .contact-us .call {
  color: #616161;
}
footer .contact-us .phone,
footer .contact-us .email {
  margin-bottom: 2rem;
}
footer .contact-us .open {
  color: #111113;
  margin-bottom: 2rem;
}
footer .socials {
  margin-top: -.5rem;
  margin-bottom: -.75rem
}
footer .powered {
  border-top: 1px solid #DFE0E3;
  color: #111113;
  padding: 1.5rem 0;
}
@media (min-width: 992px) {
  footer .info .col-sm-3 {
    width: 20%;
  }
  footer .offices {
    padding-left: 0;
    padding-right: 0;
    margin-left: -15px;
  }
}
@media (max-width: 600px) {
  footer .info .col-xs-6 {
    width: 100%;
  }
}

.sort-view {
  margin-bottom: 1.5rem
}

.sort-view .col-xs-6 {
  margin-bottom: 1rem
}

.sort > .btn {
  break-after: .25rem;
}

.sort > .btn span {
  font-weight: 500;
}

@media (max-width: 991px) {
  .sort-view .btn {
    position: relative;
    text-align: left;
    padding: 1.25rem;
    padding-right: 2.5rem;
  }
  .sort-view .btn .svg-icon {
    position: absolute;
    top: 0;
    right: 1.25rem;
    bottom: 0;
    margin: auto;
  }
}

@media (max-width: 481px) {
  .sort-view .col-xs-6,
  .sort-view .sort,
  .sort-view .sort .btn {
    width: 100%;
  }
}

.category-description {
  font-size: 1.25rem;
  line-height: 1.5;
  border: 1px solid #EFEFEF;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 3rem;
}
.category-description h1 {
  text-align: center;
  margin-top: 0;
}
.category-description p {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .category-description {
    padding: 3rem;
  }
}
/* alert */
.alert {
  padding: .75rem 1.25rem;
}
/* breadcrumb */
.breadcrumb {
  margin-bottom: 0;
  padding: .25rem 0 2rem;
  background-color: transparent;
}

.breadcrumb > li {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  color: #888;
}
.breadcrumb > li + li:before {
  padding: 0;
  color: #888;
}

.breadcrumb > li a {
  color: #888;
}

.breadcrumb > li a:hover {
  text-decoration: underline;
}

.pagination {
  margin: 0 0 2.5rem;
}

.next-page {
  margin: 1.5rem 0;
}

.next-page .btn {
  font-weight: 500;
  color: #000
}

.paging .pagination > li {
  display: inline-block;
  text-align: center;
}

.paging .pagination > li + li {
  margin-left: .5rem;
}

.paging .pagination > li > a,
.paging .pagination > li > span {
  width: 3rem;
  height: 3rem;
  font-size: 1.333rem;
  padding: .5rem;
  margin-left: 0;
  background-color: transparent;
  border-width: .125rem;
  border-color: transparent;
  border-radius: .625rem;
  color: #2B2D42;
}

.paging .pagination > .active > a,
.paging .pagination > .active > span {
  background-color: transparent;
  border-color: #000;
  color: #000;
}

.paging .prev,
.paging .next {
  position: relative;
}

.paging .prev a,
.paging .next a {
  opacity: 0;
}

.paging .prev:before,
.paging .next:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='12'%3e%3cpath fill='%23000' d='m1.6.352-.848.85.424.425 4.376 4.375-4.376 4.376-.424.424.848.851.425-.426L7.25 6.002 2.025.778 1.6.352Z'/%3e%3c/svg%3e") no-repeat center;
}

.paging .prev:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.paging .pagination .first,
.paging .pagination .last {
  position: relative;
}

.paging .first a,
.paging .last a {
  opacity: 0;
}

.paging .first:before,
.paging .last:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3e%3cpath fill='%23000' d='m1.2.352-.848.85.424.425 4.376 4.375-4.376 4.376-.424.424.848.851.424-.426 5.227-5.225L1.624.778 1.2.352Zm4.798 0-.849.85.424.425L9.95 6.002l-4.376 4.376-.424.424.849.851.424-.426 5.226-5.225L6.422.778 5.998.352Z'/%3e%3c/svg%3e") no-repeat center;
}

.paging .first:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.ocf-container .ocf-header {
  display: none;
}
/*.ocf-content > .ocf-header {
font-size: 2rem;
font-weight: 700;
margin-bottom: 0;
}

.ocf-content > .ocf-header .ocf-icon {
display: none;
}

.ocf-theme-light .ocf-content .ocf-selected-card {
display: none;
}*/
.ocf-theme-light .ocf-content .ocf-filter-header {
  text-transform: none;
}

.ocf-content .ocf-filter-name {
  font-size: 1.33rem;
  font-weight: 600;
}

.ocf-content .ocf-input-group .ocf-form-control {
  background-color: #f2f2f2;
  border-radius: 0;
}

.ocf-content .ocf-input-group .ocf-input-group-addon {
  background-color: #fff;
  border-radius: 0;
}

.ocf-content .ocf-value-slider {
  padding: 0 0 1.5rem;
}

.ocf-content .ocf-noUi-connect:before {
  background-color: #CCCED0;
}

.ocf-content .ocf-noUi-base:before {
  background-color: #F1F1F1;
  border-radius: 0;
}

.ocf-content .ocf-noUi-base:before,
.ocf-content .ocf-noUi-connect:before {
  height: 2px;
}

.ocf-content .ocf-noUi-connects:before,
.ocf-content .ocf-noUi-connects:after {
  content: none;
}

.ocf-content .ocf-noUi-handle {
  width: 20px;
  height: 20px;
  top: -2px;
  right: 0;
  background-color: #fff;
  border: 2px solid #CCCED0;
}

.ocf-content .ocf-noUi-handle-lower {
  right: -20px;
}

.ocf-content .ocf-noUi-pips {
  display: none;
}

.ocf-content .ocf-value,
.ocf-content .ocf-value:hover, 
.ocf-content .ocf-value:focus {
  font-size: 1.25rem;
  color: #000;
}

.ocf-content .ocf-value-input:before {
  background-color: transparent;
  border-color: #ddd;
}

.ocf-content .ocf-selected .ocf-value-input:before {
  color: #fff;
  border-color: #ddd;
  background-color: var(--primary-color);
}
.ocf-content .ocf-selected .ocf-value-input-checkbox:after {
  background-image: none;
}

.ocf-overflow-hidden .burger {
  width: 0;
}

@media (min-width: 992px) {
  .ocf-theme-light .ocf-content .ocf-dropdown.ocf-active:not(.ocf-open) .ocf-filter-header {
    background-color: rgb(55 123 192 / 25%);
  }
}
@media (max-width: 991px) {
  #product-category #column-left {
    z-index: 1051!important;
  }
  .ocf-container {
    background-color: #F1F3F5;  
    padding-top: 7.5rem;
  }
  .ocf-container {
    left: auto!important;
    right: 0;
    transform: translateX(100%) translate3d(0, 0, 0)!important;
  }
  .ocf-container.ocf-mobile-active {
    transform: translateX(0)!important;
  }
  .ocf-container .ocf-content {
    background-color: #F1F3F5;
  }
  .ocf-content .ocf-header {
    display: none;
  }
  .ocf-content .ocf-filter {
    margin: 0 var(--container-offset);
  }
  .ocf-content .ocf-filter.ocf-active {
    padding-left: var(--container-offset);
    padding-right: var(--container-offset);
  }
  .ocf-content .ocf-open .ocf-filter-header {
    padding: 10px 0;
    background-color: transparent!important;
    height: auto;
  }
  .ocf-content .ocf-open .ocf-filter-header .ocf-arrow-left {
    display: none;
  }
  .ocf-content .ocf-open .ocf-filter-header .ocf-angle-right {
    display: block;
    transform: rotate(180deg);    
  }
  .ocf-content .ocf-filter-header,
  .ocf-content .ocf-filter-body > .ocf-value-list {
    position: relative!important;
  }
  .ocf-content .ocf-filter-body > .ocf-value-list {
    display: none!important;
    padding-left: 0!important;
    padding-right: 0!important;
    background-color: transparent!important;
  }
  .ocf-open .ocf-filter-body > .ocf-value-list {
    display: block!important;
  }
  .ocf-theme-light .ocf-content .ocf-footer {
    box-shadow: none;
  }
  .ocf-theme-light .ocf-content .ocf-filter.ocf-active {
    background-color: rgb(55 123 192 / 25%);
  }
  .ocf-content .ocf-open .ocf-filter-discard {
    width: auto;
  }
}
/* buttons */
.buttons {
  margin: 1rem 0;
}
.btn {
  font-size: 1.25rem;
  padding: .75rem 1rem;
  background-color: transparent;
  border: 1px solid #F2F2F2;
  border-radius: 25px;
}

.btn-rounded {
  border-radius: .25rem;
}
.btn-xs {
  font-size: .83rem;
}

.btn-sm {
  font-size: 1rem;
}

.btn-lg {
  font-size: 1.333rem;
  font-weight: 600;
  padding: 1.075rem 1.5rem;
}

.btn-up {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
}

.btn-group > .btn-xs {
  font-size: 9px;
}
.btn-group > .btn-sm {
  font-size: 10.2px;
}
.btn-group > .btn-lg {
  font-size: 15px;
}
.btn-default {
  color: #fff;
  background-color: #111113;
  border-color: #111113;
}
.btn-primary {
  color: #ffffff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
  background-color: #000;
  border-color: #000;
}
.btn-primary-outline {
  color: #000;
  background-color: #fff;
  border-color: var(--primary-color);
}
.btn-primary-outline:hover, .btn-primary-outline:active, .btn-primary-outline.active, .btn-primary-outline.disabled, .btn-primary-outline[disabled] {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-warning {
  color: #ffffff;
  background-color: #faa732;
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
  background-repeat: repeat-x;
  border-color: #f89406 #f89406 #ad6704;
}
.btn-warning:hover, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] {
  box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-danger {
  color: #da4f49;
  border-color: #da4f49;
}
.btn-danger:hover, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled] {
  box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-success {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #5bb75b;
  background-image: linear-gradient(to bottom, #62c462, #51a351);
  background-repeat: repeat-x;
  border-color: #51a351 #51a351 #387038;
}
.btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] {
  box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-info {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #df5c39;
  background-image: linear-gradient(to bottom, #e06342, #dc512c);
  background-repeat: repeat-x;
  border-color: #dc512c #dc512c #a2371a;
}
.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
  background-image: none;
  background-color: #df5c39;
}
.btn-link {
  cursor: pointer;
  color: var(--primary-color);
  border-color: rgba(0, 0, 0, 0);
  border-radius: 0;
}
.btn-link, .btn-link:active, .btn-link[disabled] {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  box-shadow: none;
}
.btn-inverse {
  color: #111113;
  background-color: transparent;
  border-color: #111113;
}
.btn-inverse:hover, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled] {
  color: #fff;
  background-color: #111113;
}
.btn-printing {
  padding: 0.75rem 3.85rem;
}
/* list group */
.list-group a {
  border: 1px solid #DDDDDD;
  color: #888888;
  padding: 8px 12px;
}
.list-group a.active, .list-group a.active:hover, .list-group a:hover {
  color: #444444;
  background: #eeeeee;
  border: 1px solid #DDDDDD;
  text-shadow: 0 1px 0 #FFF;
}
/* carousel */
.carousel-caption {
  color: #FFFFFF;
  text-shadow: 0 1px 0 #000000;
}
.carousel-control .icon-prev:before {
  content: '\f053';
  font-family: FontAwesome;
}
.carousel-control .icon-next:before {
  content: '\f054';
  font-family: FontAwesome;
}
/* product list */
.price {
  font-size: 2rem;
  font-weight: 600;
  color: #111113;
}

.price .price-new {
  color: #E02B2B;
}

.price .price-old {
  font-size: 1.125rem;
  font-weight: 500;
  color: #666;
  text-decoration: line-through;
  margin-left: .5rem;
}

.price .price-tax {
  display: block;
  color: #999;
  font-size: 1rem;
  font-weight: 400;
}
.product-thumb {
  *=max-width: 292px;
  background-color: #fff;
  border: 1px solid #EFEFEF;
  border-radius: 8px;
  padding: .5rem;
  margin-bottom: 30px;
  overflow: auto;
}
.product-thumb .image {
  position: relative;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: .25rem;
  overflow: hidden;
}
.product-thumb .image a {
  display: block;
}
.product-thumb .image a:hover {
  opacity: 0.8;
}
.product-thumb .image img {
  margin-left: auto;
  margin-right: auto;
}
.product-grid .product-thumb .image {
  float: none;
}
@media (min-width: 767px) {
  .product-list .product-thumb .image {
    float: left;
    padding: 0 15px;
  }
}
.product-thumb .btn-wishlist {
  position: absolute;
  top: 0;
  right: 0;
  color: #111113;
  padding: .75rem;
}
.product-thumb .caption {
  padding: 1.25rem 1.25rem .675rem;
  min-height: 14rem;
}
.product-list .product-thumb .caption {
  margin-left: 230px;
}
@media (max-width: 767px) {
  .product-list .product-thumb .caption {
    min-height: 0;
    margin-left: 0;
    padding: 0 10px;
  }
  .product-grid .product-thumb .caption {
    padding: .75rem .75rem .375rem;
    min-height: 0;
  }
}
.product-thumb .name {
  font-size: 1.25rem;
  font-weight: 600;
  height: 3.75rem;
  margin-bottom: 0.75rem;
  overflow: hidden;  
}
.product-thumb .name a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #111113;
}
.product-thumb .model {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: .25rem;
}
.product-thumb h4 {
  font-weight: bold;
}
.product-thumb .rating {
  padding-bottom: 10px;
}
.product-thumb .warehouse {
  margin-bottom: .25rem;
}
.product-thumb .warehouse ul li {
  position: relative;
  font-size: 1rem;
  z-index: 1;
}
.product-thumb .warehouse ul li:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: .625rem;
  border-bottom: 1px dotted #111113;
  opacity: .2;
  z-index: -1;
}
.product-thumb .warehouse ul li span {
  background-color: #fff;
}
.product-thumb .warehouse ul li span:first-child {
  font-weight: 500;
  padding-right: 1rem;
}
.product-thumb .warehouse ul li .count {
  font-weight: 600;
}

.warehouse ul li span {
  display: inline-block;
  padding-bottom: .25rem;
}
.warehouse ul li .count {
  padding-left: 1rem;
}

.rating .fa-stack {
  font-size: 8px;
}
.rating .fa-star-o {
  color: #999;
  font-size: 15px;
}
.rating .fa-star {
  color: #FC0;
  font-size: 15px;
}
.rating .fa-star + .fa-star-o {
  color: #E69500;
}
.product-thumb .price {
  text-align: center;
}
.product-thumb .button-group {
  border-top: 1px solid #ddd;
  background-color: #eee;
  overflow: auto;
}
.product-list .product-thumb .button-group {
  border-left: 1px solid #ddd;
}
@media (max-width: 768px) {
  .product-list .product-thumb .button-group {
    border-left: none;
  }
  .production-text {
    margin: 4em 0;
    text-align: center;
  }
  .img-double div {
    width: 100%;
  }
  .img-full {
    margin-bottom: 10px;
  }
  .reverse {
    flex-direction: column-reverse;
  }
}
.product-thumb .button-group button {
  width: 60%;
  border: none;
  display: inline-block;
  float: left;
  background-color: #eee;
  color: #888;
  line-height: 38px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}
.product-thumb .button-group button + button {
  width: 20%;
  border-left: 1px solid #ddd;
}
.product-thumb .button-group button:hover {
  color: #444;
  background-color: #ddd;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .product-thumb .button-group button, .product-thumb .button-group button + button {
    width: 33.33%;
  }
}
@media (max-width: 767px) {
  .product-thumb .button-group button, .product-thumb .button-group button + button {
    width: 33.33%;
  }
}
.product-grid .extended {
  position: relative;
  height: 39.167rem;
  background-color: #fff;
  margin-bottom: 30px;
}
.product-grid .extended .product-thumb {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-height: 100%;
  margin-bottom: 0;
}
.product-grid .extended:hover .product-thumb,
.product-grid .product-thumb.hover {
  z-index: 2;
}
.product-grid .extended:hover .actions,
.product-grid .product-thumb.hover .actions {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.product-thumb .actions {
  padding-top: .75rem;
}
.product-thumb .actions .btn {
  min-width: 8.5rem;
}
.product-thumb .variants {
  position: relative;
  height: 3.5rem;
  padding: 0 1rem;
  margin-top: 0rem;
  overflow: hidden;
  -webkit-transition: height .15s ease-in;
  transition: height .15s ease-in;
}
.product-thumb .variants.count-2 {
  max-width: 12rem;
  padding-right: 2rem;
  margin-left: auto;
}
.product-thumb .variants.count-3 {
  max-width: 15rem;
  padding-right: 2rem;
  margin-left: auto;
}
.product-thumb .variants.open {
  height: 100%;
}
.product-thumb .variants ul {
  font-size: 0;
  overflow: hidden;
}
.product-thumb .variants .thumb {
  position: relative;
  width: 3rem;
  height: 3rem;
  box-shadow: 0 0 3px #e5e5e5;
  border-radius: 4px;
  margin-bottom: .5rem;
  overflow: hidden;
}
.product-thumb .variants .thumb.active:before {
  content: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' width='16' height='12' fill='none' viewBox='0 0 16 12'><path d='M1 6.78947L5.86957 11L15 1' stroke='white' stroke-width='1.09'/></svg>");
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  width: 16px;
  height: 12px;
  margin: auto;
}
.product-thumb .variants .count {
  position: absolute;
  top: 3rem;
  right: 1rem;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  z-index: 1
}
@media (min-width: 768px) {
  .product-thumb .variants {
    height: 4.5rem;
  }
  .product-thumb .variants .thumb {
    width: 4rem;
    height: 4rem;
  }
  .product-thumb .variants .count {
    top: 4rem
  }
  .product-thumb .variants.count-2 {
    max-width: 16rem;
  }
  .product-thumb .variants.count-3 {
    max-width: 20rem;
  }
}

@media (min-width: 992px) {
  .product-grid .extended .actions {
    display: none;
  }
  .product-thumb .actions .btn {
    padding: 1.075rem 1.75rem
  }
}
@media (max-width: 1200px) {
  .products .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  .products .row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
  .products .extended {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  #product-category #content {
    width: 100%;
  }
  .products .row {
    margin-left: -5px;
    margin-right: -5px;
  }
  .products .row > [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
  }
  .products .extended {
    height: 100%;
    margin-bottom: 10px;
  }
  .product-grid .extended .product-thumb {
    position: relative;
  }
  .product-grid .product-thumb.hover {
    position: absolute;
  }
}
@media (max-width: 767px) {
  .products .row {
    margin-left: -5px;
    margin-right: -5px;
  }
  .products .row > [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (max-width: 600px) {
  .products .row > .col-xs-4 {
    width: 50%;
  }
}
.product-row {
  margin-bottom: 3rem;
}
.thumbs .btn-wishlist {
  position: absolute;
  top: -.25rem;
  right: -.25rem;
  z-index: 2;
  color: #000;
}
.product-info .heading,
.product-info .sku,
.product-info .warehouse {
  margin-bottom: 1.25rem;
}
.product-info h1 {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.4px;    
}
.product-info .sku {
  font-size: 1rem;
  color: #888;
}
.product-info .warehouse {
  background-color: #F1F3F5;
  border-radius: 1.667rem;
  padding: 2rem;
}
.product-info .warehouse ul li {
  margin-bottom: .5rem
}
.product-info .control-label {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: .75rem
}
.product-info .price-info {
  border-bottom: 2px solid #F3F6F9;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.product-info .price {
  font-size: 3rem;
  line-height: 1;
}
.product-info .variants {
  margin-bottom: .75rem
}
.product-info .variants ul {
  margin-left: -.25rem;
}
.product-info .variants ul li {
  padding-left: .25rem;
  padding-right: .25rem;
}
.product-info .variants .thumbnail {
  max-width: 9.25rem;
  border-color: #F0F2F4;
  border-radius: .83rem;
  margin-bottom: .5rem;
}
.product-info .variants .active {
  border-color: var(--primary-color);
}
.product-info .buy-qty .btn.grow {
  min-width: 9.5rem;
  font-weight: 600;
  padding: 1.125rem 2.25rem;
}
@media (min-width: 992px) {
  .product-row .lside {
    width: 52.1525%;
  }
  .product-row .rside {
    width: 47.8475%;
  }
  .product-info {
    padding-left: 1rem;
  }
  .product-info .warehouse {
    padding: 4rem 2rem;
  }
}

.stickers {
  position: absolute;
  top: .75rem;
  left: .75rem;
  gap: .5rem;
}
.stickers [class*="stick-"] {
  font-size: .5rem;
  font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
}

.product-image {
  position: relative;
  background-color: #F1F3F5;
  border-radius: 1.667rem;
  padding: .75rem;
  margin-bottom: 2rem
}

.thumbs {
  padding-bottom: 1rem;
}

.thumbs .stickers {
  top: 1rem;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  z-index: 9;
}

.thumbs img {
  margin: auto;
}

.thumbs .swiper-button-prev, 
.thumbs .swiper-button-next {
  width: 3.33rem;
  height: 3.33rem;
  line-height: 3.33rem;
  background-color: #fff;
  border: 1px solid #EEE;
  border-radius: 50%;
  text-align: center;
}
.thumbs .swiper-button-prev:before,
.thumbs .swiper-button-next:before {
  content: none;
}

@media (min-width: 768px) {
  .product-image {
    margin-bottom: 0;
  }
  .thumbs .swiper-pagination {
    display: none;
  }
}

.additional-thumbs {
  background-color: #fff;
  border-radius: .833rem;
  padding: .75rem;
}

.additional-thumbs .swiper-container {
  margin: 0 -.55rem;
}

.additional-thumbs .swiper-slide {
  padding: 0 .5rem;
}

.additional-thumbs .swiper-container:not(.swiper-container-horizontal) .swiper-slide {
  width: 25%;
}

.additional-thumbs .img-thumbnail {
  border-color: transparent;
  border-radius: 0;
}

.additional-thumbs .active .img-thumbnail {
  border-color: #F3F6F9;
  background-color: #F3F6F9;
  border-radius: 10px;
}

.additional-thumbs .swiper-prev,
.additional-thumbs .swiper-next {
  position: absolute;
  top: 50%;
  left: .25rem;
  transform: translateY(-50%);
  z-index: 2;
}

.additional-thumbs .swiper-next {
  left: auto;
  right: .25rem;
}
.additional-thumbs .swiper-button-disabled {
  opacity: .3
}

.thumbnails {
  overflow: auto;
  clear: both;
  list-style: none;
  padding: 0;
  margin: 0;
}
.thumbnails > li {
  margin-left: 20px;
}
.thumbnails {
  margin-left: -20px;
}
.thumbnails > img {
  width: 100%;
}
.image-additional a {
  margin-bottom: 20px;
  padding: 5px;
  display: block;
  border: 1px solid #ddd;
}
.image-additional {
  max-width: 78px;
}
.thumbnails .image-additional {
  float: left;
  margin-left: 20px;
}

.quantity {
  max-width: 11rem;
}

.quantity .input-group {
  border: 1px solid #F3F6F9;
  border-radius: .25rem
}

.quantity .btn,
.quantity .form-control {
  padding: .5rem;
  height: 4rem;
  border: none;
}

.quantity .form-control {
  min-width: 3.5rem;
  text-align: center;
}

.quantity .btn {
  width: 3rem;
  font-size: 1.33rem;
  font-weight: 600;
}
.buy-qty .quantity .btn { 
  border-radius: 0;
}

.product-tabs {
  margin-bottom: 3rem
}
.product-tabs .subtitle {
  font-family: 'Franklin Gothic Book', sans-serif;
  font-size: 1.667rem;
  font-weight: 400;
  margin-bottom: 1.25rem
}
.stock-variants {
  margin-bottom: 3rem;
}
.variants-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: auto
}
.variants-table::-webkit-scrollbar {
  -webkit-appearance: none;
  height: 4px;
  background-color: #ddd;
  border-radius: 4px;
}
.variants-table::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #888;
}
.variants-table .head,
.variants-table .item {
  margin-bottom: 1rem;
}
.variants-table .col {
  flex: 1 0 auto;
  flex-basis: 20%;
  min-width: 6.5rem;
  padding: 1rem 0;
  text-align: center;      
}
.variants-table .first {
  flex-basis: 18.5rem;
  text-align: left;
}
.variants-table .head .col {
  font-size: 2rem;
  font-weight: 600;
}
.variants-table .head .first {
  font-size: 1.167rem;
}
.variants-table .head .first span,.remainder {
  font-weight: 400;
  color: #6E6E6E;
}
.variants-table .item .col {
  font-weight: 600;
}
.variants-table .wait .col {
  font-weight: 400;
  color: #888;
}
.variants-table .item .name {
  font-size: 1.083rem;
  margin-left: .75rem;
}
.variants-table .item .name a {
  color: #000
}
.variants-table .wait .name a {
  color: #888;
}
.variants-table .invis {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height .45s cubic-bezier(.44, .99, .48, 1);
  transition: max-height .45s cubic-bezier(.44, .99, .48, 1);
}
.attributes ul li {
  position: relative;
  z-index: 1;
  margin-bottom: .75rem
}
.attributes ul li span {
  display: inline-block;
  background-color: #fff;
  padding-bottom: .25rem;
}
.attributes ul li span:first-child {
  padding-right: .5rem
}
.attributes ul li .value {
  text-align: right;
  padding-left: .5rem
}
.attributes ul li:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: .625rem;
  border-bottom: 2px solid #F3F6F9;
  z-index: -1;
}
@media (min-width: 768px) {
  .attributes ul {
    column-count: 2;
  }
  .attributes ul li {
    margin-right: 3rem
  }
}
.product-tabs .attributes,
.product-tabs .dscription {
  margin-bottom: 3rem;
}
.product-tabs .description * {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
}
.product-tabs .description p {
  margin-bottom: 0
}

.wishlist-page {
  overflow: hidden;
  margin-bottom: 3rem;
}
.wishlist-table > tbody > tr > td {
  font-size: 1.333rem;
  border-top: none;
  padding: .75rem 1rem;
  vertical-align: middle;
  white-space: nowrap;
}
.wishlist-table > tbody > tr > td:first-child {
  position: sticky;
  left: 0;
  font-weight: 600;
  background-color: #F3F6F9;
  text-transform: uppercase;
}
.wishlist-table tr:first-child .first {
  border-top-left-radius: 1.667rem;
  border-top-right-radius: 1.667rem;
}
.wishlist-table tr:last-child .first {
  border-bottom-left-radius: 1.667rem;
  border-bottom-right-radius: 1.667rem;
}
.wishlist-table .img-thumbnail {
  border-color: #F1F3F5;
}
.wishlist-table .inner {
  border-bottom: 1px solid #DFE0E3;
  padding: .5rem 0;
}
.wishlist-table .name {
  min-width: 20rem;
  white-space: normal;
}
.wishlist-table .btn {
  min-width: 48px;
  line-height: 1;
  padding: .625rem 1.25rem;
}
@media (min-width: 992px) {
  .wishlist-table > tbody > tr > td:first-child { 
    min-width: 20rem;
  }
}

/* checkout */
.cart-heading {
  font-size: 1.333rem;
  color: #888;
  line-height: 1;
  gap: 3rem;
  margin-bottom: 2rem;
}
.cart-heading h1 {
  font-family: inherit;
  font-size: 1.333rem;
  font-weight: 600;
  text-transform: none;
  text-decoration: underline;
  margin: 0;
}

.cart-summary {
  margin-bottom: 3rem;
}
.cart-summary .total {
  padding: .5rem 0;
  margin-bottom: 1rem;
}
.cart-summary .total .key {
  width: 14rem;
  font-size: 1.25rem;
  font-weight: 500;
}
.cart-summary .total .value {
  font-size: 1.325rem;
  font-weight: 500;
}
.cart-summary .total:last-child {
  -ms-flex-align: center;
  align-items: center;
}
.cart-summary .total:last-child .value {
  font-size: 1.667rem;
}

.page-cart .opc_block_totals .table-cart {
  border-bottom: none;
}
.page-cart .opc_block_totals .table-cart .total-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #111113;
}
.page-cart .opc_block_totals .table-cart .total-text {
  font-size: 1.325rem;
  font-weight: 500;
  color: #111113;
}
.page-cart .opc_block_totals .table-cart tr:last-child .total-text {
  font-size: 1.667rem;
}

.page-cart {
  margin-bottom: 5rem;
}

.checkout-agree label {
  font-size: 1.166rem;
  font-weight: 400;
}
.totals-inner .confirm-block {
  margin-bottom: 2.5rem
}
.payment-method > .radio {
  display: none!important;
}
  /* informations */
.information-top {
  background-color: #F3F6F9;
  text-align: center;
  padding: 4rem 0;
}
.information-top .breadcrumb {
  padding-bottom: 1rem;
}
.information-top h1 {
  font-family: 'Montserrat', sans-serif;
  text-transform: none;
  margin-top: 0;
}

[class*="information-"] .description {
  font-size: 1.333rem;
}
.description .panel {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.description .panel-body {
  max-width: calc(1160px + 4rem);
  padding: 4rem 2rem;
  margin: auto;
}
.description .panel-default {
  border-color: #f3f6f9;
  background-color: #f3f6f9;
}
.description .panel-body h2 {
  font-size: 2.625rem;
  font-weight: 600;
  margin-top: 0;
}
.description .alert {
  font-size: 1.33rem;
  color: #000;
  border-radius: 1.33rem;
  padding: 2.5rem;
}
.description .alert-info {
  background-color: #F3F6F9;
  border-color: #F3F6F9;
}
.description .alert-danger {
  background-color: transparent;
  border-color: rgba(200, 60, 54, 0.3);
}
.description .alert-heading {
  font-size: 2.667rem;
  font-weight: 400;
  margin-bottom: 1.75rem;
}
.description .alert-danger .alert-heading:before {
  content: '';
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3e%3cpath fill='%23C83C36' fill-opacity='.3' d='M14 28c7.645 0 14-6.341 14-14 0-7.645-6.369-14-14.014-14C6.327 0 0 6.355 0 14c0 7.659 6.34 14 14 14Zm0-2.333A11.612 11.612 0 0 1 2.345 14c0-6.465 5.162-11.667 11.64-11.667A11.66 11.66 0 0 1 25.667 14C25.68 20.479 20.464 25.667 14 25.667m-.013-9.183c.658 0 1.029-.37 1.042-1.084l.206-7.247c.014-.7-.535-1.222-1.262-1.222-.742 0-1.263.508-1.25 1.208l.18 7.261c.013.7.397 1.084 1.084 1.084Zm0 4.461c.781 0 1.481-.631 1.481-1.427 0-.81-.686-1.428-1.481-1.428-.81 0-1.483.631-1.483 1.428 0 .782.686 1.427 1.483 1.427Z'/%3e%3c/svg%3e") no-repeat center;
  background-size: cover;
  margin-right: .75rem;
  margin-bottom: -.25rem;    
}
.description .alert p:not(:last-child) {
  margin-bottom: 1.25rem
}
.description .media {
  border: 1px solid #d9d9d9;
  padding: 1.5rem;
  margin-top: 0;
  margin-bottom: 1.25rem;
}
.description .media-heading {
  font-weight: 600;
}
.description .media ul {
  padding-left: 2rem;
  margin-bottom: 0;
}

.description .table-responsive {
  margin-bottom: 2rem;
}
.description .table-responsive::-webkit-scrollbar {
  -webkit-appearance: none;
  height: 4px;
  background-color: #ddd;
  border-radius: 4px;
}
.description .table-responsive::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #888;
}
.description .table tr:first-child td {
  font-weight: 600;
  text-transform: uppercase;
}
.description .table > thead > tr > td, 
.description .table > tbody > tr > td {
  min-width: 7.5rem;
  font-size: 1.333rem;
  padding: 1.5rem .75rem;
  vertical-align: middle;
  white-space: nowrap;
}

.information-9 .table tr td {
  text-align: center;
}

.information-13 .description .table-responsive {
  background-color: #F3F6F9;
  border-radius: 2.5rem;
  padding: 2.5rem;
}
.information-13 .description .table {
  border: none;
}
.information-13 .table > tbody > tr > td {
  border: none;
  border-bottom: 1px solid #DFE0E2;
}

.information-15 .description,
.information-18 .description {
  max-width: 1160px;
  margin: auto;
  *=max-width: calc(1160px + var(--container-offset)* 2);
}

.information-17 .description {
  max-width: 1160px;
  margin: auto;
}
.information-17 .description h2 {
  font-size: 2.667rem;
  font-weight: 600;
  margin-top: 0;
}
.information-17 .description .thumbnail {
  min-height: 39rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f7f7f7;
  border-color: #d9d9d9;
  border-radius: .833rem;
}

.catalog-item .thumbnail {
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 30px;
}
.catalog-item .thumbnail .caption {
  height: 4rem;
  padding: 0;
  text-align: center;
}
.catalog-item .thumbnail .name {
  font-size: 1.333rem;
  line-height: 1.15;
}
.catalog-item .thumbnail .text {
  color: rgba(0, 110, 199, .4);
}
.printing-item {
  margin-bottom: 40px;
}
.printing-item .printing-thumbnail {
  background: #F7F7F7;
  border-radius: 10px;
  margin-bottom: 20px;
}
.printing-item .image {
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.printing-item .img-responsive {
  max-height: 220px;
}
/*printings-info*/
.gallery {
  gap: 1em;
}
.gallery img {
  flex: 1 1 0;
}
.image-background {
  background: #F4F4F4;
}
.text-with-icon {
  border: 1px solid #D9D9D9;
  padding: 15px;
  margin-bottom: 10px;
  -ms-flex-align: center;
  align-items: center;
}
.text-with-icon .icon {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}
.text-with-icon .text {
  flex: 1;
  margin: 0;
}
.symbol-text {
  font-size: 7em;
  line-height: 1px;
  font-style: italic;
}
.production-text .text {
  font-size: 32px;
}
.production-text span {
  font-size: 48px;
}
.img-top img, .w-100 {
  width: 100%;
}
.image-wrapper img {
  /*width: 100%;*/
  /*object-fit: cover;*/
}
.img-full {
  border-radius: 10px;
  border: 1px solid #D9D9D9;
}
.img-full img, .img-double img {
  /*height: 100%;*/
}
.img-double {
  gap: 10px;
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
}
.img-bottom {
  width: 50%;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-bottom img {
  width: 100%;
}
.img-top img {
  height: auto;
}
.img-border {
  border: 1px solid #D9D9D9;
}
.eney-logo {
  padding: 15px 0;
}
/*printings-info-end*/
/* account */
.stars .svg-icon {
  fill: none;
}
.stars .svg-icon.light {
  fill: #FFD104;
}

.account .title {
  font-size: 2.667rem;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.account .heading {
  margin-bottom: 3rem;
}
.account .heading .title {
  margin-bottom: 1rem;
}

.regi,
.logi {
  margin-bottom: 3rem;
}

.regi .well {
  padding: 4rem 2.5rem;
}

.logi .well form {
  padding-top: 1.5rem;  
}

.well {
  background-color: #F3F6F9;
  border-radius: 2.5rem;
  border: none;
  padding: 2.5rem;
  margin-bottom: 1.75rem;
}

.well b, 
.well strong {
  font-weight: 500;
}

.well .text-muted {
  color: #888;
  margin-bottom: 0;
}

.well fieldset {
  position: relative;
}

.well legend {
  border-bottom: none;
  padding-top: 1.5rem;
  margin-bottom: .5rem
}

.well .buttons {
  margin: 2.5rem 0 0;
}

.well .buttons .btn {
  min-width: 10rem;
}

.toggle-password {
  position: absolute;
  right: 10%;
  top: 50%;
  cursor: pointer;
  font-size: 18px;
  user-select: none;
}

.form-row .form-group {
  margin-left: 0;
  margin-right: 0;
}

.account .form-group .control-label {
  display: none;
}

.account .form-control {
  *=color: #888;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #DFE0E3;
  border-radius: 0;
  *=text-transform: uppercase;
  padding: 1rem 0;
}

.account select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' width='11' height='7'%3e%3cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' d='m1.303 1.29 4 4 4-4'/%3e%3c/svg%3e") no-repeat 98% center;
}

.account .forgot {
  font-size: 1.125rem;
  font-weight: 500;
  color: #000;
}
#button-edit-text, #button-cancel {
  display: none;
}
.form-company,
.form-company + .custom-field {
  padding-right: 14rem;
}
.form-logo {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #F3F6F9;
}
.sub-logo {
  color: #616161;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.btn-logo {
  position: relative;
  width: 12.5rem;
  height: 8.333rem;
  border: 1px dashed #0091EA;
  border-radius: .83rem;
}
.btn-logo img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: .5rem;
  object-fit: contain;
}
@media (min-width: 768px) {
  .form-company,
  .form-company + .custom-field {
    padding-right: 17rem;
  }
  .form-logo {
    padding-left: 3rem;
  }
}

.balance .sub {
  color: #888;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.balance .price {
  font-weight: 400;
  margin-bottom: 2.5rem;
}
.balance .sale {
  color: #0091EA;
}
.balance .special {
  color: #E53935;
}

.rate {
  margin-bottom: 1.75rem;
}
.rate .title {
  margin-bottom: 0;
}
.rate .numbers {
  font-size: 2rem;
  line-height: 1.125;
}

.stars {
  position: relative;
}
.stars .lights {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
}

.manager {
  font-size: 1.333rem;
}
.manager .name {
  font-weight: 600;
}
.manager .telephone a {
  color: #000;
}
.manager .telephone a:hover {
  text-decoration: underline;
}
.manager .email {
  font-weight: 500;
}
.manager .image {
  flex-shrink: 0;
}
@media (max-width: 481px) {
  .manager .image {
    display: none;
  }
}

.overflow-table {
  border: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: auto
}
.overflow-table::-webkit-scrollbar {
  -webkit-appearance: none;
  height: 4px;
  background-color: #ddd;
  border-radius: 4px;
}
.overflow-table::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #888;
}
.overflow-table .table {
  margin-bottom: 2rem;
}

.companies .table .form-control {
  min-width: 16rem;
  border-bottom: none;
}
.companies .table .btn {
  min-width: 10rem;
}

.users-table > thead > tr > td,
.users-table > tbody > tr > td,
.users-table > tfoot > tr > td {
  border-top: 1px solid #DFE0E2;
  padding: 2rem 1rem 1rem 0;
  vertical-align: middle;
  white-space: nowrap
}
.users-table > tbody > tr > td.last {
  padding-right: 0;
} 
.users-table > thead > tr > td {
  font-weight: 600;
  text-transform: uppercase;
}
.users-table .head,
.users-table .item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #DFE0E2;
}
.users-table .item:last-child {
  border-bottom: none;
}  
.users-table .col {
  flex: 1 1 auto;
  flex-basis: 18.75%;
  min-width: 6.5rem;
  font-size: 1.333rem;
  padding: 1rem 0;     
}
.users-table .col.last {
  flex-basis: 25%;
}
.users-table .head .col {
  font-weight: 600;
  text-transform: uppercase;
}
.users-table .inactive .col,
.users-table .inactive td {
  color: #C5C5C5;
}
.users-table .status {
  min-width: 8rem;
}
.users-table .item:not(.inactive) .status {
  color: #0091EA;
}

@media screen and (min-width: 992px) {
  .users-table > thead > tr > td,
  .users-table > tbody > tr > td {
    min-width: 18rem
  }
}

.orders {
  margin-bottom: 3rem;
}

.orders-table > thead > tr > td,
.orders-table > tbody > tr > td {
  min-width: 7.5rem;
  font-size: 1.333rem;
  border-top: none;
  border-bottom: 1px solid #DFE0E2;
  padding: 1.5rem .75rem;
  vertical-align: middle;
  white-space: nowrap
}
/*.orders-table > thead > tr > td {
padding-top: 1.75rem;
padding-bottom: 1.75rem;
}*/
.orders-table > tbody > tr > td.customer {
  min-width: 20rem;
}
.orders-table > tbody > tr > td.last {
  width: 22.5%;
}
.orders-table > thead > tr > td {
  font-weight: 600;
  text-transform: uppercase;
}
.orders .orders-table > tbody > tr:hover {
  background-color: #F3F6F9;
}
.orders .orders-table .item {
  cursor: pointer;
}
.orders-table .col-num {
  width: 8.5rem;
}
.orders-table .col-product {
  width: 46.5rem;
}
.orders-table .product {
  min-width: 30rem;
  font-size: 1.167rem;
  white-space: normal;
}
.shipment {
  padding-top: 2rem;
  margin-bottom: -1rem;
}
.shipment .orders-table {
  max-width: 55rem;
}

.orders-table .head,
.orders-table .item {
  *=border-bottom: 1px solid #DFE0E2;
}
.orders-table a:last-child .item {
  border-bottom: none;
}
.orders-table .item:hover {
  *=background-color: #F3F6F9;
}
.orders-table a {
  text-decoration: none;
}
.orders-table .col {
  flex: 1 1 auto;
  flex-basis: 18.75%;
  min-width: 6.5rem;
  font-size: 1.333rem;
  color: #111113;
  padding: 1.5rem .5rem;   
}
.orders-table .head .col {
  font-weight: 600;
  text-transform: uppercase;
  padding: 1.75rem .5rem;
}
.orders-table .col.last {
  flex-basis: 25%;
}

.order-details {
  padding: 1rem 0 3rem;
}

.order-details .detitle {
  font-size: 1.667rem; 
  text-transform: uppercase;
  text-align: right;
  padding-left: 5rem;
}

.order-products .subtitle {
  font-family: 'Franklin Gothic Book', sans-serif;
  font-size: 1.667rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem
}
.order-products .orders-table,
.order-products .orders-table tr td {
  border: 1px solid #DFE0E2;
}

.order-comment {
  margin-bottom: 2rem;
}
.order-comment .form-control {
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 1.5rem;
  resize: vertical;
}

.custom-checkbox input[type="checkbox"] {
  display: none;
}
.custom-checkbox label {
  position: relative;
  font-weight: 500;
  padding-left: 2.5rem;
}
.custom-checkbox label:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: .125rem;
  transition: .15s ease 0s;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 5px;
  border: 1px solid #C5C5C5;
}
.custom-checkbox input[type="checkbox"]:checked + label:before {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

@media (min-width: 1200px) {
  #content .col-lg-2:nth-child(6n+1),
  #content .col-lg-3:nth-child(4n+1),
  #content .col-lg-4:nth-child(3n+1),
  #content .col-lg-6:nth-child(2n+1) {
    clear:left;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #content .col-md-2:nth-child(6n+1),
  #content .col-md-3:nth-child(4n+1),
  #content .col-md-4:nth-child(3n+1),
  #content .col-md-6:nth-child(2n+1) {
    clear:left;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #content .col-sm-2:nth-child(6n+1),
  #content .col-sm-3:nth-child(4n+1),
  #content .col-sm-4:nth-child(3n+1),
  #content .col-sm-6:nth-child(2n+1) {
    clear:left;
  }
  #content .col-sm-2:nth-child(6n+1).advantage-item,
  #content .col-sm-3:nth-child(4n+1).advantage-item,
  #content .col-sm-4:nth-child(3n+1).advantage-item,
  #content .col-sm-6:nth-child(2n+1).advantage-item {
    clear:none;
  }
}

/* fixed colum left + content + right*/
@media (min-width: 768px) {
  #column-left  .product-layout .col-md-3 {
    width: 100%;
  }

  #column-left + #content .product-layout .col-md-3 {
    width: 50%;
  }

  #column-left + #content + #column-right .product-layout .col-md-3 {
    width: 100%;
  }

  #content + #column-right .product-layout .col-md-3 {
    width: 100%;
  }
}

/* fixed product layouts used in left and right columns */
#column-left .product-layout, #column-right .product-layout {
  width: 100%;
}

/* fixed mobile cart quantity input */
.input-group .form-control[name^=quantity] {
  min-width: 50px;
}

/* Missing focus and border color to overwrite bootstrap */
.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
  background-image: none;
  background-color: #df5c39;
}

/* fix oclabs */
.alert-dismissable .close, .alert-dismissible .close {
  right: -1px;
}

.fancybox__container {
  z-index: 1052!important;
}

/* Modal theme style */
.modal-left .modal-dialog,
.modal-right .modal-dialog {
  width: 38rem;
  height: 100%;
}

.modal-left .modal-dialog {
  margin: 0;
}

.modal-right .modal-dialog {
  margin: 0 0 0 auto;
}

.modal-left.fade .modal-dialog {
  -webkit-transform: translate(-25%, 0);
  -ms-transform: translate(-25%, 0);
  -o-transform: translate(-25%, 0);
  transform: translate(-25%, 0);
}

.modal-right.fade .modal-dialog {
  -webkit-transform: translate(25%, 0);
  -ms-transform: translate(25%, 0);
  -o-transform: translate(25%, 0);
  transform: translate(25%, 0);
}

.modal-left.in .modal-dialog,
.modal-right.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-left .modal-content,
.modal-right .modal-content {
  width: 38rem;
  height: 100%;
  overflow: auto;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.modal-right .modal-content {
  margin-left: auto;
}

.modal-header {
  padding: 1.25rem 2rem;
  border-bottom: none;
}

.modal-header .close {
  margin-top: 0.35rem;
  opacity: 1;
  text-shadow: none;
}

.modal-header .modal-title {
  font-size: 2rem;
  font-weight: 600;
}

.modal-body {
  padding: 1.25rem 2rem 2.5rem;
}

.modal-footer {
  padding: 1.25rem 2rem;
}


.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  color: #333;
  font-size: 16px;
}

.svg-icon {
  transition-duration: 0.5s;
  transition-property: transform;
}

.active .svg-icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.active .faq-answer {
  display: block;
}

@media (max-width: 481px) {
  .modal-left .modal-dialog,
  .modal-right .modal-dialog,
  .modal-left .modal-content,
  .modal-right .modal-content {
    width: 100%;
  }
}

@keyframes slide-up {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0rem);
    opacity: 1;
  }

  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}
@keyframes scale-up {
  0% {
    opacity: 0;
    transform: scale(0)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}
@-webkit-keyframes search-collapse-animate {
  0% {
    opacity: 0
  }

  30% {
    opacity: 0;
    top: -20px
  }

  to {
    opacity: 1;
    top: 0
  }
}
@keyframes search-collapse-animate {
  0% {
    opacity: 0
  }

  30% {
    opacity: 0;
    top: -20px
  }

  to {
    opacity: 1;
    top: 0
  }
}
@-webkit-keyframes marker-ripple-animation {
  0% {
    -webkit-transform: translate3d(-50%,-50%,0) scale(1);
    opacity: 1
  }

  100% {
    -webkit-transform: translate3d(-50%,-50%,0) scale(1.5);
    opacity: 0
  }
}

@keyframes marker-ripple-animation {
  0% {
    transform: translate3d(-50%,-50%,0) scale(1);
    opacity: 1
  }

  100% {
    transform: translate3d(-50%,-50%,0) scale(1.5);
    opacity: 0
  }
}

.socials {
	display: none;
}