* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    text-transform: none;
    user-select: none;
}

.home-bg {
    background-image: url("../images/Home-Picture.jpg");
    background-size: cover;
    height: 100vh;
}

.home-overlay {
    background-image: url("../images/Home-Overlay.jpg");
    height: 100%;
    width: 100%;
}

@media screen and (max-width:750px) {
    .about-pic {
        flex-wrap: wrap;
    }

    .about-pic img {
        width: 50%;
    }

    .promo-wrap {
        flex-wrap: wrap;
    }

    .promo-wrap img {
        width: 50%;
    }

    .promo-px-j {
        justify-content: center !important;
    }
}

.product-bg {
    background-image: url("../images/Product-Picture.jpg");
    background-size: cover;
    height: 100vh;
    background-position: center;
}

.product-overlay {
    background-image: url("../images/Product-Overlay.jpg");
    height: 100%;
    width: 100%;
}

.promo-px {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
}

.promo-px-j {
    justify-content: space-between;
}

.promo-px-c {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
}

/* progress bar start  */

.progress-bar-highlight {
    height: 5px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 2000;
}

.highlight {
    transition: width 0.5s linear;
    width: 0%;
    background-color: white;
    height: 100%;
}

/* progress bar end  */

/* cookie bar start  */

.cookie {
    visibility: hidden;
}

.cookie.hide {
    display: none;
}

/* cookie bar end  */

/* custom scrollbar start */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: lightblue;
}

::-webkit-scrollbar-thumb {
    background-clip: content-box;
    background-color: white;
    border-radius: 4px;
    border: 1px solid white;
}

/* custom scrollbar end */

/* pwa update message start */

#snackbar {
    display: none;
    justify-content: center;
    position: fixed;
    width: 100%;
    z-index: 1;
    bottom: 30px;
}

#snackbar.show {
    display: block;
}

#snackbar p {
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
}

#reload {
    font-size: 20px;
    cursor: pointer;
}

/* pwa update message end */