@charset "UTF-8";
/*	===============================
	Table of Contents
	===============================
		1.  fonts
		2.  variables
		3.  mixins
		4.  setup
		5.  header
		6.  menu
		7.  breadcrumbs
		8.  main section
		9.  box
		10. product overall
		11. product list
		12. product page
		13. tabs
		14. product modules (promoctions,new etc.)
		15. bottom-footer
		16. footer
		17. basket
		18. buttons
		19. others
		20. widget
		21. updates
		22. rwd
	=============================== */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght$600&display=swap");
/* latin-ext */
@font-face {
  font-family: "FontAwesome";
  src: url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.eot");
  src: url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.eot?#iefix") format("embedded-opentype"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2") format("woff2"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.woff") format("woff"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.ttf") format("truetype"), url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
b,
strong {
  font-weight: 700;
}

.box-sizing {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.iconFont {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ms-flex {
  display: flex;
}
.ms-flex.ms-justify-content_sb {
  justify-content: space-between;
}
.ms-flex.ms-justify-content_sa {
  justify-content: space-around;
}
.ms-flex.ms-justify-content_se {
  justify-content: space-evenly;
}
.ms-flex.ms-justify-content_c {
  justify-content: center;
}
.ms-flex.ms-justify-content_s {
  justify-content: flex-start;
}
.ms-flex.ms-justify-content_e {
  justify-content: flex-end;
}
.ms-flex.ms-align-items_c {
  align-items: center;
}
.ms-flex.ms-align-items_s {
  align-items: flex-start;
}
.ms-flex.ms-align-items_e {
  align-items: flex-end;
}
.ms-flex .ms-col_1 {
  flex: 0 0 auto;
  width: 100%;
}
.ms-flex .ms-col_2 {
  flex: 0 0 auto;
  width: 50%;
}
.ms-flex .ms-col_3 {
  flex: 0 0 auto;
  width: 33%;
}
.ms-flex .ms-col_4 {
  flex: 0 0 auto;
  width: 25%;
}

@media screen and (max-width: 480px) {
  .ms-flex {
    flex-direction: column;
  }
  .ms-flex .ms-col_2,
.ms-flex .ms-col_3,
.ms-flex .ms-col_4 {
    width: 100%;
  }
}
a {
  color: #4f4f4f;
}
a:hover {
  color: #2c3238;
}

.tags-tmp li {
  font-size: 11px;
  letter-spacing: 0.1px;
  padding: 1px 7px;
  text-align: center;
  text-transform: uppercase;
}
.tags-tmp li.new {
  background-color: #2c3238;
  color: #ffffff;
}
.tags-tmp li.promo {
  background-color: #f00;
  color: #ffffff;
}

.star-tmp img[class*=star] {
  margin-left: 3px;
}
.star-tmp img[class*=star].star1 {
  background: url("star1.svg") no-repeat 0 50% transparent;
  background-size: contain;
}
.star-tmp img[class*=star].star0-5 {
  background: url("star0-5.svg") no-repeat 0 50% transparent;
  background-size: contain;
}
.star-tmp img[class*=star].star0 {
  background: url("star0.svg") no-repeat 0 50% transparent;
  background-size: contain;
}

header {
  border-top: 0;
  padding-top: 0;
  padding-bottom: 15px;
}
header .fx-social-wrapper {
  flex: 0 1 33%;
}
header .login-bar {
  height: 2em;
  line-height: 2em;
  margin-bottom: 0;
}
header .login-bar > ul.links {
  opacity: 0;
  transition: 0.3s;
}
header .login-bar > ul.links.fx-active {
  opacity: 1;
}
header .login-bar > ul > li {
  padding: 0 5px;
  font-size: 13px;
}
header .login-bar > ul > li a {
  font-size: 13px;
}
header .login-bar a {
  color: #2c3238;
  font-size: 14px;
  text-decoration: none;
}
header .login-bar a:hover {
  color: #2c3238;
  text-decoration: underline;
}
header .logo-bar {
  position: relative;
  padding: 1rem 0;
}
header .logo-bar::before, header .logo-bar::after {
  display: none;
}
header .logo-bar .link-logo {
  flex: 0 0 34%;
  text-align: center;
}
header .logo-bar .link-logo.link-logo-text {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 4px;
  line-height: 44px;
  color: #2c3238;
  margin-top: 3px;
}
header .logo-bar .bbs-wrap {
  flex: 0 0 33%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
header .logo-bar .bbs-wrap .fx-panel {
  padding: 0 10px;
}
header .logo-bar .bbs-wrap .fx-panel::before {
  background: url("user.svg") no-repeat 50% transparent;
  background-size: contain;
  width: 23px;
  height: 30px;
  content: "";
  display: inline-block;
}
header .logo-bar .bbs-wrap .fx-search {
  padding: 0 10px;
}
header .logo-bar .bbs-wrap .fx-search::before {
  background: url("loupe.svg") no-repeat 50% transparent;
  background-size: contain;
  width: 23px;
  height: 30px;
  content: "";
  display: inline-block;
}
header .logo-bar .bbs-wrap .fx-search.fx-active {
  background-color: #ffffff;
  position: fixed;
  top: 60px;
  z-index: 500;
  padding: 8px 8px 4px;
  box-shadow: 0 0 10px fade(#2c3238, 50%);
  z-index: 501;
}
header .logo-bar .bbs-wrap .fx-search.fx-active::before {
  background: url("icon-close2.svg") no-repeat 50% transparent;
  width: 14px;
  height: 14px;
  background-size: contain;
}
header .logo-bar .bbs-wrap .fx-fav {
  padding: 0 10px;
}
header .logo-bar .bbs-wrap .fx-fav::before {
  background: url("heart.svg") no-repeat 50% transparent;
  background-size: contain;
  width: 24px;
  height: 30px;
  content: "";
  display: inline-block;
}
header .logo-bar .search-form.right .search-input {
  height: 40px;
  min-height: 40px;
  padding: 0 10px;
  margin-left: 0;
}
header .logo-bar .search-form.right .btn {
  width: 40px;
  height: 40px;
}
header .logo-bar .basket > a .countlabel > span {
  display: none;
}
header .logo-bar .basket > a .countlabel b .sum {
  display: none;
}
header .logo-bar .basket > a .countlabel b .count span {
  color: #2c3238;
  font-size: 13px;
  font-weight: normal;
  background-color: transparent;
  font-weight: bold;
}
header .logo-bar .basket.empty-basket {
  border: 0;
  background-color: transparent;
}
header .logo-bar .basket.empty-basket > a .countlabel > span {
  display: none;
}
header .logo-bar .basket.empty-basket > a .countlabel b {
  display: none;
}
header .logo-bar .basket-contain {
  display: none !important;
}
header.checkout .fx-social-wrapper {
  display: none;
}
header.checkout .logo-bar {
  justify-content: space-between;
}
header.checkout .logo-bar .fx-serach {
  display: none;
}

.box.unibox {
  margin-top: 1em;
}
.box#box_article_categories ul li a, .box#box_menu ul li a {
  font-size: 13px;
}
.box#box_article_categories ul li a:hover, .box#box_menu ul li a:hover {
  text-decoration: underline;
}
.box#box_newsletter .innerbox .newsletter-input {
  height: 30px;
  min-height: 30px;
  width: auto;
  border-color: #e6e6e7;
  font-size: 12px;
  padding: 0 20px;
  margin-right: 10px;
}
.box#box_newsletter .innerbox form fieldset:nth-child(2) {
  font-size: 11px;
}
.box#box_newsletter .innerbox form fieldset:nth-child(2) a {
  text-decoration: underline;
}
.box#box_newsletter .btn {
  height: 30px;
  width: auto;
  padding: 0 20px;
  margin-left: 0;
}
.box#box_newsletter .btn span {
  display: inline-block;
}
.box#box_newsletter .btn img {
  display: none;
}
.top .box#box_newsletter, .bottom-footer .box#box_newsletter {
  padding: 3em 0;
  border: solid #e6e6e7;
  border-width: 1px 0;
}
.top .box#box_newsletter .boxhead, .bottom-footer .box#box_newsletter .boxhead {
  display: none;
}
.top .box#box_newsletter .innerbox, .bottom-footer .box#box_newsletter .innerbox {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.top .box#box_newsletter .innerbox .boxintro, .bottom-footer .box#box_newsletter .innerbox .boxintro {
  width: 41%;
}
.top .box#box_newsletter .innerbox .boxintro strong, .bottom-footer .box#box_newsletter .innerbox .boxintro strong {
  font-weight: bold;
  font-size: 1.75rem;
  line-height: 1.2;
  margin: 0;
}
.top .box#box_newsletter .innerbox form, .bottom-footer .box#box_newsletter .innerbox form {
  width: 41%;
  margin: 0;
}
.top .box#box_newsletter .innerbox .btn, .bottom-footer .box#box_newsletter .innerbox .btn {
  height: 30px;
  width: auto;
  padding: 0 20px;
  margin-left: 10px;
}
.top .box#box_newsletter .innerbox .btn span, .bottom-footer .box#box_newsletter .innerbox .btn span {
  display: inline-block;
}
.top .box#box_newsletter .innerbox .btn img, .bottom-footer .box#box_newsletter .innerbox .btn img {
  display: none;
}
.shop_index .box#box_mainproducts .boxhead {
  flex-direction: column;
}
.shop_index .box#box_mainproducts .boxhead > h1 {
  padding-bottom: 0;
}
.box#box_articlelist .innerbox {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  flex-wrap: wrap;
}
.box#box_articlelist article {
  width: 48%;
  margin-bottom: 2.5em;
  position: relative;
}
.box#box_articlelist article .article-header {
  font-size: 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  letter-spacing: 0.2px;
  line-height: 1.6;
  height: auto;
  margin-bottom: 0;
  border-bottom: 0;
  padding: 0.5em 0;
}
.box#box_articlelist article .article-header .article-name {
  text-transform: initial;
  font-size: 1.1em;
  padding-top: 0;
}
.box#box_articlelist article .article-header .article-comments {
  display: none;
}
.box#box_articlelist article .article-info {
  margin-bottom: 0;
  font-size: 12px;
}
.box#box_articlelist article .article-content {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
  font-size: 0.9em;
}
.box#box_articlelist article .readmore {
  position: absolute;
  right: 5px;
  top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: fade(#ffffff, 60%);
  font-size: 12px;
  font-weight: 400;
}
.box#box_articlelist article .readmore span {
  display: none;
}
.box#box_articlelist article .readmore::before {
  content: "\f0c1";
  color: #2c3238;
  font-size: 1.5em;
}
.box#fx-social {
  display: none;
  margin: 0;
}
header .box#fx-social {
  display: block;
}
.box#fx-social p {
  margin: 0;
}
.box#fx-social ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.box#fx-social ul li {
  list-style-type: none;
  margin-right: 7px;
}
.box#fx-social ul li a {
  background-color: #2c3238;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box#fx-social ul li a::before {
  color: contrast(#2c3238, black, white, 43%);
  font-size: 12px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
}
.box#fx-social ul li a:hover {
  background-color: #2c3238;
}
.box#fx-social ul li a:hover:before {
  color: contrast(#2c3238, black, white, 43%);
}
.box#fx-social_footer {
  display: none;
  background: #2c3238;
  color: contrast(#2c3238, black, white, 43%);
}
footer .box#fx-social_footer {
  display: block;
}
.box#fx-social_footer .container {
  display: flex;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
}
.box#fx-social_footer .container::before, .box#fx-social_footer .container::after {
  display: none;
}
.box#fx-social_footer p {
  margin: 10px 0;
  text-align: right;
}
.box#fx-social_footer ul {
  justify-content: flex-end;
}
.box#fx-social_footer ul li {
  margin-left: 7px;
  margin-right: 0;
}
.box#fx-social_footer ul li a {
  background-color: #ffffff;
}
.box#fx-social_footer ul li a::before {
  color: #2c3238;
}
.box#box_filter ul li.showmore {
  border-style: solid;
  border-color: #f2f2f2;
}
.box#box_filter ul li a.color-filter span {
  width: 20px;
  height: 20px;
  border: 1px solid #cacaca;
}
.box#box_filter .multiselect ul li.selected, .box#box_filter .multiselect ul li:hover {
  background-color: #f2f2f2;
}
.box#box_filter .multiselect ul li.priceinput .bottombuttons .btn {
  color: #ffffff;
  color: #ffffff;
}
.box#box_filter .multiselect ul li.priceinput .bottombuttons .btn:hover {
  color: #ffffff;
}
.box#box_filter .multiselect ul li.priceinput .bottombuttons .btn span:hover {
  color: #ffffff;
}
.box#box_filter .multiselect:hover li.priceinput .bottombuttons .btn {
  color: #ffffff;
}
.box#box_filter .multiselect:hover li.priceinput .bottombuttons .btn:hover {
  color: #ffffff;
}
.box#box_filter .multiselect:hover li.priceinput .bottombuttons .btn span {
  color: #ffffff;
}
.box#box_filter .multiselect:hover li.priceinput .bottombuttons .btn span:hover {
  color: #ffffff;
}
.box#box_search .search__input-area {
  border-right: 1px solid;
  border-color: #e6e6e7;
}
.box#box_search .btn.btn-red {
  border: 0;
  background: transparent;
}
.box#box_bestsellers .product .productnamewrap, .box#box_productoftheday .product .productnamewrap, .box#box_specialoffer .product .productnamewrap, .box#box_lastadded .product .productnamewrap, .box#box_recent .product .productnamewrap, .box#box_productrelated .product .productnamewrap, .box[id*=box_recommendations_] .product .productnamewrap {
  height: auto;
  margin-bottom: 0;
}
.box#box_bestsellers .product .price del, .box#box_productoftheday .product .price del, .box#box_specialoffer .product .price del, .box#box_lastadded .product .price del, .box#box_recent .product .price del, .box#box_productrelated .product .price del, .box[id*=box_recommendations_] .product .price del {
  display: inline-block;
}
.box#box_bestsellers .product .price em.color, .box#box_productoftheday .product .price em.color, .box#box_specialoffer .product .price em.color, .box#box_lastadded .product .price em.color, .box#box_recent .product .price em.color, .box#box_productrelated .product .price em.color, .box[id*=box_recommendations_] .product .price em.color {
  order: 1;
}
.box#box_bestsellers .slider-wrap .product, .box#box_productoftheday .slider-wrap .product, .box#box_specialoffer .slider-wrap .product, .box#box_lastadded .slider-wrap .product, .box#box_recent .slider-wrap .product, .box#box_productrelated .slider-wrap .product, .box[id*=box_recommendations_] .slider-wrap .product {
  margin-right: 20px;
}
.box#box_loyalty .boxhead {
  justify-content: flex-start;
}
.box#box_loyalty .innerbox .mb-2 {
  display: flex;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
}
.box#box_loyalty .innerbox .tooltip {
  text-decoration: underline;
}
.box#fx-welcome {
  display: none;
  background-color: #f2f2f2;
  text-align: center;
  margin: 0;
  position: relative;
}
header .box#fx-welcome {
  display: block;
}
.box#fx-welcome p {
  margin: 1em 0;
  color: #767676;
}
.box#fx-welcome .fx-welcome-close {
  position: absolute;
  right: 0;
  top: 0;
  line-height: 46px;
  width: 46px;
}
.box#fx-front-b p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: no-wrap;
}
.box#fx-front-b p span,
.box#fx-front-b p a {
  flex-basis: 32%;
}
.box#fx-front-b p span img,
.box#fx-front-b p a img {
  width: auto;
  height: auto !important;
}
.shop_news .box#fx-blog .boxhead, .shop_news_list .box#fx-blog .boxhead {
  display: none;
}

.box#ms08 .ms-flex .ms-col_2 {
  position: relative;
}
.box#ms08 .ms-flex .ms-col_2 > a {
  display: inline-block;
}
.box#ms08 .ms-flex .ms-col_2 > a > img {
  max-width: calc(100% - 10px);
}
.box#ms08 .ms-flex .ms-col_2 > img {
  max-width: calc(100% - 10px);
}
.box#ms08 .ms-flex .ms-col_2 > div {
  background-color: #ffffff;
  position: absolute;
  left: 50%;
  bottom: 0;
  -ms-transform: translateX(calc(-50% - 5px));
  -webkit-transform: translateX(calc(-50% - 5px));
  transform: translateX(calc(-50% - 5px));
  min-width: 320px;
  width: 60%;
  text-align: center;
  padding: 20px 20px 0;
}
.box#ms08 .ms-flex .ms-col_2 > div p {
  font-size: 1.4em;
}
.box#ms08 .ms-flex .ms-col_2 > div strong {
  font-size: 2.3em;
}
.box#ms08 .ms-flex .ms-col_2 + .ms-col_2 {
  text-align: right;
}
.box#ms08 .ms-flex .ms-col_2 + .ms-col_2 > div {
  -ms-transform: translateX(calc(-50% + 5px));
  -webkit-transform: translateX(calc(-50% + 5px));
  transform: translateX(calc(-50% + 5px));
}

@media screen and (max-width: 480px) {
  .box#ms08 .ms-flex .ms-col_2 {
    margin-bottom: 20px;
  }
  .box#ms08 .ms-flex .ms-col_2 > a > img {
    max-width: 100%;
  }
  .box#ms08 .ms-flex .ms-col_2 > img {
    max-width: 100%;
  }
  .box#ms08 .ms-flex .ms-col_2 > div {
    -ms-transform: translateX(calc(-50%));
    -webkit-transform: translateX(calc(-50%));
    transform: translateX(calc(-50%));
  }
  .box#ms08 .ms-flex .ms-col_2 > div p {
    font-size: 1.1em;
  }
  .box#ms08 .ms-flex .ms-col_2 > div strong {
    font-size: 1.5em;
  }
  .box#ms08 .ms-flex .ms-col_2 + .ms-col_2 > div {
    -ms-transform: translateX(calc(-50%));
    -webkit-transform: translateX(calc(-50%));
    transform: translateX(calc(-50%));
  }
}
.box#ms11 .ms11 .ms-col_3 {
  position: relative;
  width: 33.3%;
  text-align: center;
}
.box#ms11 .ms11 .ms-col_3 > div {
  background-color: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 220px;
  max-width: 80%;
  text-align: center;
  padding: 20px;
}
.box#ms11 .ms11 .ms-col_3 > div a {
  font-size: 1.1em;
  text-decoration: underline;
}
.box#ms11 .ms11 .ms-col_3 > div p {
  margin: 0.5em 0;
}
.box#ms11 .ms11 .ms-col_3 > div strong {
  font-size: 1.2em;
}

@media screen and (max-width: 480px) {
  .box#ms11 .ms11 .ms-col_3 {
    margin-bottom: 20px;
    width: 100%;
  }
}
.box#ms13 .slick-slide img {
  margin: 0 5px;
}

.box#ms16 .ms16 > div {
  position: relative;
  max-width: 49%;
  margin-right: 1%;
}
.box#ms16 .ms16 > div > div {
  background-color: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 220px;
  max-width: 80%;
  text-align: center;
  padding: 20px;
}
.box#ms16 .ms16 > div > div a {
  font-size: 1.1em;
  text-decoration: underline;
}
.box#ms16 .ms16 > div > div p {
  margin: 0.5em 0;
}
.box#ms16 .ms16 > div > div strong {
  font-size: 1.2em;
}
.box#ms16 .ms16 > div + div {
  margin-right: 0;
  margin-left: 1%;
}

@media screen and (max-width: 480px) {
  .box#ms16 .ms16 > div {
    max-width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }
  .box#ms16 .ms16 > div + div {
    margin-left: 0;
  }
}
.box#ms19 .ms19 > div {
  text-align: center;
}
.box#ms19 .ms19 > div:before {
  content: "\f10d";
  display: inline-block;
  color: #cacaca;
  font-size: 1.5em;
}
.box#ms19 .ms19 > div p {
  padding: 0.5em 3em;
}
.box#ms19 .ms19 > div p strong:before {
  content: "\f2be";
  display: inline-block;
  color: #2c3238;
  font-size: 1.1em;
  margin-right: 10px;
}

.box#ms20 .slick-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.box#ms20 .slick-slide > img {
  max-width: 320px;
  margin-right: 15px;
}
.box#ms20 .slick-slide > div {
  text-align: left;
  flex-basis: 60%;
}

@media screen and (max-width: 480px) {
  .box#ms20 .slick-slide > img {
    max-width: 150px;
  }
  .box#ms20 .slick-slide > div {
    flex-basis: 70%;
  }
}
.box#ms21 .ms-flex .ms-col_1 {
  position: relative;
}
.box#ms21 .ms-flex .ms-col_1 > a {
  display: inline-block;
}
.box#ms21 .ms-flex .ms-col_1 > a > img {
  max-width: 100%;
}
.box#ms21 .ms-flex .ms-col_1 > img {
  max-width: 100%;
}
.box#ms21 .ms-flex .ms-col_1 > div {
  background-color: #ffffff;
  position: absolute;
  left: 50%;
  bottom: 0;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  min-width: 320px;
  width: 50%;
  text-align: center;
  padding: 20px 20px 0;
}
.box#ms21 .ms-flex .ms-col_1 > div p {
  font-size: 1.5em;
  line-height: 1.2;
}
.box#ms21 .ms-flex .ms-col_1 > div strong {
  font-size: 2.7em;
  line-height: 1.1;
}

@media screen and (max-width: 480px) {
  .box#ms21 .ms-flex .ms-col_1 > div p {
    font-size: 1.2em;
    line-height: 1.1;
  }
  .box#ms21 .ms-flex .ms-col_1 > div strong {
    font-size: 1.5em;
  }
}
.box#ms23 .ms-col_2 {
  padding: 20px 40px;
}

.box#ms24 .ms-col_2 {
  padding-left: 20px;
}
.box#ms24 img {
  padding: 15px 0;
  max-width: calc(50% - 10px);
}
.box#ms25 .ms-col_2 {
  padding-right: 20px;
}
.box#ms25 img {
  padding: 15px 0;
  max-width: calc(50% - 10px);
}

@media screen and (max-width: 480px) {
  .box#ms24 img, .box#ms25 img {
    max-width: 100%;
  }
}
#box_productfull .productimg .mainimg {
  border: 0;
  height: 500px;
  line-height: 500px;
}
#box_productfull .availability > .row .availability,
#box_productfull .availability > .row .delivery,
#box_productfull .availability > .row .shipping-costs {
  width: 33%;
  float: left;
}
#box_productfull .availability > .row .availability .first,
#box_productfull .availability > .row .delivery .first,
#box_productfull .availability > .row .shipping-costs .first {
  font-size: 12px;
  color: #2c3238;
  width: 100%;
}
#box_productfull .availability > .row .availability .second,
#box_productfull .availability > .row .delivery .second,
#box_productfull .availability > .row .shipping-costs .second {
  font-size: 12px;
  color: #2c3238;
  width: 100%;
  font-weight: bold;
}
#box_productfull .availability > .row .availability .showShippingCost,
#box_productfull .availability > .row .delivery .showShippingCost,
#box_productfull .availability > .row .shipping-costs .showShippingCost {
  font-size: 12px;
  text-align: left;
  color: #2c3238;
  text-decoration: underline;
}
#box_productfull .availability > .row .availability .showShippingCost:hover,
#box_productfull .availability > .row .delivery .showShippingCost:hover,
#box_productfull .availability > .row .shipping-costs .showShippingCost:hover {
  color: #2c3238;
}
#box_productfull .basket .price .price-name {
  min-width: 100%;
  font-size: 12px;
  line-height: 20px;
  font-weight: bold;
}
#box_productfull .basket .price em {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 23px;
}
#box_productfull .basket .price em.default-currency {
  font-size: 19px;
}
#box_productfull .basket .price del {
  font-size: 15px;
}
#box_productfull .basket .otherprice,
#box_productfull .basket .price-netto {
  margin-top: 20px;
}
#box_productfull .basket .otherprice .otherprice-name,
#box_productfull .basket .otherprice .price-name,
#box_productfull .basket .price-netto .otherprice-name,
#box_productfull .basket .price-netto .price-name {
  min-width: 100%;
  font-size: 12px;
  line-height: 20px;
  font-weight: bold;
}
#box_productfull .basket .otherprice em,
#box_productfull .basket .price-netto em {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 21px;
}
#box_productfull .basket .otherprice em.default-currency,
#box_productfull .basket .price-netto em.default-currency {
  font-size: 19px;
}
#box_productfull .basket .otherprice del,
#box_productfull .basket .price-netto del {
  font-size: 15px;
}
#box_productfull .basket .form-basket .stocks label {
  font-size: 12px;
  line-height: 20px;
  font-weight: bold;
}
#box_productfull .basket .form-basket .stocks .option_color {
  margin-top: 0.5em;
}
#box_productfull .basket .form-basket .stocks .option_select {
  max-width: 301px;
}
#box_productfull .basket .form-basket .stocks .option_select select {
  max-width: 260px;
}
#box_productfull .basket .form-basket .stocks .f-row .f-grid-6 {
  width: 100%;
  margin-left: 0;
  min-height: 20px;
}
#box_productfull .basket .form-basket .addtobasket-container {
  margin-top: 1em;
}
#box_productfull .basket .form-basket .quantity_wrap {
  width: 83px;
}
#box_productfull .basket .form-basket .quantity_wrap input[type=number].short {
  margin: 0;
}
#box_productfull .basket .form-basket .button_wrap .loyalty_points {
  text-align: left;
  padding-top: 0.5em;
}
#box_productfull .addtofav {
  display: block;
  text-transform: uppercase;
}
#box_productfull .addtofav::before {
  content: "\f08a";
  display: inline-block;
  padding: 0 0.5em 0 0;
}
#box_productfull .productdetails-more-details {
  background-color: #f2f2f2;
  border: 0;
  padding: 1em;
  margin-top: 3em;
}
#box_productfull .fx-short_desc {
  margin: 3em 0 0;
  font-size: 16px;
  letter-spacing: 0.15px;
  line-height: 19px;
}
#box_productfull .links-q {
  padding-bottom: 0;
}

.smallgallery li {
  border: 0;
  width: 90px;
}

.productfiles {
  margin-top: 1em;
  border-top: 1px solid #e6e6e7;
}
.productfiles h5 {
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 35px;
  bottom: -1px;
  border-bottom: 1px solid #2c3238;
  position: relative;
  display: inline-block;
}
.productfiles .productfiles {
  padding-top: 1em;
  padding-bottom: 1em;
  margin-top: 0;
}
.productfiles .productfiles li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.productfiles .productfiles li::before {
  content: "\f016";
  font-size: 2em;
  color: #2c3238;
  display: inline-block;
  margin-right: 15px;
}
.productfiles .productfiles li a:hover {
  text-decoration: underline;
}

.product-modules .box .boxhead > h3 {
  border-bottom: 1px solid #2c3238;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 12px;
  font-size: 12px;
  bottom: -1px;
  position: relative;
  text-transform: uppercase;
  line-height: 35px;
}

#box_productdata .product-attributes {
  padding-top: 1em;
}
#box_productdata .product-attributes .table tbody {
  border-bottom-color: #f2f2f2;
}
#box_productdata .product-attributes.zebra td:first-child {
  background-color: #f2f2f2;
}
#box_productdata .product-attributes.zebra td.product-attributes {
  background-color: #f2f2f2;
}

.tab-container nav ul li .boxhead h3 {
  color: #2c3238;
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 1px;
}
.tab-container nav ul li .boxhead .modal-shipping-close {
  display: none;
}
.tab-container nav ul li .boxhead.active h3 {
  font-weight: 600;
}

.product .tags {
  top: 5px;
  left: 5px;
}
.sort-and-view {
  float: none;
}
.sort-and-view .prodview {
  margin-left: 0;
  top: 0;
}
.sort-and-view .prodview a {
  font-size: 1.15em;
}
.shop_product_list .sort-and-view {
  margin-left: auto;
}
.sort-and-view .sortlinks .products-sort-container .products-active-sort {
  border-width: 0 0 1px;
}
.sort-and-view .sortlinks .products-sort-container .products-sort-options a.active-sort {
  background-color: #f2f2f2;
}
.sort-and-view .sortlinks .products-sort-container .products-sort-options a:hover.active-sort {
  background-color: #f2f2f2;
}

.floatcenterwrap .paginator li span {
  border: 0;
  font-size: 13px;
  padding: 0 2px;
}
.floatcenterwrap .paginator li a {
  border: 0;
  font-size: 13px;
  padding: 0 2px;
}
.floatcenterwrap .paginator li.selected span {
  font-weight: bold;
}

#shoper-foot {
  background-color: #ffffff;
  padding: 10px 0;
}
#shoper-foot a {
  font-size: 13px;
  color: #4f4f4f;
}

#cookie {
  background-color: #2c3238;
  padding: 13px 0 6px;
  color: #ffffff;
}
#cookie a {
  color: #ffffff;
}
#cookie .pagewidth {
  padding: 0;
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
#cookie .pagewidth span {
  text-align: left;
  float: left;
  max-width: 68%;
  font-size: 13px;
  line-height: 17px;
}
#cookie .pagewidth span:first-of-type {
  padding-right: 20px;
}
#cookie .pagewidth .close {
  position: relative;
  right: 0;
  top: 0;
  float: right;
  width: auto;
  height: auto;
  padding: 10px;
  background: transparent;
  color: black;
  font-weight: normal;
  font-size: 12px;
}
#cookie .pagewidth .close:before {
  display: inline-block;
  content: "";
  background: url("icon-close.svg") 50% no-repeat;
  width: 16px;
  height: 16px;
}

.btn-tmp {
  background-color: #2c3238;
  border-color: #f2f2f2;
  border: 0;
  color: #ffffff;
  font-size: 12px;
  text-transform: initial;
}
.btn-tmp span {
  color: #ffffff;
}
.btn-tmp:hover {
  background-color: fade(#2c3238, 80%);
  border-color: fade(#2c3238, 80%);
  color: #ffffff;
  border: 0;
}
.btn-tmp:hover span {
  color: #ffffff;
}

#box_productfull .basket .form-basket .availability-notifier-container .button_wrap button,
#box_productfull .basket .form-basket .availability-notifier-unsubscribe-container .button_wrap button {
  float: left;
}

.products.viewphot .product .buttons .quickview {
  position: absolute;
  top: 5px;
  right: 5px;
  border: 0;
  background-color: fade(#ffffff, 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
.products.viewphot .product .buttons .quickview::before {
  content: "\f06e";
  color: #2c3238;
}

#box_productfull .basket .form-basket .button_wrap .addtobasket,
#box_productfull .basket .form-basket .button_wrap .availability-notifier-btn,
#box_productfull .basket .form-basket .button_wrap .availability-notifier-unsubscribe-btn {
  font-size: 14px;
  padding-left: 2.625rem;
  padding-right: 2.625rem;
  width: auto;
  min-width: none;
}
#box_productfull .basket .form-basket .button_wrap .addtobasket span,
#box_productfull .basket .form-basket .button_wrap .availability-notifier-btn span,
#box_productfull .basket .form-basket .button_wrap .availability-notifier-unsubscribe-btn span {
  font-size: 14px;
}
#box_productfull .basket .form-basket .button_wrap .addtobasket span::after,
#box_productfull .basket .form-basket .button_wrap .availability-notifier-btn span::after,
#box_productfull .basket .form-basket .button_wrap .availability-notifier-unsubscribe-btn span::after {
  content: "\f061";
  display: inline-block;
  margin-left: 0.625rem;
}
#box_productfull .basket .form-basket .button_wrap .addtobasket:hover span::after,
#box_productfull .basket .form-basket .button_wrap .availability-notifier-btn:hover span::after,
#box_productfull .basket .form-basket .button_wrap .availability-notifier-unsubscribe-btn:hover span::after {
  transform: translateX(10px);
}

article .article-header {
  border-bottom: 0;
}

.js__skankaka-modal {
  color: #f00;
}

.alert {
  background-color: #ffffff;
  border: 0;
  color: #2c3238;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.alert .close {
  top: 14px;
}
.alert .close span {
  color: #2c3238;
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
}
.alert.alert-info {
  background-color: #ffffff;
  border: 0;
  color: #2c3238;
}
.alert.alert-info .close span {
  color: #2c3238;
}
.alert.alert-success {
  background-color: #e5f2da;
  border: 0;
  color: #5a9986;
}
.alert.alert-success .close span {
  color: #4f4f4f;
}
.alert.alert-error {
  background-color: #f2d0dd;
  border: 0;
  color: #e60c54;
}
.alert.alert-error .close span {
  color: #4f4f4f;
}
.alert.alert-warning {
  background-color: #fef7df;
  border: 0;
  color: #2c3238;
}
.alert.alert-warning .close span {
  color: #2c3238;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider .slick-arrow {
  font-size: 0;
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -15px;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
  background: #ffffff;
  color: #4f4f4f;
  z-index: 2;
  opacity: 0.5;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.slick-slider .slick-arrow::before {
  font-size: 23px;
  content: "\f104";
  line-height: 30px;
}
.slick-slider .slick-arrow.slick-next {
  left: auto;
  right: 20px;
}
.slick-slider .slick-arrow.slick-next::before {
  content: "\f105";
}
.slick-slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
.slick-slider .slick-dots li {
  display: inline-block;
}

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

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

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

.slick-slider .slick-track,
.slick-slider .slick-list {
  -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;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

.slick-slide img {
  display: inline-block;
}

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

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

.slick-initialized .slick-slide {
  display: block;
  text-align: center;
}

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

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

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

@media screen and (max-width: 1200px) {
  .container {
    max-width: 940px;
  }
}
@media screen and (max-width: 767px) {
  header .logo-bar .link-logo {
    flex: 0 0 100%;
  }
  .rwd .rwd-show-medium {
    display: flex !important;
  }
  header .logo-bar .fx-social-wrapper,
header .logo-bar .bbs-wrap {
    display: none;
  }
  header .logo-bar .search__container {
    position: initial;
    top: 0;
    left: 0;
    margin-left: 0;
    max-width: 100%;
  }
  #fx-front-b p {
    flex-direction: column;
  }
  #fx-front-b p span,
#fx-front-b p a {
    margin-bottom: 20px;
    flex-basis: 100%;
  }
  .container {
    max-width: 100%;
  }
  .rwd .main .products.viewphot .product .prodimage .stocks ul li span {
    min-height: 14px;
  }
  .rwd .main #box_mainproducts .products .product {
    padding: 0;
    margin: 0;
  }
  #box_productfull .productimg .mainimg {
    height: auto;
    line-height: 1;
  }
  .rwd #box_productfull .basket .form-basket .button_wrap .addtobasket,
.rwd #box_productfull .basket .form-basket .button_wrap .availability-notifier-btn,
.rwd #box_productfull .basket .form-basket .button_wrap .availability-notifier-unsubscribe-btn {
    min-width: 200px;
    float: left;
  }
  .rwd #box_productfull .productdetails-more em {
    float: left;
  }
  .rwd .footer {
    margin: 0;
  }
  .rwd .footer .innerfooter {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .rwd .footer .innerfooter ul.overall {
    max-width: 100%;
    padding-left: 0;
  }
  .rwd .footer .innerfooter ul.overall > li {
    width: 100%;
    min-width: 1px;
    margin-left: 0;
    margin-bottom: 0;
  }
  .rwd .footer .innerfooter ul.overall > li.flex-2, .rwd .footer .innerfooter ul.overall > li.flex-3, .rwd .footer .innerfooter ul.overall > li.flex-4, .rwd .footer .innerfooter ul.overall > li.flex-5, .rwd .footer .innerfooter ul.overall > li.flex-6, .rwd .footer .innerfooter ul.overall > li.flex-7 {
    width: 100%;
  }
  .rwd .footer .innerfooter ul.overall ul li {
    padding-left: 2em;
  }
  .rwd .footer .innerfooter ul.overall ul li.head {
    border-bottom: 0;
  }
  .rwd .footer .innerfooter ul li > ul {
    border-bottom: 1px solid white;
  }
  .top .box#box_newsletter .innerbox,
.bottom-footer .box#box_newsletter .innerbox {
    flex-wrap: wrap;
  }
  .top .box#box_newsletter .innerbox .boxintro,
.bottom-footer .box#box_newsletter .innerbox .boxintro {
    width: 100%;
  }
  .top .box#box_newsletter .innerbox form,
.bottom-footer .box#box_newsletter .innerbox form {
    width: 100%;
  }
  .box#box_bestsellers .product,
.box#box_productoftheday .product,
.box#box_specialoffer .product,
.box#box_lastadded .product,
.box#box_recent .product,
.box#box_productrelated .product,
.box[id*=box_recommendations_] .product {
    max-width: 100%;
    margin-right: 0px;
  }
  .box .product .boximgsize {
    margin: 0 auto;
  }
  .menu #rwd-menu li::after {
    color: #2c3238;
  }
  .scrolled .menu #rwd-menu {
    height: 100vh;
    overflow: auto;
  }
  .modal.modal-visible {
    width: 100% !important;
  }
  .tab-container .product-tabs .product {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .box#fx-social_footer .container {
    flex-direction: column;
  }
  .box#fx-social_footer ul {
    justify-content: center;
    padding-top: 1em;
  }
  .box#box_bestsellers .product,
.box#box_productoftheday .product,
.box#box_specialoffer .product,
.box#box_lastadded .product,
.box#box_recent .product,
.box#box_productrelated .product,
.box[id*=box_recommendations_] .product {
    max-width: 100%;
    margin-right: 0px;
  }
  .top .box#box_newsletter .innerbox .btn,
.bottom-footer .box#box_newsletter .innerbox .btn {
    margin-left: 0;
  }
  .top .box#box_newsletter .innerbox .newsletter-input,
.bottom-footer .box#box_newsletter .innerbox .newsletter-input {
    min-width: 120px;
    width: 99%;
  }
  .box#box_articlelist article {
    width: 100%;
  }
}
@media screen and (max-width: 979px) and (min-width: 768px) {
  .rwd .logo-bar .search__container,
header .logo-bar .search__container {
    left: 5%;
    margin-left: 0;
    max-width: 90%;
    width: 90%;
    min-width: 90%;
    margin-top: 0;
  }
  .rwd form.search-form {
    top: 0;
  }
  .rwd .menu .innermenu {
    height: 50px;
    min-height: 50px;
    line-height: 50px;
    border-top: 0;
    border-bottom: 0;
  }
  .container {
    max-width: 700px;
  }
  .footer {
    background-color: #ffffff;
  }
  .footer .innerfooter ul.overall {
    max-width: 100%;
    padding-left: 0;
  }
}
/* up skakanka 0.1 */
.modal .ajax-basket-container .ajax-product-block img,
.modal .modal-body .product-innerdesc-wrap img {
  height: auto;
}

.checkout .box#fx-welcome,
.checkout .logo-bar .bbs-wrap {
  display: none;
}
.checkout .logo-bar .link-logo {
  text-align: left;
}

#box_description .resetcss table {
  border-collapse: collapse;
  max-width: 100%;
  width: auto;
  min-width: 50%;
  empty-cells: show;
  margin-top: 2em;
  margin-bottom: 2em;
}
#box_description .resetcss table td {
  border: 1px solid #e6e6e7;
  padding: 1em;
}

#box_productfull .productimg .mainimg {
  border: 0;
  height: auto;
  line-height: initial;
}

/* eof up skakanka 0.1 */
/* eof up skakanka 0.1 */
/* up skakanka 0.2 */
header #box_currencies_select,
header #box_languages_select {
  color: #2c3238;
  width: 50px;
  border: none;
  font-weight: bold;
  position: relative;
  text-transform: uppercase;
  font-size: 1em;
  top: 0;
  padding: 0 10px 0 4px;
  background-color: transparent;
  background-image: url(../ico_arrow_down_small.png);
  background-size: 8px;
  float: right;
  min-height: 26px;
  clear: none;
}

#fx-curr,
#fx-lang {
  display: none;
}

/* eof up skakanka 0.2 */
.box_infopage .resetcss form label {
  display: block;
}
.box_infopage .resetcss form input {
  min-width: 50%;
}
.box_infopage .resetcss form input[type=checkbox] {
  min-width: initial;
}
.box_infopage .resetcss form textarea {
  min-width: 50%;
  min-height: 150px;
}

#fx-sticky {
  display: none;
}

.box#fx-social_footer ul li a.fa-instagram .box#fx-social ul li a.fa-instagram::before {
  margin-left: 1px;
}

@media screen and (max-width: 979px) and (min-width: 768px) {
  .menu .innermenu .menu-list li h3 a {
    padding: 12px 8px;
  }
}
header .login-bar {
  height: 2rem;
}

/* eof up skakanka 0.3 */
.shop_collection .sort-and-view {
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  header .logo-bar .bbs-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1em;
  }
  header .logo-bar .bbs-wrap .fx-panel,
header .logo-bar .bbs-wrap .fx-search,
header .logo-bar .bbs-wrap .fx-fav {
    display: none;
  }
}
/* up 1.7.0 */
@media screen and (max-width: 375px) {
  .modal {
    right: -375px;
  }
}
/* up 1.8.0 */
@media screen and (max-width: 767px) {
  .rwd .main #box_mainproducts .products .product .f-row.description {
    margin-top: 2.2em;
  }
  .rwd .main #box_mainproducts .products .product .f-row.description h3 {
    margin-bottom: 0.5em;
  }
}
/* up 1.9.0 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes ocs-btn-spinner {
  to {
    transform: rotate(360deg);
  }
}
html {
  box-sizing: border-box;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
}
html *,
html *:before,
html *:after {
  box-sizing: inherit;
}

body {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  color: #09100f;
  overflow-x: hidden;
}

.no-scroll {
  overflow: hidden;
}

p {
  line-height: 1.6rem;
  margin-bottom: 0.5rem;
}
p a {
  color: #62a69e;
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

h5,
h6 {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  line-height: 1.1;
}

h1 {
  font-size: 2.027rem;
  margin: 0 0 1em 0;
  letter-spacing: -0.05px;
}

h2 {
  font-size: 1.802rem;
  margin: 0.8em 0;
  letter-spacing: -0.03px;
}

h3 {
  font-size: 1.602rem;
  margin: 0.7em 0;
  letter-spacing: -0.01px;
}

h4 {
  font-size: 1.424rem;
  margin: 0.6em 0;
}

h5 {
  font-size: 1.266rem;
  margin: 0.5em 0;
}

h6 {
  font-size: 1.125rem;
  margin: 0.4em 0;
}

.container {
  max-width: 1440px;
  width: 100%;
}
@media screen and (max-width: 1600px) {
  .container {
    max-width: 1200px;
  }
}

@media screen and (min-width: 768px) and (max-width: 979px) {
  .rwd .container {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .rwd.wrap .main {
    margin: 0;
  }
  .rwd .box {
    overflow: unset;
  }
}
.bold {
  font-weight: 700;
}

header,
.breadcrumbs,
.main {
  padding: 0 1rem;
}

.g-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 1.4rem;
  width: 100%;
}
.g-row .leftcol {
  grid-column: 1/4;
}
.g-row .centercol {
  grid-column: 4/13;
}
@media screen and (max-width: 767px) {
  .g-row .centercol {
    grid-column: 1/13;
  }
}

.search__mobile-btn {
  display: none !important;
}

/* responsywne wideo */
.video-container {
  position: relative;
  padding-bottom: 35%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mask {
  background-color: rgba(0, 0, 0, 0.3);
  background-image: none !important;
}

.ocs-header {
  border-top: 0;
  padding: 1rem 1rem;
  position: sticky;
  top: 0rem;
  background: #ffffff;
  z-index: 20;
  border-bottom: 3px solid #e3b6b5;
}
.ocs-header-container {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  grid-template-areas: "logo menu tools";
  gap: 2rem;
}
.ocs-header-container:before, .ocs-header-container:after {
  display: none;
}
@media screen and (max-width: 1300px) {
  .ocs-header-container {
    grid-template-columns: 150px auto;
    grid-template-areas: "logo tools" "menu menu";
    gap: 0.5rem;
  }
}
@media screen and (max-width: 780px) {
  .ocs-header-container {
    grid-template-columns: auto 130px auto;
    grid-template-rows: auto;
    grid-template-areas: "menu logo tools";
    gap: 0.5rem;
  }
}
.ocs-header-logo {
  display: flex;
  align-items: center;
  grid-area: logo;
}
.ocs-header-menu {
  display: flex;
  align-items: center;
  grid-area: menu;
}
.ocs-header-menu-mobile {
  display: none;
  padding-left: 2rem;
}
@media screen and (max-width: 480px) {
  .ocs-header-menu-mobile {
    padding-left: 1rem;
  }
}
@media screen and (max-width: 1300px) {
  .ocs-header-menu {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .ocs-header-menu {
    justify-content: start;
  }
  .ocs-header-menu-mobile {
    display: block;
  }
  .ocs-header-menu-desktop {
    display: none;
  }
}
.ocs-header-search-toggle {
  display: flex;
  align-items: center;
}
.ocs-header-search-btn {
  display: flex;
  align-items: center;
  color: inherit;
  cursor: pointer;
}
.ocs-header-search-btn:hover, .ocs-header-search-btn.active {
  color: #62a69e;
}
.ocs-header-tools {
  display: flex;
  align-items: center;
  justify-content: end;
  grid-area: tools;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .ocs-header-tools {
    padding-right: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .ocs-header-tools {
    padding-right: 1rem;
    gap: 0.75rem;
  }
}
.ocs-header-tools i {
  font-size: 1.2rem;
}
.ocs-header-tools .cart-label {
  display: none;
}
.ocs-header-tools .basket a.count {
  position: relative;
}
.ocs-header-tools .basket a.count b.count {
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  width: 16px;
  height: 16px;
  background: #62a69e;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ocs-header-tools .basket a.count .countlabel {
  padding-left: 1rem;
  font-size: 0.8rem;
}
@media screen and (max-width: 767px) {
  .ocs-header-tools .basket a.count .countlabel {
    display: none;
  }
}
.ocs-header .basket-contain {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .rwd header.ocs-header {
    padding: 0.75rem 0;
  }
}
.ocs-search-bar {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  right: 0;
  z-index: 5;
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
  padding: 0 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-1rem);
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out, visibility 0.25s ease-in-out;
  box-shadow: 0 47px 13px 0 rgba(171, 171, 171, 0), 0 30px 12px 0 rgba(171, 171, 171, 0.01), 0 17px 10px 0 rgba(171, 171, 171, 0.05), 0 7px 7px 0 rgba(171, 171, 171, 0.09), 0 2px 4px 0 rgba(171, 171, 171, 0.1);
}
.ocs-search-bar.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.ocs-search-bar-container {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 1rem 0;
}
.ocs-search-bar-container:before, .ocs-search-bar-container:after {
  display: none;
}
.ocs-search-bar-field {
  display: block;
  width: 100%;
  min-width: 0;
  position: static;
  float: none;
  max-width: 100%;
  padding: 0;
  line-height: normal;
}
.ocs-search-bar .ocs-search-field {
  margin-right: 2.9rem;
}
.ocs-search-bar-close {
  position: absolute;
  top: 1rem;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.6rem;
  background: none;
  border: 0;
  padding: 0;
  line-height: 1;
  font-size: 1.14rem;
  color: #828282;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
.ocs-search-bar-close:hover {
  color: #62a69e;
}
.ocs-search-bar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.35);
  z-index: 19;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-in-out;
}
.ocs-search-bar-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.ocs-search-bar .js__search,
.ocs-search-bar .search.search_open {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  z-index: auto !important;
  overflow: visible !important;
  background: transparent !important;
}

.ocs-search-form {
  margin: 0;
}

.ocs-search-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: auto;
  height: auto;
  padding: 0.2rem 0.2rem 0.2rem 0.85rem !important;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 0.5rem;
  box-shadow: none !important;
  outline: none !important;
  transition: border-color 0.3s ease-in-out;
}
.ocs-search-field:focus-within {
  border-color: #81b7b1;
}
.ocs-search-field-icon {
  flex: 0 0 auto;
  order: 0 !important;
  color: #62a69e;
  font-size: 1rem;
}
.ocs-search-field-input {
  flex: 1;
  min-width: 0;
  order: 1 !important;
}
.ocs-search-field .search__input,
.ocs-search-field .search__input[type=search] {
  width: 100%;
  height: auto;
  margin: 0 !important;
  padding: 0.5rem 0 !important;
  border: 0 !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none !important;
  outline: none !important;
  font-size: 0.91rem !important;
}
.ocs-search-field .search__input:focus, .ocs-search-field .search__input:active,
.ocs-search-field .search__input[type=search]:focus,
.ocs-search-field .search__input[type=search]:active {
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}
.ocs-search-field-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  order: 2 !important;
}
.ocs-search-field .search__loader {
  width: 1.2rem;
  height: 1.2rem;
}
.ocs-search-field .js__search-clear-btn {
  padding: 0.35rem !important;
  color: #969696;
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
.ocs-search-field .js__search-clear-btn:hover {
  color: #62a69e;
}
.ocs-search-field .js__search-close-btn,
.ocs-search-field .search__mobile-btn {
  display: none !important;
}
.ocs-search-field-submit {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  width: auto;
  height: auto;
  line-height: 1;
  font-size: 0.91rem;
  font-weight: 700;
  color: #fbfdfd;
  background: #62a69e;
  border: 1px solid #62a69e;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.ocs-search-field-submit:hover {
  color: #fbfdfd;
  background: #508881;
  border-color: #508881;
}
@media screen and (max-width: 767px) {
  .ocs-search-field-submit {
    padding: 0.55rem 0.7rem;
  }
  .ocs-search-field-submit .ocs-search-field-submit-label {
    display: none;
  }
}

.search_focused .ocs-search-field,
.search_focused .search__input-area.ocs-search-field {
  border-color: #81b7b1 !important;
  box-shadow: none !important;
  outline: none !important;
}

.ocs-search-bar .search__content,
.ocs-search-bar .search__content_right {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  max-height: 60vh;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.ocs-search-bar .search__content::-webkit-scrollbar,
.ocs-search-bar .search__content_right::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}
.ocs-search-bar .search__content::-webkit-scrollbar-track,
.ocs-search-bar .search__content_right::-webkit-scrollbar-track {
  background: #fbfdfd;
  border-radius: 2px;
}
.ocs-search-bar .search__content::-webkit-scrollbar-thumb,
.ocs-search-bar .search__content_right::-webkit-scrollbar-thumb {
  background: #81b7b1;
  border-radius: 2px;
}
.ocs-search-bar .search__content:empty,
.ocs-search-bar .search__content_right:empty {
  display: none;
}
.ocs-search-bar .search__item_content:not(.none) {
  display: block;
}
.ocs-search-bar .js__search-erros:not(:empty) {
  padding: 0.75rem 0;
  color: #c95959;
  font-size: 0.91rem;
}
.ocs-search-bar .search__section {
  padding: 0.75rem 0 0.5rem;
}
.ocs-search-bar .search__section + .search__section {
  border-top: 1px solid #e6e6e6;
}
.ocs-search-bar .search__section-head {
  margin: 0 0 0.35rem;
  padding: 0.25rem 0;
  border: 0;
  background: #ffffff;
  font-family: "Nunito", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #828282;
}
.ocs-search-bar .search__section-head_sticky {
  position: sticky;
  top: 0;
  z-index: 2;
}
.ocs-search-bar .search__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ocs-search-bar .search__list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.5rem 0;
  border: 0;
  border-radius: 0.25rem;
  font-size: 0.91rem;
  line-height: 1.35;
  color: #4f4f4f;
  transition: background 0.2s ease-in-out;
}
.ocs-search-bar .search__list-item:hover {
  background: #fbfdfd;
}
.ocs-search-bar .search__list-item a {
  display: block;
  flex: 1;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.ocs-search-bar .search__list-item a.search__result-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ocs-search-bar .search__list-item .js__search-suggest-item {
  cursor: pointer;
}
.ocs-search-bar .search__result_match {
  color: #508881;
  font-weight: 700;
}
.ocs-search-bar .search__result_regular,
.ocs-search-bar .search__result-category-title {
  color: #969696;
  font-size: 0.8rem;
}
.ocs-search-bar .search__list-item-action-btn {
  margin-left: auto;
  flex: 0 0 auto;
  color: #bbbbbb;
  cursor: pointer;
}
.ocs-search-bar .search__list-item-action-btn:hover {
  color: #62a69e;
}
.ocs-search-bar .search__result-icon {
  flex: 0 0 3rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-radius: 0.25rem;
  background: #ffffff;
}
.ocs-search-bar .search__result-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.ocs-search-bar .search__result-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 0;
}
.ocs-search-bar .search__result-title {
  min-width: 0;
}
.ocs-search-bar .search__result-title-item {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1.3;
  color: #09100f;
  white-space: normal;
}
.ocs-search-bar .search__result-note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ocs-search-bar .search__result-note:empty {
  display: none;
}
.ocs-search-bar .search__result-note-item {
  font-size: 0.8rem;
  color: #828282;
}
.ocs-search-bar .search__result-note-item:not(.search__result-item_active):not(.search__result-item_inactive) {
  display: none;
}
.ocs-search-bar .search__result-item_active {
  font-size: 0.91rem;
  font-weight: 700;
  color: #62a69e;
}
.ocs-search-bar .search__result-item_inactive {
  font-size: 0.8rem;
  color: #ad7c7b;
  text-decoration: line-through;
}
.ocs-search-bar .search__section-footer {
  padding: 0.5rem 0 0;
}
.ocs-search-bar .search__section-btn-load-more {
  width: 100%;
  padding: 0.6rem 1rem;
  border: 1px solid #62a69e;
  border-radius: 0.5rem;
  background: #fbfdfd;
  color: #508881;
  font-size: 0.91rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.ocs-search-bar .search__section-btn-load-more:hover {
  background: #dcecea;
  border-color: #508881;
}
@media screen and (max-width: 767px) {
  .ocs-search-bar {
    padding: 0 1rem;
  }
  .ocs-search-bar-container {
    padding: 1rem 0;
  }
  .ocs-search-bar .ocs-search-field {
    margin-right: 2.4rem;
  }
  .ocs-search-bar-close {
    width: 2rem;
  }
  .ocs-search-bar .search__content,
.ocs-search-bar .search__content_right {
    max-height: 65vh;
  }
}

.ocs-btn, .btn,
.btn.btn-red,
.ocs-done-message .important {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  padding: 0.5rem 0.71rem;
  font-size: inherit;
  border: 2px solid transparent;
  text-decoration: none;
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 500;
}

.btn,
.btn.btn-red,
.ocs-done-message .important {
  background: #ffffff;
  color: #4f4f4f;
  border: 1px solid #62a69e;
  border-radius: 0.5rem;
  padding: 8px 16px;
  font-size: 1rem;
}
.btn.btn-maluchove i + span,
.btn.btn-red.btn-maluchove i + span,
.ocs-done-message .important.btn-maluchove i + span {
  margin-left: 0.3rem;
}
.btn.btn-maluchove span + i,
.btn.btn-red.btn-maluchove span + i,
.ocs-done-message .important.btn-maluchove span + i {
  margin-right: 0.3rem;
}
.btn.btn-maluchove:hover,
.btn.btn-red.btn-maluchove:hover,
.ocs-done-message .important.btn-maluchove:hover {
  background-color: #ffffff;
  border-color: #62a69e;
  color: #62a69e;
}
.btn.btn-maluchove:hover i.fa-paper-plane,
.btn.btn-red.btn-maluchove:hover i.fa-paper-plane,
.ocs-done-message .important.btn-maluchove:hover i.fa-paper-plane {
  transform: translateX(3px) translateY(-3px);
  transition: transform ease-in-out 0.3s;
}
.btn.btn-maluchove.ocs-btn,
.btn.btn-red.btn-maluchove.ocs-btn,
.ocs-done-message .important.btn-maluchove.ocs-btn {
  padding: 1rem 1.75rem;
}
.btn.btn-maluchove.disabled,
.btn.btn-red.btn-maluchove.disabled,
.ocs-done-message .important.btn-maluchove.disabled {
  background: #fbfbfb;
  color: #cfcfcf;
  border: 1px solid #ffffff;
  border-style: dashed;
}
.btn.btn-maluchove.disabled:hover,
.btn.btn-red.btn-maluchove.disabled:hover,
.ocs-done-message .important.btn-maluchove.disabled:hover {
  background-color: #fbfbfb;
  border-color: #ffffff;
  color: #cfcfcf;
}
.btn.btn-maluchove.primary,
.btn.btn-red.btn-maluchove.primary,
.ocs-done-message .important.btn-maluchove.primary {
  background: #62a69e;
  color: #ffffff;
  border: 1px solid #62a69e;
}
.btn.btn-maluchove.primary:hover,
.btn.btn-red.btn-maluchove.primary:hover,
.ocs-done-message .important.btn-maluchove.primary:hover {
  background-color: #6caca4;
  border-color: #6caca4;
}
.btn.btn-maluchove.danger,
.btn.btn-red.btn-maluchove.danger,
.ocs-done-message .important.btn-maluchove.danger {
  background: #e3b6b5;
  color: #ffffff;
  border: 1px solid #e3b6b5;
}
.btn.btn-maluchove.danger:hover,
.btn.btn-red.btn-maluchove.danger:hover,
.ocs-done-message .important.btn-maluchove.danger:hover {
  background-color: #e7c1c0;
  border-color: #e7c1c0;
}
.btn.btn-maluchove.warning,
.btn.btn-red.btn-maluchove.warning,
.ocs-done-message .important.btn-maluchove.warning {
  background: #e9c46a;
  color: #ffffff;
  border: 1px solid #e9c46a;
}
.btn.btn-maluchove.warning:hover,
.btn.btn-red.btn-maluchove.warning:hover,
.ocs-done-message .important.btn-maluchove.warning:hover {
  background-color: #ebc977;
  border-color: #ebc977;
}
.btn.only-icon,
.btn.btn-red.only-icon,
.ocs-done-message .important.only-icon {
  font-size: 1rem;
  padding: 0.4rem 0.6rem;
}

.ocs-btn,
.ocs-done-message .important {
  font-size: 0.8rem;
  background: #62a69e;
  color: #fbfdfd;
  border: 2px solid #62a69e;
}
.ocs-btn:hover,
.ocs-done-message .important:hover {
  border-color: #508881;
}
.ocs-btn:active,
.ocs-done-message .important:active {
  background: #3e6a65;
  color: #fbfdfd;
  border: 2px solid #3e6a65;
}
.ocs-btn:focus,
.ocs-done-message .important:focus {
  outline: none;
}
.ocs-btn.rounded,
.ocs-done-message .important.rounded {
  border-radius: 2rem;
}
.ocs-btn.mid-rounded,
.ocs-done-message .important.mid-rounded {
  border-radius: 0.5rem;
}
.ocs-btn.btn-big,
.ocs-done-message .important.btn-big {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
}
.ocs-btn.btn-big i,
.ocs-done-message .important.btn-big i {
  font-size: 1.14rem;
}
.ocs-btn.very-big,
.ocs-done-message .important.very-big {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
}
.ocs-btn.very-big > i,
.ocs-done-message .important.very-big > i {
  font-size: 1.16rem;
  padding: 0.2rem 0.5rem;
}
.ocs-btn.wide,
.ocs-done-message .important.wide {
  width: 100%;
}
.ocs-btn.primary,
.ocs-done-message .important.primary {
  font-size: 1rem;
  background: #62a69e;
  color: #fbfdfd;
  border: 2px solid #62a69e;
}
.ocs-btn.secondary,
.ocs-done-message .important.secondary {
  font-size: 1rem;
  background: #fbfdfd;
  color: #62a69e;
  border: 2px solid #62a69e;
}
.ocs-btn.secondary:hover,
.ocs-done-message .important.secondary:hover {
  border-color: #508881;
  background-color: #dcecea;
  color: #508881;
}
.ocs-btn.is-loading,
.ocs-done-message .important.is-loading {
  position: relative;
  font-size: 0;
  pointer-events: none;
}
.ocs-btn.is-loading > *,
.ocs-done-message .important.is-loading > * {
  visibility: hidden;
}
.ocs-btn.is-loading::after,
.ocs-done-message .important.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.15rem;
  height: 1.15rem;
  margin: -0.575rem 0 0 -0.575rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: ocs-btn-spinner 0.6s linear infinite;
}

.ocs-done-message .important {
  font-size: 1rem;
  background: #62a69e;
  color: #fbfdfd;
  border: 2px solid #62a69e;
}

.ocs-js-add-to-cart {
  position: relative;
  overflow: visible;
  background: #3e6a65;
  color: #fbfdfd;
  border: 2px solid #3e6a65;
}
.ocs-js-add-to-cart i.icon-default,
.ocs-js-add-to-cart i.icon-success {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.ocs-js-add-to-cart .ocs-cart-add-icons {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ocs-js-add-to-cart .icon-default {
  opacity: 1;
  transform: scale(1);
  position: relative;
}
.ocs-js-add-to-cart .icon-success {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
}
.ocs-js-add-to-cart .ocs-cart-add-stars {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 10;
}
.ocs-js-add-to-cart .ocs-cart-add-stars i {
  position: absolute;
  color: #ffd700;
  font-size: 0.8rem;
  opacity: 0;
}
.ocs-js-add-to-cart .ocs-cart-add-stars .star-1 {
  top: -5px;
  left: -5px;
}
.ocs-js-add-to-cart .ocs-cart-add-stars .star-2 {
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.ocs-js-add-to-cart .ocs-cart-add-stars .star-3 {
  top: -5px;
  left: 5px;
}
.ocs-js-add-to-cart.is-added .icon-default {
  opacity: 0;
  transform: scale(0.5);
}
.ocs-js-add-to-cart.is-added .icon-success {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.ocs-js-add-to-cart.is-added .star-1 {
  animation: pop-star-1 0.6s ease-out forwards;
}
.ocs-js-add-to-cart.is-added .star-2 {
  animation: pop-star-2 0.6s ease-out 0.1s forwards;
}
.ocs-js-add-to-cart.is-added .star-3 {
  animation: pop-star-3 0.6s ease-out 0.2s forwards;
}

@keyframes pop-star-1 {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: translate(-15px, -15px) scale(1.2) rotate(-45deg);
  }
  100% {
    opacity: 0;
    transform: translate(-20px, -20px) scale(1) rotate(-90deg);
  }
}
@keyframes pop-star-2 {
  0% {
    opacity: 0;
    transform: translate(-50%, 0) scale(0.5) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -25px) scale(1.2) rotate(15deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -35px) scale(1) rotate(45deg);
  }
}
@keyframes pop-star-3 {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: translate(15px, -15px) scale(1.2) rotate(45deg);
  }
  100% {
    opacity: 0;
    transform: translate(20px, -20px) scale(1) rotate(90deg);
  }
}
.sort-and-view .sortlinks {
  display: initial;
  float: none;
  margin-bottom: 0;
}
.sort-and-view .sortlinks:before {
  content: "\f160";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 0.8rem;
  position: absolute;
  right: 1rem;
  top: 1.2rem;
  color: #62a69e;
}
.sort-and-view .sortlinks select {
  background: none;
  background: #ffffff;
  border: 1px dashed #62a69e;
  border-radius: 0.25rem;
  min-height: auto;
  padding: 0.6;
  color: #62a69e;
  outline: none;
}

form select {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 0.5rem;
  min-height: auto;
  padding: 0.6;
  color: #62a69e;
  outline: none;
}
form select:hover, form select:focus, form select:active {
  background: #ffffff;
  border: 1px solid #cccccc;
  color: #62a69e;
}

label.select {
  display: block;
  position: relative;
}
label.select:after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  color: #62a69e;
  padding: 0 0.5rem;
  position: absolute;
  right: 0;
  top: 0;
  background: transparent;
  z-index: 1;
  text-align: center;
  height: 100%;
  pointer-events: none;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

html:not(.lt-ie9) select:active {
  background: #ffffff;
  border: 1px dashed #62a69e;
  color: #62a69e;
}

.products-list-category-desc {
  margin-top: 1rem;
}
.products-list-header, .products-list-header-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.ocs-product-related .products.viewphot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .ocs-product-related .products.viewphot {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .ocs-product-related .products.viewphot {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .ocs-product-related .products.viewphot {
    grid-template-columns: repeat(2, 1fr);
  }
}
.products.viewphot .product {
  border: none;
  padding: 0;
  height: 100%;
  text-align: left;
  margin: 0;
}
.products.viewphot .product .prodimage {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 66%;
  display: block;
}
.products.viewphot .product .prodimage .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 50px;
  background-position: center;
}
.products.viewphot .product .prodimage .img-wrap img {
  max-width: 100%;
  max-height: 0px;
}
.products.viewphot .product .prodimage .stocks {
  opacity: 0;
  width: 100%;
  background-color: fade(#ffffff, 90%);
  position: absolute;
  bottom: -60px;
  left: 0;
  transition: 0.2s;
  padding: 7px 0;
}
.products.viewphot .product .prodimage .stocks ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.products.viewphot .product .prodimage .stocks ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px;
  line-height: 1;
  width: 16px;
  height: 16px;
  border: 1px solid #ededed;
  box-shadow: inset 0 0 1px #ffffff;
  border-radius: 50%;
}
.products.viewphot .product .prodimage .stocks ul li span {
  width: 14px;
  height: 14px;
  min-height: 14px;
  display: inline-block;
  border-radius: 50%;
}
.products.viewphot .product .prodimage:hover .stocks {
  opacity: 1;
  bottom: 0;
}
.products.viewphot .product .productname {
  font-size: 16px;
  overflow: hidden;
  letter-spacing: 0.2px;
  line-height: 1.5;
  height: auto;
  margin-bottom: 0;
  min-height: 2rem;
}
.products.viewphot .product .price {
  padding-top: 0.3rem;
  margin-bottom: 0;
}
.products.viewphot .product .price em {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #4f4f4f;
}
.products.viewphot .product .price-netto {
  display: block;
}
.products.viewphot .product .price-netto em {
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.1px;
}
.products.viewphot .product .buttons {
  padding-top: 0;
}
.products.viewphot .product .product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}
.products.viewphot .product .product-footer .price del {
  font-size: 0.8rem;
  font-weight: 600;
  color: #de5650;
  padding-left: 0.3rem;
}

.category-name {
  font-size: 1.5rem;
  color: #62a69e;
}

.products_related .products.viewphot .product {
  border: 1px solid #ededed;
  padding: 0.5rem;
  height: 100%;
  text-align: left;
  border-radius: 0.5rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .products_related .products.viewphot .product {
    padding: 1rem !important;
  }
}
.products_related .products.viewphot .product .boximgsize {
  height: fit-content;
  max-width: calc(100% - 2rem);
  margin: 0 auto;
}
.products_related .products.viewphot .product .boximgsize img {
  border-radius: 0.25rem;
}
.products_related .products.viewphot .product .prodimage {
  position: relative;
  overflow: hidden;
}
.products_related .products.viewphot .product .prodimage .stocks {
  opacity: 0;
  width: 100%;
  background-color: fade(#ffffff, 90%);
  position: absolute;
  bottom: -60px;
  left: 0;
  transition: 0.2s;
  padding: 7px 0;
}
.products_related .products.viewphot .product .prodimage .stocks ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.products_related .products.viewphot .product .prodimage .stocks ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3px;
  line-height: 1;
  width: 16px;
  height: 16px;
  border: 1px solid #ededed;
  box-shadow: inset 0 0 1px #ffffff;
}
.products_related .products.viewphot .product .prodimage .stocks ul li span {
  width: 14px;
  height: 14px;
  min-height: 14px;
  display: inline-block;
}
.products_related .products.viewphot .product .prodimage:hover .stocks {
  opacity: 1;
  bottom: 0;
}
.products_related .products.viewphot .product .productname {
  font-size: 16px;
  overflow: hidden;
  letter-spacing: 0.2px;
  line-height: 1.5;
  height: auto;
  margin-bottom: 0;
  min-height: 4rem;
}
@media screen and (max-width: 480px) {
  .products_related .products.viewphot .product .productname {
    min-height: 1rem;
  }
}
.products_related .products.viewphot .product .price {
  padding-top: 0.3rem;
  margin-bottom: 0;
}
.products_related .products.viewphot .product .price em {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #4f4f4f;
}
.products_related .products.viewphot .product .price-netto {
  display: block;
}
.products_related .products.viewphot .product .price-netto em {
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.1px;
}
.products_related .products.viewphot .product .buttons {
  padding-top: 0;
}
.products_related .products.viewphot .product .buttons form {
  margin: 0;
}
.products_related .products.viewphot .product .product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.box#box_recent .innerbox .product {
  width: 100%;
  max-width: 100%;
  border: 1px solid #ededed;
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.box#box_recent .innerbox .product .product-details {
  padding-left: 1rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .box#box_recent .innerbox .product .product-details {
    padding-left: 0;
  }
}
.box#box_recent .innerbox .product .product-details > .row {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 0.6rem;
}
@media screen and (max-width: 767px) {
  .box#box_recent .innerbox .product .product-details > .row {
    flex-direction: column;
  }
}
.box#box_recent .innerbox .product .product-details .productnamewrap {
  margin: 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .box#box_recent .innerbox .product .product-details .productnamewrap {
    margin-top: 1rem;
    text-align: center;
  }
}
.box#box_recent .innerbox .product .product-details .productname {
  font-size: 16px;
}
.box#box_recent .innerbox .product .product-details .price {
  margin-bottom: 0;
  text-align: left;
  width: 100%;
  color: #62a69e;
}
.box#box_recent .innerbox .product .product-details .price em {
  font-size: 14px;
  font-weight: 700;
}
.box#box_recent .innerbox .product .product-details .price-netto {
  display: block;
}
.box#box_recent .innerbox .product .product-details .price-netto em {
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.1px;
}
.box#box_recent .innerbox .product .product-details .btns .btn {
  font-size: 16px;
  padding: 0.2rem 0.4rem;
}
.box#box_recent .innerbox .product .boximgsize {
  height: auto;
}
.box#box_recent .innerbox .product .boximgsize img {
  max-width: 70px;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .box#box_recent .innerbox .product .boximgsize img {
    max-width: 100px;
  }
}

#box_menu .innerbox {
  border: 1px solid #ededed;
  border-radius: 0.5rem;
  padding: 0.5rem 0;
}
#box_menu .innerbox ul {
  margin-left: 0px;
  padding: 0;
  list-style: none;
  padding-inline-start: 0.5rem;
  padding-inline-end: 0.5rem;
}
#box_menu .innerbox ul[class*=level_] {
  margin: 0.4rem 0 0.4rem 0.6rem;
  border-left: 1px dashed #ededed;
}
#box_menu .innerbox ul li {
  margin-bottom: 0.2rem;
  list-style-type: none;
}
#box_menu .innerbox ul li.current > a {
  font-weight: 600;
  color: #62a69e;
}
#box_menu .innerbox ul li a {
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  border: 1px dashed transparent;
  transition: 0.3s all ease-in-out;
}
#box_menu .innerbox ul li a:hover {
  background-color: #ffffff;
  border: 1px dashed #62a69e;
  color: #62a69e;
  text-decoration: none;
}

@media screen and (max-width: 480px) {
  .rwd #box_menu,
.rwd #box_article_categories {
    display: none;
  }
}
input,
select,
textarea {
  border: 1px solid #e6e6e6;
  padding: 0.71rem;
  font-size: 0.91rem !important;
  width: 100%;
  border-radius: 0.5rem;
  color: #4f4f4f;
  outline: none;
  transition: border 0.3s ease-in-out;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #62a69e;
}
input:focus, input:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
  outline: none;
  border: 1px solid #81b7b1;
}
input.error,
select.error,
textarea.error {
  border: 1px solid #c95959;
}
input.success,
select.success,
textarea.success {
  border: 1px solid #508881;
}
input.disabled,
select.disabled,
textarea.disabled {
  background: #dcecea;
  color: #62a69e;
  cursor: not-allowed;
}
input.small,
select.small,
textarea.small {
  padding: 0.5rem;
  font-size: 0.8rem;
}
input.big,
select.big,
textarea.big {
  padding: 1rem;
  font-size: 1.2rem;
}
input.full,
select.full,
textarea.full {
  width: 100%;
}
input.half,
select.half,
textarea.half {
  width: 50%;
}

input[type=radio],
input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
input[type=radio] + label::before,
input[type=checkbox] + label::before {
  content: "";
  font-family: "Font Awesome 6 Pro";
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.5rem;
  border: 1px solid #e6e6e6;
  color: #4f4f4f;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1rem;
  vertical-align: bottom;
  overflow: hidden;
}

input[type=radio]:checked + label::before {
  content: "\f00c";
}

input[type=checkbox]:checked + label::before {
  content: "\f00c";
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 480px) {
  .form-row.mobile-column {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.form-row-item {
  flex: 1;
}
.form-row-item label {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 600;
  font-size: 0.91rem;
  color: #4f4f4f;
}
@media screen and (max-width: 480px) {
  .form-row-item label {
    font-size: 0.8rem;
  }
}
.form-row .radio-group,
.form-row .checkbox-group {
  flex: none;
  max-width: 100%;
}
.form-row .radio-group > label,
.form-row .checkbox-group > label {
  display: grid;
  align-items: center;
  gap: 1rem;
  grid-template-columns: 2rem 1fr;
}

input ~ .error {
  color: #c95959;
  font-size: 0.8rem;
  display: none;
  padding: 0.3rem 0;
  font-weight: 500;
}

input.input-error ~ .error {
  display: block;
}

input.input-error {
  border: 1px solid #c95959;
}

.breadcrumbs {
  max-width: 1440px;
  margin: 0 auto;
}
.breadcrumbs .innerbreadcrumbs {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
.breadcrumbs .innerbreadcrumbs:before, .breadcrumbs .innerbreadcrumbs:after {
  display: none;
}
.breadcrumbs .innerbreadcrumbs .breadcrumb-home {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.breadcrumbs .innerbreadcrumbs .breadcrumb-home img {
  display: none;
}
.breadcrumbs .innerbreadcrumbs .breadcrumb-home span {
  display: inline-block;
  font-size: 12px;
}
.breadcrumbs .innerbreadcrumbs .breadcrumb-home:after {
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 0.8rem;
  margin: 0 0.5rem;
}
.breadcrumbs .innerbreadcrumbs .path-scroll {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}
.breadcrumbs .innerbreadcrumbs .path-scroll:before, .breadcrumbs .innerbreadcrumbs .path-scroll:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
}
.breadcrumbs .innerbreadcrumbs .path-scroll:before {
  left: 0;
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}
.breadcrumbs .innerbreadcrumbs .path-scroll:after {
  right: 0;
  background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}
.breadcrumbs .innerbreadcrumbs .path-scroll.can-scroll-left:before, .breadcrumbs .innerbreadcrumbs .path-scroll.can-scroll-right:after {
  opacity: 1;
}
.breadcrumbs .innerbreadcrumbs .path {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin: 0;
  padding: 0.25rem 0;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
@media screen and (max-width: 767px) {
  .breadcrumbs .innerbreadcrumbs .path {
    scrollbar-width: none;
  }
  .breadcrumbs .innerbreadcrumbs .path::-webkit-scrollbar {
    display: none;
  }
}
.breadcrumbs .innerbreadcrumbs .path li {
  flex: 0 0 auto;
  line-height: initial;
}
.breadcrumbs .innerbreadcrumbs .path li span {
  font-size: 0.8rem;
}
.breadcrumbs .innerbreadcrumbs .path li span.raq {
  display: none;
}
.breadcrumbs .innerbreadcrumbs .path li a {
  text-decoration: none;
}
.breadcrumbs .innerbreadcrumbs .path li a:after {
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 0.7rem;
  margin: 0 0.5rem;
  display: inline-block;
}
.breadcrumbs .innerbreadcrumbs .path li a span {
  font-size: 0.8rem;
}
.breadcrumbs .innerbreadcrumbs .path li a span:after {
  content: none;
}

.footer {
  background: #ffffff;
  margin-top: 2em;
  margin-bottom: 1rem;
  padding-bottom: 0;
}
.footer .innerfooter {
  background: #f6f6f6;
  padding: 1rem;
  border: 0;
  box-sizing: border-box;
  border-radius: 1rem;
}
.footer .innerfooter ul.overall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
}
@media screen and (max-width: 768px) {
  .footer .innerfooter ul.overall {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer .innerfooter ul.overall > li {
  border-top: 0;
  padding-top: 0;
  margin-bottom: 25px;
}
.footer .innerfooter ul.overall ul {
  padding: 0;
}
.footer .innerfooter ul.overall ul li {
  text-align: left;
}
.footer .innerfooter ul li {
  margin: 0;
  padding: 0;
  text-align: left;
}
.footer .innerfooter ul li.head {
  font-weight: 600;
  font-size: 13px;
  margin-top: 0;
  padding-bottom: 5px;
  background-color: transparent;
  color: #2c3238;
  text-transform: uppercase;
}
.footer .innerfooter ul li a {
  font-size: 12px;
  line-height: 1.5rem;
  color: #4f4f4f;
}
.footer .innerfooter ul li a:hover {
  color: #2c3238;
  text-decoration: underline;
}
.footer .userfooter {
  color: #ffffff;
  padding: 20px 0;
  color: #4f4f4f;
}
.footer .footer-shop-details .footer-logo img {
  display: inline-block;
  max-width: 150px;
  margin-bottom: 1rem;
}
.footer .footer-shop-details .footer-shop-name {
  font-weight: 600;
  font-size: 16px;
  margin-top: 0;
  padding-bottom: 0.6rem;
  background-color: transparent;
  color: #4f4f4f;
  text-transform: uppercase;
  line-height: inherit;
}
.footer .footer-shop-details .footer-shop-address {
  font-size: 0.7rem;
}
.footer .footer-shop-details .footer-shop-address-line {
  display: block;
}
.footer .footer-contact-title {
  font-weight: 600;
  font-size: 16px;
  margin-top: 0;
  padding-bottom: 0.6rem;
  background-color: transparent;
  color: #4f4f4f;
  text-transform: uppercase;
  line-height: inherit;
}
.footer .footer-contact-phone i, .footer .footer-contact-email i, .footer .footer-contact-messenger i {
  margin-right: 0.5rem;
  font-size: 14px;
}

#shoper-foot {
  display: none;
}

#shoper-foot-1 {
  display: flex;
  width: 100%;
  max-width: 1440px;
  box-sizing: border-box;
  margin: 0 auto;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 0.8rem;
}
@media screen and (max-width: 1600px) {
  #shoper-foot-1 {
    max-width: 1200px;
  }
}
@media screen and (max-width: 767px) {
  #shoper-foot-1 {
    max-width: 100%;
  }
}

.shop_product .breadcrumbs {
  display: none;
}

.ocs-product {
  display: grid;
  grid-template-columns: 1fr 500px;
  column-gap: 3rem;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  grid-template-areas: "gallery buy" "boxtop buy" "desc buy" "safety buy" "related buy" "boxbottom buy";
}
@media screen and (max-width: 1600px) {
  .ocs-product {
    grid-template-columns: 1fr 33vw;
    max-width: 85vw;
  }
}
@media screen and (max-width: 767px) {
  .ocs-product {
    max-width: 100vw;
  }
}
.ocs-product-hero {
  display: grid;
  grid-template-columns: 1fr 500px;
  position: relative;
  max-width: 85vw;
  margin: 0 auto;
  gap: 3rem;
}
@media screen and (max-width: 1600px) {
  .ocs-product-hero {
    grid-template-columns: 1fr 33vw;
    max-width: 85vw;
  }
}
@media screen and (max-width: 767px) {
  .ocs-product-hero {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 100vw;
  }
}
.ocs-product-gallery {
  max-width: 100%;
  overflow-x: hidden;
  z-index: 9;
  margin: 3rem 0 0;
  grid-area: gallery;
}
.ocs-product-gallery .swiper-slide {
  height: 500px;
}
@media screen and (max-width: 1024px) {
  .ocs-product-gallery .swiper-slide {
    height: 390px;
  }
}
.ocs-product-gallery .swiper-slide img,
.ocs-product-gallery .swiper-slide video {
  object-fit: contain;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .ocs-product-gallery .swiper-slide img,
.ocs-product-gallery .swiper-slide video {
    border-radius: 0;
  }
}
.ocs-product-gallery .swiper-slide.cover-img img {
  object-fit: contain;
}
.ocs-product-gallery .swiper-button-prev, .ocs-product-gallery .swiper-button-next {
  --swiper-navigation-size: 1rem;
  color: #fbfdfd;
  width: 2rem;
  height: 2rem;
  padding: 0.3rem;
  background: rgba(35, 59, 68, 0.4588235294);
  border-radius: 50%;
}
.ocs-product-buy {
  padding: 3rem 0;
  background: #ffffff;
  z-index: 11;
  grid-area: buy;
}
.ocs-product-buy-container {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ocs-product-buy-name {
  font-size: 1.802rem;
  color: #1b2e2c;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.7px;
}
.ocs-product-buy-reviews {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ocs-product-buy-reviews-stars {
  color: #f4d46d;
  font-size: 16px;
}
.ocs-product-buy-reviews-count span:first-child {
  font-weight: 500;
  font-size: 0.91rem;
}
.ocs-product-buy-reviews-count span:last-child {
  font-size: 0.63rem;
  color: #62a69e;
}
.ocs-product-buy-short-description {
  padding: 0.5rem 0;
}
.ocs-product-buy-short-description ul {
  padding-inline-start: 1.5rem;
}
.ocs-product-buy-short-description ul li {
  padding-bottom: 0.25rem;
  font-size: 0.9rem;
  position: relative;
}
.ocs-product-buy-short-description ul li:last-child {
  padding-bottom: 0;
}
.ocs-product-buy-short-description ul li::before {
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  position: absolute;
  left: -1.5rem;
  margin-right: 0.5rem;
  color: #62a69e;
}
.ocs-product-buy-price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.ocs-product-buy-price .price-new {
  color: #1b2e2c;
  font-size: 1.602rem;
  font-weight: 700;
}
.ocs-product-buy-price .price-old {
  color: #ad7c7b;
  text-decoration: line-through;
}
.ocs-product-buy-price .price-lowest {
  color: #969696;
  font-size: 0.63rem;
}
.ocs-product-buy-variants {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ocs-product-buy-add-to-cart-button .btn, .ocs-product-buy-availability-notifier-button .btn {
  width: 100%;
  font-weight: 700;
  max-width: 500px;
}
.ocs-product-buy-add-to-cart-button .btn > i, .ocs-product-buy-availability-notifier-button .btn > i {
  font-size: 1.16rem;
  padding: 0.2rem 0.5rem;
}
.ocs-product-buy-add-to-cart-button .btn.primary, .ocs-product-buy-availability-notifier-button .btn.primary {
  background: #508881;
  border-color: #508881;
  font-size: 1.14rem;
}
.ocs-product-buy-add-to-cart-button .btn.primary:hover, .ocs-product-buy-availability-notifier-button .btn.primary:hover {
  background: #62a69e;
  border-color: #508881;
}
.ocs-product-buy-availability {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.ocs-product-buy-features {
  display: flex;
  justify-content: space-evenly;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  flex-direction: column;
}
.ocs-product-buy-features-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #09100f;
  flex-direction: row;
  padding: 1rem;
  min-width: 7.5rem;
  border-bottom: 1px solid #eee;
}
.ocs-product-buy-features-item:last-child {
  border-bottom: none;
}
.ocs-product-buy-features-item-icon {
  font-size: 1rem;
  text-align: center;
  width: 1.5rem;
}
.ocs-product-buy-features-item-content {
  font-size: 0.8rem;
}
.ocs-product-buy-features-item-content > div {
  display: inline-flex;
  gap: 0.2rem;
}
.ocs-product-buy-features-item-value {
  font-weight: 700;
}
.ocs-product-variant {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ocs-product-variant-header {
  font-size: 0.91rem;
  font-weight: 700;
}
.ocs-product-variant.variant-with-image .ocs-product-variant-content {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}
.ocs-product-variant.variant-with-checkbox .ocs-product-variant-item, .ocs-product-variant.variant-with-radio .ocs-product-variant-item {
  flex-direction: column;
  align-items: flex-start;
}
.ocs-product-variant.variant-with-checkbox .ocs-product-variant-item > div, .ocs-product-variant.variant-with-radio .ocs-product-variant-item > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ocs-product-variant-description {
  display: none;
  font-size: 0.8rem;
  color: #5a5a5a;
  align-items: center;
}
.ocs-product-variant-description.open {
  display: flex;
}
.ocs-product-variant-description i {
  font-size: 1.14rem;
  margin-right: 1rem;
}
.ocs-product-variant-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}
.variant-with-image .ocs-product-variant-item {
  flex-direction: column;
  justify-self: start;
  height: auto;
}
.ocs-product-variant-item > label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.91rem;
  cursor: pointer;
  border: 2px solid #dcecea;
  padding: 0.5rem 1rem;
  width: 100%;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  will-change: border-color;
  border-radius: 0.5rem;
}
.variant-with-image .ocs-product-variant-item > label {
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .ocs-product-variant-item > label .pad_position_item_img {
    padding: 0.5rem 0;
  }
}
.ocs-product-variant-item > label .pad_position_item_name {
  text-align: center;
}
.ocs-product-variant-item.pad-position-new {
  grid-column: 1/-1;
}
.variant-with-image .ocs-product-variant-item.pad-position-new > label {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}
.ocs-product-variant-item.pad-position-new .pad_position_item_img {
  width: 50px;
  flex-shrink: 0;
}
@media screen and (max-width: 480px) {
  .ocs-product-variant-item.pad-position-new .pad_position_item_img {
    padding: 0;
  }
}
.ocs-product-variant-item.pad-position-new .pad_position_item_text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1 1 auto;
  min-width: 0;
}
.ocs-product-variant-item.pad-position-new .pad_position_item_name {
  text-align: left;
  font-weight: 700;
}
.ocs-product-variant-item.pad-position-new .pad_position_item_annotation {
  font-size: 0.8rem;
  color: #969696;
}
.ocs-product-variant-item.pad-position-new .pad_position_item_price {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  margin-left: 1rem;
  font-size: 0.91rem;
  font-weight: 700;
  color: #1b2e2c;
  white-space: nowrap;
}
.ocs-product-variant-item.pad-position-new .pad_position_item_price .pad_position_item_price-check {
  display: none;
}
.ocs-product-variant-item.pad-position-new .pad_position_item_price.is-selected {
  color: #508881;
}
.ocs-product-variant-item.pad-position-new .pad_position_item_price.is-selected .pad_position_item_price-check {
  display: inline-block;
}
.ocs-product-variant-item.pad-position input {
  display: none;
}
.ocs-product-variant-item > label::before {
  display: none !important;
}
.ocs-product-variant-item input[type=radio]:checked ~ label {
  border-color: #62a69e;
}
.variant-with-color .ocs-product-variant-item {
  flex-direction: row;
}
.variant-with-image .ocs-product-variant-item {
  flex-direction: column;
}
.ocs-product-variant-item-color-box {
  width: 0.91rem;
  height: 0.91rem;
  border-radius: 50%;
  display: block;
}
.ocs-product-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.ocs-product-boxes-top {
  grid-area: boxtop;
}
.ocs-product-boxes-bottom {
  grid-area: boxbottom;
}
.ocs-product-safety {
  z-index: 10;
  grid-area: safety;
  background: #ffffff;
}
.ocs-product-safety ul {
  list-style-type: none;
  padding-inline-start: 1.5rem;
  margin-bottom: 1rem;
}
.ocs-product-safety ul li {
  padding: 0.3rem 0;
  position: relative;
}
.ocs-product-safety ul li:last-child {
  padding-bottom: 0;
}
.ocs-product-safety ul li::before {
  content: "\f35a";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  position: absolute;
  left: -1.5rem;
  margin-right: 0.5rem;
  color: #62a69e;
}

@media screen and (min-width: 1024px) and (max-width: 1600px) {
  .ocs-product {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .ocs-product {
    grid-template-columns: 1fr;
    grid-template-areas: "gallery" "buy" "boxtop " "desc" "safety" "boxbottom" "related";
  }
  .ocs-product-hero {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
  .ocs-product-buy {
    padding: 2rem 0;
  }
}
@media screen and (max-width: 767px) {
  .ocs-product-gallery {
    height: 100vw;
    margin: 0;
    position: sticky;
    top: 80px;
  }
  .ocs-product-buy {
    width: 100%;
    padding: 3rem 1rem 1rem;
  }
  .ocs-product-buy-features {
    gap: 0;
  }
  .ocs-product-buy-features-item {
    flex: 1;
    min-width: auto;
  }
  .ocs-product-variant.variant-with-image-content {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
  .ocs-product-description {
    padding: 0 1rem;
  }
  .ocs-product-safety {
    padding: 1rem;
  }
}
.ocs-product-description {
  grid-area: desc;
  z-index: 10;
  background: #ffffff;
}
.ocs-product-description-content {
  padding: 1rem 0 0;
}
.ocs-product-description-content h2 {
  font-size: 1.602rem;
  margin-top: 1.5rem;
}
.ocs-product-description-content h3 {
  font-size: 1.424rem;
  margin-top: 1rem;
}
.ocs-product-description-content ul {
  list-style-type: none;
  padding-inline-start: 1.5rem;
  margin-bottom: 1rem;
}
.ocs-product-description-content ul li {
  padding: 0.3rem 0;
  position: relative;
}
.ocs-product-description-content ul li:last-child {
  padding-bottom: 0;
}
.ocs-product-description-content ul li::before {
  content: "\f35a";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  position: absolute;
  left: -1.5rem;
  margin-right: 0.5rem;
  color: #62a69e;
}
.ocs-product-description table {
  margin-bottom: 1.5rem;
  width: 100%;
}
.ocs-product-description table tr {
  border-bottom: 1px solid #dcecea;
}
.ocs-product-description table tr:last-child {
  border-bottom: none;
}
.ocs-product-description table tr td {
  padding: 0.5rem 1rem 0.5rem 0;
}

.accordeon-top {
  padding-bottom: 1.5rem;
}
.accordeon-item {
  width: 100%;
  border-top: 1px solid #dcecea;
}
.ocs-product-safety .accordeon-item {
  border-top: 0;
}
.accordeon-item:last-child {
  border-bottom: 1px solid #dcecea;
}
.accordeon-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
}
.accordeon-item-header h3 {
  font-weight: 700;
  position: relative;
  width: 100%;
  font-size: 1.14rem;
  margin: 0;
}
.accordeon-item-header h3::after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  position: absolute;
  right: 0.5rem;
  transition: transform 0.3s ease-in-out;
}
.accordeon-item-content {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0;
  transition: all 0.6s cubic-bezier(0.74, 0, 0.23, 1);
}
.accordeon-item-content-inner {
  overflow: hidden;
}
.accordeon-item.open .accordeon-item-header h3::after {
  transform: rotate(180deg);
}
.accordeon-item.open .accordeon-item-content {
  padding: 0.5rem 0 1rem;
  grid-template-rows: 1fr;
}

.ocs-product-related {
  z-index: 10;
  grid-area: related;
  background: #ffffff;
  padding-top: 2rem;
}
.ocs-product-related-container {
  width: 100%;
  padding: 1rem 0;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .ocs-product-related-container {
    padding: 1rem 1rem;
  }
}
.ocs-product-related-header {
  text-align: center;
  padding: 2rem 1rem 3rem;
}
.ocs-product-related-header h3 {
  font-size: 1.266rem;
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "SOFT" 100, "WONK" 0;
}
.ocs-product-related-products {
  display: grid;
  gap: 1rem;
  justify-content: center;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1600px) {
  .ocs-product-related-products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .ocs-product-related-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .ocs-product-related {
    padding: 2rem 2rem 3rem;
  }
}
@media screen and (max-width: 767px) {
  .ocs-product-related {
    padding: 2rem 1rem 3rem;
  }
}
@media screen and (max-width: 767px) {
  .shop_product .footer {
    padding-bottom: 6rem;
  }
}
.ocs-product-buy-add-to-cart--flex {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.ocs-product-buy-add-to-cart--flex .ocs-product-buy-add-to-cart-button {
  width: 100%;
}

.ocs-product-buy-add-to-cart--flex.is-fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 999;
  background: #ffffff;
  padding: 1rem;
  border-top: 1px solid #e6e6e6;
  animation: fade-in 0.3s ease-out forwards;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
}
@media screen and (max-width: 1600px) {
  .ocs-product-buy-add-to-cart--flex.is-fixed {
    max-width: 1200px;
  }
}
.ocs-product-buy-add-to-cart--flex.is-fixed .ocs-product-buy-add-to-cart-button {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1600px) {
  .ocs-product-buy-add-to-cart--flex.is-fixed {
    padding: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .ocs-product-buy-add-to-cart--flex.is-fixed .ocs-product-buy-add-to-cart-button .ocs-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.91rem;
  }
}

.ocs-product-buy-add-to-cart-placeholder {
  display: none;
  width: 100%;
}

.ocs-product-buy-add-to-cart-placeholder.is-visible {
  display: block;
}

.price-flow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  flex: 1 1 auto;
}
.price-flow .price-flow-name {
  display: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1b2e2c;
  margin-bottom: 0.2rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .price-flow .price-flow-name {
    font-size: 0.75rem;
  }
}

.ocs-product-buy-add-to-cart--flex.is-fixed .price-flow {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.4rem;
}
.ocs-product-buy-add-to-cart--flex.is-fixed .price-flow .price-flow-name {
  display: block;
  flex: 0 0 100%;
  font-size: 1rem;
  font-weight: 700;
}
.ocs-product-buy-add-to-cart--flex.is-fixed .price-flow .price-new,
.ocs-product-buy-add-to-cart--flex.is-fixed .price-flow .price-old {
  font-size: 0.91rem;
  line-height: 1.2;
}
.ocs-product-buy-add-to-cart--flex.is-fixed .price-flow .price-new {
  color: #1b2e2c;
  font-weight: 700;
  font-size: 1.14rem;
}
.ocs-product-buy-add-to-cart--flex.is-fixed .price-flow .price-old {
  color: #ad7c7b;
  text-decoration: line-through;
}
.ocs-product-buy-add-to-cart--flex.is-fixed .price-flow .price-lowest {
  display: none;
}

.mySwiperThumbs {
  margin-top: 1rem;
  height: 5rem !important;
  box-sizing: border-box;
}
.mySwiperThumbs .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
  cursor: pointer;
  border-radius: 0.5rem;
  overflow: hidden;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
}
.mySwiperThumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.mySwiperThumbs .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.mySwiperThumbs .swiper-slide.video-thumb {
  background: #dcecea;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #81b7b1;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .mySwiperThumbs {
    display: none;
  }
}

.ocs-product-buy-availability-loader {
  display: inline-block;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  border: 2px solid rgba(80, 136, 129, 0.2);
  border-top-color: #508881;
  animation: ocs-product-buy-availability-spinner 0.75s linear infinite;
  vertical-align: middle;
}

@keyframes ocs-product-buy-availability-spinner {
  to {
    transform: rotate(360deg);
  }
}
.ocs-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.ocs-gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
}
.ocs-gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}
.ocs-gallery-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.ocs-gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}
@media screen and (max-width: 767px) {
  .ocs-gallery-lightbox-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}
.ocs-gallery-lightbox-swiper {
  position: relative;
  z-index: 2;
  width: 95% !important;
  height: 95% !important;
}
.ocs-gallery-lightbox .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 3rem 6rem;
  background: none;
}
@media screen and (max-width: 767px) {
  .ocs-gallery-lightbox .swiper-slide {
    padding: 3rem 1rem;
  }
}
.ocs-gallery-lightbox .swiper-zoom-container {
  width: 100%;
  height: 100%;
}
.ocs-gallery-lightbox .swiper-zoom-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: zoom-in;
}
.ocs-gallery-lightbox .swiper-slide-zoomed .swiper-zoom-container img {
  cursor: zoom-out;
}
.ocs-gallery-lightbox-video {
  max-width: 100%;
  max-height: 100%;
}
.ocs-gallery-lightbox .swiper-button-prev,
.ocs-gallery-lightbox .swiper-button-next {
  z-index: 3;
  width: 3rem;
  height: 3rem;
  padding: 0.3rem;
  border-radius: 50%;
  background: rgba(35, 59, 68, 0.4588235294);
  color: #fbfdfd;
  --swiper-navigation-size: 1.25rem;
  transition: background 0.2s ease;
}
.ocs-gallery-lightbox .swiper-button-prev:hover,
.ocs-gallery-lightbox .swiper-button-next:hover {
  background: rgba(35, 59, 68, 0.7019607843);
}
@media screen and (max-width: 767px) {
  .ocs-gallery-lightbox .swiper-button-prev,
.ocs-gallery-lightbox .swiper-button-next {
    width: 2.5rem;
    height: 2.5rem;
    --swiper-navigation-size: 1.1rem;
  }
}
.ocs-gallery-lightbox .swiper-button-prev {
  left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .ocs-gallery-lightbox .swiper-button-prev {
    left: 0.5rem;
  }
}
.ocs-gallery-lightbox .swiper-button-next {
  right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .ocs-gallery-lightbox .swiper-button-next {
    right: 0.5rem;
  }
}
.ocs-gallery-lightbox .swiper-pagination .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.5;
}
.ocs-gallery-lightbox .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.m-gallery {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "thumbnails photo";
  grid-gap: 0.5rem;
  min-height: 500px;
}
@media screen and (max-width: 979px) {
  .m-gallery {
    min-height: 85vw;
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr;
    grid-template-areas: "photo" "thumbnails";
  }
}
.m-gallery__photo {
  position: relative;
  display: flex;
  overflow: hidden;
  border: 1px dashed #ededed;
  border-radius: 0.5rem;
  background-color: #ffffff;
  grid-area: photo;
  padding: 0.5rem;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 15px;
  height: 500px;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .m-gallery__photo {
    height: 400px;
  }
}
@media screen and (max-width: 979px) {
  .m-gallery__photo {
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .m-gallery__photo {
    height: 85vw;
  }
}
.m-gallery__photo img {
  border-radius: 0.25rem;
  max-width: 100%;
  max-height: 100%;
}
.m-gallery__nav {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  box-sizing: border-box;
}
.m-gallery__nav a {
  width: 1.3rem;
  height: 1.3rem;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.m-gallery__thumbnails {
  grid-area: thumbnails;
  display: grid;
  grid-template-rows: repeat(auto-fill, minmax(100px, 1fr));
  grid-gap: 0.5rem;
  height: 500px;
  overflow-y: auto;
}
@media screen and (max-width: 1200px) {
  .m-gallery__thumbnails {
    height: 400px;
  }
}
@media screen and (max-width: 979px) {
  .m-gallery__thumbnails {
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .m-gallery__thumbnails {
    height: auto;
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}
.m-gallery__thumbnails__item {
  display: inline-block;
  width: 100px;
  height: 100px;
  cursor: pointer;
  border-radius: 0.25rem;
  border: 1px dashed #ededed;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 15px;
  box-sizing: border-box;
  padding: 0.4rem;
  justify-self: center;
}
.m-gallery__thumbnails__item:hover, .m-gallery__thumbnails__item.active {
  border-color: #62a69e;
}
.m-gallery__thumbnails__item:last-child {
  margin-bottom: 0;
}
.m-gallery__thumbnails__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.25rem;
}
@media screen and (max-width: 1200px) {
  .m-gallery {
    height: 100%;
  }
}

.ocs-gallery {
  width: 100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.ocs-gallery.ready {
  opacity: 1;
}
.ocs-gallery .flickity-viewport {
  transition: height 0.2s;
}
.ocs-gallery .flickity-button {
  width: 1.8rem;
  height: 1.8rem;
}
.ocs-gallery .carousel-cell {
  padding: 1rem 0.5rem;
  counter-increment: gallery-cell;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.ocs-gallery .carousel-cell img {
  max-height: 100%;
}
.ocs-gallery .slider-for {
  border: 1px dashed #ededed;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 15px;
}
.ocs-gallery .slider-for .carousel-cell {
  width: 100%;
  text-align: center;
  height: 500px;
  box-sizing: border-box;
}
.ocs-gallery .slider-for.is-fullscreen .carousel-cell {
  height: 100%;
}
.ocs-gallery .slider-nav {
  margin-top: 1rem;
}
.ocs-gallery .slider-nav img {
  border-radius: 0.5rem;
}
.ocs-gallery .slider-nav .flickity-viewport {
  height: 150px;
}
.ocs-gallery .slider-nav .carousel-cell {
  height: 120px;
}

.ocs-gallery .slider-full {
  top: 0;
  left: 0;
  z-index: 1200;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s ease-in-out;
}

.ocs-gallery .slider-full ~ .close {
  position: fixed;
  top: 0;
  right: 0;
  padding: 1.5rem;
  cursor: pointer;
  color: #fff;
  font-size: 2rem;
  z-index: 1201;
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s ease-in-out;
}

.ocs-gallery .slider-full.open {
  visibility: visible;
  opacity: 1;
}

.ocs-gallery .slider-full.open ~ .close {
  visibility: visible;
  opacity: 1;
}

.ocs-gallery .slider-full .carousel-cell {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.ocs-gallery .slider-full .carousel-cell img {
  max-height: 100%;
  max-width: 100%;
}

.ocs-gallery .slider-full .flickity-page-dots {
  bottom: 2rem;
}

.modal {
  display: block !important;
  height: 100vh !important;
  min-height: 100vh;
  width: 375px;
  max-width: 375px;
  overflow-y: auto !important;
  transition: right 0.2s;
  position: fixed !important;
  left: inherit !important;
  right: -100vw;
  top: 0 !important;
  bottom: 0 !important;
  background: #fff;
  z-index: 12;
}
.modal.modal-visible {
  right: 0;
}
.modal .modal-header {
  border: 0;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 10px;
  padding: 1rem;
  justify-content: space-between;
  align-items: center;
}
.modal .modal-header h3 {
  color: #4f4f4f;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.1rem;
  display: inline-block;
  margin: 0;
  flex-basis: auto;
}
.modal .modal-header .modal-close {
  flex-basis: auto;
  background-color: #ffffff;
}
.modal .modal-header .modal-close .modal-close-txt {
  display: none;
}
.modal .modal-header .modal-close::after {
  content: "";
  background: url("icon-close2.svg") no-repeat 50% transparent;
  width: 17px;
  height: 17px;
  display: block;
}
.modal .addtobasket.btn.btn-red {
  padding: 10px 20px;
  font-size: 14px;
}
.modal .modal-body {
  padding: 1rem;
}
.modal .modal-body .product-innerdesc-wrap {
  width: 100%;
}
.modal .modal-body .product-innerdesc-wrap .gallery.f-row {
  max-width: initial;
  margin-right: 0;
}
.modal .modal-body .product-innerdesc-wrap .product-info {
  float: left;
  width: 100%;
}
.modal .modal-body .product-innerdesc-wrap .product-info > .availability {
  margin-top: 1em;
}
.modal .modal-body .product-innerdesc-wrap .product-info > .availability > .row {
  display: flex;
}
.modal .modal-body .product-innerdesc-wrap .product-info > .availability > .row .availability,
.modal .modal-body .product-innerdesc-wrap .product-info > .availability > .row .delivery {
  flex-basis: 50%;
}
.modal .modal-body .product-innerdesc-wrap .product-info > .availability > .row .availability span,
.modal .modal-body .product-innerdesc-wrap .product-info > .availability > .row .delivery span {
  display: inline-block;
}
.modal .modal-body .product-innerdesc-wrap .product-info > .availability > .row .availability .first,
.modal .modal-body .product-innerdesc-wrap .product-info > .availability > .row .delivery .first {
  font-size: 12px;
  color: #4f4f4f;
  width: 100%;
}
.modal .modal-body .product-innerdesc-wrap .product-info > .availability > .row .availability .second,
.modal .modal-body .product-innerdesc-wrap .product-info > .availability > .row .delivery .second {
  font-size: 12px;
  color: #2c3238;
  width: 100%;
  font-weight: 700;
}
.modal .modal-body .product-innerdesc-wrap .product-info .description {
  margin: 1em 0em;
  display: block;
  font-size: 13px;
}
.modal .modal-body .product-innerdesc-wrap .product-info .productdetails-more {
  text-align: left;
  clear: both;
}
.modal .modal-body .product-innerdesc-wrap .product-info .productdetails-more .evaluation em {
  float: left;
  line-height: 30px;
  font-size: 13px;
}
.modal .modal-body .product-innerdesc-wrap .product-info .productdetails-more .evaluation .votestars {
  float: left;
}
.modal .modal-body .product-innerdesc-wrap .product-info .productdetails-more .manufacturer {
  margin: 5px 0px 8px;
  font-size: 13px;
}
.modal .modal-body .product-innerdesc-wrap .product-info .productdetails-more .manufacturer em {
  font-size: 13px;
  font-weight: 400;
}
.modal .modal-body .product-innerdesc-wrap .product-info .productdetails-more .manufacturer a {
  font-weight: 700;
}
.modal .modal-body .product-innerdesc-wrap .product-info .productdetails-more .price {
  font-size: 13px;
}
.modal .modal-body .product-innerdesc-wrap .product-info .productdetails-more .price em {
  font-size: 17px;
  font-weight: 700;
}
.modal .modal-body .product-innerdesc-wrap .product-info .productdetails-more .basket {
  width: 100%;
  text-align: center;
  margin-top: 2.5em;
}
.modal .modal-body .product-innerdesc-wrap .product-info .productdetails-more .basket .addtobasket.btn.btn-red {
  width: 100%;
}
.modal .modal-body .availability_notify_info {
  display: none;
}
.modal .modal-body .availability_notify_form .btn {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #4f4f4f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 0.25rem;
  padding: 0.4rem 0.8rem;
  font-family: "Varela Round", sans-serif;
  text-transform: initial;
  margin-top: 1rem;
}
.modal .modal-body .availability_notify_form .btn:hover {
  background-color: #ffffff;
  border: 1px dashed #62a69e;
  color: #62a69e;
}
.modal .modal-body .availability_notify_form .btn:hover span {
  color: #62a69e;
}
.modal .modal-body .availability_notify_form h3 {
  font-size: 1.2rem;
  line-height: 1.4rem;
}
.modal .modal-body .availability_notify_form p {
  max-width: 80%;
}
.modal .modal-body .availability_notify_form p:last-child {
  margin-top: 1rem;
}
.modal.modal-cart .basket-contain {
  display: block !important;
  top: 80px !important;
  left: 0 !important;
  width: 100% !important;
  height: auto !important;
}
.modal.modal-cart .basket-contain .basket-products {
  border: 0;
}
.modal.modal-cart .basket-contain .basket-summery {
  background-color: #f2f2f2;
  color: #2c3238;
}
.modal.modal-cart .basket-contain .basket-summery .basket-price {
  max-width: 73%;
  width: 73%;
}
.modal.modal-cart .basket-contain .basket-summery a {
  width: 25%;
  background-color: #62a69e;
  color: #ffffff;
  font-size: 13px;
  border: 1px solid #62a69e;
}
.modal.modal-cart .basket-contain .basket-summery a:hover {
  background-color: #6caca4;
  color: #ffffff;
}
.modal.modal-shipping .box#box_productdeliveries .boxhead {
  justify-content: space-between;
  border-bottom: 0;
}
.modal.modal-shipping .box#box_productdeliveries .boxhead > h3 {
  border-bottom: 0;
  padding: 0 8px 0 20px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 4px;
  line-height: 0.94;
  display: inline-block;
  margin: 0;
  text-transform: uppercase;
  flex-basis: auto;
  position: initial;
  bottom: initial;
}
.modal.modal-shipping .box#box_productdeliveries .boxhead .modal-shipping-txt {
  display: none;
}
.modal.modal-shipping .box#box_productdeliveries .boxhead .hint {
  position: unset;
}
.modal.modal-shipping .box#box_productdeliveries .product-deliveries {
  padding: 0 15px;
}
.modal.modal-shipping .box#box_productdeliveries .product-deliveries .delivery-container {
  min-width: 100px;
  max-width: 100%;
  font-size: 13px;
}
.modal .ajax-basket-container .ajax-product-block {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}
.modal .ajax-basket-container .ajax-product-block img {
  max-width: 100%;
  max-height: 100%;
  float: left;
  margin-right: 0;
}
.modal .ajax-basket-container .ajax-product-block .ajax-product-block-info {
  display: block;
  float: left;
  width: 100%;
  background-color: #f2f2f2;
  padding: 10px;
}
.modal .ajax-basket-container .ajax-product-block .ajax-product-block-info h3 {
  font-size: 16px;
  max-width: 100%;
  margin-top: 0;
}
.modal .ajax-basket-container .ajax-product-block .ajax-product-block-info span {
  font-size: 13px;
  line-height: 1.5;
}
.modal .ajax-basket-container .ajax-product-block .ajax-product-block-info .ajax-stocks {
  color: fade(#2c3238, 90%);
  padding-left: 10px;
}
.modal .ajax-basket-container .ajax-cart-block {
  margin-top: 1em;
}
.modal .ajax-basket-container .ajax-cart-block span {
  font-size: 1.1em;
  line-height: 1.5;
}
.modal .modal-footer {
  padding: 0 20px 20px;
}
.modal .modal-footer .ajax-product-block .btn {
  width: 100%;
  margin: 0.5em 0;
  background-color: #ffffff;
  border: 1px solid #f2f2f2;
  color: #2c3238;
  font-size: 12px;
}
.modal .modal-footer .ajax-product-block .btn span {
  color: #2c3238;
}
.modal .modal-footer .ajax-product-block .btn:hover {
  background-color: fade(#2c3238, 80%);
  color: #ffffff;
  border: 1px solid fade(#2c3238, 80%);
}
.modal .modal-footer .ajax-product-block .btn:hover span {
  color: #ffffff;
}
.modal .modal-footer .ajax-product-block a.btn.btn-red {
  text-transform: uppercase;
  padding: 10px;
}

.modal-cart {
  width: 500px;
  max-width: 90%;
}
.modal-cart .basket-products .basket-product-list li {
  border: 1px dashed #ededed;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.4rem;
}
.modal-cart .basket-products .basket-product-list li img {
  border-radius: 0.25rem;
}
.modal-cart .basket-products .basket-product-list li .remove-product {
  position: initial;
}

.chooser .choose-row {
  text-align: center;
  margin-top: 3rem;
}
.chooser .divider {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 20px;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 3rem;
}
.chooser .options {
  display: flex;
  grid-gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.chooser .options .option {
  background: #f9f9f9;
  text-align: center;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
  will-change: border, box-shadow;
}
.chooser .options .option a:focus {
  border: none;
}
.chooser .options .option img {
  max-width: 170px;
  transition: transform 0.3s ease-in-out;
}
.chooser .options .option:hover {
  border: 2px solid #62a69e;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 5px 15px;
}
.chooser .options .option:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 480px) {
  .chooser .options .option img {
    max-width: 120px;
  }
}
@media screen and (max-width: 380px) {
  .chooser .options .option img {
    max-width: 100px;
  }
}

.paginator,
.floatcenterwrap .paginator,
.ocs-product-list-paginator-container .paginator {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 2rem 0 0.5rem;
}
.paginator li,
.floatcenterwrap .paginator li,
.ocs-product-list-paginator-container .paginator li {
  float: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  line-height: 1;
}
.paginator li.stick,
.floatcenterwrap .paginator li.stick,
.ocs-product-list-paginator-container .paginator li.stick {
  display: none;
}
.paginator li > a,
.paginator li > span,
.floatcenterwrap .paginator li > a,
.floatcenterwrap .paginator li > span,
.ocs-product-list-paginator-container .paginator li > a,
.ocs-product-list-paginator-container .paginator li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  border: 1px solid #e6e6e6;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #4f4f4f;
  font-size: 0.91rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.paginator li > a:hover,
.floatcenterwrap .paginator li > a:hover,
.ocs-product-list-paginator-container .paginator li > a:hover {
  border-color: #62a69e;
  background: #fbfdfd;
  color: #62a69e;
}
.paginator li.selected > span,
.floatcenterwrap .paginator li.selected > span,
.ocs-product-list-paginator-container .paginator li.selected > span {
  border-color: #62a69e;
  background: #62a69e;
  color: #ffffff;
  font-weight: 700;
}
.paginator li.first > span,
.paginator li.last > span,
.floatcenterwrap .paginator li.first > span,
.floatcenterwrap .paginator li.last > span,
.ocs-product-list-paginator-container .paginator li.first > span,
.ocs-product-list-paginator-container .paginator li.last > span {
  color: #bbbbbb;
  background: #f6f6f6;
}
.paginator li:not(.selected):not(.first):not(.last) > span,
.floatcenterwrap .paginator li:not(.selected):not(.first):not(.last) > span,
.ocs-product-list-paginator-container .paginator li:not(.selected):not(.first):not(.last) > span {
  min-width: auto;
  padding: 0 0.25rem;
  border-color: transparent;
  background: transparent;
  color: #969696;
}
@media screen and (max-width: 767px) {
  .paginator,
.floatcenterwrap .paginator,
.ocs-product-list-paginator-container .paginator {
    gap: 0.25rem;
    padding-top: 1.5rem;
  }
  .paginator li > a,
.paginator li > span,
.floatcenterwrap .paginator li > a,
.floatcenterwrap .paginator li > span,
.ocs-product-list-paginator-container .paginator li > a,
.ocs-product-list-paginator-container .paginator li > span {
    min-width: 2.25rem;
    height: 2.25rem;
  }
}

.ocs-nav {
  position: fixed;
  top: 0;
  left: -33.33vw;
  width: 33.33vw;
  height: 100%;
  background: #ffffff;
  border-right: 2px solid #e3b6b5;
  transition: all 0.3s cubic-bezier(0.75, -0.36, 0.28, 0.98);
  z-index: 1000;
}
@media screen and (max-width: 1024px) {
  .ocs-nav {
    width: 50vw;
    left: -50vw;
  }
}
@media screen and (max-width: 767px) {
  .ocs-nav {
    width: 100%;
    border-right: none;
    left: -100%;
  }
}
.ocs-nav.active {
  left: 0;
}
.ocs-nav-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  height: 4rem;
  border-bottom: 2px solid #e3b6b5;
}
.ocs-nav-header-back, .ocs-nav-header-close {
  font-size: 1.2rem;
  padding: 1rem;
  cursor: pointer;
}
.ocs-nav-header-back {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.ocs-nav-header-back.active {
  visibility: visible;
  opacity: 1;
}
.ocs-nav-header-title {
  text-align: center;
}
.ocs-nav-content {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ocs-nav-content-level {
  top: 0;
  padding: 0 3rem;
}
.ocs-nav-content-level a {
  transition: all 0.3s ease;
  color: #4f4f4f;
}
.ocs-nav-content-level a:hover {
  color: #62a69e;
}
.ocs-nav-content-level.level-1 {
  left: 100%;
  opacity: 0;
  position: absolute;
  display: flex;
  width: 100%;
  background: #ffffff;
  padding: 2rem 3rem;
  visibility: hidden;
  overflow-y: auto;
  transition: all 0.3s cubic-bezier(0.75, -0.36, 0.28, 0.98);
}
.ocs-nav-content-level.level-1:after {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3rem;
  content: "";
  position: fixed;
  display: block;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
  width: calc(33.33vw - 2px);
}
@media screen and (max-width: 1024px) {
  .ocs-nav-content-level.level-1:after {
    width: calc(50vw - 2px);
  }
}
@media screen and (max-width: 767px) {
  .ocs-nav-content-level.level-1:after {
    width: 100%;
  }
}
.ocs-nav-content-level.level-1.active {
  visibility: visible;
  opacity: 1;
  left: 0;
}
.ocs-nav-content-level.level-2 {
  padding-left: 0rem;
  margin-bottom: 1rem;
  border-left: 2px solid #bedad7;
}
.ocs-nav-content-level.level-2 > .ocs-nav-item {
  padding: 0.3rem 1rem;
}
.ocs-nav-content-level.level-2 > .ocs-nav-item:hover {
  background: #fbfdfd;
}
.ocs-nav-content-level.level-2 > .ocs-nav-item:hover > a {
  color: #62a69e;
}
.ocs-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ocs-nav-item i {
  font-size: 0.8rem;
}
.level-0 > .ocs-nav-item, .level-1 > .ocs-nav-item {
  font-weight: 800;
}
.ocs-nav-item a {
  display: inline-block;
  cursor: pointer;
  padding: 0.2rem 0rem;
}
.ocs-nav-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ocs-nav-content-headerlinks {
  width: 100%;
  position: relative;
  height: 100%;
}
.ocs-nav-content-headerlinks .ocs-nav-content-level.level-0 {
  padding: 0;
  display: flex;
  gap: 1.5rem;
  height: 100%;
}
.ocs-nav-content-headerlinks .ocs-nav-content-level.level-0 > .ocs-nav-item > .ocs-nav-link {
  padding: 0.5rem 0;
}
.ocs-nav-content-headerlinks .ocs-nav-content-level.level-0 > .ocs-nav-item:hover > .level-1 {
  visibility: visible;
  opacity: 1;
}
.ocs-nav-content-headerlinks .ocs-nav-content-level.level-1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-column-gap: 1.5rem;
  align-items: flex-start;
  top: 100%;
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  left: unset;
  width: auto;
  min-width: 320px;
  max-width: 900px;
}
.ocs-nav-content-headerlinks .ocs-nav-content-level.level-1.is-offset {
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .ocs-nav-content-headerlinks .ocs-nav-content-level.level-1 {
    min-width: calc(100vw - 2rem);
  }
}
.ocs-nav-content-headerlinks .ocs-nav-content-level.level-1 > .ocs-nav-item {
  font-weight: 700;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.ocs-nav-content-headerlinks .ocs-nav-content-level.level-2 {
  margin-top: 0.5rem;
}
.ocs-nav-content-headerlinks .ocs-nav-content-level.level-2 > .ocs-nav-item {
  font-weight: 500;
}
.ocs-nav-content-headerlinks .ocs-nav-content-level .ocs-nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ocs-nav-content-headerlinks .ocs-nav-content-level .ocs-nav-link > span {
  font-weight: 600;
  font-size: 16px;
}
.ocs-nav-content-headerlinks .ocs-nav-content-level .ocs-nav-link > i {
  transform: rotate(90deg);
}

@media screen and (max-width: 767px) {
  .ocs-nav-content-headerlinks .ocs-nav-content-level.level-0 {
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 2rem;
    max-height: calc(100% - 4rem);
  }
  .ocs-nav-content-headerlinks .ocs-nav-content-level.level-0 > .ocs-nav-item .ocs-nav-link {
    padding: 0.5rem 1.5rem;
  }
  .ocs-nav-content-headerlinks .ocs-nav-content-level.level-0 > .ocs-nav-item .ocs-nav-link i {
    transform: rotate(0deg);
  }
  .ocs-nav-content-headerlinks .ocs-nav-content-level.level-1 {
    top: 0;
    width: 100%;
    max-width: unset;
    border: 0;
    background: #ffffff;
    z-index: 1;
    padding-top: 0;
    min-width: unset;
    padding-top: 2rem;
    max-height: calc(100% - 4rem);
  }
  .ocs-nav-content-headerlinks .ocs-nav-content-level.level-1.active {
    left: 0;
  }
  .ocs-nav-content-headerlinks .ocs-nav-content-level.level-1.active > .ocs-nav-item:last-child {
    margin-bottom: 3rem;
  }
}
.ocs-news-box {
  width: 100%;
  padding-bottom: 4rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: ocs-news-box-fade-in-up 0.6s ease-out 1s forwards;
  will-change: opacity, transform;
}
.ocs-news-box .ocs-news-box-content {
  display: flex;
}
.ocs-news-box .ocs-news-box-content img {
  max-width: 400px;
}
.ocs-news-box .ocs-news-box-content .ocs-news-box-article-title {
  font-size: 1.125rem;
  font-family: "Nunito", sans-serif;
  line-height: 1.4rem;
  font-weight: 500;
  margin: 1.5rem 0 0.75rem;
  text-align: left;
}
.ocs-news-box-article-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ocs-news-box-article-info-logo {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ocs-news-box-article-info-logo img {
  width: auto;
  height: 75%;
  object-fit: contain;
}
.ocs-news-box-article-info-author {
  font-size: 0.91rem;
  color: #2d4c48;
}

@keyframes ocs-news-box-fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
  }
  1% {
    visibility: visible;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
.ocs-news-page {
  padding: 4rem 0;
}
.ocs-news-page-article-header {
  margin-bottom: 1rem;
}
.ocs-news-page-article-header .ocs-news-page-article-title {
  font-size: 1.424rem;
  font-family: "Nunito", sans-serif;
  line-height: 1.6rem;
  font-weight: 700;
  margin: 0;
  text-align: left;
}
.ocs-news-page-article-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.ocs-news-page-article-info-logo {
  width: 3rem;
  height: 3rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ocs-news-page-article-info-logo img {
  width: auto;
  height: 80%;
  object-fit: contain;
}
.ocs-news-page-article-info-author {
  font-size: 16px;
  color: #2d4c48;
}
.ocs-news-page-article-content {
  font-size: 16px;
  line-height: 1.6rem;
  color: #09100f;
}
.ocs-news-page-article-content img.article-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
}
.ocs-news-page-article-content h2,
.ocs-news-page-article-content h3,
.ocs-news-page-article-content h4,
.ocs-news-page-article-content h5,
.ocs-news-page-article-content h6 {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #09100f;
}
.ocs-news-page-article-content a {
  color: #508881;
  text-decoration: underline;
}
.ocs-news-page-article-content a:hover {
  color: #2d4c48;
}

.consents_popup .consents__wrapper {
  top: 0;
  align-items: center;
}
.consents__wrapper {
  position: fixed;
  z-index: 999999;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 -1px 3px 0px rgba(0, 0, 0, 0.25);
}
.consents__modal {
  padding: 2rem;
  background-color: #fff;
  width: 90%;
  max-width: 800px;
  max-height: 100vh;
  border-radius: 0.5rem;
  box-sizing: border-box;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .consents__modal {
    padding: 1rem;
  }
}
.consents__basic-view {
  display: block;
  max-height: 70vh;
  width: 100%;
}
.consents__advanced-view {
  max-height: calc(90vh - 4rem);
  display: flex;
  flex-direction: column;
  width: 100%;
}
.consents__advanced-content {
  overflow: auto;
}
.consents__buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .consents__buttons {
    flex-direction: column;
    margin-top: 1rem;
    gap: 0.5rem;
  }
}
.consents__content {
  flex: 1 1 auto;
  overflow: auto;
  width: 100%;
  font-size: 0.8rem;
}
.consents__heading {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: start;
}
.consents__heading img {
  max-height: 40px;
  margin-right: 1.5rem;
}
.consents__heading span {
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .consents__heading {
    flex-direction: column;
  }
  .consents__heading img {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.consents__text {
  margin-bottom: 1rem;
  font-size: 0.8rem;
}
.consents__link {
  text-decoration: underline;
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
}
.consents__consent {
  display: flex;
  margin-bottom: 1rem;
}
.consents__consent-description {
  margin-top: 4px;
  margin-left: 1rem;
}
.consents__advanced-buttons {
  text-align: center;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
}
.consents__mask {
  display: block;
  position: fixed;
  overflow: hidden;
  z-index: 999998;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
}

@media screen and (max-width: 768px) {
  .consents__basic-view {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .consents__buttons .btn {
    width: 100%;
    min-height: 44px;
    margin-bottom: 10px;
  }
  .consents__buttons :last-child {
    margin-bottom: 0;
  }
}
.carousel-thumbnails {
  --slide-aspect-ratio: 1 / 1;
  --aspect-ratio: 3 / 2;
}
.carousel-thumbnails img {
  object-fit: contain;
}

.thumbnails {
  display: flex;
  justify-content: center;
}

.thumbnails__scroller {
  display: flex;
  gap: var(--sl-spacing-small);
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-padding: var(--sl-spacing-small);
}

.thumbnails__scroller::-webkit-scrollbar {
  display: none;
}

.thumbnails__image {
  width: 64px;
  height: 64px;
  object-fit: cover;
  opacity: 0.3;
  will-change: opacity;
  transition: 250ms opacity;
  cursor: pointer;
}

.thumbnails__image.active {
  opacity: 1;
}

.swiper {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .swiper {
    height: 100%;
  }
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  object-fit: contain;
  border-radius: 0.5rem;
}

.swiper-button-prev,
.swiper-button-next {
  --swiper-navigation-size: 2rem;
  color: #6aa59e;
}

.swiper-pagination-bullet {
  background: #818181;
}

.swiper-pagination-bullet-active {
  background: #6aa59e;
}

.ocs-promo-bar {
  width: 100%;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #62a69e;
  text-align: center;
  top: 0px;
  z-index: 99;
}

.ocs-sidebar {
  position: fixed;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 0px;
  z-index: 1000;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.6, -0.01, 0.39, 1);
}
.ocs-sidebar-mask {
  background: rgba(0, 0, 0, 0.6);
}
.ocs-sidebar-content {
  overflow: hidden;
}
.ocs-sidebar.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  grid-template-columns: 1fr 500px;
}
@media screen and (max-width: 1024px) {
  .ocs-sidebar.open {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .ocs-sidebar.open {
    grid-template-columns: 1fr 2fr;
  }
}
@media screen and (max-width: 480px) {
  .ocs-sidebar.open {
    grid-template-columns: 1fr 20fr;
  }
}

.ocs-cart-sidebar {
  background: #ffffff;
  height: 100%;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 500px;
}
@media screen and (max-width: 1024px) {
  .ocs-cart-sidebar {
    width: 50vw;
  }
}
@media screen and (max-width: 767px) {
  .ocs-cart-sidebar {
    width: 66.66vw;
  }
}
@media screen and (max-width: 480px) {
  .ocs-cart-sidebar {
    width: 95vw;
  }
}
.ocs-cart-sidebar-header {
  background: #fafafa;
  border-bottom: 1px solid #e6e6e6;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ocs-cart-sidebar-header-title {
  color: #4f4f4f;
  font-size: 1.125rem;
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "SOFT" 100, "WONK" 0;
}
.ocs-cart-sidebar-header-close {
  color: #4f4f4f;
  cursor: pointer;
}
.ocs-cart-sidebar-content {
  height: 100%;
  overflow-y: auto;
  padding: 1rem;
}
.ocs-cart-sidebar-content::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}
.ocs-cart-sidebar-content::-webkit-scrollbar-track {
  background: #dcecea;
  border-radius: 2px;
}
.ocs-cart-sidebar-content::-webkit-scrollbar-thumb {
  background: #62a69e;
  border-radius: 2px;
}
.ocs-cart-sidebar-content-free-delivery {
  padding: 1rem;
  background: #fcf7e1;
  border: 1px solid #ffec99;
  border-radius: 0.5rem;
  font-size: 0.91rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.ocs-cart-sidebar-content-free-delivery-amount, .ocs-cart-sidebar-content-free-delivery-label {
  font-weight: 700;
  color: #2d4c48;
}
.ocs-cart-sidebar-content-free-delivery-progress {
  width: 100%;
  position: relative;
  height: 2.5rem;
  display: flex;
  align-items: center;
}
.ocs-cart-sidebar-content-free-delivery-progress > i {
  font-size: 0.63rem;
  background: #fcf7e1;
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  left: 27%;
  z-index: 9;
  border: 2px solid #62a69e;
  color: #62a69e;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.ocs-cart-sidebar-content-free-delivery-progress-bar {
  width: 0%;
  display: block;
  background: #62a69e;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.ocs-cart-sidebar-content-free-delivery-progress-bar-container {
  width: 100%;
  display: block;
  position: relative;
  height: 4px;
  border-radius: 2px;
  background: #ffec99;
  overflow: hidden;
}
.ocs-cart-sidebar-content-empty {
  text-align: center;
}
.ocs-cart-sidebar-content-products-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ocs-cart-sidebar-content-products-list-item {
  display: flex;
  gap: 1rem;
  border: 1px solid #f6f6f6;
  padding: 1rem;
  justify-content: space-between;
  align-items: center;
}
.ocs-cart-sidebar-content-products-list-item-image {
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ocs-cart-sidebar-content-products-list-item-content {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.5rem;
  grid-template-areas: "name name" "quantity price";
  width: 100%;
}
.ocs-cart-sidebar-content-products-list-item-content-name {
  grid-area: name;
  font-weight: 600;
}
.ocs-cart-sidebar-content-products-list-item-content-name a {
  font-size: 16px;
}
.ocs-cart-sidebar-content-products-list-item-content-name .variant {
  display: block;
  font-size: 0.8rem;
  color: #62a69e;
  margin-top: 0.5rem;
}
.ocs-cart-sidebar-content-products-list-item-content-quantity {
  grid-area: quantity;
}
.ocs-cart-sidebar-content-products-list-item-content-price {
  grid-area: price;
  font-weight: 700;
}
.ocs-cart-sidebar-content-products-list-item-remove {
  padding: 0.5rem;
  color: #c95959;
  cursor: pointer;
}
.ocs-cart-sidebar-footer {
  padding: 1rem;
  background: #fafafa;
  border-top: 1px solid #e6e6e6;
}
.ocs-cart-sidebar-sum {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  font-weight: 600;
  max-width: 20rem;
  margin: 0 auto;
}
.ocs-cart-sidebar-delivery {
  display: flex;
  justify-content: space-evenly;
  padding-bottom: 1rem;
  font-weight: 500;
  font-size: 0.8rem;
  max-width: 20rem;
  margin: 0 auto;
}
.ocs-cart-sidebar-delivery i {
  margin-right: 0.3rem;
}
.ocs-cart-sidebar-delivery-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ocs-checkout {
  display: grid;
  grid-template-columns: minmax(min-content, calc(50% + 4rem)) 1fr;
  grid-template-areas: "checkout-form checkout-summary";
  border-bottom: 1px solid #bedad7;
  margin-bottom: 1rem;
}
.ocs-checkout-header {
  display: grid;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #bedad7;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 1rem;
  gap: 0rem;
  row-gap: 0;
  background: #ffffff;
  box-shadow: 0 47px 13px 0 rgba(171, 171, 171, 0), 0 30px 12px 0 rgba(171, 171, 171, 0.01), 0 17px 10px 0 rgba(171, 171, 171, 0.05), 0 7px 7px 0 rgba(171, 171, 171, 0.09), 0 2px 4px 0 rgba(171, 171, 171, 0.1);
}
.ocs-checkout-header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  width: 100%;
}
.ocs-checkout-header .ocs-olivier-header-logo {
  display: flex;
  justify-content: center;
}
.ocs-checkout-header .ocs-olivier-header-logo a {
  display: flex;
}
.ocs-checkout-header .ocs-olivier-header-logo img {
  width: 150px;
  max-width: 100%;
  height: auto;
}
.ocs-checkout-form-section h3, .ocs-checkout-summary-section h3 {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "SOFT" 100, "WONK" 0;
  margin-bottom: 1rem;
  font-size: 1.266rem;
}
.ocs-checkout-form-section .desc, .ocs-checkout-summary-section .desc {
  font-size: 0.8rem;
  color: #969696;
}
.ocs-checkout-form-section.sub-section h3, .ocs-checkout-summary-section.sub-section h3 {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "SOFT" 100, "WONK" 0;
  font-size: 1.266rem;
  margin-bottom: 1rem;
}
.ocs-checkout-no-shipping-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #e3b6b5;
  border-radius: 0.5rem;
  background: #fcf8f8;
  color: #6a3332;
}
.ocs-checkout-no-shipping-notice > i {
  flex: none;
  font-size: 1.25rem;
  color: #925e5d;
  margin-top: 0.1rem;
}
.ocs-checkout-no-shipping-notice-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.ocs-checkout-no-shipping-notice-content p {
  margin: 0;
  font-size: 0.8rem;
}
.ocs-checkout-no-shipping-notice-content a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}
.ocs-checkout-form {
  grid-area: checkout-form;
  background: #ffffff;
  display: flex;
  justify-content: flex-end;
}
.ocs-checkout-form-container {
  max-width: 45rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ocs-checkout-form-delivery, .ocs-checkout-form-payment {
  display: flex;
  flex-direction: column;
}
.ocs-checkout-form-delivery-item, .ocs-checkout-form-payment-item {
  padding: 1rem;
  cursor: pointer;
  border: 1px solid #bedad7;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}
.ocs-checkout-form-delivery-item.selected, .ocs-checkout-form-payment-item.selected {
  background: #fbfdfd;
}
.ocs-checkout-form-delivery-item > label, .ocs-checkout-form-payment-item > label {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.ocs-checkout-form-delivery-item .ocs-checkout-form-subpayments, .ocs-checkout-form-payment-item .ocs-checkout-form-subpayments {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}
.ocs-checkout-form-delivery-item .ocs-checkout-form-subpayments .ocs-checkout-form-subpayment-item, .ocs-checkout-form-payment-item .ocs-checkout-form-subpayments .ocs-checkout-form-subpayment-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: 1px solid #bedad7;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #fff;
}
.ocs-checkout-form-delivery-item .ocs-checkout-form-subpayments .ocs-checkout-form-subpayment-item:hover, .ocs-checkout-form-payment-item .ocs-checkout-form-subpayments .ocs-checkout-form-subpayment-item:hover {
  background: #fafafa;
}
.ocs-checkout-form-delivery-item .ocs-checkout-form-subpayments .ocs-checkout-form-subpayment-item.channel-selected, .ocs-checkout-form-payment-item .ocs-checkout-form-subpayments .ocs-checkout-form-subpayment-item.channel-selected {
  border-color: #62a69e;
  background: #fbfdfd;
  font-weight: 500;
  box-shadow: inset 0 0 0 1px #62a69e;
}
.ocs-checkout-form-delivery-item .ocs-checkout-form-subpayments .ocs-checkout-form-subpayment-item .ocs-checkout-form-payment-item-logo, .ocs-checkout-form-payment-item .ocs-checkout-form-subpayments .ocs-checkout-form-subpayment-item .ocs-checkout-form-payment-item-logo {
  width: auto;
}
.ocs-checkout-form-delivery-item .ocs-checkout-form-subpayments .ocs-checkout-form-subpayment-item .ocs-checkout-form-payment-item-logo img, .ocs-checkout-form-payment-item .ocs-checkout-form-subpayments .ocs-checkout-form-subpayment-item .ocs-checkout-form-payment-item-logo img {
  max-height: 1.5rem;
}
.ocs-checkout-form-delivery-item-name, .ocs-checkout-form-payment-item-name {
  flex: 1;
  font-size: 0.91rem;
}
.ocs-checkout-form-delivery-item-name > span, .ocs-checkout-form-payment-item-name > span {
  display: block;
}
.ocs-checkout-form-delivery-item-name > span.small, .ocs-checkout-form-payment-item-name > span.small {
  font-size: 0.8rem;
  color: #5a5a5a;
}
.ocs-checkout-form-delivery-item-price, .ocs-checkout-form-payment-item-price {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 600;
}
.ocs-checkout-form-delivery-item-logo img, .ocs-checkout-form-payment-item-logo img {
  max-height: 100px;
}
.ocs-checkout-form-delivery-item-logo img.small, .ocs-checkout-form-payment-item-logo img.small {
  max-height: 2rem;
}
.ocs-checkout-form-delivery-item {
  transition: all 0.2s ease;
}
.ocs-checkout-form-delivery-item input[type=radio] + label::before {
  display: none;
}
.ocs-checkout-form-delivery-item > label {
  min-height: 2.5rem;
  gap: 0.75rem;
}
.ocs-checkout-form-delivery-item:hover {
  background: #fbfdfd;
}
.ocs-checkout-form-delivery-item.selected {
  border-color: #62a69e;
  background: #fbfdfd;
  box-shadow: inset 0 0 0 1px #62a69e;
}
.ocs-checkout-form-delivery-item.selected .delivery-pickup-point {
  display: flex;
}
.ocs-checkout-form-delivery-item-logo {
  flex: none;
  width: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #62a69e;
  font-size: 1.5rem;
}
.ocs-checkout-form-delivery-item-logo img {
  max-height: 2.5rem;
  max-width: 4.5rem;
}
.ocs-checkout-form-delivery-item .delivery-pickup-point {
  display: none;
}
.ocs-checkout-form-payment.has-channel-selected .ocs-checkout-form-payment-item.selected:not(.channel-selected) {
  border-color: #bedad7;
  background: none;
  box-shadow: none;
}
.ocs-checkout-form-payment.has-channel-selected .ocs-checkout-form-payment-item.selected:not(.channel-selected):hover {
  background: #fbfdfd;
}
.ocs-checkout-form-payment-item {
  transition: all 0.2s ease;
}
.ocs-checkout-form-payment-item-plugin {
  display: none;
}
.ocs-checkout-form-payment-item input[type=radio] + label::before {
  display: none;
}
.ocs-checkout-form-payment-item:hover {
  background: #fbfdfd;
}
.ocs-checkout-form-payment-item.selected, .ocs-checkout-form-payment-item.channel-selected {
  border-color: #62a69e;
  background: #fbfdfd;
  box-shadow: inset 0 0 0 1px #62a69e;
}
.ocs-checkout-form-payment-item-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.5rem;
}
.ocs-checkout-form-payment-item-label > .ocs-checkout-form-payment-item-logo {
  flex: none;
  width: 5rem;
  display: flex;
  align-items: center;
}
.ocs-checkout-form-payment-item-label > .ocs-checkout-form-payment-item-logo img {
  max-height: 2.5rem;
  max-width: 4.5rem;
}
.ocs-checkout-form-payment-item-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.5rem;
  cursor: pointer;
}
.ocs-checkout-form-payment-item-group-header > i {
  color: #62a69e;
  transition: transform 0.2s ease-in-out;
}
.ocs-checkout-form-payment-item.is-channel, .ocs-checkout-form-payment-item.is-channel-group {
  cursor: pointer;
}
.ocs-checkout-form-payment-item-name {
  font-weight: 500;
}
.ocs-checkout-form-payment-item.is-channel-group .ocs-checkout-form-subpayments {
  display: none;
}
.ocs-checkout-form-payment-item.is-channel-group.is-open .ocs-checkout-form-subpayments {
  display: grid;
}
.ocs-checkout-form-payment-item.is-channel-group.is-open .ocs-checkout-form-payment-item-group-header > i {
  transform: rotate(180deg);
}
.ocs-checkout-form-promocode {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ocs-checkout-form-promocode-inputs {
  display: flex;
  gap: 0.5rem;
}
.ocs-checkout-form-promocode-inputs input {
  flex: 1;
}
.ocs-checkout-form-promocode-panel {
  display: none;
  margin-top: 0.5rem;
}
.ocs-checkout-form-promocode-toggle:has(#ocs-checkout-form-promocode-check:checked) .ocs-checkout-form-promocode-panel, .ocs-checkout-form-promocode-toggle.is-open .ocs-checkout-form-promocode-panel {
  display: flex;
}
.ocs-checkout-summary {
  grid-area: checkout-summary;
  display: flex;
  justify-content: flex-start;
  border-left: 1px solid #dcecea;
  background-color: #fafafa;
}
.ocs-checkout-summary-container {
  max-width: 35rem;
  padding: 2rem;
}
.ocs-checkout-summary-sum {
  margin-top: 1rem;
}
.ocs-checkout-summary-sum-row {
  padding-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ocs-checkout-summary-sum-row.final {
  font-size: 1.266rem;
  font-weight: 500;
}
.ocs-checkout-products-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ocs-checkout-products-list-item {
  display: flex;
  gap: 1rem;
  border: 1px solid #e6e6e6;
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  justify-content: space-between;
  align-items: center;
}
.ocs-checkout-products-list-item-image {
  width: 4rem;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ocs-checkout-products-list-item-image img {
  width: 100%;
  height: auto;
  border-radius: 0.25rem;
}
.ocs-checkout-products-list-item-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.5rem;
  grid-template-areas: "name name" "quantity price";
  width: 100%;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .ocs-checkout-products-list-item-content {
    grid-template-areas: "name name" "quantity quantity" "price price";
  }
}
.ocs-checkout-products-list-item-content-name {
  grid-area: name;
  font-size: 0.91rem;
  font-weight: 500;
  line-height: 1.3;
}
.ocs-checkout-products-list-item-content-name > a {
  color: #09100f;
}
.ocs-checkout-products-list-item-content-name > a:hover {
  color: #508881;
}
.ocs-checkout-products-list-item-content-name .variant {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: #828282;
  padding: 0.25rem 0 0;
}
.ocs-checkout-products-list-item-content-quantity {
  grid-area: quantity;
}
.ocs-checkout-products-list-item-content-quantity .ocs-quantity.small > input {
  width: 2.5rem;
  height: 2rem;
  padding: 0;
}
.ocs-checkout-products-list-item-content-quantity .ocs-quantity.small > button {
  height: 2rem;
  padding: 0 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}
.ocs-checkout-products-list-item-content-price {
  grid-area: price;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.ocs-checkout-products-list-item-content-price .small-price {
  font-size: 0.7rem;
  font-weight: 400;
  color: #828282;
}
.ocs-checkout-products-list-item-content-price .big-price {
  font-size: 0.91rem;
  font-weight: 700;
  color: #09100f;
}
.ocs-checkout-products-list-item-remove {
  padding: 0.25rem;
  flex: none;
  cursor: pointer;
  font-size: 16px;
  color: #bbbbbb;
  transition: color 0.2s ease-in-out;
}
.ocs-checkout-products-list-item-remove:hover {
  color: #508881;
}
.ocs-checkout-loader {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.ocs-checkout-loader-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
}
.ocs-checkout-loader-page + .main {
  display: none;
}
.ocs-checkout-loader.slide-out-top {
  -webkit-animation: slide-out-top 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: slide-out-top 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
.ocs-checkout-loader-spinner {
  height: 7rem;
  display: flex;
  justify-content: center;
}
.ocs-checkout-loader-text {
  display: flex;
  justify-content: center;
  padding: 1rem;
}
.ocs-checkout-loader-text p {
  text-align: center;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
}
@keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0;
  }
}
.delivery-pickup-point {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.delivery-pickup-point .selected-point {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}
.delivery-pickup-point .selected-point-address {
  font-weight: 500;
}

label[for=ocs-checkout-form-agreement] {
  font-size: 1rem;
}
label[for=ocs-checkout-form-agreement] a {
  color: #3e6a65;
  text-decoration: underline;
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  .ocs-checkout {
    grid-template-columns: 1fr;
    grid-template-areas: "checkout-form" "checkout-summary";
    padding-top: 1rem;
  }
  .ocs-checkout-header .ocs-header-logo {
    justify-content: flex-start;
  }
  .ocs-checkout-form {
    justify-content: center;
    padding: 1rem 0 2rem;
  }
  .ocs-checkout-form-container {
    padding: 1rem;
    max-width: 100%;
  }
  .ocs-checkout-summary {
    justify-content: center;
    padding: 1rem 0;
  }
  .ocs-checkout-summary-container {
    padding: 1rem;
    max-width: 100%;
  }
  label[for=ocs-checkout-form-agreement] {
    font-size: 0.91rem;
  }
}
@media screen and (max-width: 767px) {
  .ocs-checkout {
    grid-template-columns: 1fr;
    grid-template-areas: "checkout-form" "checkout-summary";
    padding-top: 0;
  }
  .ocs-checkout-header {
    padding: 0.75rem 1rem;
  }
  .ocs-checkout-header .ocs-olivier-header-logo img {
    width: 130px;
  }
  .ocs-checkout-form {
    justify-content: center;
    padding: 1rem 0 2rem;
  }
  .ocs-checkout-form-container {
    max-width: 100%;
    padding: 0;
    gap: 1rem;
  }
  .ocs-checkout-form-payments p {
    font-size: 0.8rem;
  }
  .ocs-checkout-summary {
    justify-content: center;
    padding: 0 0 1rem;
    border-radius: 0.5rem;
    border: none;
  }
  .ocs-checkout-summary-container {
    padding: 1rem;
    max-width: 100%;
  }
  label[for=ocs-checkout-form-agreement] {
    font-size: 0.91rem;
  }
}
.ocs-checkout-loader-spinner-inner {
  position: relative;
  width: 22.4px;
  height: 22.4px;
}

.ocs-checkout-loader-spinner-inner::before,
.ocs-checkout-loader-spinner-inner::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  animation: spinner-b4c8mmmd 0.4s backwards, spinner-49opz7md 1s 0.4s infinite ease;
  border: 2.6px solid #5f7050;
  border-radius: 50%;
  box-shadow: 0 -33.6px 0 -6.6px #5f7050;
  position: absolute;
}

.ocs-checkout-loader-spinner-inner::after {
  animation-delay: 0s, 1s;
}

@keyframes spinner-b4c8mmmd {
  from {
    box-shadow: 0 0 0 -5.6px #5f7050;
  }
}
@keyframes spinner-49opz7md {
  to {
    transform: rotate(360deg);
  }
}
.ocs-quantity {
  display: flex;
}
.ocs-quantity > input {
  border-radius: 0;
  border: 1px solid #dcecea;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 4rem;
  color: #4f4f4f;
}
.ocs-quantity > input::-webkit-outer-spin-button, .ocs-quantity > input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ocs-quantity > input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}
.ocs-quantity > input:focus {
  outline: none;
}
.ocs-quantity > button {
  background-color: #dcecea;
  color: #62a69e;
  padding: 0.8rem;
  transition: all 0.3s ease-in-out;
}
.ocs-quantity > button:hover {
  background-color: #bedad7;
}
.ocs-quantity > button:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.ocs-quantity > button:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.ocs-quantity.small > input {
  width: 3rem;
}
.ocs-quantity.small > button {
  padding: 0.4rem 0.8rem;
}

.ocs-modal-cart {
  visibility: hidden;
  opacity: 0;
  display: block;
  position: fixed;
  width: 95vw;
  max-width: 1440px;
  max-height: 95%;
  background: #ffffff;
  top: 3%;
  left: 50%;
  transform: translate(-50%, -100%);
  border-radius: 0.5rem;
  border: 1px solid #e6e6e6;
  transition: all 0.3s ease-in-out;
  z-index: 101;
  box-shadow: 0 47px 13px 0 rgba(171, 171, 171, 0), 0 30px 12px 0 rgba(171, 171, 171, 0.01), 0 17px 10px 0 rgba(171, 171, 171, 0.05), 0 7px 7px 0 rgba(171, 171, 171, 0.09), 0 2px 4px 0 rgba(171, 171, 171, 0.1);
  overflow-y: auto;
}
.ocs-modal-cart::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}
.ocs-modal-cart::-webkit-scrollbar-track {
  background: #fbfdfd;
  border-radius: 2px;
}
.ocs-modal-cart::-webkit-scrollbar-thumb {
  background: #508881;
  border-radius: 2px;
}
.ocs-modal-cart-backdrop {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.55);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.ocs-modal-cart.open {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}
.ocs-modal-cart.open + .ocs-modal-cart-backdrop {
  visibility: visible;
  opacity: 1;
}
.ocs-modal-cart-header {
  padding: 1rem;
  border-bottom: #e6e6e6 solid 1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 10;
}
.ocs-modal-cart-header-title {
  font-size: 1.424rem;
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "SOFT" 100, "WONK" 0;
  color: #09100f;
}
.ocs-modal-cart-header-close {
  font-size: 1.14rem;
  cursor: pointer;
  color: #09100f;
}
.ocs-modal-cart-header-close:hover {
  color: #508881;
}
.ocs-modal-cart-container {
  display: flex;
  flex-direction: column;
}
.ocs-modal-cart-content {
  padding: 1rem;
  display: grid;
  gap: 3rem;
  grid-template-columns: 7fr 3fr;
  position: relative;
}
.ocs-modal-cart-items {
  margin-bottom: 2rem;
}
.ocs-modal-cart-items-content {
  position: relative;
  overflow: hidden;
}
.ocs-modal-cart-item {
  padding: 0.75rem 1rem;
  display: grid;
  grid-template-columns: 80px auto 3rem;
  gap: 1rem;
  align-items: center;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px dashed #e6e6e6;
}
.ocs-modal-cart-item:first-child {
  border-top: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  border-radius: 0.5rem 0.5rem 0 0;
}
.ocs-modal-cart-item:last-child {
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  border-radius: 0 0 0.5rem 0.5rem;
}
.ocs-modal-cart-item:first-child:last-child {
  border-radius: 0.5rem;
}
.ocs-modal-cart-item-image {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}
.ocs-modal-cart-item-image img {
  border-radius: 0.25rem;
}
.ocs-modal-cart-item-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.ocs-modal-cart-item-name > a {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.91rem;
  font-weight: 500;
  color: #09100f;
}
.ocs-modal-cart-item-name > a:hover {
  color: #508881;
}
.ocs-modal-cart-item-variant {
  display: block;
  color: #828282;
  font-size: 0.7rem;
}
.ocs-modal-cart-item-buying-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.ocs-modal-cart-item-quantity {
  display: grid;
  grid-template-columns: 2rem 2rem 2rem;
  border: 1px solid #e6e6e6;
  border-radius: 0.25rem;
  overflow: hidden;
  height: 2rem;
  width: max-content;
}
.ocs-modal-cart-item-quantity-value {
  align-self: center;
  text-align: center;
  font-size: 0.91rem;
}
.ocs-modal-cart-item-quantity-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f6f6;
  color: #09100f;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}
.ocs-modal-cart-item-quantity-button:hover {
  background: #e6e6e6;
}
.ocs-modal-cart-item-price {
  font-weight: 700;
  font-size: 0.91rem;
  min-width: 5rem;
}
.ocs-modal-cart-item-remove {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ocs-modal-cart-item-remove > button {
  font-size: 16px;
  color: #bbbbbb;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}
.ocs-modal-cart-item-remove > button:hover {
  color: #508881;
}
.ocs-modal-cart-summary {
  position: sticky;
  top: 5rem;
  align-self: flex-start;
  font-size: 0.91rem;
}
.ocs-modal-cart-summary h5 {
  font-size: 1.125rem;
}
.ocs-modal-cart-summary-container {
  border: 1px solid #e6e6e6;
  border-radius: 0.5rem;
  padding: 1.5rem;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ocs-modal-cart-summary-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.ocs-modal-cart-summary-buttons .ocs-btn.primary {
  background: #508881;
  border-color: #508881;
}
.ocs-modal-cart-summary-buttons .ocs-btn.primary:hover {
  background: #62a69e;
  border-color: #508881;
}
.ocs-modal-cart-summary-products-sum, .ocs-modal-cart-summary-delivery-sum, .ocs-modal-cart-summary-total {
  display: flex;
  justify-content: space-between;
}
.ocs-modal-cart-summary-total {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 700;
  font-size: 1.14rem;
  color: #09100f;
}

@media screen and (max-width: 767px) {
  .ocs-modal-cart {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    border-radius: 0;
  }
  .ocs-modal-cart-content {
    grid-template-columns: 1fr;
    font-size: 0.91rem;
    gap: 1rem;
  }
  .ocs-modal-cart-item {
    padding: 0.75rem;
    grid-template-columns: 80px auto;
    position: relative;
  }
  .ocs-modal-cart-item-details {
    flex-direction: column;
    gap: 0.5rem;
  }
  .ocs-modal-cart-item-name {
    font-size: 0.8rem;
  }
  .ocs-modal-cart-item-variant {
    font-size: 0.7rem;
  }
  .ocs-modal-cart-item-quantity {
    grid-template-columns: 1.5rem 1.5rem 1.5rem;
    height: 1.5rem;
  }
  .ocs-modal-cart-item-quantity-value {
    font-size: 0.8rem;
  }
  .ocs-modal-cart-item-remove {
    grid-column: 1/3;
    position: absolute;
    bottom: 1rem;
    right: 0rem;
  }
}
.free-delivery-box {
  border: 1px solid #e6e6e6;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.91rem;
  line-height: 1.3;
  position: relative;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .free-delivery-box {
    padding: 0.75rem 1.75rem 0.75rem 0.75rem;
  }
}
.free-delivery-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .free-delivery-box-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.free-delivery-box-text {
  display: flex;
  align-items: center;
}
.free-delivery-box-text .free-delivery-crown {
  display: inline-block;
  width: 0;
  opacity: 0;
  color: #ffd700;
  font-size: 1rem;
  text-align: center;
  transform: scale(0.5);
  transition: width 0.4s ease, opacity 0.4s ease, transform 0.4s ease, margin-right 0.4s ease;
  overflow: hidden;
  margin-right: 0;
}
.free-delivery-box-text .text-content {
  transition: transform 0.4s ease;
}
.free-delivery-box.success {
  border-color: #ffd700;
}
.free-delivery-box.success .free-delivery-crown {
  width: 1.25rem;
  opacity: 1;
  transform: scale(1);
  margin-right: 0.375rem;
}
.free-delivery-box.success .free-delivery-box-progress > i {
  color: #ffd700;
  border-color: #ffd700;
}
.free-delivery-box.success .free-delivery-box-progress-bar {
  background-color: #ffd700;
}
.free-delivery-box-amount {
  font-weight: 700;
  color: #3e6a65;
}
.free-delivery-box-progress {
  height: 1.5rem;
  display: flex;
  align-items: center;
  position: relative;
}
.free-delivery-box-progress > i {
  position: absolute;
  left: 0;
  color: #508881;
  background: #ffffff;
  border-radius: 50%;
  border: 2px solid #508881;
  height: 1.5rem;
  width: 1.5rem;
  font-size: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -0.75rem;
  transition: left 0.3s ease-in-out;
}
.free-delivery-box-progress-bar {
  display: block;
  height: 100%;
  background: #81b7b1;
  border-radius: 0.25rem;
  transition: width 0.3s ease-in-out;
}
.free-delivery-box-progress-bar-container {
  width: 100%;
  height: 0.25rem;
  background: #f6f6f6;
  border-radius: 0.25rem;
  overflow: hidden;
}

.ocs-cross-sell-container {
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

.ocs-cross-sell {
  position: relative;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
@media (max-width: 767px) {
  .ocs-cross-sell {
    margin: 0;
  }
}
.ocs-cross-sell-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.ocs-cross-sell-body {
  position: relative;
  min-width: 0;
  max-width: 100%;
}
.ocs-cross-sell-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ocs-cross-sell-loader, .ocs-cross-sell-empty, .ocs-cross-sell-error {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #3e6a65;
}
.ocs-cross-sell-loader {
  position: relative;
}
.ocs-cross-sell-loader::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 2px solid rgba(80, 136, 129, 0.2);
  border-top-color: #508881;
  animation: ocs-cross-sell-spinner 0.75s linear infinite;
}
.ocs-cross-sell-slider {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding-top: 0.5rem;
  padding-bottom: clamp(2rem, 2vw, 3rem);
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .ocs-cross-sell-slider {
    padding-bottom: 0.5rem;
  }
}
.ocs-cross-sell-wrapper {
  align-items: stretch;
}
.ocs-cross-sell-slide,
.ocs-cross-sell .swiper-slide {
  height: auto;
}
.ocs-cross-sell--ready .ocs-cross-sell-slider {
  opacity: 1;
  pointer-events: auto;
}
.ocs-cross-sell-navigation {
  position: absolute;
  top: 2rem;
  transform: translateY(-50%);
  display: flex;
  gap: 1rem;
  z-index: 5;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
}
@media (max-width: 767px) {
  .ocs-cross-sell-navigation {
    position: static;
    justify-content: center;
    transform: none;
    margin-top: 0;
  }
}
.ocs-cross-sell-nav {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(45, 76, 72, 0.12);
  background: #ffffff;
  color: #2d4c48;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
@media (hover: hover) {
  .ocs-cross-sell-nav:hover {
    background: #fbfdfd;
    border-color: rgba(45, 76, 72, 0.2);
    color: #508881;
    transform: translateY(-2px);
  }
}
.ocs-cross-sell-nav:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(98, 166, 158, 0.25);
}
.ocs-cross-sell-nav:disabled, .ocs-cross-sell-nav.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}
.ocs-cross-sell-pagination {
  position: static;
  margin-top: 1rem;
}
.ocs-cross-sell-pagination .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  margin: 0 0.25rem;
  opacity: 1;
  background: rgba(80, 136, 129, 0.25);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.ocs-cross-sell-pagination .swiper-pagination-bullet-active {
  transform: scale(1.2);
  background: #62a69e;
}
.ocs-cross-sell-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border-radius: 0.5rem;
  color: #09100f;
  border: 1px solid #e6e6e6;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
@media (hover: hover) {
  .ocs-cross-sell-card:hover {
    transform: translateY(-4px);
    border-color: rgba(9, 16, 15, 0.12);
    box-shadow: 0 5px 10px rgba(9, 16, 15, 0.14);
  }
  .ocs-cross-sell-card:hover .ocs-cross-sell-card-image img {
    transform: scale(1.04);
  }
}
.ocs-cross-sell-card:focus-visible {
  outline: 2px solid rgba(98, 166, 158, 0.6);
  outline-offset: 4px;
}
.ocs-cross-sell-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}
.ocs-cross-sell-card-image {
  position: relative;
  padding-top: 60%;
  background: #ffffff;
  display: block;
  overflow: hidden;
  margin: 0.5rem;
}
.ocs-cross-sell-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.ocs-cross-sell-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.5rem 1rem;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .ocs-cross-sell-card-content {
    padding: 0.5rem 0.75rem 0.5rem;
  }
}
.ocs-cross-sell-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 1.5rem 0.5rem;
  border-top: 1px solid #f6f6f6;
  background: #ffffff;
}
.ocs-cross-sell-card-producer {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #62a69e;
  text-align: left;
}
.ocs-cross-sell-card-title {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 0.91rem;
  font-weight: 500;
  color: #09100f;
  text-align: left;
}
.ocs-cross-sell-card-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem;
}
.ocs-cross-sell-card-actions {
  display: flex;
  align-items: center;
}
.ocs-cross-sell-card-add {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: none;
  background: #62a69e;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
@media (hover: hover) {
  .ocs-cross-sell-card-add:hover {
    background: #508881;
    box-shadow: 0 3px 5px rgba(45, 76, 72, 0.2);
    transform: translateY(-1px);
  }
}
.ocs-cross-sell-card-add:focus-visible {
  outline: 2px solid rgba(98, 166, 158, 0.45);
  outline-offset: 3px;
}
.ocs-cross-sell-card-add.is-loading {
  opacity: 0.7;
  pointer-events: none;
}
.ocs-cross-sell-card-add.is-loading .ocs-cross-sell-card-add-icon {
  opacity: 0;
}
.ocs-cross-sell-card-add.is-loading::after {
  content: "";
  position: absolute;
  inset: 0.35rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  animation: ocs-cross-sell-spinner 0.6s linear infinite;
}
.ocs-cross-sell-card-add-icon {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.ocs-cross-sell-card-add-icon i {
  font-size: 0.91rem;
}
.ocs-cross-sell-card-add-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.ocs-cross-sell-card-price, .ocs-cross-sell-card-price-new {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  color: #62a69e;
}
@media (min-width: 1024px) {
  .ocs-cross-sell-card-price, .ocs-cross-sell-card-price-new {
    font-size: 1rem;
  }
}
.ocs-cross-sell-card-price-old {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  font-size: 0.91rem;
  color: #c89998;
  text-decoration: line-through;
}
.ocs-cross-sell-tags {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ocs-cross-sell-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-height: 1.5rem;
  padding: 0 0.85rem;
  border-radius: 0.5rem;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  background: #508881;
  color: #ffffff;
}
.ocs-cross-sell-tag--accent, .ocs-cross-sell-tag--sale {
  background: #c89998;
  color: #ffffff;
}
.ocs-cross-sell-tag--new {
  background: #62a69e;
  color: #ffffff;
}

[hidden] {
  display: none !important;
}

@keyframes ocs-cross-sell-spinner {
  to {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 767px) {
  .ocs-cross-sell-card-title {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  .ocs-cross-sell-card-content {
    gap: 0.2rem;
  }
  .ocs-cross-sell-card-footer {
    padding: 0.5rem;
  }
  .ocs-cross-sell-card-add {
    width: 1.5rem;
    height: 1.5rem;
  }
  .ocs-cross-sell-card-add-icon i {
    font-size: 0.91rem;
  }
  .ocs-cross-sell-card-price, .ocs-cross-sell-card-price-new {
    font-size: 0.91rem;
  }
  .ocs-cross-sell-pagination {
    margin-top: 1rem;
  }
  .ocs-cross-sell-pagination .swiper-pagination-bullet {
    width: 0.4rem;
    height: 0.4rem;
  }
  .ocs-cross-sell-navigation {
    display: none;
  }
}
.ocs-product-list-category-name {
  text-align: left;
  padding: 0 1rem 0;
}
.ocs-product-list-category-name .category-name {
  font-weight: 700;
  font-size: 1.602rem;
  text-align: start;
}
.ocs-product-list-box {
  margin-bottom: 3rem;
}
.ocs-product-list-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  row-gap: 2rem;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .ocs-product-list-container {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .ocs-product-list-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ocs-product-list-footer {
  padding: 1rem;
  width: 100%;
}
.ocs-product-list-category-description {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.ocs-product-list-category-description-top {
  max-width: 800px;
  text-align: left;
  padding: 0 1rem 2rem;
  margin: 0;
}
.ocs-product-list-category-description h1,
.ocs-product-list-category-description h2,
.ocs-product-list-category-description h3,
.ocs-product-list-category-description h4 {
  font-size: 1.125rem;
  margin: 1rem 0 0.5rem;
}
.ocs-product-list-category-description p,
.ocs-product-list-category-description span {
  font-weight: 500 !important;
  font-size: 0.8rem;
  line-height: 1.4;
}
.ocs-product-list-paginator-container {
  width: 100%;
}

.ocs-product-list-item {
  height: 100%;
  position: relative;
}
.ocs-product-list-item.is-contain .ocs-product-list-item-image img {
  object-fit: contain;
}
.ocs-product-list-item.highlighted {
  border: 1px solid #bedad7;
  border-radius: 1rem;
  background-color: #fbfdfd;
}
.ocs-product-list-item.highlighted .ocs-product-list-item-info {
  padding-bottom: 0.75rem;
}
.ocs-product-list-item.highlighted .ocs-product-list-item-info-action {
  bottom: 0.75rem;
}
.ocs-product-list-item.highlighted .hit-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #e0a09e;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-weight: bold;
  z-index: 2;
  font-size: 0.8rem;
}
.ocs-product-list-item-tags {
  display: none;
  position: absolute;
  top: 1rem;
  left: 0rem;
  z-index: 1;
  gap: 0.5rem;
}
.ocs-product-list-item-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ocs-product-list-item-image {
  height: 0;
  overflow: hidden;
  position: relative;
  padding-top: 66%;
  border-radius: 1rem;
}
.ocs-product-list-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.ocs-product-list-item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 0.75rem;
  gap: 0.5rem;
  position: relative;
  flex: 1;
}
.ocs-product-list-item-info-producer {
  font-size: 0.8rem;
  color: #81b7b1;
}
.ocs-product-list-item-info-title {
  font-size: 0.91rem;
}
.ocs-product-list-item-info-price {
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 2.5rem;
}
.is-promo .ocs-product-list-item-info-price-new {
  color: #508881;
}
.ocs-product-list-item-info-price-old {
  font-size: 0.8rem;
  color: #ad7c7b;
  text-decoration: line-through;
  display: none;
}
.is-promo .ocs-product-list-item-info-price-old {
  display: block;
}
.ocs-product-list-item-info-action {
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  bottom: 0rem;
  right: 0rem;
  z-index: 1;
  width: fit-content;
}
.ocs-product-list-item-info-action-button {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 1.25rem;
}

.ocs-product-list-filters {
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease-in-out;
}
.ocs-product-list-filters.show {
  opacity: 1;
  visibility: visible;
}

.ocs-product-list-selector {
  margin-bottom: 1rem;
  padding: 1rem;
}
.ocs-product-list-selector-item {
  gap: 0.5rem;
  flex-direction: column;
}

.ocs-product-list-selector-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
}
.ocs-product-list-selector-header i {
  transition: transform 0.3s ease-in-out;
}

.ocs-product-list-selector-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease-in-out;
}
.ocs-product-list-selector-content-inner {
  overflow: hidden;
}

.ocs-product-list-selector-section.open .ocs-product-list-selector-header i {
  transform: rotate(180deg);
}
.ocs-product-list-selector-section.open .ocs-product-list-selector-content {
  grid-template-rows: 1fr;
}

.ocs-product-list-filter-section,
.ocs-product-list-selector-section {
  padding-bottom: 1rem;
}
.ocs-product-list-filter-header,
.ocs-product-list-selector-header {
  font-weight: 700;
  padding-bottom: 0.5rem;
}
.ocs-product-list-filter-items,
.ocs-product-list-selector-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.ocs-product-list-filter-item,
.ocs-product-list-selector-item {
  border: 1px solid #62a69e;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  color: #2d4c48;
}
.ocs-product-list-filter-item:hover,
.ocs-product-list-selector-item:hover {
  background-color: #dcecea;
}
.ocs-product-list-filter-item.active,
.ocs-product-list-selector-item.active {
  background-color: #62a69e;
  border-color: #62a69e;
  color: #fbfdfd;
}
.ocs-product-list-filter-item .badge,
.ocs-product-list-selector-item .badge {
  margin-left: 0.5rem;
  background-color: #dcecea;
  color: #2d4c48;
  border-radius: 1rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
}
.ocs-product-list-filter-item.active .badge,
.ocs-product-list-selector-item.active .badge {
  background-color: #fbfdfd;
  color: #2d4c48;
}
.ocs-product-list-filter-item-avatar,
.ocs-product-list-selector-item-avatar {
  height: 5rem;
  position: relative;
}
.ocs-product-list-filter-item-avatar img,
.ocs-product-list-selector-item-avatar img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.ocs-product-list-filters-box {
  border: 1px solid #dcecea;
  margin-bottom: 2rem;
  border-radius: 1rem;
  max-width: 10rem;
  transition: max-width 0.4s ease-in-out;
}
.ocs-product-list-filters-box-header {
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.ocs-product-list-filters-box-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease-in-out;
}
.ocs-product-list-filters-box-content.open {
  grid-template-rows: 1fr;
}
.ocs-product-list-filters-box-content-inner {
  overflow: hidden;
}
.ocs-product-list-filters-box:has(.ocs-product-list-filters-box-content.open) {
  max-width: 100%;
}

.ocs-desktop-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  color: #4f4f4f;
}
.ocs-desktop-menu__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
.ocs-desktop-menu__item {
  position: relative;
  padding: 0.5rem 0;
}
.ocs-desktop-menu__item:hover .ocs-desktop-menu__dropdown {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ocs-desktop-menu__link {
  text-decoration: none;
  color: #4f4f4f;
  font-weight: 500;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.91rem;
}
.ocs-desktop-menu__link:hover {
  color: #62a69e;
}
.ocs-desktop-menu__link i {
  font-size: 0.8em;
  opacity: 0.6;
}
.ocs-desktop-menu__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: calc(
      260px + 2 * 1rem
    );
  min-height: auto;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: width 0.3s ease, opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, min-height 0.3s ease;
  z-index: 100;
  border: 1px solid #ededed;
  overflow: hidden;
  flex-direction: row;
}
.ocs-desktop-menu__dropdown:has(.ocs-desktop-menu__subitem:hover .ocs-desktop-menu__content-panel) {
  width: 800px;
}
.ocs-desktop-menu__dropdown:has(.ocs-desktop-menu__subitem:hover .ocs-desktop-menu__content-panel) .ocs-desktop-menu__sublist {
  border-right-color: #ededed;
}
.ocs-desktop-menu__sublist {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 260px;
  flex-shrink: 0;
  border-right: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.ocs-desktop-menu__subitem {
  position: static;
}
.ocs-desktop-menu__subitem:hover .ocs-desktop-menu__sublink {
  color: #62a69e;
  background-color: rgba(98, 166, 158, 0.05);
  padding-left: 0.5rem;
}
.ocs-desktop-menu__subitem:hover .ocs-desktop-menu__content-panel {
  opacity: 1;
  visibility: visible;
}
.ocs-desktop-menu__sublink {
  display: block;
  padding: 0.5rem;
  padding-right: 1rem;
  text-decoration: none;
  color: #4f4f4f;
  border-radius: 0.25rem 0 0 0.25rem;
  transition: all 0.2s ease;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.91rem;
}
.ocs-desktop-menu__sublink i {
  font-size: 0.8em;
  opacity: 0.5;
}
.ocs-desktop-menu__content-panel {
  position: absolute;
  left: calc(
      260px + 1rem
    );
  top: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  padding-left: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease 0.1s;
  overflow-y: auto;
  background-color: #fff;
  z-index: 10;
}
.ocs-desktop-menu__content-panel::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  width: 20px;
  background: transparent;
}
.ocs-desktop-menu__content-header {
  font-family: "Fraunces", sans-serif;
  font-size: 16px;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #4f4f4f;
  border-bottom: 1px solid #ededed;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.ocs-desktop-menu__sub-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ocs-desktop-menu__sub-subitem a {
  text-decoration: none;
  color: #4f4f4f;
  font-size: 0.91rem;
  transition: all 0.2s ease;
  display: block;
  padding: 0.25rem 0;
}
.ocs-desktop-menu__sub-subitem a:hover {
  color: #62a69e;
  transform: translateX(5px);
}
.ocs-nav .ocs-desktop-menu {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding-bottom: 4rem;
}
.ocs-nav .ocs-desktop-menu__list {
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.ocs-nav .ocs-desktop-menu__item {
  width: 100%;
  padding: 0;
  border-bottom: 1px solid #ededed;
}
.ocs-nav .ocs-desktop-menu__link {
  padding: 2rem;
  width: 100%;
  justify-content: space-between;
  font-size: 16px;
}
.ocs-nav .ocs-desktop-menu__link:hover {
  color: #4f4f4f;
}
.ocs-nav .ocs-desktop-menu__link i {
  transform: rotate(-90deg);
}
.ocs-nav .ocs-desktop-menu__dropdown {
  position: fixed;
  top: 4rem;
  left: 0;
  width: 100%;
  height: calc(100% - 4rem);
  min-height: 0 !important;
  background: #fff;
  border: none;
  box-shadow: none;
  padding: 0;
  display: block;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  opacity: 1;
  visibility: visible;
  z-index: 1001;
  flex-direction: column;
  overflow-y: auto;
}
.ocs-nav .ocs-desktop-menu__dropdown.active {
  transform: translateX(0);
}
.ocs-nav .ocs-desktop-menu__sublist {
  width: 100%;
  border: none;
  padding: 0;
}
.ocs-nav .ocs-desktop-menu__subitem {
  padding: 0;
  border-bottom: 1px solid #ededed;
}
.ocs-nav .ocs-desktop-menu__subitem:hover .ocs-desktop-menu__sublink {
  background: none;
  color: #4f4f4f;
  padding-left: 2rem;
}
.ocs-nav .ocs-desktop-menu__sublink {
  padding: 2rem;
  font-size: 16px;
}
.ocs-nav .ocs-desktop-menu__sublink:hover {
  color: #4f4f4f;
}
.ocs-nav .ocs-desktop-menu__content-panel {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  opacity: 1;
  visibility: visible;
  z-index: 1002;
  display: block;
}
.ocs-nav .ocs-desktop-menu__content-panel.active {
  transform: translateX(0);
}
.ocs-nav .ocs-desktop-menu__content-panel::before {
  display: none;
}
.ocs-nav .ocs-desktop-menu__content-header {
  display: none;
}
.ocs-nav .ocs-desktop-menu__sub-sublist {
  grid-template-columns: 1fr;
  gap: 0;
}
.ocs-nav .ocs-desktop-menu__sub-subitem {
  border-bottom: 1px solid #ededed;
}
.ocs-nav .ocs-desktop-menu__sub-subitem a {
  padding: 1rem 2rem;
  font-size: 16px;
  color: #4f4f4f;
}
.ocs-nav .ocs-desktop-menu__sub-subitem a:hover {
  transform: none;
  color: #4f4f4f;
}

.ocs-done-page {
  padding: 3rem 1rem !important;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .ocs-done-page {
    padding: 0rem 1rem 1rem !important;
  }
}
.ocs-done-page .ocs-done-container {
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid #e6e6e7; /* standardowa ramka z _variables */
  box-shadow: none; /* usuniecie wielkiego cienia */
  padding: 3rem;
  text-align: center;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.ocs-done-page .ocs-done-container .ocs-done-header {
  margin-bottom: 2rem;
}
.ocs-done-page .ocs-done-container .ocs-done-header h2 {
  font-family: "Fraunces", sans-serif;
  font-size: 2.2rem;
  color: #62a69e;
  font-weight: 700;
  margin: 0;
}
.ocs-done-page .ocs-done-container .ocs-done-header h2:before {
  content: "\f00c";
  font-family: "FontAwesome";
  display: block;
  font-size: 3rem;
  color: #62a69e;
  margin-bottom: 1rem;
}
.ocs-done-page .ocs-done-container .ocs-done-content .ocs-done-message {
  font-size: 1.1rem;
  color: #4f4f4f;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.ocs-done-page .ocs-done-container .ocs-done-content .ocs-done-message p {
  margin-bottom: 1rem;
}
.ocs-done-page .ocs-done-container .ocs-done-content .ocs-done-message form {
  display: flex;
  justify-content: center;
}
.ocs-done-page .ocs-done-container .ocs-done-content .ocs-done-details {
  background: #f9f9f9;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2.5rem;
  text-align: left;
  border: 1px solid #e6e6e7;
}
.ocs-done-page .ocs-done-container .ocs-done-content .ocs-done-details table {
  width: 100%;
  border-collapse: collapse;
}
.ocs-done-page .ocs-done-container .ocs-done-content .ocs-done-details table th,
.ocs-done-page .ocs-done-container .ocs-done-content .ocs-done-details table td {
  padding: 1rem 0;
  border-bottom: 1px solid #e6e6e7;
}
.ocs-done-page .ocs-done-container .ocs-done-content .ocs-done-details table th:last-child,
.ocs-done-page .ocs-done-container .ocs-done-content .ocs-done-details table td:last-child {
  text-align: right;
  font-weight: bold;
}
.ocs-done-page .ocs-done-container .ocs-done-content .ocs-done-details table tr:last-child td,
.ocs-done-page .ocs-done-container .ocs-done-content .ocs-done-details table tr:last-child th {
  border-bottom: none;
}
.ocs-done-page .ocs-done-container .ocs-done-content .ocs-done-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.ocs-done-page .ocs-done-container .ocs-done-content .ocs-done-actions .btn {
  min-width: 200px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  margin: 0 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; /* Nowoczesny odstęp miedzy tekstem podążający za standardem 0.5rem */
}
.ocs-done-page .ocs-done-container .ocs-done-content .ocs-done-actions .btn i {
  margin: 0; /* reset ewentualnego nadpisania */
}
@media screen and (max-width: 767px) {
  .ocs-done-page .ocs-done-container {
    padding: 2rem 1.5rem;
    border-radius: 0.5rem;
  }
  .ocs-done-page .ocs-done-container .ocs-done-header h2 {
    font-size: 1.8rem;
  }
  .ocs-done-page .ocs-done-container .ocs-done-actions .btn {
    width: 100%;
    margin: 0;
  }
  .ocs-done-page .ocs-done-container .ocs-done-details {
    padding: 1.5rem;
  }
}

.ocs-hero {
  padding: 3rem 1rem !important;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .ocs-hero {
    padding: 1rem !important;
  }
}
.ocs-hero-container {
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .ocs-hero-container {
    max-width: 1200px;
  }
}
.ocs-hero-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  overflow: hidden;
  max-height: 70vh;
  display: flex;
  align-items: center;
}
.ocs-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.snackbar-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 10000;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .snackbar-container {
    top: 1rem;
    right: 1rem;
    left: 1rem;
  }
}

.snackbar {
  width: 340px;
  max-width: calc(100vw - 3rem);
  background: #ffffff;
  color: #4f4f4f;
  border-radius: 0.5rem;
  border: 1px solid #ededed;
  border-left: 4px solid #62a69e;
  box-shadow: 0 12px 32px rgba(9, 16, 15, 0.18);
  overflow: hidden;
  transform: translateX(110%);
  opacity: 0;
  pointer-events: auto;
  transition: transform 0.35s ease, opacity 0.35s ease;
  font-family: "Nunito", sans-serif;
}
@media screen and (max-width: 767px) {
  .snackbar {
    width: 100%;
  }
}
.snackbar--active {
  transform: translateX(0);
  opacity: 1;
}
.snackbar--leaving {
  transform: translateX(120%);
  opacity: 0;
}
.snackbar--success {
  border-left-color: #62a69e;
}
.snackbar--error {
  border-left-color: #e3b6b5;
}

.snackbar__body {
  padding: 1rem 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.snackbar__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.snackbar__heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.snackbar__icon {
  flex: 0 0 auto;
  font-size: 1.1rem;
  line-height: 1;
  color: #62a69e;
}
.snackbar--success .snackbar__icon {
  color: #62a69e;
}
.snackbar--error .snackbar__icon {
  color: #e3b6b5;
}

.snackbar__title {
  font-family: "Fraunces", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.snackbar__close {
  flex: 0 0 auto;
  background: transparent;
  border: none;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  color: #4f4f4f;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.snackbar__close:hover {
  opacity: 1;
}

.snackbar__message {
  font-size: 0.8rem;
  line-height: 1.4;
}

.snackbar__product {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f9f9f9;
  border-radius: 0.25rem;
  padding: 0.5rem;
}

.snackbar__product-image {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 0.25rem;
  background: #ffffff;
}

.snackbar__product-name {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
  color: #4f4f4f;
}

.snackbar__footer {
  padding: 0 1rem 1rem;
}

ocs-cross-element .ocs-cross-card .ocs-cross-name {
  font-family: "Nunito";
  font-weight: 600;
}
ocs-cross-element .ocs-cross-card .ocs-cross-price {
  font-family: "Nunito";
  font-weight: 700;
}
ocs-cross-element .ocs-cross-card .ocs-cross-btn {
  background-color: #508881;
  position: relative;
  overflow: visible;
  flex-shrink: 0;
}
ocs-cross-element .ocs-cross-card .ocs-cross-btn .icon-default,
ocs-cross-element .ocs-cross-card .ocs-cross-btn .icon-success {
  font-size: 0.9rem;
}
ocs-cross-element .ocs-cross-card .ocs-cross-btn .ocs-cart-add-stars i {
  font-size: 0.65rem;
}
ocs-cross-element .ocs-cross-swiper .swiper-slide {
  overflow: visible;
}

.ocs-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  cursor: help;
  outline: none;
}
.ocs-tooltip-trigger {
  color: #508881;
  font-size: 0.95em;
  line-height: 1;
  transition: color 0.2s ease;
}
.ocs-tooltip:hover .ocs-tooltip-trigger, .ocs-tooltip:focus-visible .ocs-tooltip-trigger {
  color: #2d4c48;
}
.ocs-tooltip-content {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  left: auto;
  width: max-content;
  max-width: 260px;
  padding: 0.5rem 0.7rem;
  border-radius: 0.25rem;
  background: #2d4c48;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  white-space: normal;
  box-shadow: 0 6px 18px rgba(45, 76, 72, 0.22);
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}
.ocs-tooltip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 8px;
  border: 6px solid transparent;
  border-top-color: #2d4c48;
}
.ocs-tooltip:hover .ocs-tooltip-content, .ocs-tooltip:focus-visible .ocs-tooltip-content, .ocs-tooltip:focus-within .ocs-tooltip-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 325px) {
  .ocs-tooltip-content {
    max-width: 80vw;
  }
}

.ocs-cat-rich {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 3rem;
  color: #09100f;
  text-align: left;
}
.ocs-cat-rich h1,
.ocs-cat-rich h2,
.ocs-cat-rich h3 {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "SOFT" 100, "WONK" 0;
  color: #1b2e2c;
  letter-spacing: -0.01em;
}
.ocs-cat-rich h1 {
  font-size: 1.602rem;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}
.ocs-cat-rich h2 {
  font-size: 1.424rem;
  line-height: 1.2;
  margin: 0 0 1.25rem;
  padding-top: 0.75rem;
  position: relative;
}
.ocs-cat-rich h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 3px;
  border-radius: 2px;
  background: #e3b6b5;
}
.ocs-cat-rich h3 {
  font-size: 1.125rem;
  margin: 0 0 0.75rem;
}
.ocs-cat-rich p {
  font-family: "Nunito", sans-serif;
  font-size: 0.91rem !important;
  font-weight: 400 !important;
  line-height: 1.7;
  margin: 0 0 1rem;
}
.ocs-cat-rich p:last-child {
  margin-bottom: 0;
}
.ocs-cat-rich strong,
.ocs-cat-rich b {
  font-weight: 700 !important;
  color: #1b2e2c;
}
.ocs-cat-rich span {
  font-size: inherit !important;
  font-weight: inherit !important;
}
.ocs-cat-rich a {
  color: #3e6a65;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: #9fc9c4;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.ocs-cat-rich a:hover, .ocs-cat-rich a:focus-visible {
  color: #62a69e;
  text-decoration-color: currentColor;
}
.ocs-cat-rich a:focus-visible {
  outline: 2px solid #62a69e;
  outline-offset: 3px;
  border-radius: 2px;
}
.ocs-cat-rich img {
  display: block;
  max-width: 100%;
  height: auto;
}
.ocs-cat-rich__section {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 1rem 0;
}
.ocs-cat-rich__section--wide {
  max-width: 1200px;
}
.ocs-cat-rich__intro {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 2.5rem;
  padding: 1rem 1rem 0;
}
@media screen and (max-width: 1024px) {
  .ocs-cat-rich__intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.ocs-cat-rich__intro-media {
  border-radius: 1rem;
  overflow: hidden;
  background: #fbfdfd;
}
.ocs-cat-rich__intro-media img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .ocs-cat-rich__intro-media {
    order: -1;
  }
  .ocs-cat-rich__intro-media img {
    aspect-ratio: 16/10;
  }
}
.ocs-cat-rich__lead p:first-of-type {
  font-size: 1rem !important;
  line-height: 1.6;
}
.ocs-cat-rich__more-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.ocs-cat-rich__more {
  position: relative;
  max-height: 34rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .ocs-cat-rich__more {
    max-height: 26rem;
  }
}
.ocs-cat-rich__more::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 11rem;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.92) 60%, #ffffff 100%);
  transition: opacity 0.3s ease;
}
.ocs-cat-rich__more-action {
  display: flex;
  justify-content: center;
  padding: 1.5rem 1rem 0;
}
.ocs-cat-rich__more-btn {
  font-size: 0.91rem;
}
.ocs-cat-rich__more-btn i {
  transition: transform 0.3s ease;
}
.ocs-cat-rich__more-btn-hide {
  display: none;
}
.ocs-cat-rich__more-toggle:checked ~ .ocs-cat-rich__more {
  max-height: none;
}
.ocs-cat-rich__more-toggle:checked ~ .ocs-cat-rich__more::after {
  opacity: 0;
}
.ocs-cat-rich__more-toggle:checked ~ .ocs-cat-rich__more-action .ocs-cat-rich__more-btn-show {
  display: none;
}
.ocs-cat-rich__more-toggle:checked ~ .ocs-cat-rich__more-action .ocs-cat-rich__more-btn-hide {
  display: block;
}
.ocs-cat-rich__more-toggle:checked ~ .ocs-cat-rich__more-action i {
  transform: rotate(180deg);
}
.ocs-cat-rich__more-toggle:focus-visible ~ .ocs-cat-rich__more-action .ocs-cat-rich__more-btn {
  outline: 2px solid #62a69e;
  outline-offset: 3px;
}
.ocs-cat-rich__split {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem 0;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .ocs-cat-rich__split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.ocs-cat-rich__split-media {
  border-radius: 1rem;
  overflow: hidden;
  background: #fbfdfd;
}
.ocs-cat-rich__split-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.ocs-cat-rich__split--reverse .ocs-cat-rich__split-media {
  order: -1;
}
@media screen and (max-width: 1024px) {
  .ocs-cat-rich__split--reverse .ocs-cat-rich__split-media {
    order: 0;
  }
}
.ocs-cat-rich__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 1024px) {
  .ocs-cat-rich__features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .ocs-cat-rich__features {
    grid-template-columns: 1fr;
  }
}
.ocs-cat-rich__features > li {
  position: relative;
  margin: 0;
  padding: 3.75rem 1.25rem 1.25rem;
  border: 1px solid #dcecea;
  border-radius: 1rem;
  background: #fbfdfd;
  font-family: "Nunito", sans-serif;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  line-height: 1.6;
}
.ocs-cat-rich__features > li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  font-size: 1.1rem;
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #ffffff;
  color: #62a69e;
  box-shadow: inset 0 0 0 1px #dcecea;
}
.ocs-cat-rich__features > li:nth-child(1)::before {
  content: "\f5cb";
}
.ocs-cat-rich__features > li:nth-child(2)::before {
  content: "\f6e3";
}
.ocs-cat-rich__features > li:nth-child(3)::before {
  content: "\f7d9";
}
.ocs-cat-rich__features > li:nth-child(4)::before {
  content: "\f3ed";
}
.ocs-cat-rich__features > li:nth-child(5)::before {
  content: "\f21e";
}
.ocs-cat-rich__features > li:nth-child(6)::before {
  content: "\f256";
}
.ocs-cat-rich__features > li strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.91rem;
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "SOFT" 100, "WONK" 0;
}
.ocs-cat-rich__variants {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .ocs-cat-rich__variants {
    grid-template-columns: 1fr;
  }
}
.ocs-cat-rich__variants > li {
  margin: 0;
  padding: 0.75rem 0.75rem 1.25rem;
  border: 1px solid #dcecea;
  border-radius: 1rem;
  background: #ffffff;
  font-family: "Nunito", sans-serif;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  line-height: 1.6;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.ocs-cat-rich__variants > li:hover {
  border-color: #9fc9c4;
  transform: translateY(-2px);
  box-shadow: 0 47px 13px 0 rgba(171, 171, 171, 0), 0 30px 12px 0 rgba(171, 171, 171, 0.01), 0 17px 10px 0 rgba(171, 171, 171, 0.05), 0 7px 7px 0 rgba(171, 171, 171, 0.09), 0 2px 4px 0 rgba(171, 171, 171, 0.1);
}
.ocs-cat-rich__variant-media {
  display: block;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fbfdfd;
}
.ocs-cat-rich__variant-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ocs-cat-rich__variant-media:hover img {
  transform: scale(1.03);
}
.ocs-cat-rich__variant-body {
  padding: 0 0.5rem;
}
.ocs-cat-rich__variant-body > a:first-child {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.91rem;
  text-decoration: none;
}
.ocs-cat-rich__variant-body > a:first-child strong {
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "SOFT" 100, "WONK" 0;
  border-bottom: 2px solid #bedad7;
  transition: border-color 0.2s ease;
}
.ocs-cat-rich__variant-body > a:first-child:hover strong, .ocs-cat-rich__variant-body > a:first-child:focus-visible strong {
  border-color: #62a69e;
}
.ocs-cat-rich__link-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.ocs-cat-rich__link-list > li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.6rem 1.1rem;
  border: 1px solid #bedad7;
  border-radius: 2rem;
  background: #fbfdfd;
  color: #3e6a65;
  font-family: "Nunito", sans-serif;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  line-height: 1.2;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.ocs-cat-rich__link-list > li::after {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  font-size: 0.8em;
  margin-left: 0.2rem;
  transition: transform 0.2s ease;
}
.ocs-cat-rich__link-list > li:hover {
  background: #dcecea;
  border-color: #62a69e;
}
.ocs-cat-rich__link-list > li:hover::after {
  transform: translateX(3px);
}
.ocs-cat-rich__link-list a {
  color: #3e6a65;
  text-decoration: none;
}
.ocs-cat-rich__link-list a:hover, .ocs-cat-rich__link-list a:focus-visible {
  color: #2d4c48;
  text-decoration: underline;
}
.ocs-cat-rich__panel {
  max-width: 860px;
  margin: 3rem auto 0;
  padding: 2rem;
  border-radius: 1rem;
  background: #fcf8f8;
  border: 1px solid #f4e2e1;
}
.ocs-cat-rich__panel h2 {
  margin-top: 0;
  padding-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .ocs-cat-rich__panel {
    margin: 3rem 1rem 0;
    padding: 1.5rem 1.25rem;
  }
}
.ocs-cat-rich__faq {
  max-width: 860px;
  margin: 0 auto;
  padding: 3.5rem 1rem 0;
}
.ocs-cat-rich__faq-item {
  border-top: 1px solid #dcecea;
}
.ocs-cat-rich__faq-item:last-of-type {
  border-bottom: 1px solid #dcecea;
}
.ocs-cat-rich__faq-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  cursor: pointer;
  list-style: none;
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "SOFT" 100, "WONK" 0;
  font-size: 1rem;
  line-height: 1.4;
  color: #1b2e2c;
  transition: color 0.2s ease;
}
.ocs-cat-rich__faq-item > summary::-webkit-details-marker {
  display: none;
}
.ocs-cat-rich__faq-item > summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  font-size: 0.85rem;
  flex: 0 0 auto;
  color: #62a69e;
  transition: transform 0.35s ease-in-out;
}
.ocs-cat-rich__faq-item > summary:hover {
  color: #62a69e;
}
.ocs-cat-rich__faq-item > summary:focus-visible {
  outline: 2px solid #62a69e;
  outline-offset: 2px;
  border-radius: 4px;
}
.ocs-cat-rich__faq-item[open] > summary::after {
  transform: rotate(180deg);
}
.ocs-cat-rich__faq-item-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.74, 0, 0.23, 1);
}
.ocs-cat-rich__faq-item-content > div {
  overflow: hidden;
}
.ocs-cat-rich__faq-item-content p {
  margin: 0;
  padding-bottom: 1.25rem;
  color: #505050;
}
.ocs-cat-rich__faq-item[open] .ocs-cat-rich__faq-item-content {
  grid-template-rows: 1fr;
}
@supports selector(::details-content) {
  .ocs-cat-rich__faq-item::details-content {
    transition: content-visibility 0.35s allow-discrete;
  }
}

.ocs-product-list-category-description:has(.ocs-cat-rich),
.categorydesc:has(.ocs-cat-rich) {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.maluchove-banner-23 {
  width: 100%;
}
.maluchove-banner-23 img {
  width: fit-content;
}

@media screen and (max-width: 767px) {
  .top {
    margin: 0;
  }
}
#maluchove-box-kim-jestesmy {
  padding: 3rem 0;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  #maluchove-box-kim-jestesmy {
    padding: 3rem 1rem;
  }
}
#maluchove-box-kim-jestesmy:before {
  content: "";
  position: absolute;
  width: 10vw;
  height: 10vw;
  background: url("../user/ptak.svg") no-repeat;
  background-size: contain;
  bottom: 0;
  left: 3vw;
}
#maluchove-box-kim-jestesmy:after {
  content: "";
  position: absolute;
  width: 10vw;
  height: 20vw;
  background: url("../user/los.svg") no-repeat;
  background-size: contain;
  top: 0;
  right: 3vw;
}
#maluchove-box-kim-jestesmy h2 {
  font-size: 2rem;
}
#maluchove-box-kim-jestesmy p {
  font-size: 1.2rem;
  line-height: 1.5;
  position: relative;
  display: block;
}
@media screen and (max-width: 767px) {
  #maluchove-box-kim-jestesmy h2 {
    font-size: 1.4rem;
  }
  #maluchove-box-kim-jestesmy p {
    font-size: 1rem;
  }
}

.shop_basket_done .logo-bar,
.shop_basket_finished .logo-bar {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
}
.shop_basket_done .logo-bar .link-logo img,
.shop_basket_finished .logo-bar .link-logo img {
  max-width: 220px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .shop_basket_done .logo-bar .link-logo img,
.shop_basket_finished .logo-bar .link-logo img {
    max-width: 140px;
  }
}

@media screen and (max-width: 768px) {
  .ocs-done-page .ocs-done-header h2 {
    font-size: 1.4rem;
  }
  .ocs-done-page .ocs-done-message h4,
.ocs-done-page .ocs-done-message .paystatus {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .ocs-done-page .ocs-done-message p {
    font-size: 0.8rem;
  }
}

.ocs-done-container {
  box-sizing: border-box;
  width: 100%;
}

.ocs-order-next-step {
  margin-top: 2rem;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #4f4f4f;
}
@media screen and (max-width: 768px) {
  .ocs-order-next-step {
    font-size: 0.8rem;
    margin-top: 1rem;
  }
}

.ocs-survey-section {
  background-color: rgba(233, 196, 106, 0.15); /* Delikatne pastelowe tło pasujące do 💛 */
  padding: 2.5rem 2rem;
  margin: 3rem 0 1rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(233, 196, 106, 0.4);
}
.ocs-survey-section h3 {
  margin-bottom: 1rem;
  color: #4f4f4f;
  font-size: 1.4rem;
  font-family: "Fraunces", sans-serif;
}
.ocs-survey-section p {
  margin-bottom: 1.5rem;
  color: #4f4f4f;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.ocs-survey-section .btn {
  margin-top: 1rem;
  margin-inline: auto;
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
}
@media screen and (max-width: 768px) {
  .ocs-survey-section {
    padding: 1.5rem 1rem;
    margin-top: 2rem;
  }
  .ocs-survey-section h3 {
    font-size: 1.1rem;
  }
  .ocs-survey-section p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  .ocs-survey-section .btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
  }
}