h1 {font-size: large; font-weight: bold;}

/**THE SAME CSS IS USED IN ALL 3 DEMOS**/    
/**gallery margins**/  
ul.gallery{    
    margin-left: 3vw;     
    margin-right:3vw;  
    }    
    
    .zoom {      
    -webkit-transition: all 0.35s ease-in-out;    
    -moz-transition: all 0.35s ease-in-out;    
    transition: all 0.35s ease-in-out;     
    cursor: -webkit-zoom-in;      
    cursor: -moz-zoom-in;      
    cursor: zoom-in;  
    }     
    
    .zoom:hover,  
    .zoom:active,   
    .zoom:focus {
    /**adjust scale to desired size, 
    add browser prefixes**/
    -ms-transform: scale(2.5);    
    -moz-transform: scale(2.5);  
    -webkit-transform: scale(2.5);  
    -o-transform: scale(2.5);  
    transform: scale(2.5);    
    position:relative;      
    z-index:100;  
    }
    
    /**To keep upscaled images visible on mobile, 
    increase left & right margins a bit**/  
    @media only screen and (max-width: 767px) {
    ul.gallery {
    margin-left: 15vw;
    margin-right: 15vw;
    }

    /**TIP: Easy escape for touch screens,
    give gallery's parent container a cursor: pointer.**/
    .DivName {cursor: pointer}

    }

    /** changing the PREV/NEXT buttons & the picture indicator
        on the Bootstrap Carousel from black to white **/
    .carousel-control-prev,
    .carousel-control-next,
    .carousel-indicators {
        filter: invert(1);
    }

    body {
        background-color: white;
    }

    .container {
        max-width: 1100px;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        color: hsl(0, 0%, 30%);
    }
    
    .content {
        margin: 0 20px;
    }
    
    .box-element {
        box-shadow: hsl(0, 0%, 80%) 0 0 16px;
        background-color: #fff;
        border-radius: 4px;
        padding: 10px;
    }
    
    .navbar {
        padding: 10 20px;
    }
    
    .thumbnail {
        width: 100%;
        -webkit-box-shadow: -1px -3px 5px -2px rgba(214, 214, 214, 1);
        -moz-box-shadow: -1px -3px 5px -2px rgba(214, 214, 214, 1);
        box-shadow: -1px -3px 5px -2px rgba(214, 214, 214, 1);
    }
    
    .product {
        border-radius: 0 0 4px 4px;
        margin-bottom: 30px;
    }
    
    .price {
        display: inline-block;
        /* float: right; */
        font-weight: bold;
    }
    
    .bg-dark {
        background-color: #4f868c !important;
    }
    
    #cart-icon {
        width: 40px;
        /* display: inline-block; */
        margin-left: 15px;
    }
    .cart-container {
    position: relative;
    display: inline-block;
}

#cart-total {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background-color: red;
    color: white;
    font-size: 16px;
    font-weight: bold;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 50%;
    text-align: center;
}
    /* #cart-total {
        display: block;
        text-align: center;
        color: #fff;
        background-color: red;
        width: 20px;
        height: 25px;
        border-radius: 50%;
        font-size: 14px;
    } */
    
    .col-lg-4,
    .col-lg-6,
    .col-lg-8,
    .col-lg-12 {
        margin-top: 10px;
    }
    
    .btn {
        border-radius: 0;
    }
    
    .btn-success {
        float: right;
        margin: 5px;
    }
    
    .row-image {
        width: 100px;
    }
    
    .form-field {
        width: 250px;
        display: inline-block;
        padding: 5px;
    }
    
    .cart-row {
        display: flex;
        align-items: flex-stretch;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid #ececec;
    
    }
    
    .quantity {
        display: inline-block;
        font-weight: 700;
        padding-right: 10px;
    }
    
    .chg-quantity {
        width: 12px;
        cursor: pointer;
        display: block;
        margin-top: 5px;
        transition: .1s;
    }
    
    .chg-quantity:hover {
        opacity: .6;
    }
    
    
    .hidden {
        display: none !important;
    }
    
    .navbar-link {
        color: white;
        font-weight: bold;
        display: flex;
        align-items: center;
        margin-right: 15px;
    }

    /* Category filter hierarchy styles */
    .category-item {
        margin-bottom: 4px;
    }

    .category-children {
        margin-left: 1.25rem;
    }

    .category-toggle {
        cursor: pointer;
        font-size: 10px;
        transition: transform 0.2s ease;
        display: inline-block;
        width: 14px;
    }

    .category-toggle[aria-expanded="true"] {
        transform: rotate(-90deg);
    }

    /* Product page quantity selector */
    .qty-selector {
        border-color: #333 !important;
    }

    .qty-selector .qty-btn {
        font-size: 1.2rem;
        line-height: 1;
        color: #333;
        border-radius: 0;
    }

    .qty-selector .qty-btn:hover {
        background-color: #f0f0f0;
    }

    .qty-selector .qty-input {
        font-size: 1.1rem;
        font-weight: 600;
        outline: none;
        -moz-appearance: textfield;
    }

    .qty-selector .qty-input::-webkit-outer-spin-button,
    .qty-selector .qty-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    