
:root{
    --bg-base: #f2f2f2;
    --primary-color: #000;
    --second-color: #3d3d3d;
    --primary-opaque:  rgb(67,52, 119, 0.1);
    --white-color: #f2f2f2;
    --disable-color: #ccc;
    --danger-color: rgb(183, 42, 42);
    --bg-danger: rgba(183, 42, 42,0.1);
    --green-color: rgb(43, 161, 43);
    --bg-sucess: rgb(43, 161, 43, 0.1);
}



.bg-base{ background: var(--bg-base);}
.white-color{ color: var(--white-color); fill: var(--white-color); stroke: var(--white-color);}
.primary-color{ color: var(--primary-color); fill: var(--primary-color); stroke: var(--primary-color);}
.primary-color svg{ fill: var(--primary-color) !important; stroke: var(--primary-color) !important; }
.primary-color-opaque{ color: var(--primary-opaque); fill: var(--primary-opaque); stroke: var(--primary-opaque);}
.bg-primary-opaque{ background: var(--primary-opaque)}
.bg-primary-color{ background: var(--primary-color)}
.second-color{ color: var(--second-color) !important; }
.second-color svg{ fill: var(--second-color) !important; }
.green-color{ color: var(--green-color); }
.red-color{ color: var(--red-color); }
.red-color svg{ fill: var(--red-color) !important; stroke: var(--red-color) !important; }
.yellow-color{ color: var(--yellow-color); }
.yellow-color svg{ fill: var(--yellow-color) !important; stroke: var(--yellow-color) !important; }
.green-color svg{ fill: var(--green-color) !important; stroke: var(--green-color) !important; color: var(--green-color)}
.grey-color{ color: var(--grey-color); }
.grey-color svg{ fill: var(--grey-color); stroke: var(--grey-color);}
.dark-color{ color: var(--dark-color); }
.dark-color svg{ fill: var(--dark-color); }
.danger-color{ color: var(--danger-color) !important;; border-color: var(--danger-color) !important;; }
.danger-color svg{ fill: var(--danger-color) !important;;  stroke: var(--danger-color) !important;;}
.disable-color{ color: var(--disable-color) !important;  border-color: var(--disable-color) !important; }
.disable-color svg{ fill: var(--disable-color) !important; stroke: var(--disable-color) !important;}
.blue-color{ color: var(--blue-color); }
.blue-light-color{ color: var(--blue-light-color); }

.bg-primary-color{ background: var(--primary-color); }
.bg-primary-opaque{ background: var(--primary-opaque); }
.bg-danger{ background: var(--bg-danger) !important; }
.bg-none{ background: none; }
.bg-grey{ background: var(--grey-color); }
.bg-black-opacity{ background: var(--bg-black-opacity); }
.bg-sucess{ background: var(--bg-sucess) !important; }
.bg-yellow{ background: var(--bg-yellow) !important; }
.bg-yellow-solid{ background: var(--yellow-color) !important; }
.bg-green-color{ background: var(--green-color); }
.u-alert-danger{ border-radius: 5px; box-sizing: border-box; background: var(--bg-danger); color: var(--red-color);}
.u-alert-sucess{ border-radius: 5px; box-sizing: border-box; background: var(--bg-sucess); color: var(--green-color);}
.u-alert{ border-radius: 5px; padding:10px; box-sizing: border-box;}

body{
    font-family: 'Lato', sans-serif;  
    background: var(--bg-base);
}
p,
h6{ color: var(--primary-color) !important;}
.brand{
    max-width: 150px;
    height: 157px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.app-bg-nap-delivery{
    background-image: url('../icons/bg-nap.svg');
    background-size: 15%;
}

.app-bg-nap-delivery::before{
    opacity: 25%;
}

.panel-navbar-top{
    width: 100%;
    height: 60px;
    position: fixed;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    background: #fff;
    top: 0;
    z-index: 2;
}

@media screen and (min-width: 1024px){
    .panel-navbar-top{
        position: relative;
    }
}

.user-session{
    width: 100px;
    height: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}

.user-session > .preview-logo{
    max-width: 150%;
    max-height: 150%;
}

.btn-close-menu{
    position: absolute;
    top: 0;
    right: 0;
}
@media screen and (min-width: 1024px){
    .btn-close-menu{ display: none;}
}
.panel-sidebar{
    width: 80px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    transform: translateX(-80px);
    z-index: 2;
    overflow-y: auto;
    overflow-x: hidden;
}

.panel-sidebar-full{
    transition: 0.1s;
    width: 200px;
    transform: translateX(0);
}

.panel-sidebar-lite{
    transition: 0.1s;
    width: 90px;
    transform: translateX(0);
}

.navmenu{ display: none; }

.brand-navbar{
    width: 100px;
    height: 60px;
    background: url('../img/brand-navbar.png') no-repeat;
    background-size: cover;
    float: left;
    cursor: pointer;
    margin-left: 25px;
}

@media screen and (min-width: 1024px){
    
    .brand-navbar{margin-left: 0;}
    
    .navmenu{
        float: right;
        font-size: 0.8em;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navmenu li a{ display: flex; align-items: center; gap: 5px}

    .navmenu li a:hover{ border-bottom: 1px solid var(--primary-color); padding-bottom: 5px;}

}

.brand-sidebar{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 30px;
}

.expand-sidebar{
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 10px;
    cursor: pointer;
    z-index: 11;
    margin-left: 10px;
}
@media screen and (min-width: 1024px){
    .expand-sidebar{ display: none;}
}

.tabs-sidebar{
    margin: 0;
    padding: 0;
    margin-top: 50px;
}

.tabs-sidebar li{
    list-style-type: none;
    font-size:0.8em;
}

.tab-sidebar{
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    margin-bottom: 5px;
    align-items: center;
    display: flex;
    gap: 10px;
    padding-left: 30px;
}
.legend-tab{ display: none; }

@media screen and (min-width:900px){
    .legend-tab{ display: block; }
}

.tab-sidebar svg{ width: 25px; height: 25px; }

.tab-active-hove:hover{
    transition: 0.1s;
    border-radius: 3px;
    padding-right: 5px;
    background: var(--primary-opaque);
}

.tab-active{
    border-radius: 3px;
    border-left: 5px solid var(--primary-color);
    padding-right: 5px;
    background: var(--primary-opaque);
}

.panel-navigator{
    width: 100%;
    height: auto;
    margin-top: 100px;
    box-sizing: border-box;
    overflow-x: scroll;
}

.tabs-navigator{
    display: flex;
    flex-wrap: nowrap;
    list-style-type: none;
    padding: 0;
}
@media screen and (min-width: 1024px){
    .panel-navigator{ overflow-x: hidden; }
    .tabs-navigator{ margin-bottom: 0px; }
}
.tab-page{
    padding-left: 15px;
    padding-right: 15px;
    letter-spacing: -1px;
    padding-bottom: 3px;
    cursor: pointer;
}

.tab-page:hover{
    padding-bottom: 3px; 
    border-bottom: 3px solid var(--primary-color);
    margin-bottom: -3px;
}

.tab-page-active{
    margin-bottom: -3px;
    border-bottom: 3px solid var(--primary-color);
}

.navigator-line{
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 100px;
}

.bg-zorus{
    width: 100%;
    height: 50%;
    position: fixed;
    left: 0;
    bottom:0;
}

.bg-zorus svg{
    width:100%;
    height: auto;
    margin-bottom: -4px;
    fill: rgba(0,0,0,0.1);
}

.bg-footer{
    width: 100%;
    height: 100%;
    background:  rgba(0,0,0,0.1);
}

.brand-login{
    width: 100px;
    max-height: 100px;
    margin-bottom: 20px;
}

.form-panel-login{
    width: 300px;
    min-height: 400px;
    background: #fff;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    margin-top: -200px;
    z-index: 2;
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 30px 30px;
    box-sizing: border-box;
}
.callback-form{
    min-height: 0px;
    max-height: 50px;
}

.btn-form-login{
    width: 100%;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 900;
    font-size: 0.8em;
    display: block;
    margin-bottom: 15px;
}
.cards-indicator{
    display: flex;
    gap: 20px;
    align-items: center;
}

.card-indicator{
    width: 200px;
    padding: 15px 30px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    border-radius: 5px;
    margin-top: 20px;
}

.welcome-alert{
    max-width: 400px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
}

.btn-submit-form{ padding: 10px 20px; font-size: 1em;}

.u-table{
    background: #fff;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.1);
    border-radius: 5px;
}
.u-table-header,
.u-table-body tr{ background: var(--black-color) !important;}
.store-logo{
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}
.preview-logo{
    width: 150px;
    height: 150px;
    background: var(--primary-opaque);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-upload{
    display: block;
    width:150px;
    background: var(--primary-opaque);
    padding: 8px 20px;
    text-align: center;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.other-photos{
    display: flex;
    overflow-y: auto;
    padding-bottom: 15px;
}

.bg-modal-screen{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.3);
    z-index: 11;
}
.modal-stock{
    width: 300px;
    height: 300px;
    background: var(--white-color);
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -150px;
    margin-top: -150px;
    padding: 30px;
    box-sizing: border-box;
}

.all-products{
    display: flex;
    flex-wrap: wrap;  /* NEW */
    flex-flow: row wrap;
    justify-content: flex-start;
    margin-top: 30px;
}

.product{
    width: 300px;
    margin: 25px auto;
}

@media screen and (min-width: 599px){
    .product{
        flex: 0 1 49%;
        margin: 0;
        margin-right: 1%;
    }
}

@media screen and (min-width: 800px){
    .product{
        flex: 0 1 32%;
    }
}

@media screen and (min-width: 1024px){
    .product{
        flex: 0 1 24%;
        margin-right: 1%;
        margin-bottom: 50px;
    }
}

.product img{
    width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    
    border-radius: 3px;
    margin-bottom: 10px;
}

@media screen and (min-width: 599px){
    .product img{
        max-width: 100%;
        height: 300px;
    }

}

.btn-load-more{
    width: 200px;
    height: 40px;
    border-radius: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -1px;
    font-weight: 900;
    background: rgba(254, 189, 105, 0.2);
    color: #FEBD69;
    cursor: pointer;
}

.btn-load-more:hover{
    transition: 0.3s;
    background: rgb(254, 189, 105);
    color: var(--white-color)
}

@media screen and (min-width: 1024px){
    .product-photos{
        width: 400px;
        height: auto;
    }
}

.product-cart{
    position: relative;
    margin-top: 10px;
    border-bottom: 1px solid var(--disable-color);
    margin-bottom: 10px;
}

.product-cart img{ 
    max-width: 100%;
    border-radius: 3px;
    margin-bottom: 10px;
}

@media screen and (min-width: 1024px){
    .product-cart-info{
        width: 95%;
        margin-left: 5%;
    }
}
.resume-cart{
    width: 100%;
    height: 100px;
    position:fixed;
    left: 0;
    bottom: 0;
    background: #fff;
    padding: 10px;
}
@media screen and (min-width: 900px){
    .resume-cart{
        position:relative;
        left: 0;
        bottom: 0;
    }
}

.value-cart{
    font-size: 0.8em;
    color: var(--primary-color);
}

.btn-remove-cart{
    position: absolute;
    bottom: 0;
    margin-bottom: 20px;
    right: 0;
}

.qrcode-pix{
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.qrcode-pix img{ border: 2px solid var(--primary-color); padding: 1px;}

#progressBar {
    width: 90%;
    margin: 10px auto;
    height: 20px;
    background-color: #E0E0E0;
  }
  
#progressBar div {
height: 100%;
text-align: right;
padding: 0 0px;
line-height: 2px; /* same as #progressBar height if we want text middle aligned */
width: 0;
background-color: #FF0000;
box-sizing: border-box;
}

@media screen and (min-width: 1024px){
    .sidebar-app-none{ display: none;}
}

.order-detail{
    width: 100%;
    padding: 25px;
    margin-top: 50px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.05);
}
.order-detail p{
    margin-bottom: 10px;
}

.filters-table{
    width: 100%;
    min-height: 20px;
    display: flex;
    gap: 10px;
}
.filter-table{
    font-size: 0.7em;
    border: 2px solid var(--primary-color);
    padding: 3px 15px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
}


.photo-product,

.product-photos{ position: relative;}

.product-photos img{ max-width: 100%;}

.control-slide{
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}  

.btn-slide{
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background-color: #FEBD69;
    padding: 8px;
    border: 5px solid rgba(0,0,0,0.8);
    cursor: pointer;
}