#main {
    background-color: #efefef !important;
    padding-top: 20px !important;
}

.products-list {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    /*justify-content: space-between;*/
}

.product-box {
    display: flex;
    flex-direction: column;
    width: 33.3%;
    padding: 5px;
    height: 330px;
}

@media only screen and (max-width: 1025px) {
    .product-box {
        width: 50%;
    }
}
@media only screen and (max-width: 600px) {
    .product-box {
        width: 100%;
    }

    .products-container,
    .products-base-list {
        width: 100% !important;
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
}

.product-box--inner {
    background: #FFFFFF;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}

.product-box img {
    margin: 0 auto;
    width: 80%;
    height: 140px;
    object-fit: contain;
}

.flip-box-inner:not(.flip-box-flip-inner) .flip-box-front a img {
    padding-top: 20px;
}

.flip-box-front h3 {
    color: #224592 !important;
    font-size: 22px !important;
    line-height: 1 !important;
    margin: 15px 0 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    padding: 0 10px;
    height: 44px;
}

.flip-box-back h3 {
    color: #FFFFFF !important;
    font-size: 26px !important;
    line-height: 1 !important;
    margin: 0;
}

/* The flip box container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-box {
    background-color: transparent;
    width: 100%;
    height: 100%;
    border: 1px solid #f1f1f1;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-box-flip:hover .flip-box-flip-inner {
    transform: rotateY(180deg);
    background: #efefef;
}

/* Position the front and back side */
.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
}

/* Style the front side */
.flip-box-front {
    background-color: #FFFFFF;
    color: black;
    border-radius: 20px;

    justify-content: space-between;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

/* Style the back side */
.flip-box-back {
    background-color: #0d479d;
    color: #FFFFFF;
    transform: rotateY(180deg);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 25px;
}

.flip-box-back--nafukovaci-kajaky {
    background-color: #9c001f;
    color: #FFFFFF;
}

.flip-box-back--nafukovaci-kanoe {
    background-color: #00b4dc;
    color: #FFFFFF;
}

.flip-box-back--nafukovaci-rybarske-cluny {
    background-color: #19d041;
    color: #FFFFFF;
}

.flip-box-back--nafukovaci-rafty-a-cluny {
    background-color: #f5cb0d;
    color: #FFFFFF;
}

.product-box--green-text {
    color: #7ab51d;
}
.product-box--orange-text {
    color: #f0c419;
}

.product-box--red-text {
    color: #f01919;
}

.product-box--stock {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    margin-top: 3px;
    padding-top: 5px;
}

.product-box--top-colors-absolute {
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    align-items: center;
}

.product-box--top--color-text {
    font-size: 12px;
    font-weight: bold;
    color: #818181;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    background: #ffffff;
}

.product-box--price {
    color: #818181;
    font-weight: lighter;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-box-flip-inner .product-box--price {
    margin-top: 10px;
}

.product-box--price--before {
    text-decoration: line-through;
    font-size: 14px;
    margin-right: 10px;
}
.product-box--price--after {
    font-weight: bold;
}

.product-box--tags {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-box--tags-inner {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-box--tag {
    display: flex;
    align-items: center;
    flex-direction: row;
    font-size: 17px;
    height: 30px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.product-box--tag img,
.product-box--tag--no-image {
    width: 30px;
    height: 30px;
    object-fit: contain;
    background-color: #FFFFFF;
    border-radius: 30px;
    margin-right: 10px;
}

.product-box--tag--no-image {
    display: inline-block;
}

.flip-box-back .product-box--link {
    padding: 5px 30px;
    background: transparent;
    color: #FFFFFF;
    border-radius: 45px;
    font-size: 15px;
    border: 2px solid #FFFFFF;

    text-transform: uppercase;
}

.flip-box-back .product-box--link:hover {
    background: #FFFFFF;
    color: #224592;
    cursor: pointer;
}

.flip-box-front .product-box--link {
    padding: 3px 20px 1px;
    background: transparent;
    color: #F0C419;
    border-radius: 45px;
    font-size: 15px;
    border: 2px solid #F0C419;
    display: inline-block;
    text-transform: uppercase;
}

.flip-box-front .product-box--link:hover {
    background: #F0C419;
    color: #FFFFFF;
    cursor: pointer;
}

.product-box--top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding: 5px 15px;
}

.product-box--top .onsale {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-box--top-colors {
    font-size: 12px;
    font-weight: bold;
    color: #818181;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.product-box--top-awards {
    display: flex;
    flex-direction: row;
}

.product-box--top-awards img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    position: absolute;
    top: 10px;
    left: 10px;
}

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

.product-box--color:first-of-type {
    margin-left: 7px;
}

.product-box--color--cervena {
    background: #D52F3A;
}

.product-box--color--zelena {
    background: #7AB51D;
}

.product-box--color--zluta {
    background: #ffff00;
}

.product-box--color--cerna {
    background: #000000;
}

.product-box--color--tmave-zelena {
    background: #136c48;
}

.product-box--color--lesni-zelena, .product-box--color--tmave-zelena {
    background: #136c48;
}

.product-box--color--jarni-zelena, .product-box--color--svetle-zelena  {
    background: #90ee90;
}


.product-box--color--jarni-zelena, .product-box--color--seda  {
    background: gray;
}

.product-box--color--maskac {
    background-image: url(/wp-content/uploads/2022/02/maskac.jpg);
    background-size: cover;
}

.product-box--color--vanocni-vzor {
    background-image: url(/wp-content/uploads/2023/11/vanocni-detail-e1701338170769.png);
  background-size: cover;
}
.product-box--color--recky-tyrkysovy {
    background-image: url(/wp-content/uploads/2023/11/recky-detail-e1701338403428.png);
  background-size: cover;
}
.product-box--color--detsky-vzor {
    background-image: url(/wp-content/uploads/2023/11/detsky-detail-e1701338256481.png);
  background-size: cover;
}
.product-box--color--sestiuhelniky {
    background-image: url(/wp-content/uploads/2023/11/sestiuhelniky-detail-e1701338298749.png);
  background-size: cover;
}

.product-box--color--oranzova {
    background: #f0a30a;
}

.product-box--color--modra {
    background: #3461fe;
}

.product-box--non-flippable-price {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    margin-top: 15px;
}

.product-box--non-flippable-price .product-box--price {
    margin-right: 10px;
}

.product-box--compare-button {
    transition: background-image 0.5s;
    background-color: transparent;
    box-shadow: none;
    width: 42px;
    height: 100%;
    background-size: 23px;
    border: 2px solid #FFFFFF;
    background-image: url('/wp-content/uploads/2022/03/porovnavac-white.svg');

    font-size: 0;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;

    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.product-box--compare-button:hover {
    background-image: url('/wp-content/uploads/2022/02/porovnavac.svg');
    border: 2px solid #F0C419;
}

.product-box--compare-button--active {
    background-image: url('/wp-content/uploads/2022/02/porovnavac.svg');
    border: 2px solid #F0C419;
    cursor: default;
}

.product-box--detail-with-compare {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-box--detail-with-compare a {
    margin-right: 10px;
}

@media only screen and (max-width: 1199px) {
    .product-box--non-flippable-price .product-box--price {
        flex-direction: column;
        text-align: center;
    }

    .product-box--non-flippable-price .product-box--price--before {
        margin-right: 0;
    }
    .product-box--non-flippable-price .product-box--price--after {
        line-height: 1;
    }
}

@keyframes skeleton-loading {
    0% {
        background-color: #F5F5F5; /* FROM Color 1 */
    }
    100% {
        background-color: #E2E2E2; /* TO Color 2 */
    }
}

.skeleton {
    animation: skeleton-loading 1s linear infinite alternate;
    color: transparent;
}

.products-extended-filters {
    width: 25%;
    margin-right: 10px;
}

.products-filter-extended {
    /*position: absolute;*/
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    z-index: 4;
    /*top: -110px;*/
    position: relative;
}

/*.products-filter-extended .products-filter-extended__title {*/
/*    font-size: 16px;*/
/*    width: 100%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    cursor: pointer;*/
/*    padding: 5px;*/
/*}*/

.products-filter-extended .products-filter-extended__title {
    color: #fff;
    background: #427ed1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*width: 50px;*/
    height: 50px;
    /*border-radius: 45px;*/
    border: 1px solid #666;
    /*background: #FFF;*/
    cursor: pointer;
    /*box-shadow: 0 5px 12px 0 rgba(0, 0, 0, .14901960784313725);*/
    border-radius: 10px;
    padding: 0 15px 0 15px;
    text-transform: uppercase;
}

.products-filter-extended .products-filter-extended__title img,
.products-filter-extended .products-filter-extended__title.active img:hover {
    padding: 15px 13px 13px 13px;
    object-fit: contain;
    filter: invert(22%) sepia(74%) saturate(1670%) hue-rotate(192deg) brightness(99%) contrast(84%);
}

.products-filter-extended .products-filter-extended__title.active,
.products-filter-extended .products-filter-extended__title:hover
{
    background: #427ed1;
    color: #FFF;
    transition: 0.3s;
}

.products-filter-extended .products-filter-extended__title.active:hover {
    background: #fff;
    transition: 0.3s;
    color: #000;
}

.products-filter-extended .products-filter-extended__title img:hover,
.products-filter-extended .products-filter-extended__title.active img {
    filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(249deg) brightness(107%) contrast(101%);
}

.products-filter-extended .filter-arrow-down {
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
}

.products-filter-extended .filter-arrow-up {
    border: solid #fff;
    border-width: 0 2px 2px 0;
    padding: 4px;
    transform: rotate(-135deg);
    display: none;
}

.products-filter-extended .products-filter-extended__form {
    display: none;
}

.products-filter-extended .products-filter-extended__form {
    flex-direction: column;
    padding: 15px;
    background: #FFF;
    width: 270px;
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, .14901960784313725);
    border-radius: 10px;
    margin-top: 5px;
    position: absolute;
    top: 50px;
}

.products-filter-extended__form-content .products-filter-extended__form-title {
    font-size: 20px;
    color: #313131;
    font-weight: bold;
    margin-bottom: 8px;
    margin-top: 8px;
}

.products-filter-extended__form-content .form-check {
    margin-left: 5px;
    margin-bottom: 5px;
}

.products-filter-loader {
    width: 25px;
    aspect-ratio: 4;
    --_g: no-repeat radial-gradient(circle closest-side,#fff 90%,#fff);
    background:
            var(--_g) 0%   50%,
            var(--_g) 50%  50%,
            var(--_g) 100% 50%;
    background-size: calc(100%/3) 100%;
    animation: l7 1s infinite linear;
}
@keyframes l7 {
    33%{background-size:calc(100%/3) 0%  ,calc(100%/3) 100%,calc(100%/3) 100%}
    50%{background-size:calc(100%/3) 100%,calc(100%/3) 0%  ,calc(100%/3) 100%}
    66%{background-size:calc(100%/3) 100%,calc(100%/3) 100%,calc(100%/3) 0%  }
}

.checkbox-wrapper-28 {
    --size: 25px;
    position: relative;
}

.checkbox-wrapper-28 *,
.checkbox-wrapper-28 *:before,
.checkbox-wrapper-28 *:after {
    box-sizing: border-box;
}

.checkbox-wrapper-28 .promoted-input-checkbox {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.checkbox-wrapper-28 input:checked ~ svg {
    height: calc(var(--size) * 0.6);
    -webkit-animation: draw-checkbox-28 ease-in-out 0.2s forwards;
    animation: draw-checkbox-28 ease-in-out 0.2s forwards;
}
.checkbox-wrapper-28 label:active::after {
    background-color: #e6e6e6;
}
.checkbox-wrapper-28 label:hover {
    color: #427ed1;
}
.checkbox-wrapper-28 label {
    color: #1a539f;
    line-height: var(--size);
    cursor: pointer;
    position: relative;
}
.checkbox-wrapper-28 label:after {
    content: "";
    height: var(--size);
    width: var(--size);
    margin-right: 8px;
    float: left;
    border: 2px solid #1a539f;
    border-radius: 3px;
    transition: 0.15s all ease-out;
}
.checkbox-wrapper-28 svg {
    stroke: #1a539f;
    stroke-width: 3px;
    height: 0;
    width: calc(var(--size) * 0.6);
    position: absolute;
    left: calc(var(--size) * 0.21);
    top: calc(var(--size) * 0.2);
    stroke-dasharray: 33;
}

@-webkit-keyframes draw-checkbox-28 {
    0% {
        stroke-dashoffset: 33;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes draw-checkbox-28 {
    0% {
        stroke-dashoffset: 33;
    }
    100% {
        stroke-dashoffset: 0;
    }
}


.elementor-widget-woocommerce-product-price bdi {
    white-space: nowrap;
}
.elementor-widget-woocommerce-product-price .price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

@media only screen and (max-width: 480px) {
    .elementor-widget-woocommerce-product-price .price {
        flex-direction: column-reverse;
        align-items: flex-start !important;
    }
    .elementor-widget-woocommerce-product-price .price del {
        margin-left: 0 !important;
    }
}

.woocommerce span.onsale {
    z-index: 4 !important;
}


.product-detail-tags {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}
