﻿/*$font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;*/
/*#region Inputs*/
/*#region Radio button*/
/* The container */
.radioButton {
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 20px;
  width: 20px; }

/* Hide the browser's default radio button */
.radioButton input {
  position: absolute;
  opacity: 0;
  cursor: pointer; }

/* Create a custom radio button */
.radioButton .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-shadow: inset 0px 1px 1px 0px #dbdcdd;
  -moz-box-shadow: inset 0px 1px 1px 0px #dbdcdd;
  box-shadow: inset 0px 1px 1px 0px #dbdcdd;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  border: 2px #d4d7db solid;
  background-color: white; }

/* On mouse-over, add a grey background color */
.radioButton:hover input ~ .checkmark {
  border-color: #22c6ff; }

/* When the radio button is checked, add a blue background */
.radioButton input:checked ~ .checkmark:after {
  background-color: #343a40;
  display: block;
  width: 8px;
  height: 8px;
  left: 4px;
  top: 4px; }

/* Create the indicator (the dot/circle - hidden when not checked) */
.radioButton .checkmark:after {
  content: "";
  position: absolute;
  display: none; }

/* Style the indicator (dot/circle) */
.radioButton .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white; }

.radioButton-label {
  cursor: pointer; }

.radioButtonOuter {
  display: inline-block; }

/*#endregion Radio button*/
/*#region Color square*/
/* The container */
.colorSquare {
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 20px;
  width: 20px; }

/* Hide the browser's default radio button */
.colorSquare input {
  position: absolute;
  opacity: 0;
  cursor: pointer; }

/* Create a custom radio button */
.colorSquare .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  border: 2px #d4d7db solid;
  background-color: white; }

/* When the radio button is checked, add a blue background */
.colorSquare input:checked ~ .checkmark {
  border-color: #343a40; }

/* On mouse-over, add a grey background color */
.colorSquare:hover input ~ .checkmark {
  border-color: #22c6ff; }

/* Create the indicator (the dot/circle - hidden when not checked) */
.colorSquare .checkmark:after {
  content: "";
  position: absolute;
  display: none; }

/* Style the indicator (dot/circle) */
.colorSquare .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white; }

/*#endregion Radio button*/
/*#region Text box plus minus*/
.textBox-plusMinus {
  display: inline-flex; }

.textBox-plusMinus input {
  text-align: right; }

.textBox-plusMinus .input-group-append {
  width: 30px; }

.textBox-plusMinus .textBox-plusMinus-button {
  position: absolute;
  right: 15px;
  font-size: 16px;
  font-weight: bold; }

.textBox-plusMinus .textBox-plusMinus-buttonPlus {
  top: 15%; }

.textBox-plusMinus .textBox-plusMinus-buttonMinus {
  bottom: 15%;
  padding-right: 2px; }

/*#endregion Text box plus minus*/
/*#region Number kit*/
input[type=number] {
  -moz-appearance: textfield; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */ }

/*#endregion Number kit*/
/*#endregion*/
/*#region Core */
/*#region Slick*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

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

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

.slick-track:after, .slick-track:before {
  content: "";
  display: table; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  outline: 0;
  min-height: 1px;
  display: none; }

[dir="rtl"] .slick-slide {
  float: right; }

.slick-slide:hover, .slick-slide:focus {
  outline: 0; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

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

.slick-loading .slick-list {
  background: #fff url("../img/ajax-loader.gif") center center no-repeat; }

@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/slick.eot");
  src: url("../fonts/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick.woff") format("woff"), url("../fonts/slick.ttf") format("truetype"), url("../fonts/slick.svg#slick") format("svg"); }

.slick-dotted .slick-slider {
  margin-bottom: 30px; }

/*#endregion Slick*/
/*#region Pager*/
.pager div {
  padding-top: 12px; }

.pager .prev {
  padding-right: 16px; }

.pager .next {
  padding-left: 16px; }

.pager span:not(.isActive) {
  cursor: pointer; }

.pager span {
  line-height: 34px; }

.pager ul {
  padding: 0px; }

.pager ul li {
  display: inline-block;
  list-style-type: none; }

.pager .prev, .pager .dots, .pager .next {
  display: inline-block; }

.pager span {
  margin-left: 2px;
  margin-right: 2px;
  width: 34px;
  height: 34px;
  display: inline-block;
  border-radius: 17px;
  text-align: center;
  color: black; }

.pager span.isActive {
  background-color: #22c6ff;
  color: #fff; }

.pager span:hover {
  background-color: #fff !important;
  color: black !important; }

.pager span.isActive:hover {
  color: #22c6ff !important; }

/*#endregion Pager*/
/*#region Sorting*/
.sorting {
  padding-top: 12px;
  line-height: 34px; }

.sorting .sortBy {
  text-decoration: underline; }

.sorting .sortBy.isActive {
  text-decoration: none;
  color: #39ccff; }

.sorting .delimiter {
  padding-left: 20px;
  padding-right: 20px; }

/*#endregion*/
/*#region Catalog products*/
.catalog_products .products .row {
  margin: 0px; }

.catalog_products .products .row > div {
  padding: 0px; }

/*#endregion Catalog produxts*/
/*#region Information box*/
.informationBox {
  display: flex;
  padding: 16px 16px 12px 16px; }

.informationBox div.icon {
  flex-basis: 0;
  flex-grow: 0;
  max-width: 100%;
  align-self: center; }

.informationBox div.message {
  display: inline-block;
  /*font-weight: bold;*/
  flex-basis: 1;
  flex-grow: 1;
  max-width: 100%; }

.informationBox.informationBox-success {
  background-color: #dff5c4;
  color: #9abf13;
  fill: #9abf13; }

.informationBox.informationBox-info {
  background-color: #d3f4ff;
  color: #22c6ff;
  fill: #22c6ff; }

.informationBox.informationBox-warning {
  background-color: #fdf4c8;
  color: #efc70a;
  fill: #efc70a; }

.informationBox.informationBox-error {
  background-color: #fae3e5;
  color: #dc3545;
  fill: #dc3545; }

.informationBox svg {
  width: auto;
  height: 26px;
  display: inline-block;
  vertical-align: middle;
  padding-right: 16px; }

/*#endregion Information box*/
/*#region Notification bar*/
.bar-notification {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 15px 25px 15px 10px;
  line-height: 16px;
  color: #fff;
  opacity: 0.95; }

.bar-notification.success {
  background-color: #9abf13; }

.bar-notification.error {
  background-color: #dc3545; }

.bar-notification.warning {
  background-color: #fd7e14; }

.bar-notification .content {
  margin: 0 10px 0 0; }

.bar-notification .content a {
  color: #fff;
  text-decoration: underline; }

.bar-notification .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  margin: 7px;
  background: #fff url("../images/close.png") center no-repeat;
  cursor: pointer; }

/*#endregion*/
label {
  margin-bottom: 0px; }

.active {
  color: #22c6ff; }

.hr, hr {
  background: url("/Themes/HihiHehe/Content/Images/horizontalLinePart.png");
  border: none;
  height: 2px;
  width: 100%;
  padding: 0px;
  margin: 0px; }

hr.center {
  background: url("/Themes/HihiHehe/Content/Images/horizontalLinePartCent.png"); }

h1 {
  font-size: 2rem;
  padding-bottom: 24px;
  text-transform: uppercase; }

/*#region Breadcrumb*/
.breadcrumb .breadcrumb-item a {
  text-decoration: underline; }

/*#endregion Breadcrumb*/
/*#endregion Core */
/*#region Shared*/
/*#region Category*/
/*#region Category box*/
.category-box-outer {
  padding: 10px;
  background-color: transparent; }

.category-box:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25); }

/*#endregion*/
/*#region Category box small*/
.categories-small {
  margin-left: -10px;
  margin-right: -10px; }

.categories-small .category-box {
  height: 95px;
  background-color: #fff;
  border-bottom: 2px solid #eee9dd;
  display: block;
  padding: 10px;
  display: flex; }

.categories-small .category-box-image {
  width: 100px; }

.categories-small .category-box-name-outer {
  width: auto;
  height: 70px;
  line-height: 70px; }

.categories-small .category-box-name {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
  text-transform: uppercase;
  line-height: 24px; }

/*#endregion*/
/*#endregion*/
/*#region Article */
/*#region Article box*/
.newitem-box {
  height: 390px;
  background-color: #fff;
  border-bottom: 2px solid #eee9dd;
  display: block;
  text-align: left; }

.newitem-box-outer {
  background-color: transparent; }

.newitem-box:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25); }

.newitem-box .newitem-box-image {
  height: 200px;
  vertical-align: middle;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%; }

.newitem-box .newitem-box-image img {
  width: auto;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  max-height: 200px; }

.newitem-box .newitem-box-text {
  padding: 30px; }

.newitem-box .newitem-box-text .newitem-box-date svg {
  height: 20px;
  width: 20px;
  fill: #22c6ff;
  padding-right: 8px; }

.newitem-box .newitem-box-text span {
  font-size: 14px; }

.newitem-box .newitem-box-text .newitem-box-date span {
  vertical-align: top; }

.newitem-box-text h3 {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0px 0px 8px 0px; }

/*#endregion News item box*/
/*#region Article horizontal*/
.aricle-horizontalBox {
  padding: 5px;
  height: 90px;
  background-color: #fff;
  border-bottom: 2px solid #eee9dd;
  display: block; }

.aricle-horizontalBox-outer {
  padding: 10px;
  background-color: transparent; }

.aricle-horizontalBox:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25); }

.aricle-horizontalBox .aricle-horizontalBox-image {
  height: 80px;
  width: 100px;
  display: inline-block;
  vertical-align: top; }

.aricle-horizontalBox .aricle-horizontalBox-image img {
  max-height: 80px;
  width: auto;
  text-align: center; }

.aricle-horizontalBox .aricle-horizontalBox-overview {
  padding: 15px;
  display: inline-block;
  width: calc(100% - 110px); }

.aricle-horizontalBox .aricle-horizontalBox-name {
  font-size: 18px; }

.aricle-horizontalBox .aricle-horizontalBox-date {
  display: block;
  font-size: 14px; }

.aricle-horizontalBox .aricle-horizontalBox-date svg {
  height: 20px;
  width: 20px;
  fill: #22c6ff;
  padding-right: 8px;
  vertical-align: middle; }

/*#endregion Article box horizontal*/
/*#endregion Articles */
/*#region Product*/
/*#region Product box*/
.product-box {
  padding: 10px;
  height: 470px;
  background-color: #fff;
  border-bottom: 2px solid #eee9dd;
  display: block;
  padding: 10px; }

.product-box-outer {
  padding: 10px;
  background-color: transparent; }

.product-box:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25); }

.product-box .product-box-image {
  height: 270px;
  vertical-align: middle;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%; }

.product-box .product-box-image img {
  width: auto;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  max-height: 270px; }

.products {
  margin-left: -10px;
  margin-right: -10px; }

.product-box .product-box-colors {
  height: 52px;
  text-align: center;
  cursor: default;
  padding-top: 4px; }

.product-box .product-box-color {
  width: 20px;
  height: 20px;
  margin-left: 3px;
  margin-right: 3px;
  display: inline-block;
  border-radius: 10px; }

.product-box .product-box-color:hover {
  border-color: #22c6ff !important; }

.product-box .product-box-avail {
  text-align: center; }

.product-avail .avail {
  color: #9abf13; }

.product-avail .from-vendor {
  color: #22c6ff; }

.product-avail .week-avail {
  color: #efc70a; }

.product-avail .non-avail {
  color: #dc3545; }

.product-box .product-box-name {
  color: black;
  text-align: center;
  padding-top: 5px;
  height: 53px; }

.product-box .product-box-price {
  color: #22c6ff;
  text-align: center;
  font-size: 20px;
  padding-top: 10px; }

.product-box .product-box-flags {
  position: absolute;
  top: 15px;
  text-align: left; }

/*#endregion Product box*/
/*#region Product flags*/
.product-box-flags {
  padding-top: 4px; }

.product-box-flags .product-flag svg {
  height: 20px;
  width: auto;
  text-align: center;
  vertical-align: middle; }

.product-box-flags .product-flag-icon-outer {
  display: inline-block; }

.product-box-flags .product-flag-icon {
  display: block;
  text-align: center;
  width: 35px; }

.product-box-flags .product-flag {
  display: block;
  width: 50px;
  max-width: 50px;
  padding: 6px 12px 6px 6px;
  text-align: left;
  color: #fff;
  fill: #fff;
  border-radius: 5px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
  text-overflow: hidden;
  overflow: hidden;
  position: static;
  margin-bottom: 5px;
  -webkit-transition: max-width 0.5s;
  -moz-transition: max-width 0.5s;
  -o-transition: max-width 0.5s;
  transition: max-width 0.5s;
  -webkit-transition: max-width .5s;
  -o-transition: max-width .5s;
  transition: max-width .5s; }

.product-box-flags .product-flag-title {
  display: none;
  font-size: 14px;
  padding-right: 8px; }

.product-box-flags .product-flag-delivery {
  background-color: #9abf13; }

.product-box-flags .product-flag-star {
  background-color: #efc70a; }

.product-box-flags .product-flag-action {
  background-color: #dc3545; }

.product-box-flags .product-flag-action svg {
  transform: rotateZ(180deg); }

.product-box-flags .product-flag-new {
  background-color: #22c6ff; }

.product-box-flags .product-flag:hover {
  width: auto;
  max-width: 200px;
  -webkit-transition: max-width 0.5s;
  -moz-transition: max-width 0.5s;
  -o-transition: max-width 0.5s;
  transition: max-width 0.5s;
  -webkit-transition: max-width .5s;
  -o-transition: max-width .5s;
  transition: max-width .5s; }

.product-box-flags .product-flag:hover .product-flag-title {
  display: inline-block; }

/*.product-flag-right {
    text-align: right;
    border-radius: 5px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    right: 0;
    float: right;
}*/
/*#endregion Product flags*/
/*#region Product horizontal*/
.product-horizontalBox {
  padding: 5px;
  height: 90px;
  background-color: #fff;
  border-bottom: 2px solid #eee9dd;
  display: block; }

.product-horizontalBox-outer {
  padding: 10px;
  background-color: transparent; }

.product-horizontalBox:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25); }

.product-horizontalBox .product-horizontalBox-image {
  height: 80px;
  width: 100px;
  display: inline-block;
  vertical-align: top; }

.product-horizontalBox .product-horizontalBox-image img {
  max-height: 80px;
  width: auto;
  text-align: center; }

.product-horizontalBox .product-horizontalBox-overview {
  padding: 15px;
  display: inline-block;
  width: calc(100% - 110px); }

.product-horizontalBox .product-horizontalBox-name {
  font-size: 18px; }

.product-horizontalBox .product-horizontalBox-priceAvailibility {
  display: block; }

.product-horizontalBox .product-horizontalBox-priceAvailibility .price {
  font-size: 14px;
  color: #22c6ff; }

.product-horizontalBox .product-horizontalBox-priceAvailibility .avail {
  font-size: 14px;
  float: right; }

/*#endregion Product horizontal*/
/*#region Product slider*/
.productSlider .pager ul li.slick-active span {
  background-color: #22c6ff;
  color: #fff; }

.productSlider .pager ul li.slick-active span:hover {
  color: #22c6ff !important; }

/*#endregion Product slider*/
/*#endregion Product*/
/*#endregion Shared*/
/*#region Header */
/*#region Floating cart */
.floating-cart {
  display: none; }

/*#endregion Floating cart*/
.admin-header-links {
  text-align: center; }

nav .separator {
  background-color: #9e9c97;
  height: 15px;
  vertical-align: middle;
  width: 1px;
  display: inline-block; }

header .container img {
  height: 62px; }

.menu {
  -webkit-box-shadow: 0px 12px 18px 0px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 12px 18px 0px rgba(0, 0, 0, 0.04); }

header hr {
  margin-top: 32px; }

/*#endregion Header */
/*#region Footer*/
footer img {
  width: 250px; }

footer hr {
  margin-top: 32px; }

footer h2 {
  font-size: 20px;
  text-align: left;
  padding-top: 10px;
  text-transform: uppercase; }

footer ul {
  padding: 16px 0px 0px 0px;
  margin: 0; }

footer ul li {
  font-size: 14px;
  list-style-type: none;
  text-align: left;
  padding-bottom: 12px; }

footer .footer-powered-by {
  padding-bottom: 24px;
  padding-top: 24px;
  font-size: 14px;
  color: #808080; }

/*#endregion*/
/*#region Homepage*/
/*#region Homepage slider*/
.homepage-slider .slick-arrow {
  display: none !important; }

.homepage-slider {
  position: relative; }

.homepage-slider ul.slick-dots {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 10px;
  display: block; }

.homepage-slider ul.slick-dots li {
  display: inline-block !important;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #eee9dd;
  margin-left: 5px;
  margin-right: 5px;
  line-height: 34px; }

.homepage-slider ul.slick-dots li.slick-active {
  background-color: #fff; }

.homepage-slider ul.slick-dots li button {
  display: none; }

.l-homepageSlider {
  overflow: hidden;
  display: none; }

@media (min-width: 768px) {
  .l-homepageSlider {
    display: block; } }

.homepage-slide {
  background-position: center;
  background-size: cover;
  outline: 0;
  min-height: 100%;
  position: relative;
  overflow: hidden; }

@media (min-width: 992px) {
  .homepage-slide {
    height: 380px; } }

@media (min-width: 1200px) {
  .homepage-slide {
    height: 450px; } }

.l-homepageSlide__asset {
  position: absolute; }

.c-homepageSlide__asset {
  position: relative; }

.c-homepageSlide__asset-text {
  position: absolute;
  display: block;
  top: 0;
  width: 100%;
  height: 100%; }

.c-homepageSlide__asset-text .text-outer {
  display: table;
  position: absolute;
  height: 100%;
  width: 100%; }

.c-homepageSlide__asset-text .text-middle {
  display: table-cell;
  vertical-align: middle; }

.c-homepageSlide__asset-text .text-inner {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  display: block; }

.l-homepageSlide__content h2 {
  font-size: 30px; }

@media (min-width: 992px) {
  .l-homepageSlide__content h2 {
    font-size: 42px; } }

.homepage-slider .slick-arrow {
  display: none !important; }

.homepage-slider {
  position: relative; }

.homepage-slider ul.slick-dots {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 10px;
  display: block; }

.homepage-slider ul.slick-dots li {
  display: inline-block !important;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #eee9dd;
  margin-left: 5px;
  margin-right: 5px;
  line-height: 34px; }

.homepage-slider ul.slick-dots li.slick-active {
  background-color: #fff; }

.homepage-slider ul.slick-dots li button {
  display: none; }

/*#endregion*/
/*#region Homepage two banner */
.hp-banner {
  position: relative; }

.hp-banner .background {
  position: absolute;
  top: 0;
  height: 88px;
  width: 100%; }

.hp-banner .hp-banner-box {
  height: 176px;
  position: relative;
  overflow: hidden;
  padding-right: 270px !important;
  z-index: 1; }

.hp-banner .hp-banner-box img.hp-banner-box-image {
  position: absolute;
  right: -5%;
  top: -5%;
  max-width: 250px;
  z-index: 1; }

.hp-banner .hp-banner-box img.hp-banner-box-asset {
  position: absolute;
  right: -5%;
  bottom: -5%;
  z-index: 0; }

/*#endregion*/
/*#region Homepage products*/
.homepage-products-buttons {
  text-align: center;
  display: block !important; }

.homepage-products-buttons a {
  font-size: 1.25rem;
  text-transform: uppercase;
  display: inline-block;
  padding-left: 40px;
  padding-right: 40px;
  display: initial !important; }

/*#endregion Homepage products*/
/*#region Homepage advantages*/
.advantages .icon {
  width: 90px;
  height: 90px;
  border-radius: 45px;
  position: relative; }

.advantages .icon .inner {
  width: 90px;
  height: 90px;
  border-radius: 45px;
  position: absolute;
  top: -2px; }

.advantages .icon .inner svg {
  margin-left: 20px;
  margin-top: 20px;
  width: 50px;
  height: 50px;
  fill: #fff; }

.advantages strong {
  font-size: 16px; }

.advantages small {
  font-size: 14px; }

.advantages .icon {
  display: inline-block; }

.advantages .text {
  display: inline-block; }

.advantages .blue {
  background-color: #1cacde; }

.advantages .blue .inner {
  background-color: #22c6ff; }

.advantages .green {
  background-color: #659411; }

.advantages .green .inner {
  background-color: #8ac115; }

.advantages .purple {
  background-color: #c532a0; }

.advantages .purple .inner {
  background-color: #ff4ad1; }

.advantages .yellow {
  background-color: #c8a608; }

.advantages .yellow .inner {
  background-color: #efc70a; }

/*#endregion Homepage advantages*/
/*#region Homepage newsletter*/
.newsletter {
  padding-bottom: 50px; }

.newsletter .icon svg {
  color: #1b1718;
  height: 70px;
  width: 70px;
  padding-right: 16px; }

.newsletter .text {
  font-size: 2rem;
  line-height: 77px;
  vertical-align: top; }

/*#endregion Homepage newsletter*/
/*#endregion Homepage*/
/*#region Category*/
.category_description {
  text-align: center;
  font-size: 14px;
  padding-bottom: 24px;
  color: #1b1718; }

.category_description p {
  margin-bottom: 6px; }

.category_description a {
  text-decoration: underline; }

/*#region Filters*/
.category-filters {
  background-color: #fff;
  border-bottom: 2px solid #eee9dd; }

.filter_box {
  padding: 16px; }

/*#region Range*/
/*#region Price*/
.filter_box .filter_range {
  padding: 16px 16px 0px 16px;
  height: 67px; }

.filter_box .filter_range .filter_rangeInner {
  height: 7px;
  border-radius: 0px;
  box-shadow: none; }

.filter_box .filter_range .noUi-origin {
  background: #d9d9d9;
  box-shadow: none; }

.filter_box .filter_range .noUi-origin:first-of-type {
  position: absolute;
  background-color: #ff60d6;
  height: 7px; }

.filter_box .filter_range .noUi-handle {
  width: 28px;
  height: 28px;
  border-radius: 14px;
  top: -10px;
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 6px 0px #000000;
  box-shadow: 2px 2px 6px 0px #000000;
  font-size: 14px;
  text-transform: lowercase;
  line-height: 28px;
  text-align: center; }

.filter_box .filter_rangeValues {
  padding-top: 20px; }

.filter_box .filter_rangeValues .filter_rangeTo {
  float: right; }

.filter_box .filter_range .noUi-connect {
  background-color: #ff72da; }

.noUi-handle:after,
.noUi-handle:before {
  top: -1px;
  left: 6px;
  background: none; }

/*#endregion*/
/*#endregion*/
/*#endregion*/
/*#endregion*/
/*#region Product*/
/*#region Product detail*/
.product-detail {
  padding-bottom: 48px; }

.product-detail .product-detail-overview h1 {
  font-weight: bold; }

/*#region Product right side*/
/*#region Short description*/
.product-detail-description {
  font-size: 14px; }

.product-detail-description .product-detail-mainAttributes {
  padding-top: 16px; }

/*#endregion Short description*/
/*#region Main/Variant parameters*/
.product-detail-mainAttributes .attribute-name,
.product-detail-variantAttributes .attribute-name {
  font-weight: bold;
  line-height: 14px;
  font-size: 14px; }

.product-detail-mainAttributes .attribute-value,
.product-detail-variantAttributes .attribute-value {
  padding-bottom: 16px;
  font-size: 14px; }

.product-detail-mainAttributes .attribute-value label.label,
.product-detail-variantAttributes .attribute-value label.label {
  vertical-align: top;
  padding-right: 24px; }

.product-detail-overview .colorSquare {
  margin-right: 10px; }

.product-detail-overview .attribute-value .radioButton-label {
  margin-left: 8px; }

.product-detail-overview .product-detail-color:hover {
  border-color: #22c6ff !important; }

/*#endregion Main/Variant parameters*/
.product-detail-overview hr {
  margin-top: 16px;
  margin-bottom: 32px; }

.product-detail-overview .informationBox {
  margin-top: 16px; }

/*#region Buy box*/
.product-detail-buyBox {
  background-color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  padding: 16px;
  margin-top: 12px; }

.product-detail-buyBox .delivery svg {
  vertical-align: middle; }

.product-detail-buyBoxPrice {
  margin-top: 25px; }

.product-detail-buyBoxPrice .product-detail-priceWithVat {
  font-size: 28px;
  font-weight: bold;
  color: #22c6ff; }

.product-detail-buyBoxPrice .product-detail-priceWithoutVat {
  font-size: 14px; }

.product-detail-buyBoxPrice .product-detail-oldPriceWithoutVat {
  font-size: 14px; }

.product-detail-buyBoxPrice .product-detail-oldPriceWithVat .price {
  text-decoration: line-through; }

.product-detail-buyBoxPrice .product-detail-oldPriceWithVat .discount {
  padding-left: 4px; }

/*#region Buy input/button*/
.product-detail-buyBox .product-detail-buy {
  padding-top: 32px;
  display: flex; }

.product-detail-buyBox .product-detail-unit {
  font-size: 18px;
  display: inline-block;
  color: #808080;
  padding-left: 4px;
  padding-right: 16px;
  line-height: 58px; }

.product-detail-buyBox .product-detail-buy button svg {
  vertical-align: middle; }

.product-detail-buyBox .product-detail-buy button {
  font-size: 18px; }

/*#endregion Buy input/button*/
/*#region Availability*/
.product-detail-availTitle {
  font-weight: bold; }

.product-detail-availText {
  text-align: right; }

/*#endregion Availability*/
/*#endregion Buy box*/
/*#region Links */
.product-detail-links {
  padding-top: 24px; }

.product-detail-links .contact-us svg {
  vertical-align: middle;
  padding-right: 8px; }

.product-detail-links .contact-us span {
  text-decoration: underline;
  padding-right: 32px;
  font-size: 14px; }

/*#endregion*/
/*#endregion Product right side*/
/*#region Product left side*/
/*#region Product image*/
.product-detail-image {
  background-color: #fff;
  border-bottom: 2px solid #eee9dd; }

.product-detail-image img {
  display: block;
  margin: auto; }

.product-detail-imageGallery {
  padding-top: 16px;
  position: relative; }

.product-detail-imageGalleryItem {
  width: 80px;
  height: 80px;
  display: block;
  margin-left: 8px;
  margin-right: 8px;
  background-color: #fff; }

.product-detail-imageGalleryItem img {
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
  display: inline-block; }

.slick-next, .slick-prev {
  position: absolute;
  display: none;
  height: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }

.slick-prev {
  top: 50px;
  left: -15px;
  width: 13px;
  height: 21px;
  background-image: url("../images/arrow-left.png");
  background-size: contain;
  background-repeat: no-repeat; }

.slick-next {
  top: 50px;
  right: -15px;
  width: 13px;
  height: 21px;
  background-image: url("../images/arrow-right.png");
  background-size: contain;
  background-repeat: no-repeat; }

/*#endregion*/
/*#region Related items*/
.product-detail-relatedItems {
  padding-top: 16px; }

.product-detail-relatedItems h2 {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding-top: 32px;
  padding-bottom: 16px;
  margin: 0px; }

/*#endregion*/
/*#endregion Product left side*/
/*#region Product description/attributes */
.product-detail-descriptionAttributes {
  padding-top: 48px;
  padding-bottom: 48px; }

.product-detail-descriptionAttributes h2 {
  font-size: 20px;
  text-transform: uppercase;
  padding-bottom: 24px; }

.product-detail-descriptionAttributes .product-detail-attributes .row {
  font-size: 14px;
  padding: 8px 16px 8px 16px; }

.product-detail-descriptionAttributes .product-detail-attributes .attribute-name {
  font-weight: bold; }

.product-detail-descriptionAttributes .product-detail-attributes .attribute-value {
  color: #1b1718; }

/*#endregion Product description/attributes */
/*#endregion*/
/*#endregion*/
/*#region Shopping cart*/
/*#region Arrows*/
.cart-arrows {
  height: 100px;
  line-height: 60px;
  padding-top: 40px;
  margin-left: 0;
  margin-right: 0; }

.cart-arrows .cart-arrow {
  background-color: #94e0f9;
  font-size: 20px;
  text-transform: uppercase; }

.cart-arrows .cart-arrow .cart-arrow-number:after {
  content: "."; }

.cart-arrows .cart-arrow:not(.active):not(:last-child):before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  -moz-transform: scale(0.9999);
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 20px solid #fff;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -30px;
  right: -20px;
  z-index: 1; }

.cart-arrows .cart-arrow:not(.active):not(:last-child):after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  -moz-transform: scale(0.9999);
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 20px solid #94e0f9;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -30px;
  right: -19px;
  z-index: 1; }

.cart-arrows .cart-arrow.active:not(:last-child):after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  -moz-transform: scale(0.9999);
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 20px solid #22c6ff;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -30px;
  right: -20px;
  z-index: 1; }

.cart-arrows .cart-arrow .cart-arrow-number,
.cart-arrows .cart-arrow .cart-arrow-text {
  color: #fff; }

.cart-arrows .cart-arrow .cart-arrow-number {
  padding-left: 24px; }

.cart-arrows .cart-arrow.active {
  background-color: #22c6ff; }

/*#endregion Arrows*/
/*#region No items*/
.cart .informationBox {
  margin-top: 32px;
  margin-bottom: 32px; }

/*#endregion No items*/
/*#region Products*/
.cart-products {
  display: table;
  width: 100%;
  padding-top: 40px;
  border-bottom: 2px solid #efeadf; }

.cart-products .cart-products-header {
  display: table-header-group;
  background-color: #eee9dd;
  color: #808080;
  font-size: 14px; }

.cart-products .cart-products-header > div {
  display: table-cell;
  padding: 4px 5px 4px 5px; }

.cart-products .cart-products-items {
  width: 100%;
  display: table-footer-group; }

.cart-products .cart-products-item {
  display: table-row;
  background-color: #fff;
  color: #808080; }

.cart-products .cart-products-item > div {
  display: table-cell;
  padding: 5px 5px 3px 5px; }

.cart-products .cart-products-item .cart-product-image img {
  height: 70px;
  width: auto;
  max-width: 100px; }

.cart-products .cart-products-item .cart-product-name a {
  font-size: 16px;
  color: #494032;
  transition: 0.25s; }

.cart-products .cart-products-item .cart-product-name a:hover {
  color: #22c6ff;
  transition: 0.25s; }

.cart-products .cart-products-item .cart-product-unitPrice {
  text-align: right; }

.cart-products .cart-products-item .cart-product-quantity .textBox-plusMinus {
  margin-left: 24px;
  vertical-align: middle; }

.cart-products .cart-products-item .cart-product-itemTotal {
  color: #22c6ff;
  font-weight: bold;
  text-align: right; }

.cart-products .cart-products-item .cart-product-remove {
  padding-left: 24px; }

.cart-products .cart-products-item .cart-product-remove svg {
  vertical-align: middle;
  fill: #9e9c97;
  width: 16px;
  height: 16px; }

.cart-products .cart-products-item .cart-product-remove svg:hover {
  fill: #22c6ff; }

.cart-products .cart-products-item:not(:first-child) {
  background: url("/Themes/HihiHehe/Content/Images/horizontalLinePart.png");
  border: none;
  height: 2px;
  width: 100%;
  padding: 0px;
  margin: 0px;
  background-repeat: repeat-x;
  background-color: white; }

/*#endregion*/
/*#region Free delivery*/
.cart hr {
  margin-top: 32px;
  margin-bottom: 32px; }

.cart .free-delivery {
  padding-top: 36px;
  font-size: 14px;
  color: #1b1718;
  display: flex; }

.cart .free-delivery .free-delivery-amount {
  margin-top: 8px;
  color: #808080;
  display: block; }

.cart .free-delivery .free-delivery-info {
  width: 100%; }

.cart .free-delivery .free-delivery-icon {
  padding-right: 12px;
  vertical-align: middle;
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-align-items: center;
  /* Safari 7.0+ */
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center; }

.cart .free-delivery .free-delivery-icon svg {
  fill: #79ab00;
  width: 44px;
  height: 44px; }

.cart .free-delivery .free-delivery-range {
  height: 12px;
  width: 100%;
  background-color: #cff4bf;
  margin-top: 8px;
  transition: all 1s; }

.cart .free-delivery .free-delivery-range .free-delivery-range-from {
  background-color: #79ab00;
  height: 12px;
  display: block;
  width: 0;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; }

/*#endregion Free delivery*/
/*#region Order totals/buttons*/
.cart .cart-buttons {
  padding-bottom: 64px; }

.cart .cart-orderTotals-button {
  float: right;
  display: flex; }

.cart .order-totals {
  display: block;
  font-weight: bold;
  padding-right: 32px; }

.cart .order-totals .order-totals-title {
  display: block;
  font-size: 14px;
  text-align: right; }

.cart .order-totals .order-totals-price {
  font-size: 24px;
  color: #22c6ff; }

/*#endregion Order totals*/
/*#endregion Shopping cart*/
/*#region Shipping method/payment*/
/*#region Shipping method list*/
.shippingMethodList .shippingMethodList-item {
  background-color: #fdfcfa;
  border-bottom: solid 2px #eee9dd;
  cursor: pointer;
  padding: 0px 16px 0px 24px;
  display: flex;
  align-items: center; }
  .shippingMethodList .shippingMethodList-item:hover, .shippingMethodList .shippingMethodList-item.isActive {
    background-color: #fff; }
  .shippingMethodList .shippingMethodList-item .shippingMethodList-item_img {
    width: 80px;
    display: inline-block;
    vertical-align: top;
    padding-left: 20px;
    padding-top: 24px;
    padding-bottom: 24px; }
    .shippingMethodList .shippingMethodList-item .shippingMethodList-item_img img {
      vertical-align: top;
      height: 20px;
      width: auto; }
  .shippingMethodList .shippingMethodList-item .shippingMethodList-item_name {
    display: block;
    vertical-align: middle;
    -webkit-flex-grow: 1;
    flex-grow: 1; }
    .shippingMethodList .shippingMethodList-item .shippingMethodList-item_name .main {
      display: block; }
    .shippingMethodList .shippingMethodList-item .shippingMethodList-item_name .small {
      display: none;
      color: #808080;
      fill: #808080; }
  .shippingMethodList .shippingMethodList-item .shippingMethodList-item_description {
    display: inline-block;
    vertical-align: top; }
  .shippingMethodList .shippingMethodList-item .shippingMethodList-item_icon {
    display: inline-block;
    vertical-align: top; }
  .shippingMethodList .shippingMethodList-item .shippingMethodList-item_priceQuestion {
    float: right; }
    .shippingMethodList .shippingMethodList-item .shippingMethodList-item_priceQuestion .shippingMethodList-item_price {
      display: inline-block;
      color: #9abf13;
      vertical-align: top;
      text-align: right; }
    .shippingMethodList .shippingMethodList-item .shippingMethodList-item_priceQuestion .shippingMethodList-item_question {
      display: inline-block;
      vertical-align: top;
      width: 32px;
      padding-top: 4px; }
      .shippingMethodList .shippingMethodList-item .shippingMethodList-item_priceQuestion .shippingMethodList-item_question span svg {
        height: 16px;
        width: auto;
        fill: #9e9c97;
        float: right; }

.shippingMethodList .shippingMethodList-title .title {
  flex-basis: 1;
  flex-grow: 1;
  max-width: 100%; }

.shippingMethodList .shippingMethodList-title .countries {
  padding-right: 15px;
  float: right; }
  .shippingMethodList .shippingMethodList-title .countries img:not(.isActive) {
    filter: sepia(50%);
    -webkit-filter: sepia(50%);
    cursor: pointer; }
  .shippingMethodList .shippingMethodList-title .countries img.isActive {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.71);
    border-color: #000; }

/*#endregion Shipping method list*/
/*#region Payment type list*/
.paymentTypeList .paymentTypeList-item {
  background-color: #fdfcfa;
  border-bottom: solid 2px #eee9dd;
  cursor: pointer;
  padding: 0px 16px 0px 24px;
  display: flex;
  align-items: center; }
  .paymentTypeList .paymentTypeList-item:hover, .paymentTypeList .paymentTypeList-item.isActive {
    background-color: #fff; }
  .paymentTypeList .paymentTypeList-item .paymentTypeList-item_img {
    width: 80px;
    display: inline-block;
    vertical-align: top;
    padding-left: 20px;
    padding-top: 24px;
    padding-bottom: 24px; }
    .paymentTypeList .paymentTypeList-item .paymentTypeList-item_img img {
      vertical-align: top;
      height: 20px;
      width: auto; }
  .paymentTypeList .paymentTypeList-item .paymentTypeList-item_name {
    display: inline-block;
    vertical-align: top;
    -webkit-flex-grow: 1;
    flex-grow: 1; }
  .paymentTypeList .paymentTypeList-item .paymentTypeList-item_description {
    display: inline-block;
    vertical-align: top; }
  .paymentTypeList .paymentTypeList-item .paymentTypeList-item_icon {
    display: inline-block;
    vertical-align: top; }
  .paymentTypeList .paymentTypeList-item .paymentTypeList-item_priceQuestion {
    float: right; }
    .paymentTypeList .paymentTypeList-item .paymentTypeList-item_priceQuestion .paymentTypeList-item_price {
      display: inline-block;
      color: #9abf13;
      vertical-align: top;
      text-align: right; }
    .paymentTypeList .paymentTypeList-item .paymentTypeList-item_priceQuestion .paymentTypeList-item_question {
      display: inline-block;
      vertical-align: top;
      width: 32px;
      padding-top: 4px; }
      .paymentTypeList .paymentTypeList-item .paymentTypeList-item_priceQuestion .paymentTypeList-item_question span svg {
        height: 16px;
        width: auto;
        fill: #9e9c97;
        float: right; }

/*#endregion Shipping method list*/
/*#endregion Shipping method/payment*/
