.card-container {
    font-size: 1.5em;
    padding:20px;
    background: white;
    border: 1px solid lightgrey;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 20px;
    max-width: 300px;
}

.card-container .options {
    position: absolute;
    right: 10px;
    top: 10px;
}

.card-container .selected-source {
    position: absolute;
    right: 10px;
    bottom: 20px
}
.nav-tabs > li {
    display: inline-block;
    float: none;
    margin-bottom: -1px;
}

.mt-1 {
    margin-top: 20px;
}

.footer {
    background: white;
    position: fixed;
    bottom: 0px;
    right: 0px;
    left: 0px;
}

#view-frame {
    margin-bottom: 30px;
}

.orange-color{
    color:#ff6947;
}
.orange-color:hover{
    text-decoration: none;
    color: #ff6969;
}

.categories-tab-button {
    width:fit-content;
    display: inline-block;
    padding: 10px;
    margin:10px;
    -webkit-transition: 100ms ease-in;
    -moz-transition: 100ms ease-in;
    -ms-transition: 100ms ease-in;
    -o-transition: 100ms ease-in;
    transition: 100ms ease-in;
    cursor: pointer;
}
.categories-tab-button a {
    text-decoration: none;
    text-align: center;
}

.categories-tab-button:hover, .categories-tab-button.active {
    background: grey;
}

@media (max-width: 991px) {
    .categories-tab-button {
        width: 100%;
    }

    .product-card {
        cursor: pointer;
        min-width: 250px;
        max-width: 250px;
    }
    .slide-category-container .sliding-menu{
        width: 100%;
        min-height: 300px;
        max-height: 350px;
        display: flex;
        overflow-x: auto;
    }

    .slide-category-container .sliding-menu::-webkit-scrollbar {
        display: none;
    }

    .mobile-left-menu {
        height: 50px;
        right:0px;
        top: 10px;
        position: fixed;
        z-index: 1000;
    }

    .mobile-left-menu .btn {
        border-bottom-left-radius: 5px;
        border-top-left-radius: 5px;
    }

    .side-menu {
        -webkit-transition: 500ms all;
        -moz-transition: 500ms all;
        -ms-transition: 500ms all;
        -o-transition: 500ms all;
        transition: 500ms all;
        height: 100%;
        position: fixed;
        display: block;
        right: -100%;
        top:0px;
        padding-top: 50px;
        z-index:1000;
        background: #fff;
    }

    .side-menu.show {
        height: 100%;
        right: 0px;
        background: #fff;
    }

    .side-menu .close-btn {
        position: absolute;
        top:10px;
        right: 10px;
        cursor: pointer
    }

    .side-menu-cart-badge {
        position: absolute;
        right: 2px;
        top: 3px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        width: 25px;
        text-align: center;
        height: 25px;
        background-color: red;
        padding: 1px;
    }

    .modal-footer .btn+.btn{
        margin-left: 0px
    }
}

.product-card {
    cursor: pointer;
}

.product-card .img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 6px 5px 5px;
    width: calc(100% - 10px) !important;
    background: white;

}

.product-card .product-title {
    font-weight: bold;
}

.product-card p {
    font-weight: 100;
}

.product-card img {
    max-height: 100%;
    max-width: 100%;
    border: 3px solid transparent;
    /* filter: grayscale(100%); */
    transition: 0.3s all;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 3.6em 1.2em;
    margin: 0;
    padding-bottom: 50px;
}