body {
    background: #ffffff;
    height: 100vh;
}

.home_main_content {
    display: flex;
    height: 100vh;
}

.main_categories {
    display: inline-block;
    overflow-y:scroll;
    height: 100vh;
    width: 25%;
}

.second_level_categories {
    display: inline-block;
    overflow-y:scroll;
    height: 100vh;
    width: 25%;
}

.products_list {
    display: inline-block;
    overflow-y:scroll;
    height: 100vh;
    width: 50%;
}

.root-category {
    width: 100%;
    cursor: pointer
}

.second-level-category {
    width: 100%;
}

.home-product-add-to-cart {
    cursor: pointer;
}

.product_modal, .cart_modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100vh; /* Full width */
    height: 100vh; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(255,255,255,1); /* Black w/ opacity */
}

.configurable-product-details-close, .cart-close {
    top: 20px;
    right: 20px;
    position: absolute;
    border: none;
    display: inline-block;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    white-space: nowrap
}

.cart_button {
    padding: 2rem;
    background: gray;
    position: fixed;
    bottom: 50px;
    right: 50px;
    cursor: pointer;
}

.add-to-cart-div {
    display: flex;
}

.second-level-category-image {
    max-width:100%;
}

.home-product-image {
    max-width: 100px;
}

.quantity-minus-button, .quantity-plus-button {
    cursor: pointer;
}

.home-product-add-to-cart, .configurable-product-add-to-cart, .place-order-button {
    display:inline-block;
    color:#444;
    border:2px solid #CCC;
    background:#DDD;
    box-shadow: 0 0 5px -1px rgba(0,0,0,0.2);
    cursor:pointer;
    vertical-align:middle;
    max-width: 100px;
    padding: 5px;
    text-align: center;
}

.pageloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('/img/loader.gif') 50% 50% no-repeat rgb(249, 249, 249);
    opacity: .8;
}
