@charset "UTF-8";
/**
 * Hlavní SCSS soubor pro Shoptet frontend úpravy
 * Využívá CSS custom properties a moderní SCSS architekturu
 */
/**
 * CSS Custom Properties a SCSS proměnné
 * Využívá Shoptet design systém a CSS proměnné
 */
:root {
  --color-success: var(--template-color-success, #28a745);
  --color-warning: var(--template-color-warning, #ffc107);
  --color-danger: var(--template-color-danger, #dc3545);
  --color-info: var(--template-color-info, #17a2b8);
  --font-family: var(--template-font, "Arial", sans-serif);
  --font-family-headings: var(--template-font-headings, var(--font-family));
  --color-base-gray: #676767;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray-100: #f8f9fa;
  --color-gray-200: #e9ecef;
  --color-gray-300: #dee2e6;
  --color-gray-400: #ced4da;
  --color-gray-500: #adb5bd;
  --color-gray-600: #6c757d;
  --color-gray-700: #495057;
  --color-gray-800: #343a40;
  --color-gray-900: #212529;
  --color-text: var(--color-gray-900);
  --color-text-muted: var(--color-gray-600);
  --color-text-light: var(--color-gray-500);
  --color-background: #f4e9e6;
  --color-background-alt: var(--color-gray-100);
  --color-background-dark: var(--color-gray-800);
  --color-border: var(--color-gray-300);
  --color-border-light: var(--color-gray-200);
  --color-border-dark: var(--color-gray-400);
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --border-radius-sm: 0.125rem;
  --border-radius: 0.25rem;
  --border-radius-md: 0.375rem;
  --border-radius-lg: 0.5rem;
  --border-radius-xl: 0.75rem;
  --border-radius-full: 9999px;
  --border-width: 1px;
  --border-width-thick: 2px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --bp-sm: 576px;
  --bp-md: 768px;
  --bp-lg: 992px;
  --bp-xl: 1200px;
  --bp-2xl: 1400px;
  --container-max-width: 1200px;
  --container-padding: var(--spacing-md);
}

/**
 * SCSS Mixiny pro Shoptet frontend
 */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes slideInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
}

/* Allow percentage-based heights in the application */
html,
body {
  height: 100%;
}

/* Remove built-in form typography styles */
input,
button,
textarea,
select {
  font: inherit;
}

/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  font-family: var(--font-family);
  color: var(--color-text);
  background-color: var(--color-background);
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Focus styles */
:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Selection styles */
::selection {
  background-color: var(--color-primary);
  color: white;
}

@media (min-width: 1760px) {
  .container {
    width: 1700px;
  }
}
#header,
.site-header {
  background: transparent;
  border: 0;
}

.top-navigation-bar {
  background: transparent;
}

.navigation-buttons > a[data-target=login] {
  display: block;
}

.top-navigation-contacts,
.top-navigation-menu {
  background-color: transparent;
}

button#topNavigationDropdown svg {
  display: none;
}
button#topNavigationDropdown span {
  color: #ca7f69;
  font-weight: 600;
  padding: 5px;
}

ul.top-navigation-list {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding-top: 4px;
}
ul.top-navigation-list li {
  position: relative;
  padding: 0 10px;
}
ul.top-navigation-list li:first-child:before {
  content: none;
}
ul.top-navigation-list li:before {
  content: "|";
  font-size: 14px;
  left: -1px;
  line-height: 1;
  margin-top: -10px;
  position: absolute;
  top: 62%;
}

.top-navigation-menu {
  visibility: hidden;
}

.search .form-control,
.search select {
  background-color: var(--colors-forms-background);
  border-color: transparent;
  border-radius: 50px;
  color: var(--colors-foregrounds-content-secondary);
}
.search button.btn.btn-default {
  font-size: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  top: 3px;
  right: 3px;
  background-color: var(--color-primary);
}
.search button.btn.btn-default::before {
  background-image: url("https://cdn.myshoptet.com/usr/www.mimiconcept.cz/user/documents/upload/assets/ico/header-search.svg");
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}

.navigation-buttons > a[data-target=login] {
  position: relative;
  background-color: white;
  font-size: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  position: absolute;
  right: 61px;
}
.navigation-buttons > a[data-target=login]::before {
  content: "";
  background-image: url("https://cdn.myshoptet.com/usr/www.mimiconcept.cz/user/documents/upload/assets/ico/header-account.svg");
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
}

a.btn.btn-icon.toggle-window.cart-count {
  position: relative;
  background-color: white;
  font-size: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
a.btn.btn-icon.toggle-window.cart-count::before {
  content: "";
  background-image: url("https://cdn.myshoptet.com/usr/www.mimiconcept.cz/user/documents/upload/assets/ico/cart.svg");
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
}

#header .navigation-buttons .languagesMenu {
  position: absolute;
  right: 122px;
  top: 29px;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  color: #000;
  padding-left: 6px;
  padding-top: 4px;
  background-color: white;
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
#header .navigation-buttons .languagesMenu span.caret {
  display: none;
}

.languagesMenu__flags .shp-flag {
  top: 0px;
  left: 3px;
  position: relative;
}

#header .navigation-buttons .languagesMenu.moved {
  right: 200px;
}

#header .navigation-buttons .languagesMenu #topNavigationDropdown {
  height: 30px;
  background: transparent;
  border: none;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  padding-top: 3px;
}

#header .navigation-buttons .languagesMenu #topNavigationDropdown:focus {
  outline: none;
  border: none;
}

#header .navigation-buttons .languagesMenu #topNavigationDropdown .caret:before {
  display: inline-block;
  speak: none;
  vertical-align: middle;
  font-family: shoptet !important;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  line-height: 0;
  text-transform: none;
  color: #000;
  margin-left: 8px;
  font-size: 10px;
  text-decoration: none;
  content: "\e90e";
}

span#usp-1 {
  display: flex;
}

.cc-announcement__inner {
  height: 40px;
}

ul.social-links__list {
  margin: 0;
}
ul.social-links__list li {
  margin-right: 10px;
}
ul.social-links__list a.instagram {
  position: relative;
  top: 2px;
}

@media only screen and (max-width: 767px) {
  #header .navigation-buttons .languagesMenu #topNavigationDropdown .caret:before {
    font-size: 8px;
    margin-left: 4px;
  }
}
#header .navigation-buttons .languagesMenu .languagesMenu__content {
  display: none;
  position: absolute;
  -ms-flex-direction: column;
  background: #fff;
  padding: 0;
  top: 30px;
  border: 1px solid #000;
  width: 170px;
  -ms-flex: 1;
  flex: 1;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 8px;
  overflow: hidden;
}

#header .navigation-buttons .languagesMenu .languagesMenu__content .languagesMenu__box {
  border-right: 1px solid #f2f2f2;
  width: 100%;
}

#header .navigation-buttons .languagesMenu .languagesMenu__content .languagesMenu__box[data-target=currency] .languagesMenu__header {
  position: relative;
}

#header .navigation-buttons .languagesMenu .languagesMenu__content .languagesMenu__box[data-target=currency] .languagesMenu__header:after {
  height: 100%;
  width: 1px;
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  background: #ccc;
}

#header .navigation-buttons .languagesMenu .languagesMenu__content .languagesMenu__header {
  padding: 0px 9px;
  font-weight: 600;
  background: #f2f2f2;
  text-align: center;
  border-bottom: none;
  border-bottom: 1px solid #ccc;
  width: 100%;
}

#header .navigation-buttons .languagesMenu .languagesMenu__content .languagesMenu__header[data-toggle=dropdown] {
  display: none;
}

#header .navigation-buttons .languagesMenu .languagesMenu__content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#header .navigation-buttons .languagesMenu .languagesMenu__content ul li a {
  padding: 4px 10px;
  border-bottom: 1px solid #f2f2f2;
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  text-align: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 30px;
  -ms-flex-align: center;
  align-items: center;
}

#header .navigation-buttons .languagesMenu .languagesMenu__content ul li a span {
  display: none;
}

#header .navigation-buttons .languagesMenu .languagesMenu__content ul li a img,
#header .navigation-buttons .languagesMenu .languagesMenu__content ul li a svg {
  margin-right: 0;
}

#header .navigation-buttons .languagesMenu .languagesMenu__content ul li a:hover {
  background: #f2f2f2;
}

#header .navigation-buttons .languagesMenu:hover .languagesMenu__content {
  display: -ms-flexbox;
  display: flex;
}

.languagesMenu .dropdown-backdrop {
  display: none !important;
}

.languagesMenu__header {
  color: black;
}

.languagesMenu__content {
  display: flex;
  flex-direction: row;
}

#header .navigation-buttons .languagesMenu .languagesMenu__box.toggle-window {
  width: 50%;
}

#header .navigation-buttons .languagesMenu #topNavigationDropdown .caret:before {
  display: none;
}

.languagesMenu .languagesMenu__list__link {
  line-height: 24px;
  color: black;
  background-color: white;
}

.breadcrumbs {
  background-color: transparent;
  border-color: var(--colors-foregrounds-borders-secondary);
}

.navigation-in.menu ul.navigationActions {
  display: none;
}

.navigation-in .has-third-level div > ul a {
  color: #000;
}

.menu-wrap {
  display: none;
  position: relative;
  top: 43px;
}

li.exp .menu-wrap {
  width: 100%;
  background: white;
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
}
li.exp .menu-wrap ul.menu-level-2 {
  display: flex;
  flex-direction: column;
  width: fit-content;
  position: relative;
  flex: 1 1 60%;
}
li.exp .menu-wrap ul.menu-level-2 li {
  width: 100%;
}
li.exp .menu-wrap ul.menu-level-2 li a {
  text-transform: none;
}
li.exp .menu-wrap .picture-wrap {
  display: flex;
}
li.exp .menu-wrap img.menu-picture {
  max-width: 200px;
  margin-bottom: 10px;
}
li.exp .menu-wrap .picture-wrap a {
  text-transform: none;
  font-weight: 600;
  font-size: 12px;
}
li.exp .menu-wrap ul.menu-level-3 {
  display: none;
}

@media (min-width: 992px) {
  .languagesMenu__list {
    display: block;
    min-width: unset;
    width: 100%;
    position: relative;
  }
  .languagesMenu__header--name {
    display: block;
  }
}
@media (min-width: 768px) {
  .top-navigation-tools.top-navigation-tools--language {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  #header .navigation-buttons .languagesMenu.moved {
    right: 155px !important;
  }
  .responsive-tools > a[data-target=search] {
    display: none;
  }
  .site-name {
    position: relative;
    left: 50% !important;
    transform: translateX(-50%);
  }
  .responsive-tools > a[data-target=navigation] {
    right: unset;
    left: 0;
    z-index: 3;
    top: 4px;
  }
  #header .cart-count {
    right: 13px;
    top: -44px;
    background: transparent;
    filter: invert(41%) sepia(55%) saturate(3710%) hue-rotate(337deg) brightness(105%) contrast(99%);
  }
  .navigation-buttons > a[data-target=login] {
    position: absolute;
    top: -43px;
    right: 52px;
    background: transparent;
    filter: invert(41%) sepia(55%) saturate(3710%) hue-rotate(337deg) brightness(105%) contrast(99%);
  }
  .overall-wrapper,
  header#header {
    background: #f4e9e6;
  }
  .top-navigation-bar {
    background: #f4e9e6;
    height: 55px;
  }
  div#content-wrapper {
    margin-top: 40px;
  }
  .responsive-tools > a[data-target=navigation]:before,
  .responsive-tools > a[data-target=navigation]:hover:before {
    content: " ";
    display: block;
    width: 40px;
    height: 40px;
    background-color: transparent;
    background-image: url(https://cdn.myshoptet.com/usr/www.mimiconcept.cz/user/documents/upload/assets/ico/meteor-icons_bars-sort.svg);
    background-repeat: no-repeat;
    background-position: center;
  }
  .scrolled-down .search {
    display: none !important;
  }
  .search-window-visible #header .search {
    display: block;
    padding: 14px 0 8px;
  }
  .next-to-carousel-banners {
    margin-left: -5px;
    margin-right: -5px;
  }
  .next-to-carousel-banners .banner-wrapper {
    width: 50%;
    padding: 5px;
  }
  .next-to-carousel-banners .banner-wrapper:nth-child(3) {
    width: 100%;
    margin-top: 0;
    padding-top: 0;
  }
  .benefitBanner.position--benefitHomepage {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .benefitBanner.position--benefitHomepage .benefitBanner__item {
    width: 50% !important;
    flex: 1 1 50%;
  }
}
@media only screen and (max-width: 767px) {
  #header .navigation-buttons .languagesMenu {
    top: 14px;
    right: 136px;
    display: none !important;
  }
  .navigation-in.menu {
    padding-top: 80px;
    background: #f4e9e6;
  }
  .navigation-window-visible .site-name {
    z-index: 5000;
    left: 70px !important;
  }
  .navigation-in > ul > li {
    border-top-style: solid;
    border-top-width: 2px;
  }
  .navigation-in > ul > li {
    border-color: #f1dfda;
  }
}
@media (min-width: 768px) {
  .change-menu .navigation-in ul {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
  }
  .change-menu .navigation-in > ul {
    justify-content: center;
  }
  .change-menu .navigation-in > ul > li {
    border-left: none !important;
    padding: 8px 0;
  }
  .change-menu .navigation-in > ul > li a {
    text-transform: uppercase;
  }
  .change-menu #navigation {
    height: 45px;
  }
}
.change-menu .navigation-in ul a {
  color: #000;
}

.banner-wrap {
  display: flex;
  justify-content: space-evenly;
}
.banner-wrap .menu-banner {
  width: calc(50% - 20px);
  margin: 10px;
  position: relative;
}
.banner-wrap .menu-banner a {
  display: block;
  width: 100%;
  border: 2px solid var(--color-tertiary);
  padding: 45px 5px 20px;
  text-align: center;
  color: var(--color-tertiary);
  border-radius: 10px;
  background: #ffffff;
  font-weight: 600;
}
.banner-wrap .menu-banner.percent:before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  background-image: url(https://cdn.myshoptet.com/usr/www.mimiconcept.cz/user/documents/upload/assets/ico/percent.svg);
  background-repeat: no-repeat;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
}
.banner-wrap .menu-banner.star:before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  background-image: url(https://cdn.myshoptet.com/usr/www.mimiconcept.cz/user/documents/upload/assets/ico/star.svg);
  background-repeat: no-repeat;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
}

.plugin-fixed-header {
  position: fixed;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 10;
  transition: 0.15s;
  transform: translateZ(0);
  box-shadow: 0 0 5px #b4b4b4;
  border-bottom: 1px solid #aaa;
}

@media (min-width: 469px) {
  .plugin-fixed-header {
    top: -200px;
  }
}
@media (max-width: 468px) {
  .plugin-fixed-header {
    bottom: -200px;
  }
}
@media (min-width: 469px) {
  .plugin-fixed-header.active {
    top: 0;
  }
}
@media (max-width: 468px) {
  .plugin-fixed-header.active {
    bottom: 0;
  }
}
.fixed-header-container {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
}

@media (max-width: 468px) {
  .fixed-header-container {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.plugin-fixed-header__name {
  width: calc(100% - 480px);
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 468px) {
  .plugin-fixed-header__name {
    display: none;
  }
}
.plugin-fixed-header__image {
  width: 80px;
  height: 50px;
}

@media (max-width: 468px) {
  .plugin-fixed-header__image {
    display: none;
  }
}
.plugin-fixed-header__availability {
  font-size: 15px;
  padding-left: 20px;
  font-weight: 400;
  color: #454545;
}

@media (max-width: 468px) {
  .plugin-fixed-header__availability {
    display: none;
  }
}
.plugin-fixed-header__img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 100%;
}

@media (max-width: 468px) {
  .plugin-fixed-header__img {
    display: none;
  }
}
.plugin-fixed-header__price {
  width: 200px;
  text-align: right;
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 468px) {
  .plugin-fixed-header__price {
    display: none;
  }
}
.plugin-fixed-header__basket {
  width: 200px;
  text-align: right;
  padding-left: 20px;
}

@media (max-width: 468px) {
  .plugin-fixed-header__basket {
    width: 100%;
    padding: 0 10px;
  }
}
.plugin-fixed-header__basket > button {
  width: 100% !important;
}

.product.active.productVisible {
  width: 25%;
}

@media (min-width: 768px) {
  #header .cart-count {
    display: inline-block;
    left: 0;
    position: relative;
    right: auto;
    top: -4px;
  }
  .navigation-in > ul > li.exp > a,
  .navigation-in > ul > li > a:hover {
    background-color: #d9b2a7;
    color: #f6f8fa;
    border-radius: 50px;
  }
}
@media (max-width: 468px) {
  .plugin-fixed-header__basket > button {
    display: block !important;
    padding: 6px 10px !important;
  }
}
@media (max-width: 768px) {
  .type-product .container.breadcrumbs-wrapper {
    position: relative;
    top: 65px;
    overflow: hidden;
  }
  .languagesMenu {
    display: none;
  }
  .responsive-tools a.toggle-window[data-target=login] {
    display: none;
  }
  .site-name-wrapper {
    width: fit-content;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
  }
  .navigation-window-visible .site-name-wrapper {
    transform: translateX(-73%);
    z-index: 5000;
  }
}
#footer {
  background: F4E9E6;
}
#footer > .container {
  background-color: transparent;
}
#footer .custom-footer {
  justify-content: space-between;
}
#footer h4 {
  font-weight: 600;
  text-transform: unset !important;
}
#footer .site-name {
  display: none !important;
}
#footer .logo {
  margin-bottom: 30px;
}
#footer .contanct-wrap li {
  padding-left: 30px;
}
#footer .contanct-wrap a.tel:before {
  content: "";
  display: block;
  background-image: url("https://cdn.myshoptet.com/usr/www.mimiconcept.cz/user/documents/upload/assets/ico/Phone.svg");
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: -40px;
  top: -9px;
}
#footer .contanct-wrap a.email:before {
  content: "";
  display: block;
  background-image: url("https://cdn.myshoptet.com/usr/www.mimiconcept.cz/user/documents/upload/assets/ico/mail.svg");
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: -40px;
  top: -9px;
}
@media (min-width: 1200px) {
  #footer .custom-footer {
    padding-left: 0;
  }
}
#footer ul.social-links__list {
  display: flex;
}
#footer ul.social-links__list li {
  background-color: var(--color-tertiary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
#footer ul.social-links__list li a {
  color: white;
  font-size: 0;
}
#footer ul.social-links__list li a.facebook:before {
  content: "";
  display: block;
  background-image: url("https://cdn.myshoptet.com/usr/www.mimiconcept.cz/user/documents/upload/assets/ico/facebook.svg");
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
}
#footer ul.social-links__list li a.instagram:before {
  content: "";
  display: block;
  background-image: url(https://cdn.myshoptet.com/usr/www.mimiconcept.cz/user/documents/upload/assets/ico/instagram.svg);
  width: 28px;
  height: 28px;
  top: 4px;
  left: 6px;
  position: relative;
  background-size: cover;
  background-position: center;
  filter: invert(96%) sepia(0%) saturate(7486%) hue-rotate(54deg) brightness(111%) contrast(101%);
}
#footer ul.social-links__list li a.spotify:before {
  content: "";
  display: block;
  background-image: url("https://cdn.myshoptet.com/usr/www.mimiconcept.cz/user/documents/upload/assets/ico/spotify.svg");
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
}
#footer .payment {
  margin-bottom: 20px;
}
#footer .custom-footer__instagram {
  display: none;
}

.custom-footer__newsletter.extended {
  background-color: var(--color-tertiary);
  padding: 50px;
  text-align: center;
  color: white;
}
.custom-footer__newsletter.extended .apendix {
  margin-bottom: 20px;
}
.custom-footer__newsletter.extended select {
  background-color: var(--colors-forms-background);
  border-color: transparent;
  border-radius: 50px;
  color: var(--colors-foregrounds-content-secondary);
}
.custom-footer__newsletter.extended button.btn.btn-default {
  font-size: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  top: 3px;
  right: 24px;
  background-color: var(--color-tertiary);
}
.custom-footer__newsletter.extended button.btn.btn-default::before {
  background-image: url("https://cdn.myshoptet.com/usr/www.mimiconcept.cz/user/documents/upload/assets/ico/newsletter-button.svg");
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}
.custom-footer__newsletter.extended form#formNewsletterWidget {
  max-width: 500px;
}
.custom-footer__newsletter.extended input.form-control {
  border-radius: 50px;
}
.custom-footer__newsletter.extended label.whole-width {
  font-size: 11px;
}

.newsletter-header.container {
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  font-family: "Cormorant", serif;
  margin-bottom: 20px;
  line-height: 1.3;
}

@media (max-width: 767px) {
  #footer {
    text-align: center;
  }
  #footer .logo img {
    margin: auto;
  }
  #footer ul.social-links__list {
    display: flex;
    justify-content: center;
  }
  #footer ul.social-links__list li a.instagram:before {
    top: 4px;
    left: 1px;
  }
}
.preview-eye {
  width: 30px;
  height: 30px;
  background: #f3f3f3;
  position: absolute;
  top: 5px;
  right: 5px;
  pointer-events: all;
  border-radius: 50%;
  z-index: 10;
}
.preview-eye:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-image: url(https://cdn.myshoptet.com/usr/www.mimiconcept.cz/user/documents/upload/assets/ico/eye.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  top: 5px;
  left: 5px;
}

.product {
  position: relative;
}

span.quantity {
  display: none;
}

button.btn.btn-lg.btn-conversion.add-to-cart-button {
  width: 100%;
  border-radius: 50px;
}

.btn.add-to-cart-button:before {
  content: "+";
  font-size: 20px;
  margin-right: 10px;
  margin-top: -9px;
}

/**
 * Produktová karta komponenta
 * Využívá Shoptet data-micro atributy a design systém
 */
.product-card {
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.product-card .product-image {
  position: relative;
  margin-bottom: var(--spacing-sm);
}
.product-card .product-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-sm);
}
.product-card .product-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--spacing-xs);
}
.product-card .product-title a {
  color: inherit;
  text-decoration: none;
}
.product-card .product-title a:hover {
  color: var(--color-primary);
}
.product-card .product-price {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}
@media (min-width: 576px) {
  .product-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
  }
}
.product-card:hover .product-image img {
  transform: scale(1.05);
}
.product-card:hover .product-badge {
  transform: scale(1.1);
}
.product-card__image {
  position: relative;
  margin-bottom: var(--spacing-sm);
  overflow: hidden;
  border-radius: var(--border-radius);
}
.product-card__image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}
.product-card__image--square {
  position: relative;
}
.product-card__image--square::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.product-card__image--square > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product-card__image--landscape {
  position: relative;
}
.product-card__image--landscape::before {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.product-card__image--landscape > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--spacing-sm);
}
.product-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-xs);
}
.product-card__title a {
  color: inherit;
  text-decoration: none;
}
.product-card__title a:hover {
  color: var(--color-primary);
}
.product-card__description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-sm);
  flex-grow: 1;
}
.product-card__price {
  margin-bottom: var(--spacing-sm);
}
.product-card__price .price-original {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-decoration: line-through;
  margin-right: var(--spacing-xs);
}
.product-card__price .price-current {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}
.product-card__price .price-savings {
  font-size: var(--font-size-sm);
  color: var(--color-success);
  margin-left: var(--spacing-xs);
}
.product-card__rating {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}
.product-card__rating .stars {
  color: #ffc107;
  margin-right: var(--spacing-xs);
}
.product-card__rating .rating-count {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.product-card__actions {
  display: flex;
  gap: var(--spacing-xs);
  margin-top: auto;
}
.product-card__actions .btn {
  flex: 1;
}
.product-card__actions .wishlist-btn {
  flex: 0 0 auto;
}
.product-card__badge {
  position: absolute;
  top: var(--spacing-sm);
  left: var(--spacing-sm);
  z-index: 1;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  transition: var(--transition);
}
.product-card__badge--sale {
  background-color: var(--color-danger);
  color: white;
}
.product-card__badge--new {
  background-color: var(--color-success);
  color: white;
}
.product-card__badge--bestseller {
  background-color: var(--color-warning);
  color: var(--color-gray-900);
}
.product-card--out-of-stock {
  position: relative;
}
.product-card--out-of-stock::after {
  content: "Není skladem";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  color: var(--color-danger);
  z-index: 2;
}
.product-card--out-of-stock .product-card__actions {
  opacity: 0.5;
  pointer-events: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}
@media (min-width: 576px) {
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
  }
}
@media (min-width: 992px) {
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
  }
}

.product-list .product-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--spacing-md);
  text-align: left;
}
@media (max-width: 575px) {
  .product-list .product-card {
    grid-template-columns: 120px 1fr;
    gap: var(--spacing-sm);
  }
}
.product-list .product-card__image {
  margin-bottom: 0;
}
.product-list .product-card__content {
  padding: 0;
}
.product-list .product-card__actions {
  justify-self: end;
  align-self: end;
  flex-direction: column;
}
@media (min-width: 768px) {
  .product-list .product-card__actions {
    flex-direction: row;
  }
}

.product-card--compact .product-card__title {
  font-size: var(--font-size-sm);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.product-card--compact .product-card__description {
  display: none;
}
.product-card--compact .product-card__price .price-current {
  font-size: var(--font-size-base);
}
.product-card--compact .product-card__actions .btn {
  font-size: var(--font-size-sm);
  padding: var(--spacing-xs) var(--spacing-sm);
}

.product-card--skeleton .product-card__image,
.product-card--skeleton .product-card__title,
.product-card--skeleton .product-card__description,
.product-card--skeleton .product-card__price {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: var(--border-radius-sm);
}
.product-card--skeleton .product-card__title {
  height: 1.2em;
  margin-bottom: var(--spacing-xs);
}
.product-card--skeleton .product-card__description {
  height: 3.6em;
  margin-bottom: var(--spacing-sm);
}
.product-card--skeleton .product-card__price {
  height: 1.5em;
  width: 60%;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@media (prefers-color-scheme: dark) {
  .product-card--skeleton .product-card__image,
  .product-card--skeleton .product-card__title,
  .product-card--skeleton .product-card__description,
  .product-card--skeleton .product-card__price {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
  }
}
@media (min-width: 768px) {
  body.ordering-process {
    background-color: #f4e9e6;
  }
}
body.ordering-process nav#navigation {
  display: none;
}
body.ordering-process header#header {
  border-bottom: transparent;
}
body.ordering-process .cart-content.checkout-box-wrapper {
  display: none;
}
body.ordering-process div#content-wrapper {
  margin-top: 50px;
}
body.ordering-process ol.cart-header {
  margin: auto;
  max-width: 1000px;
  border-bottom: transparent;
}
body.ordering-process .cart-content,
body.ordering-process .cart-header {
  background-color: transparent;
}
body.ordering-process .cart-content tr.removeable,
body.ordering-process .cart-header tr.removeable {
  border-bottom: 10px solid #f4e9e6;
}
body.ordering-process span.quantity {
  display: block;
}
body.ordering-process .extra strong {
  color: #f5222d;
}
body.ordering-process .link-like,
body.ordering-process a {
  color: #0c0d19;
}
body.ordering-process .recapitulation-single > strong span {
  color: #0c0d19;
}
body.ordering-process h4 {
  font-weight: 600;
}
body.ordering-process fieldset.box.box-sm.box-bg-default.co-box.co-contact-information,
body.ordering-process .co-box.co-billing-address,
body.ordering-process .co-box.co-box-additional,
body.ordering-process .box.box-sm.box-bg-default.co-box.co-payment-method,
body.ordering-process .box.box-sm.box-bg-default.co-box.co-delivery-method,
body.ordering-process .box.box-sm.box-bg-default.co-box.co-basic-information {
  background: white;
  margin-bottom: 10px;
  border: transparent;
  border-radius: 10px;
}

.co-box.co-box-additional {
  padding-bottom: 30px;
}

ol.cart-header li a span:before,
ol.cart-header li strong span:before {
  border-radius: 50%;
  border-style: solid;
  border-width: 2px;
  content: counter(steps);
  counter-increment: steps;
  display: inline-block;
  font-size: 14px;
  height: 40px;
  line-height: 26px;
  margin-right: 1ex;
  text-align: center;
  vertical-align: middle;
  width: 40px;
  background-color: white;
  top: -30px;
  left: 50% !important;
  position: absolute;
  transform: translateX(-50%);
  border-color: var(--color-secondary);
  padding: 5px;
  font-weight: 600;
}

ol.cart-header li.active a span:before,
ol.cart-header li.active strong span:before {
  background-color: var(--color-secondary);
  font-weight: 600;
  color: white;
}

ol.cart-header li a span,
ol.cart-header li strong span {
  color: black !important;
}

ol.cart-header li.active strong {
  border: transparent;
}

ol.cart-header {
  position: relative;
}

.cart-header::before {
  content: "";
  display: block;
  height: 2px;
  background-color: #f1dfda;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  top: -8px;
}
@media (min-width: 768px) {
  .cart-header::before {
    width: 650px;
  }
}

.cart-table tr > td {
  border: none;
}

.country-flags {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 36px;
  position: relative;
  width: 150px;
}

@media (min-width: 768px) {
  ol.cart-header li {
    display: inline-block;
    margin: 0;
    position: relative;
    top: 1px;
    width: 33.33333%;
    text-align: center;
  }
  ol.cart-header li a,
  ol.cart-header li strong {
    border-bottom: 1px solid transparent;
    padding-left: 0;
  }
}
div#checkoutSidebar,
.col-md-4.sidebar-in-cart {
  background: #f1dfda;
}

span.btn.btn-block.btn-default.toggle-contacts {
  display: none;
}

.cart-summary h4 {
  display: none;
}
.cart-summary .discount-coupon {
  padding-left: 0px;
  position: relative;
}
.cart-summary .discount-coupon:before {
  display: none;
}
.cart-summary .discount-coupon .form-control,
.cart-summary .discount-coupon select {
  background-color: white;
  border-color: var(--color-secondary);
  border-radius: 50px;
}
.cart-summary .discount-coupon button.btn.btn-secondary {
  font-size: 0;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
  top: 0px;
  right: 35px;
  background-color: var(--color-tertiary);
  position: relative;
  flex: unset;
}
.cart-summary .discount-coupon button.btn.btn-secondary:before {
  content: "\e90c";
  speak: none;
  display: inline-block;
  font-family: shoptet;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 0;
  text-decoration: none;
  text-transform: none;
  color: white;
  font-size: 15px;
  position: relative;
  left: -7px;
  top: 12px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .cart-row > div.col-md-4 {
    padding-right: 0;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  body.ordering-process div#content-wrapper {
    margin-top: 94px;
  }
  .extras-wrap {
    padding: 20px;
  }
  tr.removeable {
    background: white;
  }
  ol.cart-header li {
    display: block;
  }
  li.step.step-3 span:before {
    position: absolute;
    right: 50px;
    left: unset !important;
  }
  li.step.step-1 span:before {
    position: absolute;
    left: 90px !important;
  }
  ol.cart-header li {
    display: block;
    height: 0;
    overflow: hidden;
  }
  ol.cart-header li.active {
    height: 60px;
  }
  li.step.completed {
    border: none;
  }
  .ordering-process .site-name {
    display: block;
  }
  .ordering-process a.toggle-window {
    display: none;
  }
  .ordering-process form#formSearchForm {
    display: none !important;
  }
  body.ordering-process div#content-wrapper {
    margin-top: 80px;
  }
}
.content-wrapper.homepage-box.before-carousel .banner-wrapper + .banner-wrapper {
  margin-left: 17px;
  margin-bottom: 18px;
  margin-right: -10px;
}

.banner-wrapper {
  margin-bottom: 18px;
}

.banner.textBottom.background {
  height: 429px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1760px) {
  .banner.textBottom.background {
    height: 356px;
  }
}
@media (max-width: 1440px) {
  .banner.textBottom.background {
    height: 296px;
  }
}
@media (max-width: 1200px) {
  .banner.textBottom.background {
    height: 241px;
  }
}
.banner.textBottom.background a {
  width: 100%;
  height: 100%;
}

.banner {
  border-radius: 10px;
  position: relative;
}
.banner .arrow {
  width: 60px;
  height: 60px;
  right: 20px;
  bottom: 20px;
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.banner .arrow::before {
  content: "\e90c";
  speak: none;
  display: inline-block;
  font-family: shoptet;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 0;
  text-decoration: none;
  text-transform: none;
  color: var(--color-base-gray);
  font-size: 20px;
  top: 23px;
  left: 20px;
  position: relative;
  color: white;
}
.banner span.header {
  position: absolute;
  font-size: 27px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  font-family: "Cormorant", serif;
  margin-bottom: 20px;
  line-height: 1.3;
  max-width: 60%;
  text-align: left;
  color: white;
}
@media (max-width: 1200px) {
  .banner span.header {
    font-size: 20px;
  }
  .banner .arrow {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 10px;
  }
  .banner .arrow::before {
    content: "\e90c";
    font-size: 15px;
    top: 13px;
    left: 13px;
    position: relative;
    color: white;
  }
}

.banner.textBottom {
  position: relative;
  margin-bottom: 0px;
}
.banner.textBottom span.header {
  bottom: 20px;
  left: 20px;
}
@media (max-width: 768px) {
  .banner.textBottom span.header {
    bottom: -13px;
    left: 6px;
  }
}

.banner.textTop {
  border-radius: 10px;
}
.banner.textTop span.header {
  position: relative;
  left: 30px;
  top: 30px;
  display: block;
  margin-bottom: 20px;
}
.banner.textTop a {
  width: 100%;
  height: 100%;
}
.banner.textTop span.apendix {
  position: relative;
  left: 30px;
  color: white;
  top: 30px;
}
@media (max-width: 768px) {
  .banner.textTop span.header {
    top: 5px;
    left: 6px;
  }
  .banner.textTop span.apendix {
    position: relative;
    left: 10px;
    color: white;
    top: 0px;
  }
}

.banner.blue {
  background: #8da4b8;
  height: 100%;
}

@media (max-width: 768px) {
  span.header {
    font-size: 17px;
    padding: 10px;
  }
}
/* Instagram Widget - základní styly */
.instagram-widget {
  margin: 2rem 0;
  padding: 2rem;
  border-radius: 8px;
  background: var(--color-background-secondary, #f8f9fa);
  text-align: center;
}
.instagram-widget .instagram-header {
  margin-bottom: 1.5rem;
}
.instagram-widget .instagram-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-primary, #333);
  margin: 0;
}
.instagram-widget .instagram-content {
  color: var(--color-text-secondary, #666);
  font-size: 1rem;
}
.instagram-widget .instagram-content p {
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .instagram-widget {
    margin: 1rem 0;
    padding: 1.5rem;
  }
  .instagram-widget .instagram-header h3 {
    font-size: 1.25rem;
  }
}
.homepage-box {
  background-color: transparent;
  border-bottom-color: transparent;
  border-top-color: transparent;
}

.full-width {
  position: relative;
  top: 0;
  left: 50%;
  width: 100vw;
  height: auto;
  transform: translateX(-50%);
}

.reviews.full-width {
  display: none;
}

.content-wrapper.homepage-box.before-carousel .col-sm-4 {
  width: 50%;
}
.content-wrapper.homepage-box.before-carousel .col-sm-8 {
  width: 49.2%;
}
.content-wrapper.homepage-box.before-carousel .banner-wrapper {
  width: calc(50% - 10px);
}
.content-wrapper.homepage-box.before-carousel .banner-wrapper + .banner-wrapper + .banner-wrapper {
  width: 100%;
  margin-left: 0;
  margin-bottom: 0;
}

.next-to-carousel-banners {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.welcome div,
.welcome h1 {
  margin-left: auto;
  margin-right: auto;
  max-width: unset;
}

.content-wrapper.container {
  background: transparent;
}

@media (min-width: 768px) {
  .banners-row .banner-wrapper + .banner-wrapper {
    margin-top: 0px;
  }
}
.benefitBanner__item {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.benefitBanner__content {
  overflow: hidden;
  padding-right: 10px;
  word-break: break-word;
  text-align: center;
}

.header-wrap p {
  text-align: center;
}

h2 {
  font-size: 27px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  font-family: "Cormorant", serif;
  margin-bottom: 20px;
  line-height: 1.3;
}
h2 span {
  color: var(--color-tertiary);
}

h3 {
  font-size: 24px;
  font-family: "Cormorant", serif;
}

.row.banners-content.body-banners {
  margin-bottom: 50px;
}
.row.banners-content.body-banners > div {
  width: 50%;
}

.reference {
  margin-top: 50px;
}
.reference h3 {
  color: #101010;
}
.reference .logo-list-container {
  display: flex;
  justify-content: space-between;
}

.footer-banner.col-sm-12.col-lg-3 {
  padding: 5px;
  border-radius: 10px;
  overflow: hidden;
}
.footer-banner.col-sm-12.col-lg-3 img {
  border-radius: 10px;
}

.welcome h1 {
  display: none;
}
.welcome .welcome-top {
  text-align: center;
}
.welcome .welcome-top .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.welcome .apendix {
  margin-bottom: 20px;
  font-weight: 600;
}
.welcome a.btn {
  background: white;
  border-color: white;
  color: var(--color-tertiary);
  text-decoration: none;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  border-radius: 50px;
  padding: 10 30px;
}
.welcome .stars .star.is-active:hover,
.welcome .stars .star.star-half:before,
.welcome .stars .star.star-on:before {
  color: var(--color-tertiary);
}
.welcome .stars a:before,
.welcome .stars span:before {
  font-size: 16px;
  height: 100%;
  left: 0;
  line-height: 12px;
  position: absolute;
  top: 0;
  width: 100%;
}
.welcome .stars {
  width: 100px;
  margin-bottom: 10px;
}
.welcome .stars a,
.welcome .stars span {
  width: 19px;
}
@media (min-width: 768px) {
  .welcome .welcome-top {
    display: flex;
  }
  .welcome .welcome-top .left,
  .welcome .welcome-top .right {
    width: 30%;
  }
  .welcome .welcome-top .center {
    width: 40%;
    padding: 30px;
  }
}

.star img {
  margin: 0px auto 20px;
  display: block;
}

.reviews {
  background: #f1dfda;
  padding: 10px;
  padding-top: 50px;
  padding-bottom: 80px;
}
.reviews p {
  text-align: center;
}
.reviews .review {
  background: white;
  padding: 20px;
  padding-top: 40px;
}
.reviews .review p {
  font-size: 13px;
  text-align: left !important;
}
.reviews .slick-slide {
  padding: 10px;
}
.reviews .date {
  margin-bottom: 10px;
}
.reviews .name {
  font-weight: 600;
  margin-bottom: 10px;
}
.reviews .slick-prev,
.reviews .slick-next {
  top: -20px;
}
.reviews .slick-prev {
  left: unset;
  right: 55px;
}
.reviews .slick-next {
  right: 5px;
}

.influencers {
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: 40px;
  margin-right: 40px;
}
.influencers h2 {
  text-align: left;
}
.influencers .slick-slide {
  padding: 5px;
}
.influencers .influencer {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.influencers a,
.influencers .name {
  padding: 5px 10px;
  display: flex;
  color: black;
  text-decoration: none;
}
.influencers a:after {
  content: "\e90c";
  speak: none;
  display: inline-block;
  font-family: shoptet;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 0;
  text-decoration: none;
  text-transform: none;
  color: var(--color-base-gray);
  font-size: 15px;
  bottom: 14px;
  position: absolute;
  right: 10px;
}
.influencers .slick-prev {
  left: unset;
  right: 55px;
  top: -30px;
}
.influencers .slick-prev:before {
  content: "\e90b";
}
.influencers .slick-next {
  right: 0px;
  top: -30px;
}
.influencers .slick-next:before {
  content: "\e90c";
}

.content-wrapper.latest-contribution-box {
  display: none;
}

.benefitBanner__picture img {
  width: 35px;
  height: 40px;
}

.slick-list.draggable {
  padding: 0 !important;
}

.reviews-wrap.slick-initialized.slick-slider {
  margin-left: -10px;
  margin-right: -10px;
}

.insta-logo img {
  text-align: center;
  margin: 0 auto 20px;
  display: block;
}

.images-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.images-wrap a {
  padding-bottom: 12%;
  width: 12.5%;
  display: block;
  flex-grow: 0;
  flex-shrink: 1;
  overflow: hidden;
  position: relative;
}
.images-wrap a img {
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
@media (max-width: 767px) {
  .images-wrap a {
    padding-bottom: 25%;
    width: 25%;
  }
}

@media (min-width: 768px) {
  .in-index .content {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (max-width: 767px) {
  .benefitBanner__title {
    font-size: 0.9em;
    width: 100%;
  }
  div#products-1 {
    margin-bottom: 50px;
  }
  .footer-banners.row.banner-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer-banner.col-sm-12.col-lg-3 {
    width: 50%;
  }
  .content-wrapper.container .row > div {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
  }
  .homepage-box.welcome-wrapper {
    margin-bottom: 38px;
    margin-top: 38px;
    padding: 38px 0px;
  }
  .welcome-top .left {
    margin-bottom: 40px;
  }
  .welcome-top .center {
    margin-bottom: 40px;
  }
  h2 {
    font-size: 24px;
  }
  .welcome .reference .logo-list-container {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .logo-list-item {
    width: 33%;
    margin-bottom: 10px;
  }
  .welcome .row.banners-content.body-banners > div {
    width: 100%;
    padding: 0;
  }
  .welcome .reviews .slick-next {
    right: 0px;
  }
  .welcome .reviews .slick-prev {
    left: unset;
    right: 55px;
  }
  .welcome .influencers {
    margin: 50px 0;
  }
  .reviews-wrap.slick-initialized.slick-slider {
    margin-top: 50px;
  }
  .welcome-top.full-width {
    width: unset;
  }
  .banner {
    min-height: unset;
  }
}
.col-xs-12.col-lg-6.p-info-wrapper {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 20px;
  background: white;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}
.col-xs-12.col-lg-6.p-info-wrapper .price-final {
  font-size: 16px;
  line-height: 1;
}
.col-xs-12.col-lg-6.p-info-wrapper .p-detail-inner-header {
  order: 1;
}
.col-xs-12.col-lg-6.p-info-wrapper .p-final-price-wrapper {
  order: 2;
}
.col-xs-12.col-lg-6.p-info-wrapper .combined-products-accordion {
  order: 3;
}
.col-xs-12.col-lg-6.p-info-wrapper .p-detail-info {
  order: 3;
}
.col-xs-12.col-lg-6.p-info-wrapper .product-variants-container {
  order: 4;
}
.col-xs-12.col-lg-6.p-info-wrapper .product-variants-container .variants-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.col-xs-12.col-lg-6.p-info-wrapper .variant-image {
  flex-shrink: 0;
  margin-right: 0px;
  position: relative;
  width: 59px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
  margin-bottom: 10px;
}
.col-xs-12.col-lg-6.p-info-wrapper .variant-item.active .variant-image {
  border: 2px solid black;
}
.col-xs-12.col-lg-6.p-info-wrapper .availability-value {
  order: 4;
}
.col-xs-12.col-lg-6.p-info-wrapper table.detail-parameters {
  order: 5;
}
.col-xs-12.col-lg-6.p-info-wrapper .add-to-cart {
  order: 6;
}
.col-xs-12.col-lg-6.p-info-wrapper .p-short-description {
  order: 7;
}
.col-xs-12.col-lg-6.p-info-wrapper .basic-description {
  order: 8;
  border-bottom: 1px solid #e6e6e6;
}
.col-xs-12.col-lg-6.p-info-wrapper .upsell-sections {
  order: 8;
  margin-top: 20px;
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: 10px;
  background: #f1dfda;
  padding: 20px 10px 0;
  border-radius: 10px;
}
.col-xs-12.col-lg-6.p-info-wrapper .upsell-sections input[type=checkbox] + label:before,
.col-xs-12.col-lg-6.p-info-wrapper .upsell-sections input[type=radio] + label:before {
  border-color: transparent;
}
.col-xs-12.col-lg-6.p-info-wrapper .upsell-sections .upsell-main-header {
  margin-bottom: 20px;
}
.col-xs-12.col-lg-6.p-info-wrapper .upsell-sections .upsell-main-header h3 {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  margin: 0;
  text-align: left;
  font-family: "Poppins";
}
.col-xs-12.col-lg-6.p-info-wrapper .upsell-sections .ui.toggle.checkbox input.hidden + label {
  width: 40px !important;
  height: 40px !important;
  background: #f1dfda !important;
  border: 2px solid #f1dfda !important;
}
.col-xs-12.col-lg-6.p-info-wrapper .upsell-sections .upsell-section {
  margin-bottom: 20px;
}
.col-xs-12.col-lg-6.p-info-wrapper .upsell-sections .upsell-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px 0;
}
.col-xs-12.col-lg-6.p-info-wrapper .upsell-sections .upsell-product-item {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.col-xs-12.col-lg-6.p-info-wrapper .upsell-sections .upsell-product-item:hover {
  background: #f0f0f0;
}
.col-xs-12.col-lg-6.p-info-wrapper .upsell-sections .upsell-product-item .ui.toggle.checkbox {
  margin-left: auto;
  margin-right: 0;
  flex-shrink: 0;
}
.col-xs-12.col-lg-6.p-info-wrapper .upsell-sections .upsell-product-item .ui.toggle.checkbox input.hidden + label {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  border: 2px solid #ddd;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
.col-xs-12.col-lg-6.p-info-wrapper .upsell-sections .upsell-product-item .ui.toggle.checkbox input.hidden + label:before {
  content: "+";
  position: absolute;
  top: 33%;
  left: 42%;
  transform: translate(-50%, -50%);
  font-size: 29px;
  font-weight: 300;
  color: #666;
  line-height: 1;
  background: transparent;
}
.col-xs-12.col-lg-6.p-info-wrapper .upsell-sections .upsell-product-item .ui.toggle.checkbox input:checked + label {
  background: #007bff;
  border-color: #007bff;
}
.col-xs-12.col-lg-6.p-info-wrapper .upsell-sections .upsell-product-item .ui.toggle.checkbox input:checked + label:before {
  content: "✓";
  color: green;
  font-size: 25px;
}
.col-xs-12.col-lg-6.p-info-wrapper .upsell-sections .upsell-product-item input[type=checkbox]:checked + label:after,
.col-xs-12.col-lg-6.p-info-wrapper .upsell-sections .upsell-product-item input[type=radio]:checked + label:after {
  display: none;
}
.col-xs-12.col-lg-6.p-info-wrapper .upsell-sections .upsell-product-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 16px;
  flex-shrink: 0;
  border: 1px solid #e0e0e0;
}
.col-xs-12.col-lg-6.p-info-wrapper .upsell-sections .upsell-product-item .product-info {
  flex: 1;
}
.col-xs-12.col-lg-6.p-info-wrapper .upsell-sections .upsell-product-item .product-info .product-name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
  line-height: 1.3;
}
.col-xs-12.col-lg-6.p-info-wrapper .upsell-sections .upsell-product-item .product-info .product-price {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.col-xs-12.col-lg-6.p-info-wrapper .product-accordion {
  margin-top: var(--spacing-lg);
}
.col-xs-12.col-lg-6.p-info-wrapper .product-accordion h3 {
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
}
.col-xs-12.col-lg-6.p-info-wrapper .product-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 0;
  overflow: hidden;
}
.col-xs-12.col-lg-6.p-info-wrapper .product-accordion .accordion-item:last-child {
  border-bottom: none;
}
.col-xs-12.col-lg-6.p-info-wrapper .product-accordion .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-lg) 0;
  background: transparent;
  cursor: pointer;
  transition: color var(--transition-fast);
}
.col-xs-12.col-lg-6.p-info-wrapper .product-accordion .accordion-header:hover {
  color: var(--color-secondary);
}
.col-xs-12.col-lg-6.p-info-wrapper .product-accordion .accordion-header:focus {
  outline: none;
  color: var(--color-secondary);
}
.col-xs-12.col-lg-6.p-info-wrapper .product-accordion .accordion-title {
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-xl);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.col-xs-12.col-lg-6.p-info-wrapper .product-accordion .accordion-icon {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-normal);
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}
.col-xs-12.col-lg-6.p-info-wrapper .product-accordion .accordion-icon:before {
  content: "\e911";
  font-family: shoptet;
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  transform: rotate(180deg);
  transition: transform var(--transition-fast);
}
.col-xs-12.col-lg-6.p-info-wrapper .product-accordion .accordion-header[aria-expanded=true] .accordion-icon:before {
  transform: rotate(0deg);
}
.col-xs-12.col-lg-6.p-info-wrapper .product-accordion .accordion-header:hover .accordion-title,
.col-xs-12.col-lg-6.p-info-wrapper .product-accordion .accordion-header:hover .accordion-icon {
  color: var(--color-secondary);
}
.col-xs-12.col-lg-6.p-info-wrapper .product-accordion .accordion-content {
  transition: all var(--transition);
  overflow: hidden;
}
.col-xs-12.col-lg-6.p-info-wrapper .product-accordion .accordion-body {
  padding: 0 0 var(--spacing-lg) 0;
}
.col-xs-12.col-lg-6.p-info-wrapper .product-accordion .accordion-body p {
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
  color: var(--color-text);
}
.col-xs-12.col-lg-6.p-info-wrapper .product-accordion .accordion-body p:last-child {
  margin-bottom: 0;
}
.col-xs-12.col-lg-6.p-info-wrapper p[data-testid=productCardDescr] {
  display: none;
}
.col-xs-12.col-lg-6.p-info-wrapper .social-buttons-wrapper {
  display: none;
}
.col-xs-12.col-lg-6.p-info-wrapper .p-short-description p {
  display: none;
}
.col-xs-12.col-lg-6.p-info-wrapper .p-short-description ul {
  list-style: none;
  padding-left: 0;
}
.col-xs-12.col-lg-6.p-info-wrapper .p-short-description ul li:before {
  content: "\e913";
  display: inline-block;
  font-family: shoptet;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 0;
  text-decoration: none;
  text-transform: none;
  width: 20px;
  height: 20px;
  background: green;
  border-radius: 20px;
  padding: 10px 5px;
  font-size: 10px;
  margin-right: 7px;
  color: white;
}
.col-xs-12.col-lg-6.p-info-wrapper .p-short-description {
  margin-bottom: 20px;
}
.col-xs-12.col-lg-6.p-info-wrapper .basic-description h3 {
  display: none;
}

.p-thumbnails-inner img {
  margin-bottom: 10px;
}

.col-xs-12.col-lg-6.p-image-wrapper {
  display: flex;
}

.breadcrumbs.navigation-home-icon-wrapper {
  border-bottom: none;
}

.shp-tabs-wrapper.p-detail-tabs-wrapper {
  display: none;
}

.p-detail-inner-header h1 {
  font-size: 27px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  font-family: "Cormorant", serif;
  margin-bottom: 20px;
  line-height: 1.3;
  margin-top: 0px;
}
.p-detail-inner-header h1 span {
  color: var(--color-tertiary);
}

.availability-value {
  font-size: 15px;
  margin-bottom: 19px;
}

h2.products-related-header {
  text-align: left;
  margin-top: 50px;
}

a.p-prev,
a.p-next {
  position: absolute;
  display: block;
  height: 40px;
  width: 40px;
  line-height: 0px;
  font-size: 0px;
  border-radius: 50%;
  cursor: pointer;
  background: white !important;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
a.p-prev::before,
a.p-next::before {
  speak: none;
  display: inline-block;
  font-family: shoptet;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 0;
  text-decoration: none;
  text-transform: none;
  color: var(--color-base-gray);
  font-size: 15px;
  top: 4px;
  position: relative;
}

a.p-prev {
  left: unset;
  right: 55px !important;
  top: -30px !important;
}
a.p-prev:before {
  content: "\e90b" !important;
  position: relative;
  top: 1px;
}

a.p-next {
  right: 0px !important;
  top: -30px !important;
}
a.p-next:before {
  content: "\e90c" !important;
  position: relative;
  top: 1px;
}

.type-detail .slick-list.draggable {
  margin-left: -10px;
}
.type-detail .browse-p {
  position: relative;
  bottom: 460px;
}

.product.col-sm-6.col-md-12.col-lg-6 {
  margin-left: 10px;
  width: calc(25% - 10px);
}

@media (min-width: 992px) {
  .col-xs-12.col-lg-6.p-image-wrapper {
    width: 60%;
  }
  .col-xs-12.col-lg-6.p-info-wrapper {
    width: 40%;
  }
  .thumbnail {
    width: 20%;
    margin-right: 10px;
  }
  .browse-p .p-prev {
    left: unset;
  }
}
@media (max-width: 768px) {
  .type-product .col-xs-12.col-lg-6.p-image-wrapper {
    background: white;
  }
  .type-product .col-xs-12.col-lg-6.p-info-wrapper {
    padding: 20px !important;
  }
  .type-product .col-xs-12.col-lg-6.p-info-wrapper {
    margin-top: -20px !important;
    padding-top: 0 !important;
    border-radius: 0;
  }
  .type-product .benefitBanner.position--benefitProduct {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .type-product .benefitBanner__item {
    flex: 1 1 50% !important;
  }
  .type-product .p-switchable .related-sm-screen-hide {
    display: block;
  }
  .type-product a.btn.btn-default.p-all {
    display: none !important;
  }
  .type-product .products-block > div {
    flex: 0 0 auto;
    width: 100% !important;
  }
  .type-product h2.products-related-header {
    width: 50%;
  }
  .type-product .slick-next {
    right: 0px;
    top: -40px !important;
  }
  .type-product .slick-prev {
    left: unset;
    right: 54px;
    top: -40px !important;
  }
  .type-product .slick-slide {
    padding: 10px;
  }
  .type-product .row.banners-content.body-banners > div {
    width: 100%;
  }
  .type-product .logo-list-item {
    width: 33%;
  }
  .type-product .reference .logo-list-container {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .type-product .breadcrumbs {
    display: block;
    width: 1000px;
    height: 50px;
    padding-top: 13px;
  }
  .type-product .container.breadcrumbs-wrapper {
    position: relative;
    top: 50px;
    overflow: hidden;
  }
  .type-product .breadcrumbs .navigation-bullet {
    display: contents;
  }
}
.combined-products-accordion {
  margin: 24px 0 32px 0;
  border-radius: 12px;
  background: #fff;
  padding: 0 0 8px 0;
}
.combined-products-accordion .combined-accordion-item {
  border-bottom: 1px solid #e6e6e6;
}
.combined-products-accordion .combined-accordion-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 12px;
  font-size: 17px;
  font-weight: 600;
  color: #222;
  background: transparent;
  cursor: pointer;
  outline: none;
  border: none;
}
.combined-products-accordion .combined-accordion-header .header-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 12px;
  background: #fff;
  border: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.combined-products-accordion .combined-accordion-header .header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.combined-products-accordion .combined-accordion-header .combined-accordion-title {
  font-size: 17px;
  font-weight: 600;
  color: #222;
  margin-right: 8px;
}
.combined-products-accordion .combined-accordion-header .combined-accordion-subtitle {
  font-size: 14px;
  color: #888;
  font-weight: 400;
  flex: 1;
}
.combined-products-accordion .combined-accordion-header .combined-accordion-icon {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-normal);
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  margin-left: auto;
  flex-shrink: 0;
}
.combined-products-accordion .combined-accordion-header .combined-accordion-icon:before {
  content: "\e911";
  font-family: shoptet;
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  transform: rotate(180deg);
  transition: transform var(--transition-fast);
}
.combined-products-accordion .combined-accordion-header[aria-expanded=true] .combined-accordion-icon:before {
  transform: rotate(0deg);
}
.combined-products-accordion .combined-accordion-header:hover .combined-accordion-title, .combined-products-accordion .combined-accordion-header:hover .combined-accordion-icon {
  color: var(--color-secondary);
}
.combined-products-accordion .combined-accordion-body {
  padding: 0 12px 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.combined-products-accordion .combined-variant-btn {
  display: flex;
  align-items: center;
  width: 100%;
  background: #f8f8f8;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
  outline: none;
  margin-bottom: 0;
}
.combined-products-accordion .combined-variant-btn:hover, .combined-products-accordion .combined-variant-btn.active {
  background: #e6f0fa;
  border-color: #007bff;
}
.combined-products-accordion .combined-variant-btn .combined-variant-img-wrap {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 14px;
  background: #fff;
  border: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.combined-products-accordion .combined-variant-btn .combined-variant-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.combined-products-accordion .combined-variant-btn .combined-variant-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.combined-products-accordion .combined-variant-btn .combined-variant-info .combined-variant-name {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 2px;
}
.combined-products-accordion .combined-variant-btn .combined-variant-info .combined-variant-desc {
  font-size: 13px;
  color: #888;
  font-weight: 400;
}

.h4.homepage-group-title,
h4.homepage-group-title {
  margin-top: 57px;
  text-align: left;
  font-family: "Cormorant", serif;
  font-size: 27px;
  text-transform: uppercase;
}

.columns-4 .products-block > div {
  flex: 0 0 auto;
  width: 25%;
}

.product {
  background-color: white;
  padding: 10px;
  border-radius: 5px;
}
.product .p .name {
  color: black;
  font-weight: 600;
}
.product .ratings-wrapper {
  display: none !important;
}
.product .btn.add-to-cart-button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  position: absolute;
  right: 5px;
  bottom: 5px;
}
.product .btn.add-to-cart-button:before {
  content: "";
  content: "";
  background-image: url("https://cdn.myshoptet.com/usr/www.mimiconcept.cz/user/documents/upload/assets/ico/conv-button.svg");
  position: absolute;
  left: 7px;
  top: 72%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: cover;
}
.product .btn.add-to-cart-button span {
  display: none;
}
.product button.btn.btn-cart.add-to-cart-button {
  background-color: #f3f3f3;
  border-color: #f3f3f3;
}

.products-block.products .p .price span,
.products-block.products .p .price strong {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-base-gray);
}

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 40px;
  width: 40px;
  line-height: 0px;
  font-size: 0px;
  border-radius: 50%;
  cursor: pointer;
  background: white;
  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::before,
.slick-next::before {
  speak: none;
  display: inline-block;
  font-family: shoptet;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 0;
  text-decoration: none;
  text-transform: none;
  color: var(--color-base-gray);
  font-size: 15px;
  top: 4px;
  position: relative;
}

.in-index .products .slick-list.draggable {
  width: 100%;
}
.in-index .products .slick-prev {
  left: unset;
  right: 55px;
  top: -30px;
}
.in-index .products .slick-prev:before {
  content: "\e90b";
}
.in-index .products .slick-next {
  right: 0px;
  top: -30px;
}
.in-index .products .slick-next:before {
  content: "\e90c";
}
.in-index .products .slick-slide {
  padding: 0 5px;
}

.type-category h1.category-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: "Cormorant", serif;
  text-transform: uppercase;
  text-align: center;
  color: #101010;
  font-weight: 400;
}
.type-category .product {
  width: calc(25% - 10px) !important;
  margin: 5px;
}
.type-category .product .p .name {
  font-size: 14px;
}
.type-category div#productsTop {
  display: none;
}
.type-category .category-top h4 {
  display: none;
}
.type-category div#category-header {
  display: none;
}
.type-category .filters-wrapper {
  position: relative;
}
.type-category #content .filters-wrapper > div:first-of-type {
  margin-bottom: 19px;
  text-align: left;
}
.type-category .banner-category {
  width: 50% !important;
  margin-bottom: 0;
  border: transparent;
}
.type-category .subcategories li a:before {
  display: none;
}
.type-category .subcategories {
  justify-content: center;
}
.type-category .subcategories li a {
  background-color: transparent;
  color: var(--colors-foregrounds-content-tertiary);
  border-radius: 50px;
  padding-left: 30px;
  padding-right: 30px;
  border-color: #eacfc7;
  width: max-content;
}
.type-category .subcategories li a:hover {
  color: black;
  border-color: black;
}

.breadcrumbs {
  border-bottom: transparent;
}

.filters-unveil-button-wrapper a.btn.btn-default.unveil-button {
  background-color: transparent !important;
  color: #676767;
  padding-left: 40px;
  position: relative;
}
.filters-unveil-button-wrapper a.btn.btn-default.unveil-button:before {
  content: "";
  width: 25px;
  height: 25px;
  display: block;
  background-image: url("https://cdn.myshoptet.com/usr/www.mimiconcept.cz/user/documents/upload/assets/ico/filter.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 2px;
}

.filter-wrapper {
  position: absolute;
  right: 0;
  top: 0px;
}
.filter-wrapper select#order-select-field {
  border: none;
  background: transparent;
}
.filter-wrapper::before {
  content: "\e910";
  rotate: 90deg;
  font-size: 17px;
  line-height: 8px;
  margin-top: -4px;
  position: absolute;
  right: 10px;
  top: 55%;
  speak: none;
  display: inline-block;
  font-family: shoptet;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 0;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
}

.pagination-top strong {
  color: rgba(0, 0, 0, 0.88);
}

.pagination a {
  color: rgba(0, 0, 0, 0.88);
}

.popup.info-wraper {
  position: absolute;
  bottom: 100px;
  z-index: 500;
  display: flex;
  background: white;
  padding: 10px;
  border: 1px solid;
  border-radius: 5px;
  max-width: 600px;
  min-width: 450px;
  flex-direction: column;
}
.popup.info-wraper .popup-image {
  max-width: 200px;
  width: 100%;
}
.popup.info-wraper .popup-image img {
  width: 100%;
}
.popup.info-wraper .info-text {
  padding-left: 10px;
  width: 100%;
}
.popup.info-wraper .info-text p {
  color: black;
}
.popup.info-wraper h5 {
  font-size: 17px;
  margin-bottom: 20px;
  color: black;
}

@media (min-width: 1440px) {
  .subcategories .col-xl-2 {
    width: unset;
  }
}
@media (max-width: 767px) {
  .popup-open .product {
    position: unset;
  }
  .popup.info-wraper {
    position: fixed;
    bottom: 100px;
    left: 5px;
    right: 5px;
    display: fi;
    background: #fff;
    padding: 10px;
    border: 1px solid;
    border-radius: 5px;
  }
  .popup.info-wraper {
    max-width: 200%;
    min-width: 300px;
  }
  .type-category .product {
    width: calc(50% - 10px) !important;
  }
  select#order-select-field {
    width: 160px;
  }
  #content .btn.unveil-button {
    display: block;
    width: 41%;
  }
  .type-category .banner-category {
    width: 100% !important;
    margin-bottom: 0;
    border: rgba(0, 0, 0, 0);
  }
  .product .btn.add-to-cart-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    right: 1px;
    bottom: -6px;
  }
  .p-in-in {
    margin-bottom: 20px;
  }
}
.in-o-nas h1 {
  display: none;
}

.type-page h2 {
  font-size: 50px;
  text-align: left;
  font-weight: 600;
}
.type-page .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.type-page .apendix {
  margin-bottom: 40px;
  margin-top: 40px;
  font-weight: 600;
}
.type-page .right img {
  margin-bottom: 40px;
}
.type-page img {
  border-radius: 20px;
}
.type-page .about-us-bottom.full-width,
.type-page .quote.full-width,
.type-page .advantage-wrapper.full-width {
  padding: 60px 20px;
  background-color: #f1dfda;
  border-radius: 10px;
}
.type-page .quote.full-width p {
  font-size: 30px;
  font-family: "Cormorant", serif;
  width: 90%;
  margin: 0 auto;
  position: relative;
  line-height: 1.3;
}
.type-page .quote.full-width p::before {
  content: "";
  position: absolute;
  background-image: url("https://cdn.myshoptet.com/usr/www.mimiconcept.cz/user/documents/upload/assets/articles/Quotes.png");
  width: 40px;
  height: 40px;
  background-size: cover;
  top: -10px;
  left: -50px;
}
.type-page .quote.full-width p::after {
  content: "";
  position: absolute;
  background-image: url("https://cdn.myshoptet.com/usr/www.mimiconcept.cz/user/documents/upload/assets/articles/Quotes.png");
  width: 40px;
  height: 40px;
  background-size: cover;
  bottom: -10px;
  right: -50px;
  transform: rotate(180deg);
}
.type-page .justify-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.type-page h3 {
  font-size: 35px;
}

.advantage-wrapper.full-width h3 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  margin-bottom: 70px;
}
.advantage-wrapper.full-width img {
  width: 40px;
  height: 40px;
  border-radius: 0;
  margin: 0 auto;
}
.advantage-wrapper.full-width .advantage {
  text-align: center;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.advantage-wrapper.full-width .advantage .apendix {
  display: block;
  margin-bottom: 20px;
}

.team-wrap {
  padding: 50px 0;
}
.team-wrap h3 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.team-wrap p {
  text-align: center;
  margin-bottom: 20px;
}
.team-wrap .member {
  margin: 5px;
}
.team-wrap .member img {
  border-radius: 0;
}
.team-wrap .member .name {
  text-align: center;
  background: white;
  padding: 5px 10px;
}

.search-whisperer.active .link-like,
.search-whisperer.active a {
  color: #000000;
}

.search-whisperer .p-name,
.search-whisperer .price {
  color: #060606;
}

@media (min-width: 768px) {
  .about-us-top {
    margin-bottom: 50px;
  }
  .about-us-top .right {
    padding-top: 20px;
  }
  .about-center {
    padding: 50px 0;
  }
  .team-wrap p {
    width: 60%;
    margin: 0 auto 20px;
  }
  .advantage-wrapper.full-width .advantage {
    flex: 1 1 33%;
  }
  .about-us-top {
    display: flex;
  }
  .about-us-top .left {
    flex: 1 1 40%;
    padding: 20px;
  }
  .about-us-top .center {
    flex: 1 1 40%;
    padding: 20px;
  }
  .about-us-top .right {
    flex: 1 1 20%;
  }
  .about-center {
    display: flex;
  }
  .about-center .left {
    flex: 1 1 50%;
    padding: 20px;
  }
  .about-center .right {
    flex: 1 1 50%;
    padding: 20px;
  }
}
.about-us-bottom.full-width .right {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-us-bottom.full-width h3 {
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: 80%;
}
.about-us-bottom.full-width p {
  width: 80%;
}
.about-us-bottom.full-width a.button {
  background: #ed4c45;
  width: fit-content;
  padding: 10px 40px 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
}
.about-us-bottom.full-width a.button:after {
  content: "\e910";
  font-size: 13px;
  margin-right: 7px;
  margin-top: -3px;
  speak: none;
  display: inline-block;
  font-family: shoptet;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 0;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  position: absolute;
  right: 10px;
  top: 60%;
  transform: translateY(-50%);
}

@media (min-width: 1200px) {
  .content-inner {
    max-width: unset;
  }
}
@media (max-width: 1600px) {
  .type-page h2 {
    font-size: 39px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .subcategories {
    display: flex;
    flex-wrap: wrap;
  }
  .subcategories .col-xs-6 {
    width: unset;
  }
  .subcategories li a {
    padding-left: 20px;
    padding-right: 20px;
  }
  .subcategories li a .text {
    font-size: 10px;
    line-height: 16px;
    max-height: 48px;
  }
  .type-page h2 {
    font-size: 35px;
    margin-top: 20px;
    margin-bottom: 0px;
  }
  .type-page h3 {
    font-size: 25px;
  }
  .type-page .advantage-wrapper.full-width h3 {
    width: unset;
    margin-bottom: 40px;
  }
  .type-page .advantage-wrapper.full-width .advantage {
    padding: 20px 10px;
    margin: 0;
  }
  .type-page .about-us-bottom.full-width .container {
    padding: 0;
  }
  .type-page .about-us-bottom.full-width .left,
  .type-page .about-us-bottom.full-width .right {
    flex: 1 1 50%;
    padding: 0;
  }
  .type-page .about-us-bottom.full-width .left h3,
  .type-page .about-us-bottom.full-width .left p,
  .type-page .about-us-bottom.full-width .right h3,
  .type-page .about-us-bottom.full-width .right p {
    width: 100%;
  }
  .type-page .apendix {
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .type-page .right {
    margin-bottom: 40px;
  }
  .type-page .right img {
    margin-bottom: 20px;
  }
  .type-page .center {
    margin-bottom: 40px;
  }
  .type-page .left {
    margin-bottom: 40px;
  }
  .type-page .mobile-hide {
    display: none;
  }
  .type-page .quote.full-width p {
    font-size: 22px;
  }
  .type-page .flex {
    display: block;
  }
}

/*# sourceMappingURL=main.css.map */
