/* Default ============================================================= */

.message.global.noscript {
	background: #FFD300;
	border-color: #FFD300;
	font-size: 1.5rem;
}
.message.global.cookie {
    background: #11213E;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    padding: 20px 40px;
    left: 20px;
    right: 30px;
    bottom: 10px;
    font-size: 17px;
    color: #FFF;
    max-width: 1280px;
    margin: 0 auto;
}
.message.global.cookie a {
	color: #D50F21;
}
.message.global.cookie a:hover {
	color: #FFF;
}
.message.global.cookie .action.primary {
    background-color: #D50F21;
    border: 1px solid #D50F21;
    color: #FFF;
}
.message.global.cookie .action.primary:hover {
    background: #FFF;
    border: 1px solid #FFF;
    color: #11213E;
}
.breadcrumbs .items {
	font-size: 16px;
	color: #11213E;
}
.breadcrumbs .item:not(:last-child):after {
	content: '>';
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	line-height: 1.4;
}
.breadcrumbs strong {
	font-weight: 700;
}
.page-wrapper > .breadcrumbs {
    margin-top: 15px;
}

/* ===================================================================== */

/* Category List ======================================================= */

.category .top-container {
    width: 100%;
    max-width: 1920px;
    padding: 0;
}
.cl-one-col {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.cl-one-col .catalog-category {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.cl-one-col .category {
    width: calc((100% / 3) - 20px);
    margin: 0 10px;
    margin-bottom: 20px;
    isolation: isolate;
    position: relative;
    overflow: hidden;
    .category-image{
        position: absolute;
        z-index: -1;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 20px;
        transition: .3s;
        &.cover{
            padding: 0;
            object-fit: cover;
        }
    }
    &:hover{
        .category-image{
            scale: 1.1;
        }
    }
}
.cl-one-col .category:has(.category-image) .inner-content-wrapper a {
    background: transparent;
    .d-line{
        display: none;
    }
    .productcount{
        color: #11213e;
    }
}
.cl-one-col .category .inner-content-wrapper a {
    background: #11213e;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    transition:  all .2s ease;
    .productcount{
        color: white;
        font-weight: bold;
    }
}
.cl-one-col .category:not(:has(.category-image)) .inner-content-wrapper a:hover {
    background: #D50F21;
}
.cl-one-col .category .cat-title {
    font-size: 25px;
    line-height: 1;
    font-weight: 700;
    color: #FFF;
      -webkit-font-smoothing: antialiased;  
      -moz-osx-font-smoothing: grayscale;
}
.cl-one-col .category span.d-line {
    position: absolute;
}
.cl-one-col .category span.d-line {
    position: absolute;
    transform: rotate(-30deg);
}
.cl-one-col .category span.d-line::after,.cl-one-col .category span.d-line::before {
    content: '';
    display: block;
    clear: both;
    height: 3px;
    width: 150px;
    background: #FFF;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.cl-one-col .category span.d-line::before {
    top: -18px;
}
.cl-one-col .category span.d-line::after {
    bottom: -18px;
}
.cl-one-col .category:nth-child(15n+1) span.d-line {
    left: 30px;
    bottom: 3px;
}
.cl-one-col .category:nth-child(15n+1) span.d-line:before {
    width: 170px;
    margin-left: -15px;
}
.cl-one-col .category:nth-child(15n+1) span.d-line:after {
    margin-left: 32px;
    width: 250px;
    bottom: -22px;
}
.cl-one-col .category:nth-child(15n+2) span.d-line {
    display: none;
}
.cl-one-col .category:nth-child(15n+3) span.d-line {
    top: -9px;
    right: 0;
}
.cl-one-col .category:nth-child(15n+3) span.d-line:before {
    left: -50px;
    width: 240px;
}
.cl-one-col .category:nth-child(15n+3) span.d-line:after {
    left: -22px;
}
.cl-one-col .category:nth-child(15n+4) span.d-line {
    top: -23px;
    left: 30px;
}
.cl-one-col .category:nth-child(15n+4) span.d-line:before {
    width: 170px;
    margin-left: -15px;
}
.cl-one-col .category:nth-child(15n+4) span.d-line:after {
    margin-left: 32px;
    width: 250px;
    bottom: -23px;
}
.cl-one-col .category:nth-child(15n+5) span.d-line {
    left: 10px;
    bottom: -1px;
}
.cl-one-col .category:nth-child(15n+5) span.d-line:before {
    width: 150px;
    margin-left: 40px;
}
.cl-one-col .category:nth-child(15n+5) span.d-line:after {
    width: 235px;
    margin-left: -20px;
}
.cl-one-col .category:nth-child(15n+6) span.d-line {
    display: none;
}
.cl-one-col .category:nth-child(15n+7) span.d-line {
    top: -18px;
    right: -32px;
}
.cl-one-col .category:nth-child(15n+7) span.d-line:before {
    width: 150px;
    margin-left: 35px;
}
.cl-one-col .category:nth-child(15n+7) span.d-line:after {
    width: 235px;
    margin-left: -20px;
}
.cl-one-col .category:nth-child(15n+8) span.d-line {
    left: 10px;
    top: -18px;
}
.cl-one-col .category:nth-child(15n+8) span.d-line:before {
    width: 150px;
    margin-left: 35px;
}
.cl-one-col .category:nth-child(15n+8) span.d-line:after {
    width: 220px;
    margin-left: -15px;
}
.cl-one-col .category:nth-child(15n+9) span.d-line {
    right: 10px;
    bottom: 19px;
}
.cl-one-col .category:nth-child(15n+9) span.d-line:after {
    width: 200px;
    left: -75px;
}
.cl-one-col .category:nth-child(15n+10) span.d-line {
    left: 40px;
    bottom: 10px;
}
.cl-one-col .category:nth-child(15n+10) span.d-line:before {
    margin-left: -70px;
}
.cl-one-col .category:nth-child(15n+10) span.d-line:after {
    margin-left: 5px;
}
.cl-one-col .category:nth-child(15n+11) span.d-line {
    display: none;
}
.cl-one-col .category:nth-child(15n+12) span.d-line {
    right: 10px;
    top: -39px;
}
.cl-one-col .category:nth-child(15n+12) span.d-line:after {
    width: 200px;
    left: -75px;
}
.cl-one-col .category:nth-child(15n+13) span.d-line {
    left: 40px;
    top: -30px;
}
.cl-one-col .category:nth-child(15n+13) span.d-line:before {
    margin-left: -70px;
}
.cl-one-col .category:nth-child(15n+13) span.d-line:after {
    margin-left: 5px;
}
.cl-one-col .category:nth-child(15n+14) span.d-line {
    display: none;
}
.cl-one-col .category:nth-child(15n+15) span.d-line {
    bottom: -11px;
    right: 0;
}
.cl-one-col .category:nth-child(15n+15) span.d-line:before {
    left: -50px;
    width: 240px;
}
.cl-one-col .category:nth-child(15n+15) span.d-line:after {
    left: -22px;
}

/* ===================================================================== */

/* Product ============================================================= */

.product-info-main .page-title-wrapper .page-title {
	margin: 0 0 10px;
	font-size: 36px;
	line-height: 1;
}
.page-layout-1column .product.media {
	order: -1;
	width: 58%;
    margin-bottom: 50px;
}
.page-layout-1column.product .product-info-main {
    margin-bottom: 50px;
    margin-left: auto;
    display: flex;
    flex-flow: column wrap;
	width: 34%;
}
.page-layout-1column.product .product-info-main .product-add-form {
	margin-top: auto;
	position: relative;
}
.page-layout-1column.product .page-main {
	max-width: none;
	padding: 0;
	margin: 0;
}
.product-top-info {
	width: 100%;
	position: relative;
}
.product-top-info:after {
	content: '';
	position: absolute;
	bottom: 0;
	top: 50%;
	left: 0;
	right: 0;
	background-color: #F7F7F7;
	pointer-events: none;
	z-index: -1;
}
.product-top-content {
    max-width: 1280px;
    box-sizing: border-box;
    padding: 0 20px;
    margin: 0 auto;
	display: flex;
    flex-flow: row wrap;
}
.page-layout-1column.product .page.messages {
	max-width: 1280px;
    box-sizing: border-box;
    padding: 0 20px;
    margin: 0 auto;
}
.product-top-content:before, .product-top-content:after {
	content: '';
	display: table;
	clear: both;
}
.fotorama__thumb {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #707070;
    box-sizing: border-box;
    width: calc(100% - 15px);
    margin: auto;
}
.fotorama__active .fotorama__thumb {
    border-color: #11213E;
}
.fotorama__thumb-border {
	display: none;
}
.fotorama__arr, .fotorama__thumb__arr {
	background: none;
}
.fotorama__stage.fotorama__shadows--right:after, .fotorama__nav.fotorama__shadows--right:after,
.fotorama__stage.fotorama__shadows--left:before, .fotorama__nav.fotorama__shadows--left:before {
	content: none;
}
.gallery-placeholder._block-content-loading {
	height: 560px;
}
.gallery-placeholder__image {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--left .fotorama__thumb--icon, .fotorama__nav-wrap--horizontal .fotorama__thumb__arr--right .fotorama__thumb--icon {
	background: none;
	padding: 0;
}
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--left .fotorama__thumb--icon:after,
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--right .fotorama__thumb--icon:after {
	font-family: "Open Sans", sans-serif;
    font-size: 36px;
    line-height: 30px;
    display: block;
    padding-bottom: 10px;
	text-align: center;
}
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--left .fotorama__thumb--icon:after {
	content: '<';
}
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--right .fotorama__thumb--icon:after {
	content: '>';
}
.product-info-main .product.attribute.sku {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.product-info-main .price-box {
    margin: 10px 0 0;
    display: inline-block;
}
.product-info-main .product-addto-links {
    margin: 10px 0 0 30px;
    display: inline-block;
    vertical-align: top;
}
.product-info-main .action.towishlist,
.product-info-main .action.towishlist:hover,
.product-info-main .action.towishlist:active,
.product-info-main .action.towishlist:focus {
	font-size: 0;
	border: 0;
	background: none;
	padding: 0;
	position: relative;
}
.product-info-main .action.towishlist:before {
	content: '\f08a';
    font-family: 'FontAwesome';
    font-size: 24px;
    color: #11213E;
}
.product-info-main .action.towishlist:after {
	content: '\f004';
    font-family: 'FontAwesome';
    font-size: 24px;
    color: #11213E;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.product-info-main .action.towishlist:hover:after {
	opacity: 1;
}
.product-info-main .price-box .price-wrapper .price, .product-options-bottom .price-box .price-wrapper .price {
    font-size: 22px;
    font-weight: 700;
}
.product-info-main .box-tocart, .product-options-bottom .box-tocart {
	margin: 0;
	width: 100%;
}
.product-info-main .box-tocart .fieldset, .product-options-bottom .box-tocart .fieldset {
	margin: 0;
}
.product-add-form .fieldset > .field.qty > .label {
	position: absolute;
    top: -40px;
    display: block;
    margin: 0;
    font-size: 20px;
}
.product-info-main .box-tocart .input-text.qty, .product-options-bottom .box-tocart .input-text.qty {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    font-size: 16px;
}
.product-info-main .box-tocart .field.qty, .product-options-bottom .box-tocart .field.qty {
    padding: 0;
    vertical-align: top;
}
.product-info-main .box-tocart .actions, .product-options-bottom .box-tocart .actions {
    padding: 0;
    width: 100%;
}
.product-info-main .box-tocart .action.tocart, .product-options-bottom .box-tocart .action.tocart {
    line-height: 1;
    border-radius: 0;
    width: 100%;
    font-size: 18px;
    padding: 10px 17px;
	background-color: #D50F21;
	border: 1px solid #D50F21;
}
.product-info-main .box-tocart .action.tocart:hover, .product-options-bottom .box-tocart .action.tocart:hover {
	background-color: #11213E;
	border: 1px solid #11213E;
}
.product.info.detailed {
	background-color: #F7F7F7;
	margin: 0;
}
.product.info.detailed .product.data.items {
	max-width: 1280px;
    box-sizing: border-box;
    padding: 50px 20px 50px;
    margin: 0 auto;
	position: relative;
	display: flex;
    flex-flow: row wrap;
}
.product.info.detailed .product.data.items:before {
	content: '';
	position: absolute;
	height: 1px;
	background-color: #11213E;
	left: 20px;
	right: 20px;
	top: 0;
	display: block;
}
.product.data.items > .item.content:not(:nth-child(2)) {
	display: none;
}
.product.data.items > .item.title.active + .content {
	display: block;
} 
.product.data.items > .item.title {
    order: 0;
    margin: 0 0 50px 20px;
}
.product.data.items > .item.content {
    order: 1;
    margin: 0;
	background: none;
    border: 0;
    padding: 0;
}
.product.data.items > .item.title:nth-child(1) {
    margin-left: auto;
}
.product.data.items > .item.title > .switch {
	background: none!important;
	border: 0!important;
	padding: 0!important;
	height: auto;
	color: #11213E!important;
	font-weight: 400;
	line-height: 1.4;
	font-size: 18px;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.product.data.items > .item.title.active > .switch,
.product.data.items > .item.title:hover > .switch {
	font-weight: 700;
}
.page-layout-1column.product .column.main {
	padding-bottom: 0;
}
.block.related, .block.upsell {
	max-width: 1280px;
    box-sizing: border-box;
    padding: 40px 20px 50px;
    margin: 0 auto;
}
.block.related .product-items,
.block.upsell .product-items,
.block.crosssell .product-items {
	margin: 0;
	display: flex;
    flex-flow: row wrap;
}
.block.related .products,
.block.upsell .products,
.block.crosssell .products {
	margin: 0 0 -20px;
}
.block.related .products-grid .product-item,
.block.upsell .products-grid .product-item,
.block.crosssell .products-grid .product-item {
	width: calc(25% - (45px/4));
    margin-left: 15px;
    margin-bottom: 20px;
    padding: 30px 20px;
    border: 1px solid #eee;
    box-sizing: border-box;
}
.block.related .products-grid .product-item:nth-child(4n + 1),
.block.upsell .products-grid .product-item:nth-child(4n + 1),
.block.crosssell .products-grid .product-item:nth-child(4n + 1) {
	margin-left: 0;
}
.block.related .products-grid .product-item .product-item-info,
.block.upsell .products-grid .product-item .product-item-info,
.block.crosssell .products-grid .product-item .product-item-info {
	width: auto;
	height: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
}
.product-item .actions-secondary .tocompare {
	display: none;
}
.block.related .products-grid .product-item .product-item-details,
.block.upsell .products-grid .product-item .product-item-details,
.block.crosssell .products-grid .product-item .product-item-details {
	padding-right: 30px;
}
.block.related .products-grid .product-item .product-item-photo,
.block.upsell .products-grid .product-item .product-item-photo,
.block.crosssell .products-grid .product-item .product-item-photo {
	display: block;
}
.block.related .products-grid .product-item .product-item-actions,
.block.upsell .products-grid .product-item .product-item-actions,
.block.crosssell .products-grid .product-item .product-item-actions {
	margin: 0;
}
.block.related .block-title,
.block.upsell .block-title,
.block.crosssell .block-title {
	margin-bottom: 50px;
	display: flex;
    flex-flow: row nowrap;
}
.column.main .block.related .block-title strong,
.column.main .block.upsell .block-title strong,
.column.main .block.crosssell .block-title strong {
	font-size: 34px;
	line-height: 1;
	margin: 0;
}
.block.related .block-title .all-products-link,
.block.upsell .block-title .all-products-link,
.block.crosssell .block-title .all-products-link {
	margin-left: auto;
	font-weight: 700;
	font-size: 16px;
	align-self: center;
}
.block.related ~ .block.upsell {
	padding-top: 0;
}

/* ===================================================================== */