/**
 * Copyright © 2018 Webcrossing, All rights reserved
 * gregor@web-crossing.eu
 * Gregor Isser
 */

/*WEBCROSSING CATEGORY WIDGET*/
.block.widget.webcrossing-base-category .block-content .category-wrapper {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
}

.block.widget.webcrossing-base-category .block-content .category-wrapper .category {
    margin-bottom:30px;
    margin-right:30px;
}

@media (min-width:1001px) {
    .block.widget.webcrossing-base-category .block-content .category-wrapper.two .category {
        width:calc((100% - 30px) / 2);
    }

    .block.widget.webcrossing-base-category .block-content .category-wrapper.two .category:nth-child(2n) {
        margin-right:0;
    }

    .block.widget.webcrossing-base-category .block-content .category-wrapper.three .category {
        width:calc((100% - 60px) / 3);
    }

    .block.widget.webcrossing-base-category .block-content .category-wrapper.three .category:nth-child(3n) {
        margin-right:0;
    }

    .block.widget.webcrossing-base-category .block-content .category-wrapper.four .category {
        width:calc((100% - 90px) / 4);
    }

    .block.widget.webcrossing-base-category .block-content .category-wrapper.four .category:nth-child(4n) {
        margin-right:0;
    }
}

@media (max-width:1000px) and (min-width:701px) {
    .block.widget.webcrossing-base-category .block-content .category-wrapper.two .category {
        width:calc((100% - 30px) / 2);
    }

    .block.widget.webcrossing-base-category .block-content .category-wrapper.two .category:nth-child(2n) {
        margin-right:0;
    }

    .block.widget.webcrossing-base-category .block-content .category-wrapper.three .category,
    .block.widget.webcrossing-base-category .block-content .category-wrapper.four .category {
        width:calc((100% - 60px) / 3);
    }

    .block.widget.webcrossing-base-category .block-content .category-wrapper.three .category:nth-child(3n),
    .block.widget.webcrossing-base-category .block-content .category-wrapper.four .category:nth-child(3n) {
        margin-right:0;
    }
}

@media (max-width:700px) and (min-width:501px) {
    .block.widget.webcrossing-base-category .block-content .category-wrapper.two .category,
    .block.widget.webcrossing-base-category .block-content .category-wrapper.three .category,
    .block.widget.webcrossing-base-category .block-content .category-wrapper.four .category {
        width:calc((100% - 30px) / 2);
    }

    .block.widget.webcrossing-base-category .block-content .category-wrapper.two .category:nth-child(2n),
    .block.widget.webcrossing-base-category .block-content .category-wrapper.three .category:nth-child(2n),
    .block.widget.webcrossing-base-category .block-content .category-wrapper.four .category:nth-child(2n) {
        margin-right:0;
    }
}

@media (max-width:500px) {
    .block.widget.webcrossing-base-category .block-content .category-wrapper.two .category,
    .block.widget.webcrossing-base-category .block-content .category-wrapper.three .category,
    .block.widget.webcrossing-base-category .block-content .category-wrapper.four .category {
        width:100%;
        margin-right:0;
    }
}

/*WEBCROSSING PRODUCT WIDGET*/
.block.widget.webcrossing-base-product .block-title {
    text-align: center;
    margin: 0;
    border: 0;
}

.block.widget.webcrossing-base-product .block-title strong {
    font-size: 50px;
    color:#000;
    text-transform: uppercase;
    font-weight: 400;
}

.block.widget.webcrossing-base-product .block-description {
    text-align:center;
    margin-bottom:80px;
}

.block.widget.webcrossing-base-product .block-toolbar {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
    color:#000;
    margin-bottom:20px;
}

.block.widget.webcrossing-base-product .block-toolbar .switcher-language .switcher-label,
.block.widget.webcrossing-base-product .block-toolbar .switcher-currency .switcher-label {
    margin-right:0;
}

.block.widget.webcrossing-base-product .block-toolbar .switcher-language .switcher-options,
.block.widget.webcrossing-base-product .block-toolbar .switcher-currency .switcher-options {
    display:inline-block;
    cursor:pointer;
    position:relative;
    text-align:right;
    padding: 0 0 0 20px;
}

.block.widget.webcrossing-base-product .block-toolbar .switcher-language .switcher-options .switcher-trigger:after,
.block.widget.webcrossing-base-product .block-toolbar .switcher-currency .switcher-options .switcher-trigger:after {
    content: "\f078";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    font-weight: 600;
    margin-left:5px;
}

.block.widget.webcrossing-base-product .block-toolbar .switcher-language .switcher-options ul,
.block.widget.webcrossing-base-product .block-toolbar .switcher-currency .switcher-options ul {
    display:none;
}

.block.widget.webcrossing-base-product .block-toolbar .switcher-language .switcher-options:hover ul,
.block.widget.webcrossing-base-product .block-toolbar .switcher-currency .switcher-options:hover ul {
    display:block;
    position:absolute;
    list-style:none;
    left:0;
    background-color:#fff;
    border:2px solid;
    border-radius:5px;
    text-align: right;
    padding: 3px 20px;
    z-index:3;
}

.block.widget.webcrossing-base-product .block-toolbar .switcher-language .switcher-options:hover .switcher-trigger:after,
.block.widget.webcrossing-base-product .block-toolbar .switcher-currency .switcher-options:hover .switcher-trigger:after {
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.block.widget.webcrossing-base-product .block-toolbar .switcher-language .switcher-options ul a,
.block.widget.webcrossing-base-product .block-toolbar .switcher-currency .switcher-options ul a {
    color:#000;
    font-weight:600;
    text-decoration:none;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product {
    margin-bottom:30px;
    margin-right:30px;
    border:2px solid;
    border-radius:5px;
    background-color:#fff;
    box-sizing: border-box;
    padding:0 30px 30px 30px;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.yellow {
    border-color:#e7b800;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.blue {
    border-color:#4a90e2;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.green {
    border-color:#6ed788;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product .product-image {
    max-width:140px;
    margin:0 auto;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product .product-content .product-content-headline a {
    text-decoration:none;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product .product-content .product-content-headline a h3 {
    text-align:center;
    text-transform:uppercase;
    font-size: 46px;
    margin:0;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.yellow .product-content .product-content-headline a h3 {
    color:#e7b800;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.blue .product-content .product-content-headline a h3 {
    color:#4a90e2;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.green .product-content .product-content-headline a h3 {
    color:#6ed788;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product .product-content .product-content-price {
    text-align:center;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product .product-content .product-content-price .price {
    color:#000;
    font-size:36px;
}
.block.widget.webcrossing-base-product .block-content .product-wrapper .product .product-content .product-content-price .price .inner {
    font-size:64px;
    font-weight:700;
    margin-left:10px;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product .product-content .product-content-price .info {
    color:#000;
    font-size:20px;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product .product-content .product-content-versioning {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
    margin:30px 0 0 0;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product .product-content .product-content-versioning .version {
    border:2px solid;
    border-radius:50px;
    width:calc((100% - 10px) / 2);
    background-color:#fff;
    font-size:14px;
    padding: 10px 0;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.yellow .product-content .product-content-versioning .version {
    color:#e7b800;
    border-color:#e7b800;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.blue .product-content .product-content-versioning .version {
    color:#4a90e2;
    border-color:#4a90e2;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.green .product-content .product-content-versioning .version {
    color:#6ed788;
    border-color:#6ed788;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.yellow .product-content .product-content-versioning .version.active {
    color:#fff;
    background-color:#e7b800;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.blue .product-content .product-content-versioning .version.active {
    color:#fff;
    background-color:#4a90e2;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.green .product-content .product-content-versioning .version.active {
    color:#fff;
    background-color:#6ed788;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product .product-content .product-content-divider {
    height:2px;
    width:100%;
    margin-top: 34px;
    margin-bottom: 33px;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.yellow .product-content .product-content-divider {
    background-color:#e7b800;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.blue .product-content .product-content-divider {
    background-color:#4a90e2;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.green .product-content .product-content-divider {
    background-color:#6ed788;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product .product-content .product-content-description {
    min-height: 160px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product .product-content .product-content-description .description {
    display:none;
    width:100%;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product .product-content .product-content-description .description.active {
    display:block;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product .product-content .product-content-description .description ul {
    list-style:none;
    padding: 0 20px;
    margin: 0;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product .product-content .product-content-description .description ul li:before {
    content: "\f00c";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight:600;
    position: absolute;
    left: 0;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.yellow .product-content .product-content-description .description ul li:before {
    color:#e7b800;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.blue .product-content .product-content-description .description ul li:before {
    color:#4a90e2;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.green .product-content .product-content-description .description ul li:before {
    color:#6ed788;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product .product-content .product-content-description .description ul li {
    position:relative;
    padding-left: 30px;
    font-weight:300;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product .product-content .product-content-description .description ul li i {
    position:absolute;
    right: 0;
    top: 3px;
    cursor:pointer;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.yellow .product-content .product-content-description .description ul li i {
    color:#e7b800;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.blue .product-content .product-content-description .description ul li i {
    color:#4a90e2;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.green .product-content .product-content-description .description ul li i {
    color:#6ed788;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product .product-content .product-content-description .description ul li .content {
    display:none;
    position: absolute;
    background-color: #fff;
    border: 2px solid;
    z-index:2;
    border-radius:5px;
    padding:20px;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product .product-content .product-content-description .description ul li i:hover + .content {
    display:block;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.yellow .product-content .product-content-description .description ul li .content {
    border-color:#e7b800;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.blue .product-content .product-content-description .description ul li .content {
    border-color:#4a90e2;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.green .product-content .product-content-description .description ul li .content {
    border-color:#6ed788;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product .product-content .product-content-button {
    text-align:center;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product .product-content .product-content-button .button {
    border: 2px solid;
    border-radius: 50px;
    width: 100%;
    max-width: 200px;
    text-transform:uppercase;
    padding: 10px 0;
    text-decoration:none;
    display: inline-block;
    color:#fff;
    margin:30px 0 0 0
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.yellow .product-content .product-content-button .button {
    border-color:#e7b800;
    background-color:#e7b800;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.blue .product-content .product-content-button .button {
    border-color:#4a90e2;
    background-color:#4a90e2;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.green .product-content .product-content-button .button {
    border-color:#6ed788;
    background-color:#6ed788;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.yellow .product-content .product-content-button .button:hover {
    background-color:#fff;
    color:#e7b800;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.blue .product-content .product-content-button .button:hover {
    background-color:#fff;
    color:#4a90e2;
}

.block.widget.webcrossing-base-product .block-content .product-wrapper .product.green .product-content .product-content-button .button:hover {
    background-color:#fff;
    color:#6ed788;
}

@media (min-width:1001px) {
    .block.widget.webcrossing-base-product .block-content .product-wrapper.two .product {
        width:calc((100% - 30px) / 2);
    }

    .block.widget.webcrossing-base-product .block-content .product-wrapper.two .product:nth-child(2n) {
        margin-right:0;
    }

    .block.widget.webcrossing-base-product .block-content .product-wrapper.three .product {
        width:calc((100% - 60px) / 3);
    }

    .block.widget.webcrossing-base-product .block-content .product-wrapper.three .product:nth-child(3n) {
        margin-right:0;
    }

    .block.widget.webcrossing-base-product .block-content .product-wrapper.four .product {
        width:calc((100% - 90px) / 4);
    }

    .block.widget.webcrossing-base-product .block-content .product-wrapper.four .product:nth-child(4n) {
        margin-right:0;
    }
}

@media (max-width:1000px) and (min-width:701px) {
    .block.widget.webcrossing-base-product .block-content .product-wrapper.two .product {
        width:calc((100% - 30px) / 2);
    }

    .block.widget.webcrossing-base-product .block-content .product-wrapper.two .product:nth-child(2n) {
        margin-right:0;
    }

    .block.widget.webcrossing-base-product .block-content .product-wrapper.three .product,
    .block.widget.webcrossing-base-product .block-content .product-wrapper.four .product {
        width:calc((100% - 30px) / 2);
    }

    .block.widget.webcrossing-base-product .block-content .product-wrapper.three .product:nth-child(2n),
    .block.widget.webcrossing-base-product .block-content .product-wrapper.four .product:nth-child(2n) {
        margin-right:0;
    }
}

@media (max-width:700px) and (min-width:501px) {
    .block.widget.webcrossing-base-product .block-content .product-wrapper.two .product,
    .block.widget.webcrossing-base-product .block-content .product-wrapper.three .product,
    .block.widget.webcrossing-base-product .block-content .product-wrapper.four .product {
        width:100%;
        margin-right:0;
    }
}

@media (max-width:500px) {
    .block.widget.webcrossing-base-product .block-content .product-wrapper.two .product,
    .block.widget.webcrossing-base-product .block-content .product-wrapper.three .product,
    .block.widget.webcrossing-base-product .block-content .product-wrapper.four .product {
        width:100%;
        margin-right:0;
    }

    .block.widget.webcrossing-base-product .block-toolbar .toolbar-wrapper .label {
        display: block;
    }

    .block.widget.webcrossing-base-product .block-toolbar .switcher-language .switcher-options,
    .block.widget.webcrossing-base-product .block-toolbar .switcher-currency .switcher-options {
        padding:0;
    }
}

/*WEBCROSSING PRODUCT SLIDER WIDGET*/
.block.widget.webcrossing-base-product-slider {
    padding-bottom: 40px;
}

.block.widget.webcrossing-base-product-slider .block-title {
    text-transform: uppercase;
    text-align: center;
    margin-top: 20px;
    color: #292b2c;
    font-size: 32px;
    line-height: 32px;
    font-weight: 400;
    margin-bottom: 40px;
}

.block.widget.webcrossing-base-product-slider .block-title strong {
    font-size: 32px;
    line-height: 32px;
    font-weight:700;
}

.block.widget.webcrossing-base-product-slider .block-content .product-wrapper {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
}

.block.widget.webcrossing-base-product-slider .block-content .product-wrapper .product {
    margin:0 10px;
    position:relative;
    background-color: rgba(145,18,70,1);
    max-width:calc((100% - 40px) / 3);
}

.block.widget.webcrossing-base-product-slider .block-content .product-wrapper .product .product-image {
    border: 1px solid #000;
    background-color:#fff;
}

.block.widget.webcrossing-base-product-slider .block-content .product-wrapper .product .product-image img {
    max-height:350px;
}

.block.widget.webcrossing-base-product-slider .block-content .product-wrapper .product .product-content {
    width: 100%;
    padding:10px;
    box-sizing: border-box;
}

.block.widget.webcrossing-base-product-slider .block-content .product-wrapper .product .product-content .product-content-headline h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    margin: 0 0 3px 0;
}

.block.widget.webcrossing-base-product-slider .block-content .product-wrapper .product .product-content .product-content-title span {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    min-height: 24px;
}

.block.widget.webcrossing-base-product-slider .block-content .product-wrapper .product .product-content .product-content-title span a {
    color: #fff;
    text-decoration: none;
}

@media (max-width:800px) {
    .block.widget.webcrossing-base-product-slider {
        padding-bottom: 1px;
    }
}

@media (max-width:500px) {
    .block.widget.webcrossing-base-product-slider .block-title {
        font-size: 24px;
        line-height: 24px;
    }
    .block.widget.webcrossing-base-product-slider .block-title strong {
        font-size: 24px;
        line-height: 24px;
    }
}