
@font-face {
    font-family: 'Spartan Bold';
    src: url('/fonts/Spartan-Bold.ttf');
}

@font-face {
    font-family: 'Spartan Light';
    src: url('/fonts/Spartan-Light.ttf');
}

@font-face {
    font-family: 'Spartan Medium';
    src: url('/fonts/Spartan-Medium.ttf');
}

@font-face {
    font-family: 'Spartan Semibold';
    src: url('/fonts/Spartan-SemiBold.ttf');
}

@font-face {
    font-family: 'Spartan Regular';
    src: url('/fonts/Spartan-Regular.ttf');
}

/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 999999;
    height: 2em;
    width: 2em;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
}

/* Transparent Overlay */
.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 1500ms infinite linear;
    -moz-animation: spinner 1500ms infinite linear;
    -ms-animation: spinner 1500ms infinite linear;
    -o-animation: spinner 1500ms infinite linear;
    animation: spinner 1500ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.cover {
    height: 100%;
    width: 100%;
    background-color: var(--menu-color-user);
    background-image: url("../img/footer.png");
    background-size: contain;
}

.cover-header {
    width: 100%;
    height: 65px;
    background-color: white;
}

.cover-header img {
    width: 180px;
    margin-top: 13px;
    margin-left: 10px;
}

.cover-pad {
    width: 100%;
    height: 20%;
    text-align: center;
}

.cover-main {
    width: 100%;
    height: 30%;
    text-align: center;
    background-color: var(--menu-color-user);
}

.cover-main img{
    margin-top: 20px;
    height: 70%;

}

.cover-btn {
    text-align: center;
    margin-top: 20px;
}

.cover-btn button {
    font-family: "Spartan Bold";
    font-size: 18px;
    border: none;
    background-color: #1D1D1B;
    padding: 12px;
    border-radius: 24px;
    color: var(--menu-color-user)
}

.main-menu {
    display: none;
}

.top-bar {
    width: 100%;
    height: 65px;
    background-color: #FFFFFF;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-left: 0px;
    margin-right: 0px;
}

.top-bar-logo {
    height: 55px;
}

.top-bar-divider {
    height: 5px;
    background-image: linear-gradient(#DADADA, white);
}

.section {
    overflow: hidden;
}

.section-description {
    font-family: "Spartan Regular";
    font-size: 14px;
    padding-left: 0px;
    margin-bottom: 10px;
}

.section-separator-1 {
    border-bottom: solid;
    border-bottom-width: 1px;
    border-bottom-color: #3C3C3B;
}

.section-separator-2 {
    border-bottom: solid;
    border-bottom-width: 1px;
    border-bottom-color: #DADADA;
}

.section .title1 {
    font-family: "Spartan Bold";
    font-size: 20px;

}

.section i {
    color: #878787;
    font-size: 18px;
}

.section3 {
    padding-left: 10px;
}

.section .title2 {
    font-family: "Spartan Semibold";
    font-size: 18px;

}

.section .title3 {
    font-family: "Spartan Semibold";
    font-size: 16px;

}

.product {
    font-family: "Spartan Regular";
    font-size: 14px;
    overflow: hidden;
}

.prices {
    overflow-y: scroll;
    height: 40px;
    white-space: nowrap;
}

.price-cont {
    display: inline-block;
}

.tag-name {
    font-family: "Spartan Bold";
    font-size: 10px;
}

.price {
    font-family: "Spartan Bold";
    font-size: 12px;

}
.priceu {
    font-family: "Spartan Regular";
    font-size: 12px;
    color:grey;

}

.search-bar {
    font-family: "Spartan Light";
    background-color: #EAEAEA;
    width: 100%;
    margin-right: 10px;
    padding: 7px;
}

.input-search {
    background-color: transparent;
    border: none;
    width: 90%;
}

.search-bar i {
    font-size: 26px;
    color: #878787;
}

.input-search:focus {
    outline: none;
}

.modal-title {
    font-family: "Spartan Bold";
    font-size: 20px;
}

#modal-description {
    font-family: "Spartan Regular";
    font-size: 14px;
}

#image-div img {
    width: 100%;
}

.button-add {
    background-color: #DBDCDD;
    width: 55px;
    height: 55px;
    position: fixed;
    bottom: 15px;
    right: 15px;
    padding-top: 12px;
    text-align: center;
    font-size: 22px;
    z-index: 1000;
}

.footer {
    height: 15%;
    background-image: url("../img/footer.png");
    background-size: contain;
    background-color: var(--menu-color-user);
    position: relative;
}

.footer-text {
    width: 100%;
    /**height: 45px;**/
    position: absolute;
    bottom: 0;
    padding-left: 15px;
}

.footer-dev {
    width: 40%;
    font-size: 9px;
    padding-left: 5px;
    display: inline-block;
    font-family: "Spartan Bold";
    background-color: var(--menu-color-user);
}

.footer-text a {
    text-decoration: none;
    color: #1b1e21;
    font-size: 9px;
}

.footer-dev img {
    width: 30px;
}

.footer-contact {
    width: 55%;
    font-family: "Spartan Regular";
    font-size: 9px;
    padding-bottom: 3pt;
    /**display: inline-block;*/
    text-align: left;
    background-color: var(--menu-color-user);
}

.footer-contact span {
    font-family: "Spartan Bold";
}
