
#mainContentDiv
{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

html, body
{
    background: #e0ebfa !important;
}

body
{
    max-width: 350px;
}

hr 
{
    margin: 5px;
}

.app-page
{
    background-color: #e0ebfa;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    text-align: center;
    overflow: hidden;
}

.app-header
{
    background-color: white;
}

.app-page-header
{
    background-color: #5a98ec;
    height: 45px;
    margin-bottom: 5px;
}

.app-page-title
{
    display: flex;
    height: 100%;
    color: white;
    text-align: center;
    flex: 1;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    overflow: hidden;
}

.app-page-content
{
    background-color: #e0ebfa;
    max-width: 350px;
    width: 100%;
    height: calc(100% - 45px);
    margin: 0 auto;
    padding-top: 3px;
    overflow-x: hidden;
    /* overflow-y: scroll; */
}

.app-page-content-with-bottom-navigation
{
    background-color: #e0ebfa;
    max-width: 350px;
    width: 100%;
    height: calc(100% - 105px);
    margin: 0 auto;
    padding-top: 3px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.sidenavback
{
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 11;
    top: 0;
    left: 100%;
    background-color: #11111111;
    overflow-x: hidden;
    transition: 0.5s;
    /* padding-top: 60px; */
    text-align:center;
}

.sidenav
{
    height: 100%;
    width: 75%;
    /* position: absolute; */
    z-index: 1;
    /* top: 0; */
    /* left: 25%; */
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    /* padding-top: 60px; */
    text-align:center;
}

.sidenavclose
{
    /* background-color: green; */
    height: 100%;
    width: 25%;
    top: 0;
    left: 0;
}

@media screen and (max-height: 450px)
{
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}

.nav-top
{
    background: linear-gradient(to top left, #33ccff 0%, #00ffcc 100%);
    height: 150px;
    width: 100%;
}

.nav-user
{
    height: 110px;
    width: 100%;
}

.nav-user-image
{
    display: flex;
    background-color: white;
    height: 80px;
    width: 80px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    color: #33ccff;
    font-size: 40px;
    margin: 15px;
}

.nav-user-login
{
    float: right;
    height: 30px;
    width: 100% !important;
    overflow: hidden;
    text-align: right;
    padding-left: 50px;
    padding-right: 50px;
}

.nav-user-login-btn
{
    color: red !important;
    height: 100%;
    width: 100px !important;
    font-size: 15px;
}

.app-shortcut-item
{
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: transparent;
    justify-content: center;
    align-items: center;
    color: black !important;
}

.app-shortcut-img
{
    width: 50px;
    height: 50px;
    border-radius: 25px;
    object-fit: contain;
    -o-object-fit: contain;
    padding: 5px;
}

.app-special-div
{
    background-image: url("../files/images/home_ads_pattern.png");
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: right;
    display: flex;
    width: 100%;
    padding: 10px;
    overflow-x: scroll;
}

.app-special-info-div
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 130px;
    max-width: 130px;
    min-width: 130px;
}

.app-special-info-image
{
    width: 100%;
    height: auto;
    margin: 5px;
    object-fit: contain;
    -o-object-fit: contain;
}

.app-special-info-title
{
    color: white;
    text-shadow: 1px 1px 2px black;
    font-size: 18px;
}

.app-special-info-see-all
{
    color: white;
    font-size: 18px;
    text-shadow: 1px 1px 2px black;
}

.app-special-items-div
{
    display: flex;
    flex-wrap: nowrap;
    flex: 1;
    margin-right: 10px;
}

.app-special-item
{
    background-color: white;
    display: flex;
    flex-direction: column;
    width: 120px;
    min-width: 120px;
    margin: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.app-special-item-image-fill
{
    background-color: white;
    width: 100%;
    height: 100px;
    object-fit: fill;
    -o-object-fit: fill;
}

.app-special-item-image
{
    background-color: white;
    width: 100%;
    height: 100px;
    object-fit: contain;
    -o-object-fit: contain;
}

.app-special-item-title
{
    color: black;
    width: 100%;
    height: 45px;
    padding: 5px;
    overflow: hidden;
}

.app-special-item-price
{
    color: #28b81e;
    text-shadow: black;
}

.app-special-item-old-price
{
    color: red;
    text-shadow: black;
    text-decoration: line-through;
}

.app-special-item-line
{
    background-color: lightgray;
    height: 2px;
    margin: 5px;
}

.app-special-item-discount
{
    background-color: #fe621d;
    border-radius: 5px;
    color: white;
    margin-right: 5px;
    margin-left: 5px;
}

.app-special-item-description
{
    height: 70px;
    max-height: 70px;
    /* text-align: justify; */
    direction: rtl;
    color: darkgray;
    overflow: hidden;
}

.app-special-end-show-all-div
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    min-width: 90px;
    padding: 5px;
}

.app-bazaar-shortcut-item
{
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: calc(50% - 4px);
    height: 100px;
    background-color: transparent;
    justify-content: center;
    align-items: center;
    color: black !important;
    margin: 2px;
    border-radius: 5px;
}

.app-brand-items
{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
}

.app-brand-item
{
    flex: 1;
    min-width: calc(33.3333% - 2px);
    width: calc(33.3333% - 2px);
    max-width: calc(33.3333% - 2px);
    height: 60px;
    margin-bottom: 4px;
    justify-content: center;
    align-items: center;
}

.app-brand-item-image
{
    background-color: white;
    width: 60px;
    max-width: 60px;
    height: 60px;
    max-height: 60px;
    object-fit: contain;
    -o-object-fit: contain;
    padding: 3px;
    border-radius: 30px;
    overflow: hidden;
    background-color: white;
}

.app-section-title-div
{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 5px;
    padding-right: 5px;
    padding-left: 5px;
}

.app-linear-item
{
    margin: 5px;
    padding: 5px;
    border-radius: 5px;
    color: white;
    text-align: right;
}

.app-bottom-navigation
{
    display: flex;
    background-color: white;
    height: 60px;
    /* max-width: 350px; */
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    border-top: 1px solid lightgray;
}

.app-bottom-navigation-button
{
    flex: 1;
    color: darkgray;
    font-size: 10px;
}

.app-bottom-navigation-button-active
{
    flex: 1;
    color: #23b5b9;
    font-size: 10px;
}

.app-categories-div
{
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: right;
    display: flex;
    width: 100%;
    overflow-x: scroll;
    margin-top: 5px;
    margin-bottom: 5px;
}

.app-category-item
{
    background-color: white;
    display: flex;
    flex-direction: column;
    width: 120px;
    min-width: 120px;
    margin-left: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.app-product-item
{
    background-color: white;
    display: flex;
    flex-direction: column;
    min-width: calc(50% - 10px);
    width: calc(50% - 10px);
    margin: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.app-list-view-more-button
{
    background-color: white;
    width: 90%;
    padding: 4px;
    border: 1px solid gray;
    border-radius: 5px;
    margin: 0 auto;
    margin-top: 10px;
}

.app-field-title
{
    color: darkgray;
}

.app-field-title-green
{
    color: #28b81e;
}

.app-field-value
{
    color: #28b81e;
}

.app-add-btn
{
    background-color: red;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    position: fixed;
    bottom: 10px;
    left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.app-delete-btn
{
    background-color: transparent;
    color: red;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 10px;
    left: 10px;
}

.app-exposition-main-button
{
    background-color: white;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: calc(33.3333% - 4px);
    max-width: calc(33.3333% - 4px);
    height: 120px;
    justify-content: center;
    align-items: center;
    color: black !important;
    margin: 2px;
    border-radius: 5px;
}

.app-exposition-main-button-img
{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}

.app-exposition-main-button-title
{
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-exposition-section-button
{
    background-color: white;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: calc(50% - 4px);
    max-width: calc(50% - 4px);
    height: 120px;
    justify-content: center;
    align-items: center;
    color: black !important;
    margin: 2px;
    border-radius: 5px;
}

.app-lab-finder-button-item
{
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: calc(50% - 4px);
    /* height: 200px; */
    background-color: transparent;
    justify-content: center;
    align-items: center;
    color: black !important;
    margin: 2px;
    margin-top: 10px;
    border-radius: 5px;
}