
.product-container {
    height:200px;
    margin-bottom:5px;
    margin-top:5px;
    padding:0px;
    border-radius:7px;
}

.product-container img {
    width:100%;
    height:100%;
    border-radius:7px;
    object-fit: cover;
    overflow:hidden;
}

.product-container-overlay {
    border:1px solid #bbbbbb;
    position: absolute;
    top: 5px;
    left: 15px;
    right:15px;
    width: calc(100% - 30px);
    height: calc(100% - 10px);
    margin:0px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 39%, rgba(255,255,255,0.85) 39%,  rgba(255,255,255,0.85) 100%);
    background-size: auto 200%;
    background-position: 0 0;
    transition: background-position 0.2s ease-in-out,border-color 0.2s ease-in-out;
    cursor:pointer;
    border-radius:7px;
}   

.product-container-overlay:hover {
    background-position:0 100%;
    border:0.2px solid #999999;
}

.product-title
{
    text-align:center;
    font-size:16px;
    color:#303030;
    position:absolute;
    width:100%;
    bottom:0px;
    margin-top:auto;
    padding-top: 5px;
    margin-bottom:auto;
    display:inline-block;
    vertical-align:middle;
    line-height:18px;
    overflow:hidden;
    height:45px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow:ellipsis;
    font-weight:500;
    transition: bottom 0.2s ease-in-out, padding-top 0.2s ease-in;
    font-family: 'Fira Sans', sans-serif;
}

.product-container-overlay:hover > .product-title
{
    padding-top:10px;
}

.product-description-container {
    position: absolute;
    opacity:0;
    padding:10px;
    width: 100%;
    text-align:center;
    padding-top:5px;
    transition: opacity 0.2s ease-out;
    overflow:hidden;
    text-overflow:ellipsis;
}

.product-description {
    font-size: 15px;
    color:rgba(40,40,40,0.8);
    font-family: 'Fira Sans', sans-serif;
}

.product-container-overlay:hover > .product-description-container{
    opacity: 1;
    transition: opacity 0.3s ease-out;
    transition-delay:0.1s;
}

.details-table
{
    margin-left:10px;
    margin-bottom:0px;
    width:85%;
}

#product-name
{
    font-size:25px; 
    padding-right:50px;
    font-weight:bold;
}

#product-modal-overlay
{
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background-color: black;
    opacity:0.7;
    z-index:5;
}

.table-borderless tbody tr td,
.table-borderless tbody tr th,
.table-borderless thead tr th,
.table-borderless thead tr td,
.table-borderless tfoot tr th,
.table-borderless tfoot tr td {
    border: none;
}

.product-modal-box
{
    width:80%;
    left:10%;
    top:10%;
    border-radius:8px;
    padding-bottom:0px;
    padding-top:0px;
    background-color:white;
    position:absolute;
    z-index:6;
    margin-bottom:30px;
}

#close-icon
{
    margin-right:5px;
    height:30px;
    width:30px;
    font-size:20px;
    line-height:30px;
    padding:0px;
    color:#505050;
    text-align:center;
    cursor:pointer;
    position:absolute;
    top:0px;
    right:5px;
}

.product-modal-top-row
{
    width:100%;
    height:30px;
    margin:0px;
    padding:0px;
    margin-top:5px;   
}

.product-modal-content
{
    width:100%;
    height:200px;
    margin:0px;
    padding-top:10px;
    padding-bottom:10px;
}

.pagination
{
    margin:auto;
    position:fixed;
    bottom:20px;
    right:20px;
    font-family: 'Alex Brush', sans-serif;
    font-weight:bold;
    
}

.pagination-page
{
    color:#edcb5d;
}

#back-button
{
    margin-top:20px;
    margin-bottom:10px;
}

.details-lower-table
{
    margin-left:10px;
    margin-top:0px;
    margin-bottom:0px;
}

.details-lower-table td
{
    padding:3px 5px 0px 5px;
}

.details-lower-table-container
{
    background-color:#f2f2f2;
    padding:8px 10px 8px 30px;
    margin-top:10px;
    margin-bottom:20px;
}

.details-lower-table-container > .header
{
    font-size:18px;
    font-weight:bold;
}

.content-column
{
    margin:0px;
    padding:0px;
}

.detail
{
    padding:5px 0px 0px 10px;
    display:block;
}

#product-code
{
    font-size:12px;
    display:block;
    color:#aaaaaa;
}

#product-modal-description
{
    font-size: 15px;
    color:rgba(40,40,40,0.8);
    font-family: 'Fira Sans', sans-serif;   
}

.no-gutter
{
padding:0px;
}

.no-gutter > [class*='col-'] {
    padding-right:0;
    padding-left:0;
}

#navBar
{
    left:0px;
    margin-left:0px;
}

.categories-bar
{
    position:fixed;
    height:50px;
    background-color:red;
    width:100%;
    z-index:2;
}

.categories-container
{
    height:100vh;
    padding-top:50px;
    transition: bottom 0.2s ease-in-out;
    width:100%;
    background-color:red;
    position:fixed;
    bottom:100%;
    overflow:auto;
    z-index:1; 
}

.categories-container.open
{
    bottom:0px;
}

.category-name
{
    text-align:left;
    font-size:20px;
    color:white;
    padding-left:20px;
    margin-top:auto;
    line-height:50px;
}

.category-slide-down
{
    text-align:left;
    font-size:20px;
    color:white;
    padding-left:20px;
    margin-top:auto;
    line-height:50px;
    cursor:pointer;
}

.products-container
{
    margin-top:100px;
}

.category-container-overlay
{
    border:1px solid #bbbbbb;
    position: absolute;
    top: 5px;
    left: 15px;
    right:15px;
    width: calc(100% - 30px);
    height: calc(100% - 10px);
    margin:0px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 39%, rgba(255,255,255,0.85) 39%,  rgba(255,255,255,0.85) 100%);
    background-size: auto 200%;
    background-position: 0 0;
    cursor:pointer;
    border-radius:7px;
}

.category-container {
    height:200px;
    margin-bottom:5px;
    margin-top:5px;
    padding:0px;
    border-radius:7px;
}

.category-container img {
    width:100%;
    height:100%;
    border-radius:7px;
    object-fit: cover;
    overflow:hidden;
}

.category-all
{
    text-align:center;
    font-size:20px;
    color:white;
    margin-top:20px;
    margin-bottom:20px;
    display:block;
}

a
{
    text-decoration:none;
}

a:hover
{
    text-decoration:none;
} 

a:active
{
    text-decoration:none;
} 

a:visited
{
    text-decoration:none;
}

a:link
{
    text-decoration:none;
}