/**
 * YUI 3.5.0 - reset.css (http://developer.yahoo.com/yui/3/cssreset/)
 * https://cssdeck.com/blog/
 * Copyright 2012 Yahoo! Inc. All rights reserved.
 * http://yuilibrary.com/license/
 */
/*
	TODO will need to remove settings on HTML since we can't namespace it.
	TODO with the prefix, should I group by selector or property for weight savings?
*/
html {
  color: #000;
  background: #FFF;
}

/*
	TODO remove settings on BODY since we can't namespace it.
*/
/*
	TODO test putting a class on HEAD.
		- Fails on FF.
*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

/*
	TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

/* to preserve line-height and selector appearance */
sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/*to enable resizing for IE*/
input,
textarea,
select {
  font-size: 100%;
}

/*because legend doesn't inherit in IE */
legend {
  color: #000;
}

/* YUI CSS Detection Stamp */
#yui3-css-stamp.cssreset {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
}
.popup-container > .popup-wrapper {
  padding: 20px;
  margin: auto;
}
.popup-container .popup-content {
  background: white;
  padding: 20px;
}

body.placeholder-theme {
  font-family: Arial, Helvetica, sans-serif;
}
body.placeholder-theme header {
  background: #eee;
  display: flex;
  padding: 10px;
  justify-content: space-between;
}
body.placeholder-theme header > div {
  display: flex;
  gap: 20px;
}
body.placeholder-theme .cart-widget span {
  color: red;
}
body.placeholder-theme .user-widget a {
  margin-left: 10px;
  display: inline-block;
}
body.placeholder-theme .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
}
body.placeholder-theme .container .text-content p {
  margin: 1em 0;
}
body.placeholder-theme .container .text-content h1 {
  font-size: 2em;
  margin: 1em 0 0.5em;
}
body.placeholder-theme .container .text-content h2 {
  font-size: 1.5em;
  margin: 1em 0 0.5em;
}
body.placeholder-theme .container .text-content h3 {
  font-size: 1.3em;
  margin: 1em 0 0.5em;
}
body.placeholder-theme .container .text-content h4 {
  font-size: 1.2em;
  margin: 1em 0 0.5em;
}
body.placeholder-theme footer {
  background: #eee;
  display: flex;
  padding: 10px;
}
body.placeholder-theme .product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body.placeholder-theme .product-list > aside {
  width: 200px;
}
body.placeholder-theme .product-list > .products-head {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  gap: 10px;
}
body.placeholder-theme .product-list > .products-head > form, body.placeholder-theme .product-list > .products-head > form > div, body.placeholder-theme .product-list > .products-head > form > div > ul {
  display: flex;
  gap: 10px;
}
body.placeholder-theme .product-list > ul {
  display: flex;
  gap: 10px;
  width: 0;
  flex-grow: 1;
}
body.placeholder-theme .product-list > ul > li {
  max-width: 50%;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
body.placeholder-theme .product-list > ul > li .itemprop {
  width: 100%;
}
body.placeholder-theme .product-list > ul > li .wlink {
  text-indent: -1000px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
body.placeholder-theme .pager {
  margin-top: 10px;
  border: 1px solid #eee;
  display: flex;
  justify-content: center;
  gap: 10px;
}
body.placeholder-theme .pager > ul {
  display: flex;
  gap: 10px;
}
body.placeholder-theme .single-product > div .container {
  display: flex;
  gap: 10px;
}
body.placeholder-theme .single-product > div .prodimg {
  width: 480px;
}
body.placeholder-theme .single-product > div .prodimg .main img {
  width: 480px;
  height: 360px;
  max-width: 100%;
  max-height: 70vw;
  -o-object-fit: contain;
     object-fit: contain;
}
body.placeholder-theme .single-product > div .prodimg .list {
  display: flex;
  gap: 10px;
}
body.placeholder-theme .single-product > div .prodimg .list li {
  max-width: calc(50% - 10px);
}
body.placeholder-theme .single-product > div .prodimg .list img {
  width: 240px;
  height: 180px;
  max-width: 100%;
  max-height: 35vw;
  -o-object-fit: cover;
     object-fit: cover;
}
body.placeholder-theme .single-product > div .prodmain {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.placeholder-theme .single-product > div .prodmain .variant-selector li.selected {
  font-weight: bold;
}
body.placeholder-theme .single-product > div .prodmain .soc-share ul {
  display: flex;
  gap: 10px;
}
body.placeholder-theme .button {
  display: inline-block;
  color: white;
  background: #48c;
  padding: 10px;
  margin: 4px;
  border: 0px none;
}
body.placeholder-theme .button:disabled {
  opacity: 0.5;
}
body.placeholder-theme .cart-page-block .cart-container > form h2, body.placeholder-theme .profile-page-block .cart-container > form h2 {
  font-weight: bold;
}
body.placeholder-theme .cart-page-block .profile-split, body.placeholder-theme .cart-page-block .customer-split, body.placeholder-theme .cart-page-block .cart-split, body.placeholder-theme .profile-page-block .profile-split, body.placeholder-theme .profile-page-block .customer-split, body.placeholder-theme .profile-page-block .cart-split {
  display: flex;
  gap: 10px;
}
body.placeholder-theme .cart-page-block .profile-split h4, body.placeholder-theme .cart-page-block .profile-split h5, body.placeholder-theme .cart-page-block .customer-split h4, body.placeholder-theme .cart-page-block .customer-split h5, body.placeholder-theme .cart-page-block .cart-split h4, body.placeholder-theme .cart-page-block .cart-split h5, body.placeholder-theme .profile-page-block .profile-split h4, body.placeholder-theme .profile-page-block .profile-split h5, body.placeholder-theme .profile-page-block .customer-split h4, body.placeholder-theme .profile-page-block .customer-split h5, body.placeholder-theme .profile-page-block .cart-split h4, body.placeholder-theme .profile-page-block .cart-split h5 {
  font-weight: bold;
  margin: 2px 0;
}
body.placeholder-theme .cart-page-block .cart-list, body.placeholder-theme .profile-page-block .cart-list {
  width: 0;
  flex-grow: 1;
}
body.placeholder-theme .cart-page-block .cart-list .pl-items, body.placeholder-theme .profile-page-block .cart-list .pl-items {
  margin-bottom: 10px;
}
body.placeholder-theme .cart-page-block .cart-list .pl-items > li, body.placeholder-theme .profile-page-block .cart-list .pl-items > li {
  position: relative;
  display: flex;
  min-height: 130px;
  align-items: center;
  gap: 10px;
}
body.placeholder-theme .cart-page-block .cart-list .pl-items > li.head, body.placeholder-theme .profile-page-block .cart-list .pl-items > li.head {
  min-height: 30px;
}
body.placeholder-theme .cart-page-block .cart-list .pl-items > li .detail, body.placeholder-theme .profile-page-block .cart-list .pl-items > li .detail {
  flex-grow: 1;
  display: flex;
  padding: 4px 0;
}
body.placeholder-theme .cart-page-block .cart-list .pl-items > li .detail > h3, body.placeholder-theme .cart-page-block .cart-list .pl-items > li .detail > span, body.placeholder-theme .cart-page-block .cart-list .pl-items > li .detail > div, body.placeholder-theme .profile-page-block .cart-list .pl-items > li .detail > h3, body.placeholder-theme .profile-page-block .cart-list .pl-items > li .detail > span, body.placeholder-theme .profile-page-block .cart-list .pl-items > li .detail > div {
  display: block;
  width: 0;
  flex-grow: 1;
}
body.placeholder-theme .cart-page-block .cart-list .pl-items > li .detail > h3 input, body.placeholder-theme .cart-page-block .cart-list .pl-items > li .detail > span input, body.placeholder-theme .cart-page-block .cart-list .pl-items > li .detail > div input, body.placeholder-theme .profile-page-block .cart-list .pl-items > li .detail > h3 input, body.placeholder-theme .profile-page-block .cart-list .pl-items > li .detail > span input, body.placeholder-theme .profile-page-block .cart-list .pl-items > li .detail > div input {
  box-sizing: border-box;
  width: 60px;
}
body.placeholder-theme .cart-page-block .cart-list .pl-items > li .detail .prodprice, body.placeholder-theme .profile-page-block .cart-list .pl-items > li .detail .prodprice {
  text-decoration: line-through;
}
body.placeholder-theme .cart-page-block .cart-list .pl-items > li .img, body.placeholder-theme .profile-page-block .cart-list .pl-items > li .img {
  width: 128px;
  flex-shrink: 0;
}
body.placeholder-theme .cart-page-block .cart-list .pl-items > li .img img, body.placeholder-theme .profile-page-block .cart-list .pl-items > li .img img {
  display: block;
  width: 128px;
  height: 96px;
  -o-object-fit: contain;
     object-fit: contain;
}
body.placeholder-theme .cart-page-block .cart-summary, body.placeholder-theme .profile-page-block .cart-summary {
  width: 200px;
}
body.placeholder-theme .cart-page-block .customer-info, body.placeholder-theme .cart-page-block .customer-summary, body.placeholder-theme .profile-page-block .customer-info, body.placeholder-theme .profile-page-block .customer-summary {
  flex-grow: 1;
}
body.placeholder-theme .cart-page-block .customer-info input + label, body.placeholder-theme .cart-page-block .customer-summary input + label, body.placeholder-theme .profile-page-block .customer-info input + label, body.placeholder-theme .profile-page-block .customer-summary input + label {
  margin-left: 8px;
}
body.placeholder-theme .cart-page-block .customer-info .ci-methods, body.placeholder-theme .cart-page-block .customer-summary .ci-methods, body.placeholder-theme .profile-page-block .customer-info .ci-methods, body.placeholder-theme .profile-page-block .customer-summary .ci-methods {
  margin: 5px 0;
}
body.placeholder-theme .cif-row > div, body.placeholder-theme .pf-row {
  display: flex;
  align-items: center;
  margin: 2px 0;
}
body.placeholder-theme .cif-row > div label:first-of-type, body.placeholder-theme .pf-row label:first-of-type {
  width: 200px;
  white-space: nowrap;
}
body.placeholder-theme .cif-row > div label + *, body.placeholder-theme .pf-row label + * {
  flex-grow: 1;
}
body.placeholder-theme .order-summary h2, body.placeholder-theme .order-summary h3 {
  font-weight: bold;
  margin: 1em 0 0.3333em;
}
body.placeholder-theme .order-summary .order-contents {
  margin: 20px 0;
  border: 1px solid #eee;
  border-collapse: collapse;
}
body.placeholder-theme .order-summary .order-contents td, body.placeholder-theme .order-summary .order-contents th {
  padding: 2px 4px;
  border: 1px solid #eee;
  border-collapse: collapse;
}
body.placeholder-theme .order-summary .order-contents td {
  text-align: right;
}
body.placeholder-theme .order-summary .order-contents td:first-child {
  text-align: left;
}
body.placeholder-theme .order-summary .cardt label, body.placeholder-theme .order-summary .addresses label {
  display: inline-block;
  width: 200px;
  text-align: right;
  padding-right: 8px;
}
body.placeholder-theme .order-summary .note {
  margin: 1em 0;
}

.betterprice-action .button {
  background: #0e7b86;
  padding: 10px;
  border: 0px none;
  cursor: pointer;
  color: white;
  padding-left: 20px;
  padding-right: 20px;
}

.search-widget {
  position: relative;
}

.search-products-widget {
  position: absolute;
  background: white;
  top: 100%;
  left: 0;
  width: calc(100% - 10px);
  color: black;
  z-index: 1000;
}
.search-products-widget .pl-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-wrap: wrap;
}
.search-products-widget .pl-items > li {
  width: calc(25% - 18px);
  border-radius: 6px;
  background: #ffffff;
  position: relative;
  padding: 12px 16px;
  box-sizing: border-box;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  min-height: 310px;
}
@media only screen and (max-width: 780px) {
  .search-products-widget .pl-items > li {
    width: calc(50% - 10px);
    width: 100%;
  }
}
.search-products-widget .pl-items > li .itemprop span {
  display: block;
  position: absolute;
  overflow: hidden;
  width: 46px;
  height: 46px;
  overflow: hidden;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.search-products-widget .pl-items > li .itemprop span > em {
  display: block;
  position: absolute;
  bottom: 50%;
  left: -20px;
  right: -20px;
  text-align: center;
  padding-bottom: 1px;
  padding-top: 40px;
  transform-origin: 50% 100%;
}
.search-products-widget .pl-items > li .itemprop span.new {
  top: -4px;
  left: -4px;
  border-radius: 6px 0 0 0;
}
.search-products-widget .pl-items > li .itemprop span.new > em {
  transform: rotate(-45deg);
  background: #54c154;
}
.search-products-widget .pl-items > li .itemprop span.discount {
  top: -4px;
  right: -4px;
  border-radius: 0 6px 0 0;
}
.search-products-widget .pl-items > li .itemprop span.discount > em {
  transform: rotate(45deg);
  background: #e00808;
}
.search-products-widget .pl-items > li .detail {
  padding: 4px 0;
}
.search-products-widget .pl-items > li .detail h3 {
  color: #427ea4;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.search-products-widget .pl-items > li .detail span {
  display: block;
}
.search-products-widget .pl-items > li .detail .prodprice {
  color: #646565;
  font-size: 14px;
  text-decoration: line-through;
}
.search-products-widget .pl-items > li .detail .saleprice {
  color: #e00808;
  font-size: 18px;
  font-weight: 600;
  padding: 3px 0;
}
.search-products-widget .pl-items > li .detail .details {
  color: #427ea4;
  margin-top: 4px;
  display: inline-block;
}
.search-products-widget .pl-items > li .detail .intro {
  display: none;
  color: #727272;
  font-size: 12px;
  line-height: 18px;
  margin: 8px 0;
}
.search-products-widget .pl-items > li .img img {
  display: block;
  width: 100%;
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
}
.search-products-widget .pl-items > li .addtocart {
  background-color: #54c154;
  border-radius: 5px;
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  overflow: hidden;
  text-indent: -10000px;
  z-index: 2;
  transition: 0.3s;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url("../../plugins/sportwelt/public/img/addtocart.svg");
}
.search-products-widget .pl-items > li .addtocart:hover {
  background-color: #04a478;
}
.search-products-widget .pl-items > li .wlink {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-indent: -10000px;
}
.search-products-widget .pl-items.empf > li:first-of-type {
  width: calc(50% - 12px);
  flex-direction: row;
  align-items: center;
}
.search-products-widget .pl-items.empf > li:first-of-type .img {
  width: 55%;
  margin-right: 24px;
  flex-shrink: 0;
}
.search-products-widget .pl-items.empf > li:first-of-type .img img {
  height: 250px;
}
.search-products-widget .pl-items.empf > li:first-of-type .detail .intro {
  display: block;
}
@media only screen and (max-width: 780px) {
  .search-products-widget .pl-items.empf > li:first-of-type {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .search-products-widget .pl-items.empf > li:first-of-type .img {
    width: 100%;
    margin-right: 0;
  }
  .search-products-widget .pl-items.empf > li:first-of-type .img img {
    height: 160px;
  }
  .search-products-widget .pl-items.empf > li:first-of-type .detail .intro {
    display: none;
  }
}

/*
Edited YUI CSS Reset

Copyright (c) 2011, Yahoo! Inc. All rights reserved. Code licensed under the BSD License: http://developer.yahoo.com/yui/license.html, version: 2.9.0
*/
html {
  color: #000;
  background: #FFF;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, select, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, button, caption, cite, code, dfn, em, input, optgroup, option, select, strong, textarea, th, var {
  font: inherit;
}

del, ins {
  text-decoration: none;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: baseline;
}

sub {
  vertical-align: baseline;
}

legend {
  color: #000;
}

a {
  color: inherit;
  text-decoration: none;
}

header, footer, section, nav {
  display: block;
}

@font-face {
  font-family: "Inter";
  font-weight: 100;
  src: url("../../plugins/sportwelt/public/fonts/Inter-Thin.eot"); /* IE9 Compat Modes */
  src: url("../../plugins/sportwelt/public/fonts/Inter-Thin.eot?#iefix") format("embedded-opentype"), url("../../plugins/sportwelt/public/fonts/Inter-Thin.woff") format("woff"), url("../../plugins/sportwelt/public/fonts/Inter-Thin.ttf") format("truetype"), url("../../plugins/sportwelt/public/fonts/Inter-Thin.svg#svgFontName") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Inter";
  font-weight: 200;
  src: url("../../plugins/sportwelt/public/fonts/Inter-ExtraLight.eot"); /* IE9 Compat Modes */
  src: url("../../plugins/sportwelt/public/fonts/Inter-ExtraLight.eot?#iefix") format("embedded-opentype"), url("../../plugins/sportwelt/public/fonts/Inter-ExtraLight.woff") format("woff"), url("../../plugins/sportwelt/public/fonts/Inter-ExtraLight.ttf") format("truetype"), url("../../plugins/sportwelt/public/fonts/Inter-ExtraLight.svg#svgFontName") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Inter";
  font-weight: 300;
  src: url("../../plugins/sportwelt/public/fonts/Inter-Light.eot"); /* IE9 Compat Modes */
  src: url("../../plugins/sportwelt/public/fonts/Inter-Light.eot?#iefix") format("embedded-opentype"), url("../../plugins/sportwelt/public/fonts/Inter-Light.woff") format("woff"), url("../../plugins/sportwelt/public/fonts/Inter-Light.ttf") format("truetype"), url("../../plugins/sportwelt/public/fonts/Inter-Light.svg#svgFontName") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Inter";
  font-weight: 400;
  src: url("../../plugins/sportwelt/public/fonts/Inter-Regular.eot"); /* IE9 Compat Modes */
  src: url("../../plugins/sportwelt/public/fonts/Inter-Regular.eot?#iefix") format("embedded-opentype"), url("../../plugins/sportwelt/public/fonts/Inter-Regular.woff") format("woff"), url("../../plugins/sportwelt/public/fonts/Inter-Regular.ttf") format("truetype"), url("../../plugins/sportwelt/public/fonts/Inter-Regular.svg#svgFontName") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Inter";
  font-weight: 500;
  src: url("../../plugins/sportwelt/public/fonts/Inter-Medium.eot"); /* IE9 Compat Modes */
  src: url("../../plugins/sportwelt/public/fonts/Inter-Medium.eot?#iefix") format("embedded-opentype"), url("../../plugins/sportwelt/public/fonts/Inter-Medium.woff") format("woff"), url("../../plugins/sportwelt/public/fonts/Inter-Medium.ttf") format("truetype"), url("../../plugins/sportwelt/public/fonts/Inter-Medium.svg#svgFontName") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Inter";
  font-weight: 600;
  src: url("../../plugins/sportwelt/public/fonts/Inter-SemiBold.eot"); /* IE9 Compat Modes */
  src: url("../../plugins/sportwelt/public/fonts/Inter-SemiBold.eot?#iefix") format("embedded-opentype"), url("../../plugins/sportwelt/public/fonts/Inter-SemiBold.woff") format("woff"), url("../../plugins/sportwelt/public/fonts/Inter-SemiBold.ttf") format("truetype"), url("../../plugins/sportwelt/public/fonts/Inter-SemiBold.svg#svgFontName") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Inter";
  font-weight: 700;
  src: url("../../plugins/sportwelt/public/fonts/Inter-Bold.eot"); /* IE9 Compat Modes */
  src: url("../../plugins/sportwelt/public/fonts/Inter-Bold.eot?#iefix") format("embedded-opentype"), url("../../plugins/sportwelt/public/fonts/Inter-Bold.woff") format("woff"), url("../../plugins/sportwelt/public/fonts/Inter-Bold.ttf") format("truetype"), url("../../plugins/sportwelt/public/fonts/Inter-Bold.svg#svgFontName") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Inter";
  font-weight: 800;
  src: url("../../plugins/sportwelt/public/fonts/Inter-ExtraBold.eot"); /* IE9 Compat Modes */
  src: url("../../plugins/sportwelt/public/fonts/Inter-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../../plugins/sportwelt/public/fonts/Inter-ExtraBold.woff") format("woff"), url("../../plugins/sportwelt/public/fonts/Inter-ExtraBold.ttf") format("truetype"), url("../../plugins/sportwelt/public/fonts/Inter-ExtraBold.svg#svgFontName") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "Inter";
  font-weight: 900;
  src: url("../../plugins/sportwelt/public/fonts/Inter-Black.eot"); /* IE9 Compat Modes */
  src: url("../../plugins/sportwelt/public/fonts/Inter-Black.eot?#iefix") format("embedded-opentype"), url("../../plugins/sportwelt/public/fonts/Inter-Black.woff") format("woff"), url("../../plugins/sportwelt/public/fonts/Inter-Black.ttf") format("truetype"), url("../../plugins/sportwelt/public/fonts/Inter-Black.svg#svgFontName") format("svg"); /* Legacy iOS */
}
html, body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #000000;
  background: #ebebeb;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}

header {
  background: #262938;
  color: #ffffff;
  margin-bottom: 48px;
  position: relative;
}
header::before {
  content: "";
  position: absolute;
  background: #ebebeb;
  height: 20px;
  left: 0;
  right: 0;
  bottom: 0;
}
header .main {
  display: flex;
  padding: 10px 0;
  align-items: center;
  gap: 12px;
}
header .logo a {
  display: block;
  height: 42px;
  width: 100px;
  margin-top: 4px;
  margin-bottom: 4px;
  overflow: hidden;
  text-indent: -10000px;
  background: url("../../plugins/sportwelt/public/img/logo.svg") no-repeat 0% 50%/contain;
}
header .soclist {
  display: flex;
  gap: 4px;
}
@media only screen and (max-width: 780px) {
  header .soclist {
    display: none;
  }
}
header .soclist li > a {
  overflow: hidden;
  text-indent: -10000px;
  display: block;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  width: 30px;
  height: 30px;
}
header .soclist li.fb a {
  background-image: url("../../plugins/sportwelt/public/img/soc-fb.svg");
}
header .soclist li.ig a {
  background-image: url("../../plugins/sportwelt/public/img/soc-ig.svg");
}
header .soclist li.yt a {
  background-image: url("../../plugins/sportwelt/public/img/soc-yt.svg");
}
header .tools {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 14px;
}
@media only screen and (max-width: 780px) {
  header .tools {
    gap: 8px;
  }
}
header .search {
  display: flex;
  position: relative;
  margin-right: 10px;
}
@media only screen and (max-width: 780px) {
  header .search {
    margin: 0 10px 12px 10px;
  }
}
header .search input, header .search button {
  border: 0;
  -webkit-apperance: none;
  outline: none;
  background: #f2f5f8;
  color: #3d404d;
  height: 30px;
  display: block;
}
header .search input {
  padding: 0 10px;
  border-radius: 15px 0 0 15px;
  width: 244px;
  box-sizing: border-box;
}
@media only screen and (max-width: 780px) {
  header .search input {
    width: 100%;
  }
}
header .search button {
  overflow: hidden;
  text-indent: -10000px;
  width: 36px;
  border-radius: 0 15px 15px 0;
  cursor: pointer;
  background: #f2f5f8 url("../../plugins/sportwelt/public/img/search.svg") no-repeat 50% 50%;
  background-size: 16px;
}
header .search::after {
  content: "";
  position: absolute;
  right: 36px;
  height: 20px;
  width: 1px;
  background: #727272;
  top: calc(50% - 10px);
}
@media only screen and (max-width: 780px) {
  header .tools .search {
    display: none;
  }
  header .tools > a {
    display: none; /*TODO*/
  }
}
header .mobile-search {
  display: none;
}
@media only screen and (max-width: 780px) {
  header .mobile-search {
    display: block;
  }
}
header .cart > a, header .user > a {
  padding-left: 36px;
  background-size: 25px;
  background-repeat: 0;
  background-position: 0% 50%;
  background-repeat: no-repeat;
  display: block;
}
@media only screen and (max-width: 780px) {
  header .cart > a, header .user > a {
    font-size: 1px;
    color: transparent;
    height: 24px;
    background-position: 50% 50%;
  }
}
header .cart, header .user {
  display: flex;
  gap: 12px;
}
header .cart > a {
  background-image: url("../../plugins/sportwelt/public/img/cart.svg");
  position: relative;
}
header .cart > a span {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #e00808;
  bottom: -6px;
  left: 16px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  line-height: 16px;
  border-radius: 50%;
}
@media only screen and (max-width: 780px) {
  header .cart > a span {
    color: #ffffff;
  }
}
header .mobtoggle {
  display: none;
}
@media only screen and (max-width: 780px) {
  header .mobtoggle {
    display: block;
    width: 30px;
    height: 30px;
    margin-left: auto;
    position: relative;
  }
  header .mobtoggle::before, header .mobtoggle::after, header .mobtoggle span {
    opacity: 1;
    content: "";
    display: block;
    position: absolute;
    height: 3px;
    border-radius: 2px;
    background: #f2f5f8;
    left: 4px;
    right: 4px;
    top: calc(50% - 1px);
    transform-origin: 50% 50%;
    transition: 0.3s;
  }
  header .mobtoggle::before {
    transform: translateY(-6px);
  }
  header .mobtoggle::after {
    transform: translateY(6px);
  }
}
header .user > a {
  background-image: url("../../plugins/sportwelt/public/img/user.svg");
}
header .user > a.logout {
  background-image: url("../../plugins/sportwelt/public/img/ico-exit.svg");
}
header .userpop {
  display: none;
}
header nav {
  display: flex;
  background: linear-gradient(to right, #04a478, #0e7b86);
  height: 48px;
  box-sizing: border-box;
  margin-bottom: -24px;
  align-items: center;
  border-radius: 24px;
  padding: 0 16px;
  position: relative;
}
@media only screen and (max-width: 780px) {
  header nav {
    padding: 0 10px;
  }
}
header .navtoggle {
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 18px;
  background: #f2f5f8;
  color: #3d404d;
  text-transform: uppercase;
  font-weight: 600;
  width: 200px;
  box-sizing: border-box;
  border-radius: 15px;
  max-width: 200px;
  flex-grow: 1;
}
header .navtoggle::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("../../plugins/sportwelt/public/img/ddown.svg") no-repeat 50% 50%/contain;
  margin-left: auto;
  margin-right: -8px;
}
header .active .mobtoggle::before {
  transform: rotate(45deg);
}
header .active .mobtoggle::after {
  transform: rotate(-45deg);
}
header .active .mobtoggle span {
  opacity: 0;
}
header .emphcat {
  display: flex;
  gap: 24px;
  margin-left: 24px;
}
header .secnav {
  display: flex;
  margin-left: auto;
  gap: 24px;
}
.homeintro {
  min-height: 480px;
  background: linear-gradient(to bottom, #262938, #262625);
  background: transparent;
  margin-top: 0px; /*TODO TEST*/
}
@media only screen and (max-width: 780px) {
  .homeintro {
    min-height: 620px;
  }
}

.gap {
  height: 32px;
}
@media only screen and (max-width: 780px) {
  .gap {
    height: 22px;
  }
}

.navmain {
  position: relative;
}
.navmain .navmainbox {
  display: none; /*TODO*/
  position: absolute;
  color: #3d404d;
  top: 100%;
  background: #ffffff;
  border: 2px solid #f2f5f8;
  border-radius: 12px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  width: 600px;
  height: 400px;
  box-sizing: border-box;
  padding: 8px 16px;
}
.navmain .navmainbox .close {
  display: none;
}
.navmain .navmainbox > ul > li {
  width: 176px;
  box-sizing: border-box;
  border-bottom: 1px solid #ebebeb;
}
@media only screen and (max-width: 780px) {
  .navmain .navmainbox > ul > li {
    width: 120px;
  }
}
.navmain .navmainbox > ul > li > a {
  font-weight: 600;
  display: block;
  padding: 12px 0;
}
.navmain .navmainbox > ul > li > ul {
  position: absolute;
  top: 8px;
  left: 200px;
  max-height: 384px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 378px;
  visibility: hidden;
}
@media only screen and (max-width: 780px) {
  .navmain .navmainbox > ul > li > ul {
    max-height: calc(100vh - 40px);
    width: calc(100% - 160px);
    left: 150px;
  }
}
.navmain .navmainbox > ul > li > ul > li {
  margin-bottom: 8px;
}
.navmain .navmainbox > ul > li > ul > li:last-of-type {
  margin-bottom: 0;
}
.navmain .navmainbox > ul > li > ul > li > a {
  font-weight: 500;
  display: block;
  padding: 6px;
  padding-right: 0;
  padding-left: 12px;
  border-left: 2px solid #54c154;
}
.navmain .navmainbox > ul > li > ul > li > a:hover {
  background: linear-gradient(to right, #ebebeb, transparent);
}
.navmain .navmainbox > ul > li > ul > li > ul > li > a {
  padding: 4px;
  padding-right: 0;
  padding-left: 24px;
  display: block;
  border-left: 2px solid #ebebeb;
}
.navmain .navmainbox > ul > li > ul > li > ul > li > a:hover {
  background: linear-gradient(to right, #ebebeb, transparent);
}
.navmain .navmainbox > ul > li.active {
  background: linear-gradient(to right, transparent, #ebebeb);
}
.navmain .navmainbox > ul > li.active > ul {
  visibility: visible;
}
@media only screen and (max-width: 780px) {
  .navmain .navmainbox {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 10px;
    height: auto;
    border-radius: 0;
    box-sizing: border-box;
    width: calc(100% - 10px);
  }
  .navmain .navmainbox .close {
    display: block;
    position: absolute;
    z-index: 5;
    top: 16px;
    right: 16px;
    color: #e00808;
    font-size: 24px;
    font-weight: 500;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 20px;
    box-sizing: border-box;
    border: 1px solid #e00808;
    border-radius: 12px;
  }
}

header nav .mainsecnav {
  flex-grow: 1;
  display: flex;
}
@media only screen and (max-width: 780px) {
  header nav .mainsecnav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: linear-gradient(to right, #04a478, #0e7b86);
    z-index: 9;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    padding: 10px 16px;
  }
  header nav .mainsecnav .emphcat, header nav .mainsecnav .secnav {
    flex-direction: column;
    text-align: right;
    margin-left: auto;
    gap: 12px;
    margin-bottom: 16px;
  }
  header nav .mainsecnav .emphcat {
    font-weight: 600;
  }
}
header nav.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
@media only screen and (max-width: 780px) {
  header nav.active .mainsecnav {
    display: flex;
  }
}

.homeintro {
  margin: 0px 0;
  overflow: hidden;
  padding-top: 10px;
  padding-bottom: 10px;
  transform: translateZ(0);
}
.homeintro .container {
  position: relative;
}
.homeintro .introcontent > ul {
  position: relative;
  height: 400px;
  display: flex;
  gap: 8px;
}
@media only screen and (max-width: 780px) {
  .homeintro .introcontent > ul {
    height: 584px;
  }
}
.homeintro .introcontent > ul > li {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  position: relative;
  width: 33%;
  height: 400px;
  transition: 0.8s;
  overflow: hidden;
}
@media only screen and (max-width: 780px) {
  .homeintro .introcontent > ul > li {
    min-height: 580px;
  }
}
.homeintro .introcontent > ul > li .img {
  margin-right: 45px;
  margin-left: auto;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 780px) {
  .homeintro .introcontent > ul > li .img {
    margin-right: 0;
    margin-top: auto;
    margin-bottom: 90px;
  }
}
.homeintro .introcontent > ul > li img {
  max-width: 440px;
  max-width: calc(100% - 20px);
  margin: 10px auto 0;
  display: block;
}
@media only screen and (max-width: 780px) {
  .homeintro .introcontent > ul > li img {
    max-width: calc(100% - 20px);
    margin: 0 auto;
  }
}
@media only screen and (max-width: 780px) {
  .homeintro .introcontent > ul > li {
    flex-direction: column;
  }
}
.homeintro .introcontent > ul > li .detail {
  position: relative;
  z-index: 1;
  max-width: 400px;
  color: #ffffff;
  margin-left: 10px;
  margin-right: 10px;
}
@media only screen and (max-width: 780px) {
  .homeintro .introcontent > ul > li .detail {
    margin-left: 20px;
    position: static;
  }
}
.homeintro .introcontent > ul > li .detail .title {
  font-weight: 800;
  font-size: 90px;
  text-transform: uppercase;
  text-shadow: 2px 4px 0 rgba(0, 0, 0, 0.9);
}
@media only screen and (max-width: 780px) {
  .homeintro .introcontent > ul > li .detail .title {
    font-size: 40px;
  }
  .homeintro .introcontent > ul > li .detail .title img {
    margin: 0;
    max-width: 80%;
    max-width: 200px;
  }
}
.homeintro .introcontent > ul > li .detail .detailtxt {
  font-size: 14px;
  line-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 72px;
  margin-top: 6px;
}
@media only screen and (max-width: 780px) {
  .homeintro .introcontent > ul > li .detail .detailtxt {
    overflow: hidden;
    max-height: 72px;
    padding-right: 20px;
  }
}
.homeintro .introcontent > ul > li .detail .price {
  padding-top: 12px;
}
.homeintro .introcontent > ul > li .detail .price .mainp {
  text-align: right;
  font-size: 24px;
  font-weight: 500;
  color: #f8fc06;
}
@media only screen and (max-width: 780px) {
  .homeintro .introcontent > ul > li .detail .price .mainp {
    text-align: left;
  }
}
.homeintro .introcontent > ul > li .detail .price .pnote {
  text-align: right;
  font-size: 14px;
}
@media only screen and (max-width: 780px) {
  .homeintro .introcontent > ul > li .detail .price .pnote {
    text-align: left;
    font-size: 12px;
  }
}
.homeintro .introcontent > ul > li .detail .button {
  margin-top: 20px;
}
@media only screen and (max-width: 780px) {
  .homeintro .introcontent > ul > li .detail .button {
    position: absolute;
    bottom: 20px;
  }
  .homeintro .introcontent > ul > li .detail .button.main {
    padding: 0 30px;
    font-size: 18px;
  }
}
.homeintro .introcontent > ul > li .deco {
  position: absolute;
  z-index: 1;
  height: 300px;
  left: -8px;
  bottom: -8px;
  right: -8px;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0.5;
}
.homeintro .introcontent > ul > li .deco > span {
  position: absolute;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
@media screen and (max-width: 780px) {
  .homeintro .introcontent > ul > li .deco > span {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}
.homeintro .introcontent > ul > li .deco > span:nth-of-type(1) {
  top: 0;
  left: 0%;
  bottom: 0;
  width: 80%;
  transform-origin: 0% 0%;
  background: linear-gradient(to right, #05a478, #54c156);
}
@media only screen and (max-width: 780px) {
  .homeintro .introcontent > ul > li .deco > span:nth-of-type(1) {
    width: 1200px;
  }
}
.homeintro .introcontent > ul > li .deco > span:nth-of-type(2) {
  top: 0;
  right: 0%;
  bottom: 0;
  width: 20%;
  transform-origin: 0% 100%;
  background: #54c156;
}
.homeintro .introcontent > ul > li:nth-of-type(4) {
  display: none;
}
.homeintro .introcontent > ul > li:nth-of-type(5) {
  display: none;
}
.homeintro .introcontent > ul > li:nth-of-type(6) {
  display: none;
}
.homeintro .intronav {
  position: absolute;
  bottom: -17px;
  right: calc(30% - 50px);
  display: flex;
  z-index: 10;
}
.homeintro .intronav > a {
  display: block;
  height: 34px;
  width: 50px;
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: #3c3f4c;
  position: relative;
}
.homeintro .intronav > a:nth-of-type(1) {
  border-radius: 20px 0 0 20px;
  background-image: url("../../plugins/sportwelt/public/img/wleft.svg");
}
.homeintro .intronav > a:nth-of-type(1)::after {
  position: absolute;
  content: "";
  right: -1px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: rgba(0, 0, 0, 0.8);
}
.homeintro .intronav > a:nth-of-type(2) {
  border-radius: 0 20px 20px 0;
  background-image: url("../../plugins/sportwelt/public/img/wright.svg");
}

.button {
  display: flex;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-weight: bold;
}
.button.main {
  height: 60px;
  padding: 0 60px;
  background: #f8fc06;
  color: #262938;
  font-size: 24px;
}

.homecat-shortcuts {
  padding: 30px 0;
  background: #ffffff;
}
.homecat-shortcuts .hcs-links {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 780px) {
  .homecat-shortcuts .hcs-links {
    flex-direction: column;
    gap: 12px;
  }
}
.homecat-shortcuts .hcs-links > li {
  width: calc(33% - 38px);
}
@media only screen and (max-width: 780px) {
  .homecat-shortcuts .hcs-links > li {
    width: 100%;
  }
}
.homecat-shortcuts .hcs-links > li a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background: #04a478;
  border-radius: 10px;
  flex-direction: column;
  height: 118px;
}
.homecat-shortcuts .hcs-links > li a em {
  display: block;
  text-align: center;
  max-width: 250px;
  font-size: 48px;
  font-weight: 900;
  text-shadow: 2px 3px 0px rgb(0, 0, 0);
}
@media only screen and (max-width: 780px) {
  .homecat-shortcuts .hcs-links > li a em {
    font-size: 36px;
  }
}
.homecat-shortcuts .hcs-links > li a span {
  display: block;
  text-align: center;
  max-width: 250px;
  font-size: 14px;
  line-height: 18px;
  overflow: hidden;
  transition: 0.3s;
  height: 0;
}
.homecat-shortcuts .hcs-links > li a:hover span {
  height: 36px;
}
.homecat-shortcuts .hcs-links > li:first-of-type a {
  background: linear-gradient(to right, #54c154, #04a478);
}
@media only screen and (max-width: 780px) {
  .homecat-shortcuts .hcs-links > li:first-of-type a {
    background: linear-gradient(to bottom, #54c154, #04a478);
  }
}
.homecat-shortcuts .hcs-links > li:last-of-type a {
  background: linear-gradient(to right, #04a478, #0e7c86);
}
@media only screen and (max-width: 780px) {
  .homecat-shortcuts .hcs-links > li:last-of-type a {
    background: linear-gradient(to bottom, #04a478, #0e7c86);
  }
}

.home-sectitle {
  display: flex;
  gap: 20px;
  align-items: center;
}
.home-sectitle h2 {
  color: #07393c;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}
.home-sectitle .more {
  display: block;
  margin-left: auto;
  background: #ffffff;
  padding: 0 16px;
  height: 40px;
  line-height: 40px;
  color: #262938;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 20px;
  transition: 0.3s;
}
.home-sectitle .more:hover {
  background: #f8fc06;
}
@media only screen and (max-width: 780px) {
  .home-sectitle .more {
    flex-shrink: 0;
  }
}

.product-listsec {
  padding: 30px 0;
}
.product-listsec .home-sectitle .pl-filters {
  display: none;
}
@media only screen and (max-width: 780px) {
  .product-listsec .home-sectitle .pl-filters {
    display: block;
    margin-left: auto;
    width: auto;
  }
  .product-listsec .home-sectitle .pl-filters button {
    display: block;
  }
}

.product-list, .cart-list {
  padding: 25px 0;
}
.product-list .pl-items, .cart-list .pl-items {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.product-list .pl-items > li, .cart-list .pl-items > li {
  width: calc(25% - 18px);
  border-radius: 6px;
  background: #ffffff;
  position: relative;
  padding: 12px 16px;
  box-sizing: border-box;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  min-height: 310px;
}
@media only screen and (max-width: 780px) {
  .product-list .pl-items > li, .cart-list .pl-items > li {
    width: calc(50% - 10px);
    width: 100%;
  }
}
.product-list .pl-items > li .itemprop span, .cart-list .pl-items > li .itemprop span {
  display: block;
  position: absolute;
  overflow: hidden;
  width: 46px;
  height: 46px;
  overflow: hidden;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.product-list .pl-items > li .itemprop span > em, .cart-list .pl-items > li .itemprop span > em {
  display: block;
  position: absolute;
  bottom: 50%;
  left: -20px;
  right: -20px;
  text-align: center;
  padding-bottom: 1px;
  padding-top: 40px;
  transform-origin: 50% 100%;
}
.product-list .pl-items > li .itemprop span.new, .cart-list .pl-items > li .itemprop span.new {
  top: -4px;
  left: -4px;
  border-radius: 6px 0 0 0;
}
.product-list .pl-items > li .itemprop span.new > em, .cart-list .pl-items > li .itemprop span.new > em {
  transform: rotate(-45deg);
  background: #54c154;
}
.product-list .pl-items > li .itemprop span.discount, .cart-list .pl-items > li .itemprop span.discount {
  top: -4px;
  right: -4px;
  border-radius: 0 6px 0 0;
}
.product-list .pl-items > li .itemprop span.discount > em, .cart-list .pl-items > li .itemprop span.discount > em {
  transform: rotate(45deg);
  background: #e00808;
}
.product-list .pl-items > li .detail, .cart-list .pl-items > li .detail {
  padding: 4px 0;
}
.product-list .pl-items > li .detail h3, .cart-list .pl-items > li .detail h3 {
  color: #427ea4;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.product-list .pl-items > li .detail span, .cart-list .pl-items > li .detail span {
  display: block;
}
.product-list .pl-items > li .detail .prodprice, .cart-list .pl-items > li .detail .prodprice {
  color: #646565;
  font-size: 14px;
  text-decoration: line-through;
}
.product-list .pl-items > li .detail .saleprice, .cart-list .pl-items > li .detail .saleprice {
  color: #e00808;
  font-size: 18px;
  font-weight: 600;
  padding: 3px 0;
}
.product-list .pl-items > li .detail .details, .cart-list .pl-items > li .detail .details {
  color: #427ea4;
  margin-top: 4px;
  display: inline-block;
}
.product-list .pl-items > li .detail .intro, .cart-list .pl-items > li .detail .intro {
  display: none;
  color: #727272;
  font-size: 12px;
  line-height: 18px;
  margin: 8px 0;
}
.product-list .pl-items > li .img img, .cart-list .pl-items > li .img img {
  display: block;
  width: 100%;
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-list .pl-items > li .addtocart, .cart-list .pl-items > li .addtocart {
  background-color: #54c154;
  border-radius: 5px;
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  overflow: hidden;
  text-indent: -10000px;
  z-index: 2;
  transition: 0.3s;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url("../../plugins/sportwelt/public/img/addtocart.svg");
}
.product-list .pl-items > li .addtocart:hover, .cart-list .pl-items > li .addtocart:hover {
  background-color: #04a478;
}
.product-list .pl-items > li .wlink, .cart-list .pl-items > li .wlink {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-indent: -10000px;
}
.product-list .pl-items.empf > li:first-of-type, .cart-list .pl-items.empf > li:first-of-type {
  width: calc(50% - 12px);
  flex-direction: row;
  align-items: center;
}
.product-list .pl-items.empf > li:first-of-type .img, .cart-list .pl-items.empf > li:first-of-type .img {
  width: 55%;
  margin-right: 24px;
  flex-shrink: 0;
}
.product-list .pl-items.empf > li:first-of-type .img img, .cart-list .pl-items.empf > li:first-of-type .img img {
  height: 250px;
}
.product-list .pl-items.empf > li:first-of-type .detail .intro, .cart-list .pl-items.empf > li:first-of-type .detail .intro {
  display: block;
}
@media only screen and (max-width: 780px) {
  .product-list .pl-items.empf > li:first-of-type, .cart-list .pl-items.empf > li:first-of-type {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .product-list .pl-items.empf > li:first-of-type .img, .cart-list .pl-items.empf > li:first-of-type .img {
    width: 100%;
    margin-right: 0;
  }
  .product-list .pl-items.empf > li:first-of-type .img img, .cart-list .pl-items.empf > li:first-of-type .img img {
    height: 160px;
  }
  .product-list .pl-items.empf > li:first-of-type .detail .intro, .cart-list .pl-items.empf > li:first-of-type .detail .intro {
    display: none;
  }
}

.home-brands {
  padding: 10px 0 40px;
}
.home-brands .brand-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}
@media only screen and (max-width: 780px) {
  .home-brands .brand-list {
    gap: 20px;
  }
}
.home-brands .brand-list > li {
  width: 160px;
  height: 160px;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
  background: #ffffff;
  background: transparent;
  border-radius: 50%;
  position: relative;
}
.home-brands .brand-list > li a > em {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  color: #40403e;
  height: 100%;
  width: 100%;
  background: #ffffff;
  border-radius: 50%;
  overflow: hidden;
  padding: 12px;
  box-sizing: border-box;
}
.home-brands .brand-list > li img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-brands .brand-list > li a span {
  position: absolute;
  bottom: -6px;
  width: 130px;
  height: 30px;
  left: calc(50% - 65px);
  overflow: hidden;
  text-align: center;
  font-size: 12px;
  color: #ffffff;
  font-weight: 600;
  line-height: 22px;
  transform-origin: 50% -50px;
  transform: rotate(-10deg);
  transition: 0.3s;
}
.home-brands .brand-list > li a span::before {
  position: absolute;
  background: #54c154;
  content: "";
  width: 172px;
  height: 172px;
  bottom: 0;
  left: calc(50% - 86px);
  border-radius: 50%;
}
.home-brands .brand-list > li a span em {
  position: relative;
}
.home-brands .brand-list > li a:hover span {
  transform: rotate(0);
}

.home-blog {
  margin: 40px 0;
}
.home-blog .hb-box {
  background: linear-gradient(to right, #0e7b86, #04a478);
  color: #ffffff;
  padding: 16px;
  width: calc(100% + 16px);
  box-sizing: border-box;
  margin-left: -8px;
  margin-right: -8px;
  border-radius: 20px;
}
.home-blog .hb-box .home-sectitle h2 {
  color: #ffffff;
}
.home-blog .hb-box .home-sectitle .more {
  background: #f8fc06;
}
.home-blog .hb-box .home-sectitle .more:hover {
  background: #ffffff;
}
.home-blog .hb-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
  padding-bottom: 40px;
  padding-top: 10px;
}
.home-blog .hb-list > li {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 0;
  align-items: center;
}
.home-blog .hb-list > li .img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
}
.home-blog .hb-list > li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-blog .hb-list > li h3 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}
.home-blog .hb-list > li .desc {
  display: none;
  font-size: 12px;
  line-height: 18px;
  max-height: 72px;
  overflow: hidden;
}
.home-blog .hb-list > li .wlink {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  text-indent: -10000px;
}
.home-blog .hb-list > li .button {
  background: #f8fc06;
  transition: 0.3s;
  position: relative;
  display: inline-block;
  z-index: 1;
  color: #262938;
  padding: 6px 12px;
  margin-top: 12px;
  font-size: 14px;
}
.home-blog .hb-list > li .button:hover {
  background: #ffffff;
}
.home-blog .hb-list > li:nth-of-type(1) {
  grid-area: 1/1/4/2;
  flex-direction: column;
}
.home-blog .hb-list > li:nth-of-type(1) .desc {
  display: block;
  max-width: 300px;
}
.home-blog .hb-list > li:nth-of-type(1) h3 {
  max-width: 300px;
}
.home-blog .hb-list > li:nth-of-type(1) .button {
  margin-top: 20px;
}
.home-blog .hb-list > li:nth-of-type(1) .img {
  width: 100%;
  max-width: 380px;
  height: 240px;
}
.home-blog .hb-list > li:nth-of-type(1) .det {
  max-width: 380px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-blog .hb-list > li:nth-of-type(1) .det .desc {
  margin-top: 8px;
}
.home-blog .hb-list > li:nth-of-type(2) {
  grid-area: 1/2/2/3;
}
.home-blog .hb-list > li:nth-of-type(3) {
  grid-area: 2/2/3/3;
}
.home-blog .hb-list > li:nth-of-type(4) {
  grid-area: 3/2/4/3;
}

footer .nav {
  padding: 30px 0 20px;
  background: #262938;
}
footer .nav .container {
  display: flex;
  justify-content: flex-start;
}
@media only screen and (max-width: 780px) {
  footer .nav .container {
    flex-direction: column;
  }
}
@media only screen and (max-width: 780px) {
  footer .nav .flogoc {
    display: flex;
    gap: 20px;
  }
}
footer .nav .info {
  line-height: 20px;
  font-size: 14px;
  color: #ffffff;
  margin-top: 12px;
}
@media only screen and (max-width: 780px) {
  footer .nav .info {
    margin-top: 0;
  }
}
footer .nav .logo-info {
  flex-shrink: 0;
}
footer .nav li.hidden {
  display: none;
}
footer .nav li.more {
  padding-top: 10px;
  width: 100%;
}
footer .foot-note {
  background: #262938;
  color: #ffffff;
}
footer .foot-topnote {
  background: #262938;
  color: #ebebeb;
  font-size: 14px;
  padding: 6px 0 12px;
}
footer .foot-topnote ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
footer .logo a {
  display: block;
  height: 42px;
  width: 100px;
  margin-top: 4px;
  margin-bottom: 4px;
  overflow: hidden;
  text-indent: -10000px;
  background: url("../../plugins/sportwelt/public/img/logo.svg") no-repeat 0% 50%/contain;
}
footer .soclist {
  display: flex;
  gap: 4px;
}
footer .soclist li > a {
  overflow: hidden;
  text-indent: -10000px;
  display: block;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  width: 30px;
  height: 30px;
}
footer .soclist li.fb a {
  background-image: url("../../plugins/sportwelt/public/img/soc-fb.svg");
}
footer .soclist li.ig a {
  background-image: url("../../plugins/sportwelt/public/img/soc-ig.svg");
}
footer .soclist li.yt a {
  background-image: url("../../plugins/sportwelt/public/img/soc-yt.svg");
}
footer .foot-note > div {
  display: flex;
  font-size: 14px;
  padding: 10px 0 12px;
  line-height: 20px;
  border-top: 1px solid #4e4e4e;
}
@media only screen and (max-width: 780px) {
  footer .foot-note > div {
    flex-direction: column;
    gap: 12px;
    padding: 10px 20px;
  }
}
footer .foot-note > div a {
  color: #f8fc06;
}
@media only screen and (max-width: 780px) {
  footer .foot-note > div p {
    text-align: center;
  }
}
footer .foot-note > div p:last-of-type {
  margin-left: auto;
}
@media only screen and (max-width: 780px) {
  footer .foot-note > div p:last-of-type {
    margin-left: 0;
  }
}
footer nav {
  color: #ffffff;
  flex-grow: 1;
  margin-left: 30px;
  font-size: 14px;
  line-height: 24px;
}
@media only screen and (max-width: 780px) {
  footer nav {
    margin-left: 0;
    margin-top: 20px;
  }
}
footer nav > ul {
  display: flex;
  gap: 30px;
}
@media only screen and (max-width: 780px) {
  footer nav > ul {
    flex-direction: column;
  }
}
footer nav > ul > li .fn-title {
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 6px;
}
@media only screen and (max-width: 780px) {
  footer nav > ul > li > ul {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
}

.general-info {
  background: #ffffff;
}
.general-info .gi-list {
  display: flex;
  padding: 18px 0 12px;
}
@media only screen and (max-width: 780px) {
  .general-info .gi-list {
    flex-direction: column;
  }
}
.general-info .gi-list > li {
  width: 33.3333%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px 0;
  box-sizing: border-box;
  border-right: 2px solid #bebebe;
  padding-left: 100px;
  padding-right: 50px;
  position: relative;
  gap: 4px;
}
@media only screen and (max-width: 780px) {
  .general-info .gi-list > li {
    width: 100%;
    border-color: transparent;
  }
}
.general-info .gi-list > li:last-of-type {
  border-color: transparent;
}
.general-info .gi-list > li i {
  position: absolute;
  left: 28px;
  top: calc(50% - 24px);
  width: 48px;
  height: 48px;
  background: gray;
  border-radius: 24px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.general-info .gi-list > li i.delivery {
  background-color: #54c154;
  background-image: url("../../plugins/sportwelt/public/img/ico-delivery.svg");
}
.general-info .gi-list > li i.time {
  background-color: #e00808;
  background-image: url("../../plugins/sportwelt/public/img/ico-time.svg");
}
.general-info .gi-list > li i.call {
  background-color: #07393c;
  background-image: url("../../plugins/sportwelt/public/img/ico-phone.svg");
}
.general-info .gi-list > li .title {
  color: #07393c;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.general-info .gi-list > li .det {
  color: #07393c;
  font-weight: 500;
  line-height: 18px;
  height: 36px;
}

.bank-payment {
  overflow: hidden;
  background: #ffffff;
  position: relative;
}
.bank-payment::before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  background: #262938;
}
.bank-payment .bankpay-list {
  box-shadow: 0px -4px 0 #1d957f;
  position: relative;
  background: #ffffff;
  padding: 10px 0;
  border-radius: 8px;
  margin-top: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 780px) {
  .bank-payment .bankpay-list {
    padding-right: 12px;
    padding-left: 12px;
    gap: 16px;
  }
}
.bank-payment .bankpay-list img {
  display: block;
  height: 32px;
}

.breadcrumbs {
  padding: 5px 0;
  margin-top: -47px;
}
.breadcrumbs ul {
  border-bottom: 1px solid #8f8f8e;
  padding-bottom: 5px;
  display: flex;
  gap: 12px;
  align-items: center;
}
@media only screen and (max-width: 780px) {
  .breadcrumbs ul {
    flex-wrap: wrap;
    gap: 6px;
  }
}
.breadcrumbs ul > li {
  line-height: 30px;
  text-transform: uppercase;
  color: #3b45f2;
  padding-right: 24px;
  position: relative;
}
@media only screen and (max-width: 780px) {
  .breadcrumbs ul > li {
    line-height: 24px;
  }
}
.breadcrumbs ul > li::after {
  content: "";
  background: url("../../plugins/sportwelt/public/img/arrowr.svg") no-repeat 50% 50%/contain;
  position: absolute;
  width: 16px;
  height: 16px;
  right: 0;
  top: calc(50% - 8px);
}
.breadcrumbs ul > li a {
  display: block;
}
.breadcrumbs ul > li:first-of-type a {
  text-indent: -10000px;
  overflow: hidden;
  width: 30px;
  background: url("../../plugins/sportwelt/public/img/home.svg") no-repeat 50% 50%;
  background-size: 24px;
}
.breadcrumbs ul > li:last-of-type {
  padding-right: 0;
  color: #646565;
}
.breadcrumbs ul > li:last-of-type::after {
  display: none;
}

.single-product {
  margin: 35px 0;
}
.single-product > div, .single-product > * > div.container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
@media only screen and (max-width: 780px) {
  .single-product > div, .single-product > * > div.container {
    flex-direction: column-reverse;
  }
}
.single-product .prodimg {
  width: 100%;
  max-width: 770px;
  background: #ffffff;
  position: relative;
  padding: 12px 16px;
  box-sizing: border-box;
  border-radius: 16px;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
}
.single-product .prodimg .main > li {
  display: none;
}
.single-product .prodimg .main > li.active {
  display: block;
}
.single-product .prodimg .main img {
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 780px) {
  .single-product .prodimg .main img {
    height: 250px;
  }
}
.single-product .prodimg .list {
  display: flex;
  gap: 12px;
  border-top: 2px solid #ebebeb;
  overflow-x: auto;
}
.single-product .prodimg .list > li {
  max-width: calc(25% - 9px);
  max-width: 140px;
  flex-shrink: 0;
}
.single-product .prodimg img {
  display: block;
  width: 100%;
}
.single-product .prodmain {
  width: 400px;
  flex-shrink: 0;
}
@media only screen and (max-width: 780px) {
  .single-product .prodmain {
    width: 100%;
  }
}
.single-product .prodmain .brand {
  margin-top: 10px;
  display: inline-block;
}
.single-product .prodmain .brand img {
  display: block;
  width: 100px;
}
.single-product .prodmain .title {
  color: #07393c;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 36px;
  margin: 0px 0 5px;
}
@media only screen and (max-width: 780px) {
  .single-product .prodmain .title {
    font-size: 24px;
  }
}
.single-product .prodmain .cur {
  text-transform: uppercase;
}
.single-product .prodmain .discount {
  display: flex;
  justify-content: space-between;
}
.single-product .prodmain .discount .pr-title {
  font-size: 14px;
  color: #727272;
}
.single-product .prodmain .discount .pr-value {
  font-weight: 500;
  font-size: 18px;
}
.single-product .prodmain .discount .savings {
  text-align: right;
}
.single-product .prodmain .discount .orig-price {
  color: #727272;
}
.single-product .prodmain .discount .orig-price .pr-value {
  text-decoration: line-through;
}
.single-product .prodmain .price {
  color: #e00808;
  font-weight: 700;
  font-size: 36px;
  text-align: right;
  margin: 16px 0;
}
@media only screen and (max-width: 780px) {
  .single-product .prodmain .price {
    font-size: 24px;
  }
}

.variant-selector {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.variant-selector .vs-title {
  width: 100%;
  margin: 8px 0;
}
.variant-selector ul {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.variant-selector ul > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  background: #ffffff;
  padding: 0 12px;
  border-radius: 6px;
}
.variant-selector ul > li.selected > a {
  background: #54c154;
  color: #ffffff;
}
.variant-selector .sizetable {
  display: block;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  background: #ffffff;
  padding: 0 12px;
  border-radius: 6px;
}

.product-cart .pc-title {
  width: 100%;
  margin: 8px 0;
}
.product-cart .pc-tools {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.product-cart .pc-tools .qty {
  flex-shrink: 0;
  display: flex;
  height: 30px;
  background: #ffffff;
  align-items: center;
  border-radius: 6px;
}
.product-cart .pc-tools .qty > a {
  display: block;
  width: 16px;
  height: 30px;
  background: url("../../plugins/sportwelt/public/img/ico-minus.svg") no-repeat 50% 50%;
  background-size: 10px;
}
.product-cart .pc-tools .qty > a.inc {
  background-image: url("../../plugins/sportwelt/public/img/ico-plus.svg");
}
.product-cart .pc-tools .qty input {
  width: 40px;
  text-align: center;
  -webkit-apperance: none;
  outline: none;
  border: 0;
  height: 30px;
  background: transparent;
  display: block;
}
.product-cart .pc-tools .button {
  background: #ffffff;
  border-radius: 6px;
  display: block;
  flex-grow: 1;
  line-height: 28px;
  height: 30px;
  text-align: center;
  border: 1px solid #e00808;
  box-sizing: border-box;
}
.product-cart .pc-tools .button.buy {
  color: #ffffff;
  background: #e00808;
}
.product-cart .pc-tools .button.cart {
  text-transform: none;
  font-weight: 400;
  color: #e00808;
}

.product-share {
  margin-top: 12px;
}

.soc-share {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
}
.soc-share > ul {
  display: flex;
  gap: 8px;
}
.soc-share > ul a {
  display: block;
  overflow: hidden;
  width: 24px;
  height: 24px;
  text-indent: -10000px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.soc-share > ul .fb > a {
  background-image: url("../../plugins/sportwelt/public/img/share-fb.svg");
}
.soc-share > ul .vb > a {
  background-image: url("../../plugins/sportwelt/public/img/share-vb.svg");
  background-size: 20px;
}
.soc-share > ul .mg > a {
  background-image: url("../../plugins/sportwelt/public/img/share-mg.svg");
}
.soc-share > ul .x > a {
  background-image: url("../../plugins/sportwelt/public/img/share-x.svg");
  background-size: 16px;
}
.soc-share > ul .cl > a {
  background-image: url("../../plugins/sportwelt/public/img/share-link.svg");
}

.product-spec {
  background: #ffffff;
  padding: 20px 0;
  margin: 50px 0 30px;
}
.product-spec .product-spec-wid {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 780px) {
  .product-spec .product-spec-wid {
    flex-direction: column;
  }
}
.product-spec .product-spec-wid .product-map {
  width: calc(50% - 10px);
  width: 400px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}
.product-spec .product-spec-wid .product-map img {
  width: 100%;
}
@media only screen and (max-width: 780px) {
  .product-spec .product-spec-wid .product-map {
    width: 100%;
  }
}
.product-spec .product-spec-wid .product-map .prop > li {
  position: absolute;
  top: 50%;
  left: 50%;
}
.product-spec .product-spec-wid .product-map .prop > li a {
  display: block;
  background: #54c154;
  color: #ffffff;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.product-spec .product-spec-wid .home-sectitle h2 {
  font-weight: 500;
  margin-bottom: 20px;
}
.product-spec .product-spec-wid .ps-list > ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-spec .product-spec-wid .ps-list > ul > li {
  display: flex;
  gap: 12px;
}
.product-spec .product-spec-wid .ps-list > ul > li label {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  width: 230px;
  flex-shrink: 0;
  text-align: right;
  line-height: 20px;
  color: #727272;
}
@media only screen and (max-width: 780px) {
  .product-spec .product-spec-wid .ps-list > ul > li label {
    width: 180px;
  }
}
.product-spec .product-spec-wid .ps-list > ul > li span {
  display: block;
  flex-grow: 1;
}
.product-spec .product-spec-wid .product-desc-text {
  margin: 20px 0;
  line-height: 20px;
  font-size: 14px;
}
.product-spec .product-spec-wid .product-desc-text p {
  margin: 6px 0;
}
.product-spec .product-spec-wid .product-desc-text > ul > li::before {
  content: "- ";
}

.product-desc {
  margin: 50px 0;
}
.product-desc .pd-content {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
  border-left: 12px solid #bebebe;
}

.view-mode {
  flex-grow: 1;
  height: 40px;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  padding: 0 20px;
  margin: 0 0 20px;
  justify-content: flex-end;
  font-size: 14px;
  align-items: center;
  gap: 20px;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 780px) {
  .view-mode {
    height: auto;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 6px;
    padding: 5px 20px 10px;
    display: none;
  }
  .view-mode.show {
    display: flex;
  }
}
.view-mode .vm-node {
  display: flex;
  gap: 6px;
  align-items: center;
}
@media only screen and (max-width: 780px) {
  .view-mode .vm-node {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
}
.view-mode .vm-node label {
  display: block;
  line-height: 30px;
  color: #646565;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}
.view-mode .vm-node .select {
  display: flex;
  gap: 6px;
  align-items: center;
}
@media only screen and (max-width: 780px) {
  .view-mode .vm-node .select {
    align-items: flex-start;
    flex-direction: column;
  }
}
.view-mode .vm-node .select button {
  height: 30px;
  padding: 0 10px;
  -webkit-apperance: none;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
}
.view-mode .vm-node .select button:hover {
  background: #cdcdcd;
  padding-top: 7px;
  padding-bottom: 7px;
  box-sizing: content-box;
}
.view-mode .vm-node .select button.active {
  background: #54c154;
  color: #ffffff;
  padding-top: 7px;
  padding-bottom: 7px;
  box-sizing: content-box;
}
@media only screen and (max-width: 780px) {
  .view-mode .vm-node .select button.active {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.pl-split {
  padding-top: 1px;
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
@media only screen and (max-width: 780px) {
  .pl-split {
    flex-direction: column;
  }
}
.pl-split.sec {
  margin-top: 10px;
}
.pl-split .product-list {
  flex-grow: 1;
  padding-top: 0;
}

@media only screen and (max-width: 780px) {
  .pl-filters-container {
    display: none;
  }
  .pl-filters-container.show {
    display: block;
  }
}

.pl-filters {
  width: 200px;
  flex-shrink: 0;
}
@media only screen and (max-width: 780px) {
  .pl-filters {
    width: 100%;
  }
}
.pl-filters > button {
  background: #07393c;
  display: block;
  border: 0;
  outline: none;
  -webkit-apperance: none;
  box-sizing: border-box;
  color: #ffffff;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 20px;
  font-size: 14px;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .pl-filters > button {
    display: none;
  }
}
.pl-filters .pf-node {
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  min-width: 200px;
  box-sizing: border-box;
}
.pl-filters .pf-node h4 {
  background: #54c154;
  color: #ffffff;
  display: inline-block;
  margin: -16px -20px 10px;
  margin-right: 0;
  padding: 4px 20px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  border-radius: 0 0 6px 6px;
  border-radius: 6px;
  font-size: 14px;
}
.pl-filters input {
  -webkit-apperance: none;
  outline: none;
  border: 0;
  background: #ebebeb;
  display: block;
  box-sizing: border-box;
  height: 24px;
  padding: 0 8px;
  max-width: 100%;
  border-radius: 4px;
  font-size: 14px;
}
.pl-filters .actions {
  display: none;
  position: sticky;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 5px;
  box-sizing: border-box;
  background: white;
}
@media only screen and (max-width: 759px) {
  .pl-filters .actions {
    border-radius: 25px;
  }
}
.pl-filters .actions button {
  background: #07393c;
  display: block;
  margin: auto;
  border: 0;
  outline: none;
  -webkit-apperance: none;
  box-sizing: border-box;
  color: #ffffff;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 20px;
  font-size: 14px;
  text-align: center;
}
@media only screen and (max-width: 759px) {
  .pl-filters .actions button {
    width: 100%;
  }
}

.pl-filters-container.show .pl-filters .actions {
  display: block;
}

.range-slider {
  position: relative;
  height: 24px;
  margin-bottom: 8px;
}
.range-slider .base {
  position: absolute;
  height: 3px;
  top: calc(50% - 1px);
  left: 10px;
  right: 10px;
  background: #bebebe;
}
.range-slider .val {
  position: absolute;
  height: 3px;
  top: calc(50% - 1px);
  background: #54c154;
}
.range-slider .ci {
  width: 12px;
  height: 12px;
  border-radius: 8px;
  background: #07393c;
  position: absolute;
  top: 50%;
  transform: translateX(-6px) translateY(-6px);
}

.range-fields {
  display: flex;
  align-items: center;
  margin: 0 -10px;
}
.range-fields input {
  width: calc(50% - 10px);
}
.range-fields span {
  width: 20px;
  text-align: center;
}

.pf-multiselect label {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 4px;
  cursor: pointer;
}
.pf-multiselect label:hover em {
  background-color: #cdcdcd;
}
.pf-multiselect input[type=checkbox] {
  display: none;
}
.pf-multiselect em {
  display: block;
  width: 24px;
  height: 24px;
  background: #ebebeb;
  border-radius: 4px;
  transition: 0.3s;
  flex-shrink: 0;
}
.pf-multiselect input:checked + em {
  background: #ebebeb url("../../plugins/sportwelt/public/img/check.svg") no-repeat 50% 50%;
  background-size: 16px;
}
.pf-multiselect label:hover input:checked + em {
  background-color: #cdcdcd;
}

.pl-page {
  background: #ffffff;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
  height: 40px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 500px;
  border-radius: 20px;
}
.pl-page > a {
  display: block;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 40px;
}
.pl-page > a.first {
  background-image: url("../../plugins/sportwelt/public/img/pg-first.svg");
  display: none;
}
.pl-page > a.prev {
  background-image: url("../../plugins/sportwelt/public/img/pg-prev.svg");
  background-image: url("../../plugins/sportwelt/public/img/arrowl.svg");
}
.pl-page > a.next {
  background-image: url("../../plugins/sportwelt/public/img/pg-next.svg");
  background-image: url("../../plugins/sportwelt/public/img/arrowr.svg");
}
.pl-page > a.last {
  background-image: url("../../plugins/sportwelt/public/img/pg-last.svg");
  display: none;
}
.pl-page ul {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
}
.pl-page ul > li > a {
  display: block;
  width: 28px;
  height: 40px;
  line-height: 40px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  padding: 4px 0;
  border-radius: 4px;
  transition: 0.3s;
}
.pl-page ul > li:hover > a {
  background: #cdcdcd;
  padding-top: 9px;
  padding-bottom: 9px;
}
.pl-page ul > li.active > a {
  background: #54c154;
  color: #ffffff;
  padding-top: 9px;
  padding-bottom: 9px;
}
.pl-page ul > li > span {
  color: #646565;
}

.text-h1 {
  line-height: 1.4em;
  font-size: 40px;
  max-width: 880px;
  margin: 0 auto 20px;
  font-weight: 600;
}

.text-content {
  max-width: 880px;
  margin: 20px auto;
}
.text-content h2 {
  font-size: 32px;
  font-weight: 500;
  margin: 10px 0px;
}
.text-content h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 10px 0px;
}
.text-content h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 8px 0;
}
.text-content .text-content-paragraph {
  line-height: 24px;
  font-size: 14px;
  color: #3d404d;
}
.text-content .text-content-paragraph p {
  margin: 18px 0;
}
.text-content .text-content-paragraph a {
  color: #07393c;
}
.text-content table {
  min-width: 100%;
  background: #ffffff;
  border-radius: 6px;
  margin: 20px 0;
}
.text-content table td {
  padding: 2px 8px;
}
.text-content .text-content-image {
  margin: 20px 0;
}
.text-content .text-content-image img {
  max-width: 600px !important;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 700px) {
  .text-content .text-content-image img {
    max-width: 100% !important;
  }
}
.text-content .text-content-gallery ul {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.text-content .text-content-gallery ul > li img {
  max-width: 280px;
  display: block;
}
.text-content .text-content-paragraph ul {
  padding-left: 16px;
  margin: 25px 0;
}
.text-content .text-content-paragraph ul li {
  list-style-type: disc;
}
.text-content .text-content-paragraph ol {
  padding-left: 16px;
  margin: 25px 0;
}
.text-content .text-content-paragraph strong {
  font-weight: 600;
}
.text-content .text-content-paragraph em {
  font-style: italic;
}
.text-content .text-content-paragraph a {
  font-weight: 600;
}
.text-content.intro {
  line-height: 24px;
  font-size: 18px;
}

.popup-container {
  z-index: 100;
  background: rgba(0, 0, 0, 0.7);
}
.popup-container .popup-content {
  border-radius: 24px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  width: 360px;
  max-width: calc(100% - 40px);
}
.popup-container .popup-content .pop-header {
  margin: -22px -20px 16px;
  background: #1d957f;
  background: linear-gradient(to right, #04a478, #0e7b86);
  color: #ffffff;
  display: flex;
  border-radius: 24px 24px 0 0;
  font-size: 18px;
  font-weight: 600;
  height: 60px;
  align-items: center;
  padding: 0 24px;
  display: flex;
  align-items: center;
}
.popup-container .popup-content .pop-header .close {
  display: block;
  margin-left: auto;
  overflow: hidden;
  width: 24px;
  height: 24px;
  background: url("../../plugins/sportwelt/public/img/close.svg") no-repeat 50% 50%/contain;
  text-indent: -10000px;
}
.popup-container .popup-content form {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}
.popup-container .popup-content form .pf-row {
  margin-bottom: 12px;
}
.popup-container .popup-content form .pf-row label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #262938;
  margin-bottom: 6px;
}
.popup-container .popup-content form .pf-row span, .popup-container .popup-content form .pf-row input {
  display: block;
  width: 100%;
  -webkit-apperance: none;
  outline: none;
  border: 1px solid #cdcdcd;
  height: 35px;
  padding: 0 16px;
  box-sizing: border-box;
  border-radius: 6px;
  background: transparent;
  line-height: 33px;
  font-size: 14px;
}
.popup-container .popup-content form .pf-row span {
  border-color: #ebebeb;
  background: #ebebeb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.popup-container .popup-content form .btn {
  border: 0;
  -webkit-apperance: none;
  outline: none;
  text-align: center;
  line-height: 40px;
  padding: 4px 40px;
  background: #54c154;
  color: #ffffff;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  line-height: 28px;
  padding: 4px 28px;
}
.popup-container .popup-content form .btn.sec {
  background: transparent;
  color: #727272;
  color: #54c154;
  border: 2px solid #54c154;
  box-sizing: border-box;
}
.popup-container .popup-content .error {
  margin: 6px 0;
  border-radius: 6px;
  background: #e00808;
  color: #ffffff;
  text-align: center;
  display: block;
  line-height: 26px;
  font-weight: 500;
}
.popup-container .popup-content .ortext {
  display: block;
  padding: 12px 0;
  position: relative;
  text-align: center;
}
.popup-container .popup-content .ortext::before {
  content: "";
  top: 50%;
  left: 0;
  right: 0;
  position: absolute;
  height: 1px;
  background: #cdcdcd;
}
.popup-container .popup-content .ortext em {
  background: #ffffff;
  display: inline-block;
  padding: 0 4px;
  font-size: 14px;
  font-weight: 500;
  color: #646565;
  position: relative;
}

.cart-container {
  margin: 40px auto 60px;
}
.cart-container h2 {
  background: #1d957f;
  background: linear-gradient(to right, #04a478, #0e7b86);
  color: #ffffff;
  display: flex;
  border-radius: 24px 24px 0 0;
  font-size: 18px;
  font-weight: 600;
  height: 60px;
  align-items: center;
  padding: 0 20px;
}
.cart-container .btn {
  display: inline-block;
  text-align: center;
  line-height: 40px;
  padding: 4px 40px;
  margin-top: -4px;
  background: #54c154;
  color: #ffffff;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
}
.cart-container .asaddr {
  cursor: pointer;
  margin: -7px -49px 8px;
}
.cart-container .asaddr input {
  display: none;
}
@media only screen and (max-width: 780px) {
  .cart-container .asaddr {
    margin: -15px -22px 8px;
  }
}
.cart-container .asaddr label {
  max-width: 660px;
  display: flex;
  position: relative;
  border: 1px solid #cdcdcd;
  border-radius: 6px;
  flex-direction: column;
  cursor: pointer;
  padding: 12px 48px 12px 48px;
  box-sizing: border-box;
  gap: 4px;
  transition: 0.3s;
}
.cart-container .asaddr label:hover {
  background: #f2f5f8;
}
.cart-container .asaddr label i {
  position: absolute;
  left: 12px;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  border-radius: 12px;
  box-sizing: border-box;
  border: 1px solid #cdcdcd;
}
.cart-container .asaddr label i::before {
  position: absolute;
  content: "";
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 10px;
  visibility: hidden;
}
.cart-container .asaddr label em {
  font-weight: 600;
}
.cart-container .asaddr label sup, .cart-container .asaddr label span {
  font-size: 14px;
}
.cart-container .asaddr label .remove {
  position: absolute;
  right: 12px;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  background: url("../../plugins/sportwelt/public/img/trash.svg") no-repeat 50% 50%/contain;
  filter: grayscale(100%);
  opacity: 0.66;
  transition: 0.3s;
}
.cart-container .asaddr label .remove:hover {
  opacity: 1;
  filter: grayscale(0%);
}
.cart-container .asaddr input[type=radio]:checked + label {
  border-color: #05a478;
  background: #05a478;
  color: #ffffff;
}
.cart-container .asaddr input[type=radio]:checked + label i {
  border-color: #ffffff;
}
.cart-container .asaddr input[type=radio]:checked + label i::before {
  visibility: visible;
}
.cart-container .cart-split, .cart-container .customer-split {
  display: flex;
  gap: 2px;
}
@media only screen and (max-width: 780px) {
  .cart-container .cart-split, .cart-container .customer-split {
    flex-direction: column;
    gap: 0;
  }
}
.cart-container .cart-split .customer-info, .cart-container .customer-split .customer-info {
  width: calc(100% - 282px);
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 780px) {
  .cart-container .cart-split .customer-info, .cart-container .customer-split .customer-info {
    width: 100%;
  }
}
.cart-container .cart-split .customer-info h4, .cart-container .customer-split .customer-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.cart-container .cart-split .customer-info h5, .cart-container .customer-split .customer-info h5 {
  font-weight: 500;
  margin-bottom: 12px;
  border-bottom: 2px solid #ebebeb;
  padding-bottom: 2px;
  max-width: 660px;
}
.cart-container .cart-split .customer-info .ci-action, .cart-container .customer-split .customer-info .ci-action {
  flex-shrink: 0;
  background: #ffffff;
  padding: 20px;
}
.cart-container .cart-split .customer-info .ci-form, .cart-container .customer-split .customer-info .ci-form {
  flex-grow: 1;
  background: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 24px;
  padding-top: 0;
  margin-top: -20px;
}
.cart-container .cart-split .customer-info .ci-form .cif-row, .cart-container .customer-split .customer-info .ci-form .cif-row {
  display: flex;
  gap: 12px;
  max-width: 660px;
}
@media only screen and (max-width: 780px) {
  .cart-container .cart-split .customer-info .ci-form .cif-row, .cart-container .customer-split .customer-info .ci-form .cif-row {
    flex-direction: column;
  }
}
.cart-container .cart-split .customer-info .ci-form .cif-row > div, .cart-container .customer-split .customer-info .ci-form .cif-row > div {
  width: 100%;
}
.cart-container .cart-split .customer-info .ci-form .cif-row > div label, .cart-container .customer-split .customer-info .ci-form .cif-row > div label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #262938;
  margin-bottom: 6px;
}
.cart-container .cart-split .customer-info .ci-form .cif-row > div input, .cart-container .cart-split .customer-info .ci-form .cif-row > div select, .cart-container .customer-split .customer-info .ci-form .cif-row > div input, .cart-container .customer-split .customer-info .ci-form .cif-row > div select {
  display: block;
  width: 100%;
  -webkit-apperance: none;
  outline: none;
  border: 1px solid #cdcdcd;
  height: 35px;
  padding: 0 16px;
  box-sizing: border-box;
  border-radius: 6px;
  background: transparent;
}
.cart-container .cart-split .customer-info .ci-form .cif-row > div input[type=checkbox], .cart-container .customer-split .customer-info .ci-form .cif-row > div input[type=checkbox] {
  display: none;
}
.cart-container .cart-split .customer-info .ci-form .cif-row > div input[type=checkbox] + label, .cart-container .customer-split .customer-info .ci-form .cif-row > div input[type=checkbox] + label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.cart-container .cart-split .customer-info .ci-form .cif-row > div input[type=checkbox] + label em, .cart-container .customer-split .customer-info .ci-form .cif-row > div input[type=checkbox] + label em {
  display: block;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border-radius: 6px;
  cursor: pointer;
  background-color: transparent;
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border: 1px solid #cdcdcd;
  transition: 0.3s;
}
.cart-container .cart-split .customer-info .ci-form .cif-row > div input[type=checkbox] + label em:hover, .cart-container .customer-split .customer-info .ci-form .cif-row > div input[type=checkbox] + label em:hover {
  background-color: #f2f5f8;
}
.cart-container .cart-split .customer-info .ci-form .cif-row > div input[type=checkbox] + label a, .cart-container .customer-split .customer-info .ci-form .cif-row > div input[type=checkbox] + label a {
  color: #3b45f2;
}
.cart-container .cart-split .customer-info .ci-form .cif-row > div input[type=checkbox]:checked + label em, .cart-container .customer-split .customer-info .ci-form .cif-row > div input[type=checkbox]:checked + label em {
  background-image: url("../../plugins/sportwelt/public/img/check.svg");
}
.cart-container .cart-split .cart-list, .cart-container .customer-split .cart-list {
  width: calc(100% - 252px);
  padding: 0 0;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 780px) {
  .cart-container .cart-split .cart-list, .cart-container .customer-split .cart-list {
    width: 100%;
  }
}
.cart-container .cart-split .cart-list .pl-items, .cart-container .customer-split .cart-list .pl-items {
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
}
.cart-container .cart-split .cart-list .pl-items > li, .cart-container .customer-split .cart-list .pl-items > li {
  width: 100%;
  flex-direction: row;
  box-shadow: none;
  border-radius: 0;
  min-height: 130px;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-bottom: 2px solid #ebebeb;
}
.cart-container .cart-split .cart-list .pl-items > li.head, .cart-container .customer-split .cart-list .pl-items > li.head {
  min-height: 30px;
}
.cart-container .cart-split .cart-list .pl-items > li.head h3, .cart-container .cart-split .cart-list .pl-items > li.head span, .cart-container .customer-split .cart-list .pl-items > li.head h3, .cart-container .customer-split .cart-list .pl-items > li.head span {
  color: #40403e;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px !important;
}
.cart-container .cart-split .cart-list .pl-items > li .img, .cart-container .customer-split .cart-list .pl-items > li .img {
  flex-shrink: 0;
  width: 128px;
}
.cart-container .cart-split .cart-list .pl-items > li .img img, .cart-container .customer-split .cart-list .pl-items > li .img img {
  width: 128px;
  height: 96px;
  -o-object-fit: contain;
     object-fit: contain;
}
.cart-container .cart-split .cart-list .pl-items > li .detail, .cart-container .customer-split .cart-list .pl-items > li .detail {
  display: flex;
  gap: 10px;
  flex-grow: 1;
}
@media only screen and (max-width: 780px) {
  .cart-container .cart-split .cart-list .pl-items > li .detail, .cart-container .customer-split .cart-list .pl-items > li .detail {
    flex-direction: column;
    position: relative;
  }
}
.cart-container .cart-split .cart-list .pl-items > li .detail h3, .cart-container .customer-split .cart-list .pl-items > li .detail h3 {
  width: 50%;
  font-size: 16px;
}
@media only screen and (max-width: 780px) {
  .cart-container .cart-split .cart-list .pl-items > li .detail h3, .cart-container .customer-split .cart-list .pl-items > li .detail h3 {
    width: 100%;
  }
}
.cart-container .cart-split .cart-list .pl-items > li .detail .price, .cart-container .customer-split .cart-list .pl-items > li .detail .price {
  display: block;
  width: calc(50% - 120px);
  width: 120px;
  text-align: right;
}
@media only screen and (max-width: 780px) {
  .cart-container .cart-split .cart-list .pl-items > li .detail .price, .cart-container .customer-split .cart-list .pl-items > li .detail .price {
    width: 100%;
  }
}
.cart-container .cart-split .cart-list .pl-items > li .detail .qty, .cart-container .customer-split .cart-list .pl-items > li .detail .qty {
  width: 80px;
}
@media only screen and (max-width: 780px) {
  .cart-container .cart-split .cart-list .pl-items > li .detail .qty, .cart-container .customer-split .cart-list .pl-items > li .detail .qty {
    width: 100%;
    display: flex;
  }
}
.cart-container .cart-split .cart-list .pl-items > li .detail .qty input, .cart-container .customer-split .cart-list .pl-items > li .detail .qty input {
  width: 60px;
}
@media only screen and (max-width: 780px) {
  .cart-container .cart-split .cart-list .pl-items > li .detail .qty input, .cart-container .customer-split .cart-list .pl-items > li .detail .qty input {
    flex-grow: 1;
  }
}
.cart-container .cart-split .cart-list .pl-items > li .detail .qtyprice, .cart-container .customer-split .cart-list .pl-items > li .detail .qtyprice {
  display: block;
  width: 120px;
  text-align: right;
}
@media only screen and (max-width: 780px) {
  .cart-container .cart-split .cart-list .pl-items > li .detail .qtyprice, .cart-container .customer-split .cart-list .pl-items > li .detail .qtyprice {
    width: 100%;
  }
}
.cart-container .cart-split .cart-list .pl-items > li .detail .remove, .cart-container .customer-split .cart-list .pl-items > li .detail .remove {
  width: 40px;
}
@media only screen and (max-width: 780px) {
  .cart-container .cart-split .cart-list .pl-items > li .detail .remove, .cart-container .customer-split .cart-list .pl-items > li .detail .remove {
    width: 100%;
  }
}
.cart-container .cart-split .cart-list .pl-items > li .detail .remove a, .cart-container .customer-split .cart-list .pl-items > li .detail .remove a {
  display: block;
  background: white;
  overflow: hidden;
  width: 24px;
  height: 24px;
  background: url("../../plugins/sportwelt/public/img/trash.svg") no-repeat 50% 50%/contain;
  margin: 0 auto;
  text-indent: -10000px;
}
@media only screen and (max-width: 780px) {
  .cart-container .cart-split .cart-list .pl-items > li .detail .remove a, .cart-container .customer-split .cart-list .pl-items > li .detail .remove a {
    margin-right: 0;
  }
}
@media only screen and (max-width: 780px) {
  .cart-container .cart-split .cart-list .pl-items > li.head, .cart-container .customer-split .cart-list .pl-items > li.head {
    display: none;
  }
}
.cart-container .cart-split .ci-addresses, .cart-container .cart-split .ci-methods, .cart-container .customer-split .ci-addresses, .cart-container .customer-split .ci-methods {
  flex-shrink: 0;
  background: #ffffff;
  padding: 20px;
}
.cart-container .cart-split .ci-addresses > ul, .cart-container .cart-split .ci-methods > ul, .cart-container .customer-split .ci-addresses > ul, .cart-container .customer-split .ci-methods > ul {
  display: flex;
  max-width: 660px;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 12px;
}
.cart-container .cart-split .ci-addresses > ul > li input[type=radio], .cart-container .cart-split .ci-methods > ul > li input[type=radio], .cart-container .customer-split .ci-addresses > ul > li input[type=radio], .cart-container .customer-split .ci-methods > ul > li input[type=radio] {
  display: none;
}
.cart-container .cart-split .ci-addresses > ul > li label, .cart-container .cart-split .ci-methods > ul > li label, .cart-container .customer-split .ci-addresses > ul > li label, .cart-container .customer-split .ci-methods > ul > li label {
  display: flex;
  position: relative;
  border: 1px solid #cdcdcd;
  border-radius: 6px;
  flex-direction: column;
  cursor: pointer;
  padding: 6px 48px 6px 48px;
  gap: 4px;
  transition: 0.3s;
}
.cart-container .cart-split .ci-addresses > ul > li label:hover, .cart-container .cart-split .ci-methods > ul > li label:hover, .cart-container .customer-split .ci-addresses > ul > li label:hover, .cart-container .customer-split .ci-methods > ul > li label:hover {
  background: #f2f5f8;
}
.cart-container .cart-split .ci-addresses > ul > li label i, .cart-container .cart-split .ci-methods > ul > li label i, .cart-container .customer-split .ci-addresses > ul > li label i, .cart-container .customer-split .ci-methods > ul > li label i {
  position: absolute;
  left: 12px;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  border-radius: 12px;
  box-sizing: border-box;
  border: 1px solid #cdcdcd;
}
.cart-container .cart-split .ci-addresses > ul > li label i::before, .cart-container .cart-split .ci-methods > ul > li label i::before, .cart-container .customer-split .ci-addresses > ul > li label i::before, .cart-container .customer-split .ci-methods > ul > li label i::before {
  position: absolute;
  content: "";
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  background: #05a478;
  border-radius: 10px;
  visibility: hidden;
}
.cart-container .cart-split .ci-addresses > ul > li label em, .cart-container .cart-split .ci-methods > ul > li label em, .cart-container .customer-split .ci-addresses > ul > li label em, .cart-container .customer-split .ci-methods > ul > li label em {
  font-weight: 600;
}
.cart-container .cart-split .ci-addresses > ul > li label sup, .cart-container .cart-split .ci-addresses > ul > li label span, .cart-container .cart-split .ci-methods > ul > li label sup, .cart-container .cart-split .ci-methods > ul > li label span, .cart-container .customer-split .ci-addresses > ul > li label sup, .cart-container .customer-split .ci-addresses > ul > li label span, .cart-container .customer-split .ci-methods > ul > li label sup, .cart-container .customer-split .ci-methods > ul > li label span {
  font-size: 14px;
}
.cart-container .cart-split .ci-addresses > ul > li label .remove, .cart-container .cart-split .ci-methods > ul > li label .remove, .cart-container .customer-split .ci-addresses > ul > li label .remove, .cart-container .customer-split .ci-methods > ul > li label .remove {
  position: absolute;
  right: 12px;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  background: url("../../plugins/sportwelt/public/img/trash.svg") no-repeat 50% 50%/contain;
  filter: grayscale(100%);
  opacity: 0.66;
  transition: 0.3s;
}
.cart-container .cart-split .ci-addresses > ul > li label .remove:hover, .cart-container .cart-split .ci-methods > ul > li label .remove:hover, .cart-container .customer-split .ci-addresses > ul > li label .remove:hover, .cart-container .customer-split .ci-methods > ul > li label .remove:hover {
  opacity: 1;
  filter: grayscale(0%);
}
.cart-container .cart-split .ci-addresses > ul > li input[type=radio]:checked + label, .cart-container .cart-split .ci-methods > ul > li input[type=radio]:checked + label, .cart-container .customer-split .ci-addresses > ul > li input[type=radio]:checked + label, .cart-container .customer-split .ci-methods > ul > li input[type=radio]:checked + label {
  border-color: #05a478;
}
.cart-container .cart-split .ci-addresses > ul > li input[type=radio]:checked + label i, .cart-container .cart-split .ci-methods > ul > li input[type=radio]:checked + label i, .cart-container .customer-split .ci-addresses > ul > li input[type=radio]:checked + label i, .cart-container .customer-split .ci-methods > ul > li input[type=radio]:checked + label i {
  border-color: #05a478;
}
.cart-container .cart-split .ci-addresses > ul > li input[type=radio]:checked + label i::before, .cart-container .cart-split .ci-methods > ul > li input[type=radio]:checked + label i::before, .cart-container .customer-split .ci-addresses > ul > li input[type=radio]:checked + label i::before, .cart-container .customer-split .ci-methods > ul > li input[type=radio]:checked + label i::before {
  visibility: visible;
}
.cart-container .cart-split .ci-methods, .cart-container .customer-split .ci-methods {
  padding: 0;
}
.cart-container .cart-split .ci-methods > ul > li label, .cart-container .customer-split .ci-methods > ul > li label {
  padding-right: 16px;
}
.cart-container .cart-split .ci-methods > ul > li label em, .cart-container .customer-split .ci-methods > ul > li label em {
  font-size: 14px;
}
.cart-container .cart-split .cart-summary, .cart-container .cart-split .customer-summary, .cart-container .customer-split .cart-summary, .cart-container .customer-split .customer-summary {
  width: 250px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 780px) {
  .cart-container .cart-split .cart-summary, .cart-container .cart-split .customer-summary, .cart-container .customer-split .cart-summary, .cart-container .customer-split .customer-summary {
    width: 100%;
  }
}
.cart-container .cart-split .cart-summary .summary, .cart-container .cart-split .customer-summary .summary, .cart-container .customer-split .cart-summary .summary, .cart-container .customer-split .customer-summary .summary {
  flex-grow: 1;
  background: #ffffff;
  padding: 20px;
}
.cart-container .cart-split .cart-summary .summary h4, .cart-container .cart-split .customer-summary .summary h4, .cart-container .customer-split .cart-summary .summary h4, .cart-container .customer-split .customer-summary .summary h4 {
  font-weight: 600;
  border-bottom: 2px solid #ebebeb;
  padding-bottom: 4px;
  margin-top: -4px;
  margin-bottom: 10px;
}
.cart-container .cart-split .cart-summary .summary .summary-list li, .cart-container .cart-split .customer-summary .summary .summary-list li, .cart-container .customer-split .cart-summary .summary .summary-list li, .cart-container .customer-split .customer-summary .summary .summary-list li {
  padding: 6px 0;
}
.cart-container .cart-split .cart-summary .summary .summary-list li label, .cart-container .cart-split .customer-summary .summary .summary-list li label, .cart-container .customer-split .cart-summary .summary .summary-list li label, .cart-container .customer-split .customer-summary .summary .summary-list li label {
  display: block;
  font-size: 14px;
  color: #40403e;
}
.cart-container .cart-split .cart-summary .summary .summary-list li span, .cart-container .cart-split .customer-summary .summary .summary-list li span, .cart-container .customer-split .cart-summary .summary .summary-list li span, .cart-container .customer-split .customer-summary .summary .summary-list li span {
  display: block;
  text-align: right;
  margin-top: 2px;
  font-weight: 500;
  color: #40403e;
}
.cart-container .cart-split .cart-summary .summary .summary-list li.total, .cart-container .cart-split .customer-summary .summary .summary-list li.total, .cart-container .customer-split .cart-summary .summary .summary-list li.total, .cart-container .customer-split .customer-summary .summary .summary-list li.total {
  border-radius: 0 0 4px 4px;
  border-top: 2px solid #bebebe;
}
.cart-container .cart-split .cart-summary .summary .summary-list li.total label, .cart-container .cart-split .customer-summary .summary .summary-list li.total label, .cart-container .customer-split .cart-summary .summary .summary-list li.total label, .cart-container .customer-split .customer-summary .summary .summary-list li.total label {
  text-transform: uppercase;
}
.cart-container .cart-split .cart-summary .summary .summary-list li.total span, .cart-container .cart-split .customer-summary .summary .summary-list li.total span, .cart-container .customer-split .cart-summary .summary .summary-list li.total span, .cart-container .customer-split .customer-summary .summary .summary-list li.total span {
  font-weight: 700;
  color: #262938;
}
.cart-container .cart-split .cart-summary .summary .summary-list li.discount form, .cart-container .cart-split .customer-summary .summary .summary-list li.discount form, .cart-container .customer-split .cart-summary .summary .summary-list li.discount form, .cart-container .customer-split .customer-summary .summary .summary-list li.discount form {
  padding-top: 4px;
  gap: 4px;
  display: flex;
}
.cart-container .cart-split .cart-summary .summary .summary-list li.discount form input, .cart-container .cart-split .customer-summary .summary .summary-list li.discount form input, .cart-container .customer-split .cart-summary .summary .summary-list li.discount form input, .cart-container .customer-split .customer-summary .summary .summary-list li.discount form input {
  width: 0;
  flex-grow: 1;
}
.cart-container .cart-split .cart-summary .summary .summary-list li.discount form button, .cart-container .cart-split .customer-summary .summary .summary-list li.discount form button, .cart-container .customer-split .cart-summary .summary .summary-list li.discount form button, .cart-container .customer-split .customer-summary .summary .summary-list li.discount form button {
  margin-top: 0;
  font-size: 14px;
  line-height: 20px;
  height: 23px;
  padding: 0px 8px;
  border: 0px none;
}
.cart-container .cart-split .customer-summary, .cart-container .customer-split .customer-summary {
  width: 280px;
}
@media only screen and (max-width: 780px) {
  .cart-container .cart-split .customer-summary, .cart-container .customer-split .customer-summary {
    width: 100%;
  }
}
.cart-container .cart-foot {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: #cdcdcd;
  border-radius: 0 0 0 24px;
  flex-shrink: 0;
}
@media only screen and (max-width: 780px) {
  .cart-container .cart-foot {
    border-radius: 0;
  }
}
.cart-container .cart-foot .goback, .cart-container .cart-foot .empty {
  box-sizing: border-box;
  display: block;
  text-align: center;
  line-height: 40px;
  padding: 4px 20px 4px 40px;
  margin-top: -4px;
  background: #262938;
  color: #ffffff;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
}
.cart-container .cart-foot .goback::before, .cart-container .cart-foot .empty::before {
  background-image: url("../../plugins/sportwelt/public/img/ddown.svg");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: 12px;
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}
.cart-container .cart-foot .goback::before {
  transform: rotate(90deg);
  transform-origin: 50% 50%;
}
.cart-container .cart-foot .goback {
  text-indent: -10000px;
}
.cart-container .cart-foot .empty {
  background: #f2f5f8;
  border: 2px solid #e00808;
  padding: 2px 18px 2px 38px;
  color: #e00808;
  font-size: 14px;
}
.cart-container .cart-foot .empty::before {
  background-image: url("../../plugins/sportwelt/public/img/trash.svg");
  filter: none;
}
.cart-container .cart-foots {
  flex-shrink: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: #cdcdcd;
  border-radius: 0 0 24px 0;
  margin-left: -2px;
}
@media only screen and (max-width: 780px) {
  .cart-container .cart-foots {
    border-radius: 0 0 24px 24px;
  }
}
.cart-container .cart-foots .goback, .cart-container .cart-foots .empty,
.cart-container .cart-foots .nextstep {
  display: block;
  text-align: center;
  line-height: 40px;
  padding: 4px 40px;
  margin-top: -4px;
  background: #54c154;
  color: #ffffff;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  -webkit-apperance: none;
  outline: none;
  border: 0;
  cursor: pointer;
}
.cart-container .cart-foots .goback[disabled], .cart-container .cart-foots .empty[disabled],
.cart-container .cart-foots .nextstep[disabled] {
  background: #8f8f8e;
  cursor: initial;
}
.cart-container .cart-foots .goback::before, .cart-container .cart-foots .goback::after, .cart-container .cart-foots .empty::before, .cart-container .cart-foots .empty::after,
.cart-container .cart-foots .nextstep::before,
.cart-container .cart-foots .nextstep::after {
  background-image: url("../../plugins/sportwelt/public/img/ddown.svg");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: 12px;
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}
.cart-container .cart-foots .goback::after, .cart-container .cart-foots .empty::after,
.cart-container .cart-foots .nextstep::after {
  left: auto;
  right: 16px;
}
.cart-container .newaddrbox {
  position: relative;
  max-width: 660px;
  box-sizing: border-box;
  border: 1px solid #cdcdcd;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 6px 48px 0px 48px;
}
.cart-container .newaddrbox .asaddr {
  padding-bottom: -1px;
  margin-bottom: -1px;
}
.cart-container .newaddrbox .cif-row:last-of-type {
  padding-bottom: 24px;
}
@media only screen and (max-width: 780px) {
  .cart-container .newaddrbox {
    padding: 12px;
  }
}
.cart-container .customer-split {
  display: flex;
}
.cart-container .profile-split > div {
  display: flex;
}
.cart-container .profile-split > div .ci-addresses {
  flex-grow: 1;
}
.cart-container .profile-split .addresses .cart-foot {
  border-radius: 0;
  margin-left: -2px;
}
.cart-container .profile-split .customer-summary .cif-row {
  margin-bottom: 12px;
}
.cart-container .profile-split .customer-summary .cif-row label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #262938;
  margin-bottom: 6px;
}
.cart-container .profile-split .customer-summary .cif-row span, .cart-container .profile-split .customer-summary .cif-row input {
  display: block;
  width: 100%;
  -webkit-apperance: none;
  outline: none;
  border: 1px solid #cdcdcd;
  height: 35px;
  padding: 0 16px;
  box-sizing: border-box;
  border-radius: 6px;
  background: transparent;
  line-height: 33px;
  font-size: 14px;
}
.cart-container .profile-split .customer-summary .cif-row span {
  border-color: #ebebeb;
  background: #ebebeb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-container .profile-split .customer-summary .btn {
  margin-top: 6px;
  cursor: pointer;
  line-height: 28px;
  padding: 4px 28px;
}
.cart-container .ci-orders > ul > li {
  position: relative;
  padding: 6px 12px;
  border-bottom: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}
.cart-container .ci-orders > ul > li:hover {
  background: #f2f5f8;
}
.cart-container .ci-orders > ul > li em {
  position: absolute;
  right: 12px;
  top: 6px;
  font-size: 14px;
}
.cart-container .ci-orders > ul > li > span {
  display: block;
  font-size: 14px;
  font-weight: 500;
}
.cart-container .ci-orders > ul > li sub {
  font-size: 18px;
  margin: 5px 0;
}
.cart-container .ci-orders > ul > li .delivery {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  align-items: center;
  margin-bottom: 5px;
}
.cart-container .ci-orders > ul > li .delivery span {
  display: block;
  font-size: 14px;
  padding: 0 6px;
  line-height: 20px;
  border: 1px solid #cdcdcd;
  text-transform: uppercase;
  color: #40403e;
  border-radius: 6px;
  font-weight: 600;
}
.cart-container .ci-orders > ul > li .delivery.sent span {
  color: #05a478;
  border-color: #05a478;
}
.cart-container .ci-orders > ul > li .delivery.delivered span {
  color: #54c154;
  border-color: #54c154;
}
.cart-container .ci-orders > ul > li button {
  display: inline-block;
  text-align: center;
  line-height: 28px;
  padding: 4px 28px;
  margin-top: 4px;
  background: #54c154;
  color: #ffffff;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  -webkit-apperance: none;
  border: none;
  cursor: pointer;
}

.cart-container form.submitted .customer-split .customer-info .ci-form .cif-row > div input[type=checkbox]:invalid + label {
  color: #e00808;
}
.cart-container form.submitted .customer-split .customer-info .ci-form .cif-row > div input[type=checkbox]:invalid + label em {
  border-color: #e00808;
}

.cart-container form.submitted .cart-split .customer-info .ci-form .cif-row > div select:invalid,
.cart-container form.submitted .cart-split .customer-info .ci-form .cif-row > div input:invalid[type=email],
.cart-container form.submitted .cart-split .customer-info .ci-form .cif-row > div input:invalid[type=text],
.cart-container form.submitted .customer-split .customer-info .ci-form .cif-row > div select:invalid,
.cart-container form.submitted .customer-split .customer-info .ci-form .cif-row > div input:invalid[type=email],
.cart-container form.submitted .customer-split .customer-info .ci-form .cif-row > div input:invalid[type=text] {
  border-color: #e00808;
}

.register-page {
  margin: 40px 0;
}
.register-page .register-split {
  display: flex;
  margin-top: 12px;
}
@media only screen and (max-width: 780px) {
  .register-page .register-split {
    flex-direction: column;
  }
}
.register-page .introimg {
  overflow: hidden;
  border-radius: 0 8px 8px 0;
  position: relative;
}
@media only screen and (max-width: 780px) {
  .register-page .introimg {
    display: none;
  }
}
.register-page .introimg::before {
  content: "";
  opacity: 0.5;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(to right, #0e7b86, #04a478);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.register-page .introimg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.register-page h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}
.register-page form {
  max-width: 500px;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 20px 40px;
  border-radius: 8px 0 0 8px;
}
@media only screen and (max-width: 780px) {
  .register-page form {
    box-sizing: border-box;
    border-radius: 8px;
  }
}
.register-page form .rf-row {
  margin-bottom: 12px;
}
.register-page form .rf-row label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #262938;
  margin-bottom: 6px;
}
.register-page form .rf-row input {
  display: block;
  width: 100%;
  -webkit-apperance: none;
  outline: none;
  border: 1px solid #cdcdcd;
  height: 35px;
  padding: 0 16px;
  box-sizing: border-box;
  border-radius: 6px;
  background: transparent;
  line-height: 33px;
  font-size: 14px;
}
.register-page form .rf-row input[type=checkbox] {
  display: none;
}
.register-page form .rf-row .check {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.register-page form .rf-row .check a {
  color: #3b45f2;
}
.register-page form .rf-row .check em {
  display: block;
  width: 24px;
  height: 24px;
  background: #ebebeb;
  border-radius: 4px;
  transition: 0.3s;
  flex-shrink: 0;
  cursor: pointer;
}
.register-page form .rf-row .check input:checked + em {
  background: #ebebeb url("../../plugins/sportwelt/public/img/check.svg") no-repeat 50% 50%;
  background-size: 16px;
}
.register-page form .rf-row .check:hover input:checked + em {
  background-color: #cdcdcd;
}
.register-page form .rf-row .btn {
  border: 0;
  -webkit-apperance: none;
  outline: none;
  text-align: center;
  line-height: 40px;
  padding: 4px 40px;
  background: #54c154;
  color: #ffffff;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  line-height: 28px;
  padding: 4px 28px;
}

.order-summary {
  margin: 60px 0;
}
.order-summary h2 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}
.order-summary table {
  width: 100%;
  max-width: 660px;
  margin-bottom: 30px;
}
.order-summary table th, .order-summary table td {
  padding: 6px 0;
}
.order-summary table th.head {
  font-weight: 600;
  border-bottom: 2px solid #cdcdcd;
}
.order-summary table td.foot {
  font-weight: 600;
  border-top: 2px solid #cdcdcd;
}
.order-summary table tr:hover td {
  background: #ffffff;
}
.order-summary .cardt {
  line-height: 25px;
}
.order-summary .cardt label {
  display: inline-block;
  width: 220px;
  text-align: right;
  color: #3d404d;
}
.order-summary .note {
  margin-top: 20px;
  border: 2px solid #54c154;
  max-width: 660px;
  box-sizing: border-box;
  padding: 6px 12px;
  font-size: 14px;
  background: #ffffff;
  border-left: 10px solid #54c154;
}
.order-summary .note.notfp {
  border-color: #f8fc06;
}
.order-summary .note.error {
  border-color: #e00808;
}
.order-summary .addresses {
  margin-top: 20px;
}
.order-summary .addresses h3 {
  font-size: 18px;
  border-bottom: 1px solid #cdcdcd;
  max-width: 500px;
  margin: 12px 0;
}
.order-summary .addresses ul li {
  line-height: 25px;
}
.order-summary .addresses label {
  display: inline-block;
  width: 220px;
  text-align: right;
  color: #3d404d;
}

.blog-list h1 {
  color: #07393c;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}
.blog-list .blogcategories {
  margin-top: 25px;
  display: flex;
  gap: 16px;
}
.blog-list .blogcategories > li a {
  display: block;
  line-height: 36px;
  background: #ffffff;
  padding: 0 24px;
  text-transform: uppercase;
  border-radius: 20px;
}
.blog-list .blogList {
  padding: 25px 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  overflow: hidden;
}
.blog-list .blogList > li {
  background: #ffffff;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  padding: 12px;
  overflow: hidden;
  width: calc(25% - 15px);
}
@media only screen and (max-width: 780px) {
  .blog-list .blogList > li {
    width: 100%;
  }
}
.blog-list .blogList > li .photo {
  order: -1;
  margin: -12px -12px 0;
  width: calc(100% + 24px);
}
.blog-list .blogList > li .photo img {
  display: block;
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-list .blogList > li h2 {
  margin: 8px 0;
  color: #427ea4;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.blog-list .blogList > li p {
  color: #727272;
  font-size: 12px;
  line-height: 18px;
  margin: 8px 0;
}
.blog-list .blogList > li .categories {
  display: flex;
  color: #262938;
  font-size: 12px;
  font-weight: 600;
  gap: 12px;
  text-transform: uppercase;
  margin: 4px 0;
}

@media only screen and (max-width: 780px) {
  .blog-content .container {
    padding: 0;
  }
}

.discountList > li {
  display: flex;
  position: relative;
  border: 1px solid #cdcdcd;
  border-radius: 6px;
  flex-direction: column;
  cursor: pointer;
  padding: 6px 48px 6px 28px;
  gap: 4px;
  transition: 0.3s;
}
.discountList > li:hover {
  background: #f2f5f8;
}
.discountList > li > div {
  display: flex;
  gap: 6px;
  font-size: 14px;
}
.discountList > li > div em {
  display: block;
  font-weight: 600;
}
.discountList > li .referral-note-content {
  border: 2px solid #54c154;
  padding: 6px 18px;
  border-radius: 12px;
  color: #0f7984;
  background: white;
}
.discountList > li .referral-note-content em {
  margin-bottom: 6px;
}
.discountList > li.new {
  flex-direction: row;
  padding-top: 12px;
  padding-bottom: 12px;
  align-items: center;
}
.discountList > li.new input {
  display: block;
  width: 100%;
  -webkit-apperance: none;
  outline: none;
  border: 1px solid #cdcdcd;
  height: 35px;
  padding: 0 16px;
  box-sizing: border-box;
  border-radius: 6px;
  background: transparent;
  line-height: 33px;
  font-size: 14px;
  background: white;
}
.discountList > li.new button {
  display: inline-block;
  text-align: center;
  padding: 4px 40px;
  background: #54c154;
  color: #ffffff;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  border: none;
  -webkit-apperance: none;
  flex-shrink: 0;
}

.invalid {
  outline: 1px solid #e00808;
}

.betterprice-form .row {
  margin-bottom: 8px;
}
.betterprice-form .row label {
  display: block;
  margin-bottom: 2px;
}
.betterprice-form .row input {
  display: block;
  width: 100%;
  -webkit-apperance: none;
  outline: none;
  border: 1px solid #cdcdcd;
  height: 35px;
  padding: 0 16px;
  box-sizing: border-box;
  border-radius: 6px;
  background: transparent;
  line-height: 33px;
  font-size: 14px;
}
.betterprice-form .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.betterprice-form .actions .button {
  background: #0e7b86;
  background: #e00808;
  padding: 10px;
  border: 0px none;
  cursor: pointer;
  color: white;
  padding-left: 20px;
  padding-right: 20px;
}
.betterprice-form .actions .button.button-primary {
  background: #0e7b86;
}
.betterprice-form .check {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 6px;
  width: 100%;
}
.betterprice-form .check input {
  display: none;
}
.betterprice-form .check a {
  color: #3b45f2;
}
.betterprice-form .check em {
  display: block;
  width: 24px;
  height: 24px;
  background: #ebebeb;
  border-radius: 4px;
  transition: 0.3s;
  flex-shrink: 0;
  cursor: pointer;
}
.betterprice-form .check input:checked + em {
  background: #ebebeb url("../../plugins/sportwelt/public/img/check.svg") no-repeat 50% 50%;
  background-size: 16px;
}
.betterprice-form .check:hover input:checked + em {
  background-color: #cdcdcd;
}

.betterprice-add-to-cart {
  display: flex;
  margin-top: 8px;
}
.betterprice-add-to-cart button {
  border-radius: 0px 50px 50px 0px;
  padding-top: 1px;
  padding-bottom: 1px;
}
.betterprice-add-to-cart input {
  border-radius: 50px 0px 0px 50px;
  outline: none;
  -webkit-apperance: none;
  border: 1px solid #3c3f4c;
  border-right: 0;
  padding: 0 12px;
}

.toast {
  position: fixed;
  top: 8px;
  left: calc(50% - 140px);
  width: 280px;
  z-index: 1003;
}
.toast ul > li {
  visibility: hidden;
  background: #666;
  color: white;
  margin-bottom: 4px;
  padding: 6px 4px 6px 8px;
  border-radius: 3px;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}
.toast ul > li.active {
  visibility: visible;
}
.toast ul > li .toast-content {
  flex-grow: 1;
}
.toast ul > li span.close {
  display: block;
  position: relative;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  flex-shrink: 0;
}
.toast ul > li span.close::before, .toast ul > li span.close::after {
  top: calc(50% - 1px);
  left: 0px;
  right: 0;
  content: "";
  position: absolute;
  height: 2px;
  background: white;
  transform-origin: 50% 50%;
}
.toast ul > li span.close::before {
  transform: rotate(45deg);
}
.toast ul > li span.close::after {
  transform: rotate(-45deg);
}
.toast ul > li a.close {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.toast ul > li.toast-ok {
  background: #008000;
}
.toast ul > li.toast-warn {
  background: #606000;
}
.toast ul > li.toast-fail {
  background: #c00000;
}

footer nav > ul {
  flex-wrap: wrap;
}

.navmain.active .navmainbox {
  display: block;
  z-index: 100;
}

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