:root {
    --xxl-primary-color: #59237E;
    --xxl-lightgray-color: #B2B2B2;
    --xxl-gray-color: #706F6F;
    --xxl-darkgray-color: #1D1D1B;
}

body {
    height: 100vh;
}

body > div {
    height: 100vh;
}

header {
    padding-top: 0.5em;
}

a {
    color: var(--bs-secondary) !important;
}

a:hover {
    color: #5c636a !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    text-align: center;
}

.carousel-item > p > img,
.carousel-item > p > a > img {
	max-width: 100%
}

.text-disabled {
    color: var(--bs-gray-300) !important;
}

.form-floating>label {
    opacity: .65;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
    text-align: center;
}

div.navbar-collapse > ul > li > a {
    color: rgba(0,0,0,.5);
}

.xxl-ms-color {
    color: #59237E !important;
}

.xxl-ms-color.custom-border-bottom {
    border-bottom: 2px solid #59237E;
}

.no-underline {
    text-decoration: none;
}



.sm-logo {
    max-width: 40px;
}

.mw-100 > a > img {

    max-width: 100%;
}

.header-logo {
    max-height: 105px;
}

ul.noIndicator {
    list-style: none;
}

.headerlink {
    color: var(--bs-secondary);
}

.headerlink:hover {
    color: #5c636a;
}

/* Head-Menü */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

/* DETAIL-PAGE */
.detailCart {

}


.detailImageGalery > .detailImg{
    padding-right: 1em;
    
}

.detailImageGalery > .detailImg > a > img {
    /*-webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);*/
    border: 1px solid var(--bs-secondary);
}

.detailImageGalery > .detailImg:nth-last-child{
    padding-right: 0;
}
/*
.detailImageGalery > .detailImg:nth-child(odd){
    padding-left: 1em;
}

.detailImageGalery > .detailImg:nth-child(even){
    padding-right: 1em;
}
*/
/*Flipbook*/
/*#flipbook{
    width:100%;
    height:auto;
}
#flipbook .page{
    width:50%;
    height:auto;
}*/
.page.p1 {
    background-color: #ffffff;
}

.flipbook {
    height: 100%;
    transition: margin-left 0.25s ease-out;
    width: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.flipbook .page {
    height: 100%;
    width: 100%;
}

.flipbook .page img {
    max-width: 100%;
    height: 100%;
}


/* RESULT-PAGE */
.resultImgGrid {
    height: 246px;
}

.resultItemBorderBottom {
    border-bottom: 1px solid var(--bs-secondary);
}

.category-products-download > div > .resultImgGrid {
    height: auto;
}

.category-products-download > div > .resultImgGrid > img {
    height: 120px;
}

.fixedImgHeight > div > div > a > img {
    height: 120px;
}

.fixedImgHeightDownloadImg {
    height: 120px;
}

.resultGridTextSize {
    font-size: 16px !important;
}

.rabPrice {
    font-size: 0.6em;
}

.resultItemImg > a > img {
    max-height: 250px;
}

/*Filter*/
.just-padding {
    padding: 15px;
}

.list-group.list-group-root {
    padding: 0;
    overflow: hidden;
}

.list-group.list-group-root .list-group {
    margin-bottom: 0;
}

.list-group.list-group-root .list-group-item {
    border-radius: 0;
    border-width: 1px 0 0 0;
}

.list-group.list-group-root > .list-group-item:first-child {
    border-top-width: 0;
}

.list-group.list-group-root > .list-group > .list-group-item {
    padding-left: 30px;
}

.list-group.list-group-root > .list-group > .list-group > .list-group-item {
    padding-left: 45px;
}

.nav-link {
    color: var(--bs-secondary);
    min-width: 44px;
}

.nav-pills .nav-link {
    border: 1px solid var(--bs-secondary);
    height: 40px;
}

.nav-pills .nav-link.active {
    background-color: var(--bs-secondary);
}

/* CART - Ovleray*/
.overlay{
    position: fixed;
    bottom: 0;
    left: 100%;
    right: 0;
    background-color: rgba(125, 125, 125, 0.5);
    ;
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: .5s ease;
    z-index:100;
}

.overlay.show {
    left:0;
    width:  100%;
}

.overlay > .cart {
    position: absolute;
    width: 400px;
    height: 100%;
    background-color: #fff;
    right: 0;
    overflow: auto;
}

.overlay > .wrap {
    position: absolute;
    width: calc(100% - 400px);
    height: 100%;
    left: 0;
    overflow: auto;
}

@media (max-width: 440px) {
    .overlay > .cart {
        width: 100%;
    }

    .cart-small-close {
        display: block;
    }
}

.gridview.resultItem {
    border-right: 1px solid var(--bs-secondary);
}


@media (max-width: 575px) {
    .gridview.resultItem {
        border-right: none;
    }

}

@media (min-width: 575px) and (max-width: 767.98px) {
    .gridview.resultItem:nth-child(even) {
        border-right: none;
    }

}
@media (min-width: 768px) and (max-width: 991.98px) {
    .gridview.resultItem:nth-child(3n+3) {
        border-right: none;
    }
}
@media (min-width: 992px) and (max-width: 1199px){
    .gridview.resultItem:nth-child(3n+3) {
        border-right: none;
    }
}

@media (min-width: 1200px) {
    .gridview.resultItem:nth-child(4n+4) {
        border-right: none;
    }
}

/** CART Indicator **/
#progress {
    -webkit-appearance:none;
    position: absolute;
    width: calc(100% - 20px);
    z-index: 5;
    height: 10px;
    margin-bottom: 18px;
    margin-left: 10px;
}

.step-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: var(--xxl-lightgray-color);
    transition: .4s;
}

.done {
    background-color: var(--xxl-primary-color);
    color: #fff;
}
.step-item {
    z-index: 10;
    text-align: center;
}


progress::-moz-progress-bar {
    background: var(--xxl-primary-color);
}
progress::-webkit-progress-value {
    background: var(--xxl-primary-color);
}
progress {
    color: var(--xxl-primary-color);
}



