@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Pixelify+Sans:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-display: swap;
    font-optical-sizing: auto;
    font-display: swap;
    text-rendering: optimizeLegibility;
    user-select: none;
}

.border-overview {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    /* outline: 2px solid red; */
    z-index: 100;
    pointer-events: none;
    border-radius: 37px;
}

body {
    width: 100vw !important;
    height: 100vh;
    background-color: var(--bg-main);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: Poppins;
    font-weight: 600;
    font-size: 18px;
    color: var(--text-secodary);
    align-items: center;
}

.container {
    width: 100vw;
    height: calc(100vh - 90px);
    background-color: #f9f9f9;
    flex-direction: column;
    display: flex;
    align-items: center;
    z-index: 1;
}

.container.full {
    height: 100vh;
}

.content.show {
    display: flex !important;
}

.window-loader {
    position: absolute;
    height: 100vh;
    width: 100vw;
    z-index: 99999;
    background-color: rgba(46, 46, 46, 0.849);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
}

.window-loader.loading {
    opacity: 1;
    visibility: visible;
}


.app-loader-wrapper {
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
}

.app-loader {
    width: 4em;
    height: 5em;
    font-size: 6px
}

.app-loader-train {
    width: 6em;
    height: 6em;
    background: radial-gradient(circle at 20% 80%, currentColor .6em, transparent .6em), radial-gradient(circle at 80% 80%, currentColor .6em, transparent .6em), #bbb;
    border-radius: 1em;
    position: relative;
    left: 1em;
    color: #444;
    animation: train-animate 1.5s infinite ease-in-out
}

@keyframes train-animate {

    0%,
    100% {
        transform: rotate(0)
    }

    25%,
    75% {
        transform: rotate(.5deg)
    }

    50% {
        transform: rotate(-.5deg)
    }
}

.app-loader-train::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 2.3em;
    background-color: currentColor;
    border-radius: .4em;
    top: 1.2em;
    left: 10%
}

.app-loader-train::after {
    content: '';
    position: absolute;
    width: 25%;
    height: .4em;
    background-color: currentColor;
    border-radius: .3em;
    top: .4em;
    left: calc((100% - 25%)/ 2)
}

.app-loader-track {
    width: 8em;
    position: relative
}

.app-loader-track::after,
.app-loader-track::before {
    content: '';
    position: absolute;
    width: .3em;
    height: 4em;
    background-color: #bbb;
    border-radius: .4em;
    transform-origin: bottom
}

.app-loader-track::before {
    left: 0;
    transform: skewX(-27deg)
}

.app-loader-track::after {
    right: 0;
    transform: skewX(27deg)
}

.app-loader-track span {
    width: inherit;
    height: .3em;
    background-color: #bbb;
    position: absolute;
    top: 4em;
    animation: track-animate 1s linear infinite
}

.app-loader-track span:nth-child(2) {
    animation-delay: -.33s
}

.app-loader-track span:nth-child(3) {
    animation-delay: -.66s
}

@keyframes track-animate {
    0% {
        transform: translateY(-.5em) scaleX(.9);
        filter: opacity(0)
    }

    10%,
    90% {
        filter: opacity(1)
    }

    100% {
        transform: translateY(-4em) scaleX(.5);
        filter: opacity(0)
    }
}

.container .window-header {
    width: 100%;
    height: 80px;
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.container .window-header.show {
    display: flex;
}


.container .window-header .window-name {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    letter-spacing: -1px;
}

.container .window-header .window-controls {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 20px;
    width: 40px;
    height: 100%;

}

.container .window-header .window-controls ion-icon {
    cursor: pointer;
    width: 25px;
    height: 25px;
    margin-top: 10px;
    color: rgb(53, 53, 53);
}

.container .content {
    width: 100%;
    height: calc(100vh - 190px) !important;
    display: none;
    padding: 27px;
    padding-bottom: 0px;
    flex-direction: column;
}


.nav {
    width: 100vw;
    height: 90px;
    background-color: #ffffff;
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(151, 151, 151, 0.308);
    box-shadow: 0px 0px 4px 0px rgba(151, 151, 151, 0.308);
}

.nav.show {
    display: flex;
}

.nav .nav-section {
    width: calc(100% / 4);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(100, 100, 100, 0.822);
}

.nav .nav-section.active {
    color: rgb(24, 24, 24);
}

.nav .nav-section .section-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 7px;
}

.nav .nav-section .section-icon ion-icon {
    width: 25px;
    height: 25px;
}

.nav .nav-section .section-label {
    width: 100%;
    height: 10px;
    font-weight: 400;
    font-size: 11px;
    margin-top: -6px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -1px;
}

.overview-list-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    width: 100%;
}

.overview-list-menu .overview-item {
    width: 100%;
    background-color: rgb(255, 255, 255);
    box-shadow: inset 0px 0px 2px 0px rgba(151, 151, 151, 0.308);
    height: 120px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.overview-list-menu .overview-item .item-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-list-menu .overview-item .item-icon ion-icon {
    width: 50px;
    height: 50px;
    font-weight: 100;
    color: rgb(0, 119, 0);
    margin-top: 8px;
}

.overview-list-menu .overview-item .item-name {
    font-weight: 300;
    font-size: 20px;
    letter-spacing: -1px;
}

.new-product-steps {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 5vh;
    margin-top: -40px;
    justify-content: space-between;
    align-items: center;
    padding: 0 5vw;
    box-sizing: border-box;
}


.new-product-steps .step {
    border: 1px solid rgb(148, 148, 148);
    color: rgb(148, 148, 148);
    width: 12%;
    max-width: 50px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3vw;
    text-align: center;
    flex-shrink: 0;

}


.new-product-steps .step .validated {
    display: none;
}

.new-product-steps .step-line {
    flex: 1;
    border-top: 1px solid rgb(148, 148, 148);
    margin: 0 2vw;
    height: 1px;
}

.new-product-steps .step-line.validated {
    border-top: 2px solid rgb(70, 68, 68);
}

.new-product-steps .step.validated .step-sharp .number {
    display: none !important;
}

.new-product-steps .step.validated .step-sharp .validated {
    display: flex !important;
}

.new-product-steps .step.validated .step-sharp .validated ion-icon {
    font-size: 1.4rem;
    color: white;
}

.new-product-steps .step.validated {
    background-color: rgb(39, 39, 39) !important;
    border: 1px solid rgb(39, 39, 39) !important;
}


.new-product-steps .step.validated .step-sharp .current ion-icon {
    font-size: 1.4rem;
    color: white;
}

.new-product-steps .step.current {
    color: black;
    border: 1px solid rgb(22, 22, 22) !important;
}

.content .new-product-warper {
    height: calc(100% - 18px);
    display: flex;
    padding-bottom: 12px;
    padding-top: 12px;
    flex-direction: column;
    gap: 22px;
}

.content .new-product-next {
    height: 18px;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-left: 8px;
}

.content .finish-product-add {
    height: 50px;
    display: none;
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    gap: 20px;
}

.content .finish-product-add .button {
    width: calc(100% - 40px);
    justify-content: center;
    align-items: center;
    display: flex;
    box-shadow: inset 0px 0px 2px 0px rgba(151, 151, 151, 0.308);
    background-color: rgba(219, 217, 217, 0.342);
    border-radius: 8px;
    color: rgb(49, 49, 49);
    letter-spacing: 1px;
}

.form-prompt {
    min-height: 60px;
    max-height: 800px;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 8px;
}

@keyframes dispear {
    0% {
        display: flex;
        opacity: 1;
    }

    100% {
        display: none;
        opacity: 0;
    }
}

@keyframes apaer {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.dispear {
    animation: dispear 0.1s ease-in-out;
    opacity: 0;
}

.apaer {
    animation: apaer 0.1s ease-in-out;
    opacity: 1;
}

.form-prompt .label {
    height: 18px;
    font-weight: 300;
}

.normalized-input {
    width: 100%;
    height: 40px !important;
    border-radius: 8px;
    border: 1px solid rgb(148, 148, 148);
    padding: 0 10px;
}

.form-prompt textarea {
    width: 100%;
    height: calc(100vh - 400px) !important;
    border-radius: 8px;
    border: 1px solid rgb(148, 148, 148);
    padding: 0 10px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: 8px;
    font-size: 19px;
}

.input-w-symbole {
    display: flex;
    position: relative;
    width: 100%;
}

.input-w-symbole span {
    position: absolute;
    right: 15px;
    font-size: 26px;
    font-weight: 300;
}

.form-prompt .normalized-input.select {
    background-color: white;
    display: flex;
    align-items: center;
}

.form-prompt .normalized-input.select .text {
    width: calc(100% - 20px);
    font-weight: 400;
}

.checks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    height: auto;
}

.checks .check {
    border: 1px solid rgb(148, 148, 148);
    background-color: white;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    transition: background-color 0.1s ease-in-out, background-color 0.1s ease-in-out, font-weight 0.1s ease-in-out, font-weight 0.1s ease-in-out;
    letter-spacing: -1px;
}

.checks .check.checked {
    background-color: rgb(202, 200, 200);
    color: rgb(61, 61, 61);
}
















.form-prompt .normalized-input.select .select-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-pictures-add {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    height: auto;
}

.product-pictures-add .picture,
.product-pictures-add .picture-add {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    border-radius: 5px;
    box-shadow: inset 0px 0px 2px 0px rgba(151, 151, 151, 0.308);
}

.product-pictures-add .picture-add {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    color: rgb(27, 27, 27);
}

.product-pictures-add .picture-add .add-icon {
    height: 68%;
    display: flex;
    justify-content: center;
    align-items: end;
}

.product-pictures-add .picture-add .add-icon ion-icon {
    font-size: 1.8em;
    color: rgba(58, 58, 58, 0.459);
}

.product-pictures-add .picture-add .label {
    height: 28%;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: start;
}

.product-pictures-add .picture {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2px;
    overflow: hidden;
}

.product-pictures-add .picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3.8px;

}

.product-pictures-add .picture img.landscape {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-pictures-add .picture img.portrait {
    width: auto;
    height: 100%;
    object-fit: contain;
}

.product-pictures-add .picture img.square {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.add-success {
    height: 100%;
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.add-success ion-icon {
    font-size: 8em;
}

.add-success .success-text {
    justify-content: center;
    align-items: center;
    display: flex;
    text-align: center;
    width: 60%;
}

.step1.view,
.step2.view,
.step3.view,
.step4.view,
.step5.view,
.step6.view,
.add-success.view,
.new-product-next.view,
.finish-product-add.view {
    display: flex;
}



.pushup-notification {
    position: absolute;
    z-index: 999999;
    height: 100px;
    width: calc(100vw - 30px);
    background-color: rgb(141, 141, 141);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: -1000px;
    border-radius: 20px;
    box-shadow: inset 0px 0px 2px 0px rgb(221, 221, 221);
    color: white;
    transition: top 0.35s ease-in-out, top 0.35s ease-in-out;
    overflow: hidden;
    text-align: center;
}

.pushup-notification.show {
    top: 20px;
}

.pushup-notification .notif-progress {
    position: absolute;
    width: 100%;
    height: 9px;
    bottom: 0;
}

.pushup-notification .notif-progress #bar {
    width: 3%;
    display: flex;
    background-color: rgba(255, 255, 255, 0.158);
    height: 100%;
    box-shadow: 0 0 2px 0 rgba(255, 255, 255, 0.212);
}

.pushup-notification .notif-progress #bar.start {
    animation: notif-progress 4s ease-in-out;
}

@keyframes notif-progress {
    0% {
        width: 4%;
    }

    100% {
        width: 100%;
    }
}


.app-build {
    position: absolute;
    display: flex;
    align-items: center;
    width: 100%;
    bottom: 4px;
    left: 16px;
    font-size: 12px;
}

.login-box {
    width: 100%;
    height: 100vh !important;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
}

.subname {
    height: 10%;
    width: 80%;
    justify-content: center;
    display: flex;
    align-items: center;
    font-size: 14px;
    text-align: center;
}

.login-prompts {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70%;
    flex-direction: column;
    gap: 20px;
}

.login-prompts input {
    width: 100%;
    height: 40px !important;
    border-radius: 8px;
    border: 1px solid rgb(148, 148, 148);
    padding: 0 10px;
    width: 80%;
}

.app_name {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20%;
    font-size: 28px;
    text-align: center;
}

.btn-login ion-icon {
    margin-top: 2px;
    margin-left: 6px;
}

.btn-login {
    margin-top: 20px;
    display: flex;
    height: 30px;
    justify-content: center;
    align-items: center;
    width: 200px;
}

j {
    width: 100px;
}

#next_txt {
    display: flex;
    justify-content: end;
}

.back_btn {
    position: absolute;
    display: flex;
    left: 25px;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-size: 1.45em;
}

.sell-search {
    display: flex;
    position: relative;
    margin-top: -25px;
}

.sell-search .search {
    padding-left: 45px !important;
    padding-right: 55px;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -2px;
}

.sell-search .search-icon,
.sell-search .scan-icon {
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.sell-search .scan-icon {
    right: 0;
    font-size: 32px;
}

.sell-embed {
    height: 100%;
    height: calc(100% - 50px);
    display: flex;
    margin-top: 25px;
    flex-direction: column;
    gap: 10px;
    overflow-y: scroll;
}

.sell-embed::-webkit-scrollbar {
    display: none;
}

.sell-item {
    height: 120px;
    display: flex;
    width: 100%;
    box-shadow: inset 0px 0px 2px 0px rgba(151, 151, 151, 0.308);
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    color: rgb(49, 49, 49);
    padding: 6px 3px 3px 6px;
    /* justify-content: center; */
    flex-direction: column;
}

.item_name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 20px);
    height: 30px;
    font-size: 22px;
    font-weight: 400;
    flex-wrap: nowrap;
    text-wrap: nowrap;
    text-wrap-style: nowrap;
}

.item_name span {
    display: flex;
    width: calc(100% - 70px) !important;
    overflow: hidden;
}

.item_name ion-icon {
    width: 25px;
    height: 25px;
}

.item_transit {
    display: flex;
    align-items: center;
    font-size: 16px;
    letter-spacing: -0.6px;
    font-weight: 300;
    overflow: hidden;
    flex-wrap: nowrap;
    text-wrap: nowrap;
    width: calc(100% - 70px);
    height: 45px;
}

.item_transit ion-icon {
    margin-left: 4px;
    margin-right: 4px;

}

.item_stats_embed {
    display: flex;
    flex-direction: row;
    width: calc(100% - 12px);
    margin-right: 6px;
    justify-content: space-between;
    margin-bottom: 4px;
}

.item_stat {
    display: flex;
    height: 28px;
    width: 100px;
    margin-left: 6px;
    margin-right: 6px;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    margin-top: -2px;
    color: white;
    padding-bottom: 2px;
}


.item_stat.done {
    background-color: rgba(57, 160, 57, 0.822);
}

.item_stat.process {
    background-color: rgba(226, 176, 82, 0.822);
}

.inv-item.min {
    height: 65px !important;
}

.inv-item {
    height: 120px;
    display: flex;
    width: 100%;
    box-shadow: inset 0px 0px 2px 0px rgba(151, 151, 151, 0.308);
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    color: rgb(49, 49, 49);
    padding: 6px 3px 3px 6px;
    flex-direction: row;
}

.img_embed {
    width: 60px;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    overflow: hidden;
}

.img_embed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3.8px;
}


.img_embed img.landscape {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.img_embed img.portrait {
    width: auto;
    height: 100%;
    object-fit: contain;
}

.img_embed img.square {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.item_informations {
    width: calc(100% - 50px);
    margin-left: 4px;
}

.item_name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 20px);
    height: 26px;
    font-size: 18px;
    font-weight: 400;
    flex-wrap: nowrap;
    text-wrap: nowrap;
    text-wrap-style: nowrap;
}

.item_name span {
    display: flex;
    width: calc(100% - 70px) !important;
    overflow: hidden;
}

.item_name ion-icon {
    width: 25px;
    height: 25px;
}

.item_transit {
    display: flex;
    align-items: center;
    font-size: 16px;
    letter-spacing: -0.6px;
    font-weight: 300;
    overflow: hidden;
    flex-wrap: nowrap;
    text-wrap: nowrap;
    width: calc(100% - 70px);
    height: 25px;
}

.item_transit ion-icon {
    margin-left: 4px;
    margin-right: 4px;

}

.item_stats_embed {
    display: flex;
    flex-direction: row;
    width: calc(100% - 12px);
    margin-right: 6px;
    justify-content: space-between;
    margin-bottom: 4px;
}

.item_stat {
    display: flex;
    height: 28px;
    width: 100px;
    margin-left: 6px;
    margin-right: 6px;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    margin-top: -2px;
    color: white;
    padding-bottom: 2px;
}


.item_stat.done {
    background-color: rgba(57, 160, 57, 0.822);
}

.item_stat.process {
    background-color: rgba(226, 176, 82, 0.822);
}








.search-embed {
    display: flex;
    flex-direction: row;
    width: 85%;
}

.inv-search {
    display: flex;
    position: relative;
    margin-top: -25px;
}

.inv-search .inv {
    padding-left: 45px !important;
    padding-right: 55px;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -2px;
}

.inv-search .inv-icon,
.inv-search .scan-icon {
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.inv-search .scan-icon {
    right: 48px;
    font-size: 32px;
}

.search-filters {
    justify-content: center;
    align-items: center;
    display: flex;
    height: 100%;
    width: calc(15% - 8px);
    right: 0;
    margin-left: 10px;
    margin-top: -2.1px;
}

.pop-up {
    position: absolute;
    height: 100vh;
    width: 100vw;
    background-color: rgba(54, 54, 54, 0.274);
    z-index: 10;
    display: none;
    justify-content: center;
    align-items: center;
}

.pop-up.show {
    display: flex;
}

.pop-up-content {
    margin-top: -80px;
    width: calc(100% - 20px);
    height: calc(100% - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    color: black;
    background-color: white;
    border-radius: 20px;
}

.pop-up-header {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 400;
    position: absolute;
    top: 10px;
}

.pop-up-body {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.sell-item.min {
    height: 80px !important;
}