/* Loading Window */
#loading-window {
    position: fixed;
    z-index: 9999;
    display: flex;
    height: 100vh;
    width: 100vw;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .2);
}
/* Side */
.sidebottom-block {
    min-height: 370px;
}
.category-block {
    padding-right: 0;
    padding-bottom: 0;
}
.category-link {
    height: 300px;
    overflow: auto;
}
.category-link .active {
    background-color: #ffffff;
    padding: 5px 0 5px 15px;
    border-radius: 15px 0 0 15px;
}
.category-link .active a {
    color: #000;
}
.category-link a,
.page-menu a {
    color: #666;
}
/* Item Block */
.item-link {
    color: inherit;
    text-decoration: none !important;
}
.item-link img {
    height: 280px;
}
.price-block {
    text-align: right;
}
.price-block span {
    padding: 3px;
    border-radius: 3px;
    font-size: 12px;
    color: #545454;
    margin-right: 8px;
    text-decoration: none;
}
.uk-margin-xsmall-bottom {
    margin-bottom: 5px;
}
.category-badge {
    background-color: aliceblue;
    padding: 3px 10px;
    border-radius: 10px;
    color: #599cd7;
    font-size: 12px;
}
.price-block .sale {
    background-color: #92ccff;
}
.price-block .rental {
    background-color: #c8c8c8;
}
.price-block-small .sale,
.price-block-small .rental {
    font-size: 10px;
}
.price-block-small .tax-inc {
    font-size: 10px;
    font-weight: normal;
}
.price-block .price {
    display: inline-block;
    width: 90px;
    font-size: 20px;
    font-weight: bold;
}
.price-block-small .price {
    font-size: 14px;
    width: 70px
}
.price-block .price.other-price {
    width: 200px;
    font-size: 18px;
    margin-top: 5px;
}
/* Comparison Block */
.comp-img {
    height: 157.5px;
    width: 157.5px;
    overflow: hidden;
    margin-bottom: 5px;
}
.comparison-block img {
    max-height: 157.5px;
    width: 100%;
    height: 100%;
}
.comparison-block .item-name {
    font-size: 12px;
}
/* Item Footer */
.item-footer {
    min-height: 150px;
}
.item-footer b {
    min-height: 50px;
    display: inline-block;
}
/* Modal Item */
.uk-modal-title {
    font-size: 1.5rem !important;
}
/* Modal Item Slide */
#modal-item-images img {
    position: relative;
    left: 50%;
    transform: translate(-50%, 0%);
    height: 100%;
}
/* Print */
.print-block {
    display: none;
}
@media print {
    body {
        -webkit-print-color-adjust: exact;
    }
    .print-block {
        display: inherit;
    }
    #side-panel {
        display: none;
    }
    #main-panel {
        width: 100% !important;
    }
}