﻿.reportchart {
    width: 400px;
    height: 200px;
}

.reportchartbig {
    width: 600px;
    height: 300px;
}

.reportpiechart {
    width: 400px;
    height: 400px;
}


.btn-branded {
    color: white;
    background-color: #16355B;
    border-color: #16355B
}

    .btn-branded:hover {
        color: white;
        background-color: #132C4C;
        border-color: #132C4C
    }

    .btn-branded:focus,
    .btn-branded.focus {
        box-shadow: 0 0 0 .2rem rgba(46, 121, 162, 0.5)
    }

    .btn-branded.disabled,
    .btn-branded:disabled {
        color: white;
        background-color: #567B8C;
        border-color: #567B8C
    }

.modal-header {
    justify-content: space-between;
}

/*    .btn-branded:not(:disabled):not(.disabled):active,
    .btn-branded:not(:disabled):not(.disabled).active,
    .show > .btn-branded.dropdown-toggle {
        color: #212529;
        background-color: #9cdada;
        border-color: #2e7c7c
    }

        .btn-branded:not(:disabled):not(.disabled):active:focus,
        .btn-branded:not(:disabled):not(.disabled).active:focus,
        .show > .btn-branded.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(91, 194, 194, 0.5)
        }*/

.btn-outline-branded {
    color: #16355B;
    background-color: transparent;
    background-image: none;
    border-color: #16355B
}

    .btn-outline-branded:hover {
        color: white;
        background-color: #16355B;
        border-color: #16355B
    }

    .btn-outline-branded:focus,
    .btn-outline-branded.focus {
        box-shadow: 0 0 0 .2rem rgba(46, 121, 162, 0.5)
    }

    .btn-outline-branded.disabled,
    .btn-outline-branded:disabled {
        color: #567B8C;
        background-color: transparent
    }

/*.btn-outline-primary:not(:disabled):not(.disabled):active,
    .btn-outline-primary:not(:disabled):not(.disabled).active,
    .show > .btn-outline-primary.dropdown-toggle {
        color: #212529;
        background-color: #8ad3d3;
        border-color: #7cc
    }

        .btn-outline-primary:not(:disabled):not(.disabled):active:focus,
        .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
        .show > .btn-outline-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(119, 204, 204, 0.5)
        }

*/





/* Global Styles */
body {
    font-family: "Work Sans", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: #575756;
    /*zoom: 0.75;*/
}

#spinner-div {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 10000000 !important;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px;
}

    .container.body-content {
        flex: 1;
    }

.shead {
    background-color: #300d48;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.shead hr {
    display:none;
}

h1 {
    color: #FFFFFF;
    padding-left: 20px;
}

h2, h3, h4 {
    margin-top: 20px;
}

/* Header Styles */
header {
    /*background-color: #333;*/
    color: white;
    padding: 10px 0;
    font-family: "Work Sans", sans-serif;
}

p {
    font-family: "Work Sans", sans-serif;
}

.header-container {
    display: flex;
    align-items: center;
}

.logo {
    /*    margin-right: 10px;
*/
}


.title {
    font-size: 22px;
    margin-right: 20px;
}
/* Navigation Styles */
nav {
    text-align: center;
}

    nav a {
        color: white;
        text-decoration: none;
        margin: 0 10px;
        transition: color 0.3s;
    }

        nav a:hover {
            color: #ff9900;
        }

/* Product Catalog Styles */
.product-container {
    display: flex;
    flex-wrap: wrap;
}

.btn:hover {
    background-color: @Html.Raw(navbarColor) !important;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 15px;
    width: 100%;
}

.product-container .product-item:nth-child(n + @(pageSize + 1)) {
    display: none;
}

.product-item {
    width: calc(33.33% - 15px);
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 50px;
}

    .product-item h3 {
        margin-top: 0;
        font-weight: bolder;
        text-decoration: underline;
    }

    .product-item:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        background-color: #fff;
    }

/* Shopping Basket Styles */


.basket-item {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .basket-item h3 {
        margin: 0;
    }

    .basket-item button {
        background-color: #ff5555;
        border: none;
        color: white;
        padding: 5px 10px;
        border-radius: 3px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        .basket-item button:hover {
            background-color: #ff3333;
        }

/* Button Styles */
/*.btn {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
}*/

.btn-primary {
    background-color: #007bff;
    color: white;
    align-self: center;
    /*width: 100%;*/
}

    .btn-primary:hover {
        background-color: #0056b3;
    }

.custom-link {
    text-decoration: none;
    color: white;
}


@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.welcome-message {
    position: relative;
    animation-name: slideOutRight;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
    animation-play-state: paused;
    font-size: 20px;
    color: green;
    margin-left: 25px;
    font-weight: bolder;
}

/* Search Bar Styles */
.search-container {
    display: flex;
    align-items: center;
}

#search-input {
    flex: 1;
    padding: 12px;
    background: transparent;
    font-size: 16px;
    outline: none;
}

#search-button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    padding: 15px 20px;
    cursor: pointer;
}

    #search-button:hover {
        background-color: #0056b3
    }

/* Footer Styles */
footer {
    /*background-color: #f4f4f4;*/
    text-align: center;
    color: #555;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 1000;
}



/*h3 {
    text-align: center;
}*/

/* Category Styles */

.category-list {
    float: right;
    margin-right: 20px;
}

    .category-list u1 {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .category-list li {
        display: inline-block;
        margin-right: 10px;
    }

    .category-list a {
        text-decoration: none;
        padding: 5px 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

.form-inline {
    margin-bottom: 20px;
}

.input-text {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.1);
    border: 2px solid grey;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    font-size: 16px;
}

.dropdown-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    /* -webkit-appearance: none; */
    /*-moz-appearance: none;*/
    /* appearance: none; */
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.card-body {
    /*background-color: rgb(217 217 217);*/
    border-radius: 10px;
    border-color: rgb(33, 37, 41);
    /*border: 3px solid rgb(33, 37, 41);*/
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    margin: 20px auto;
    max-width: 400px;
    position: relative;
    z-index: 1;
}

.logo-img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.logo {
    display: inline-block;
    /*border: 1px solid black;
    border-radius: 10px;*/
    padding: 10px;
    text-align: center;
    background-color: white;
    margin-left: 10px;
}

.title {
    font-size: 24px;
    padding: 5px;
    border: 1px solid white;
    border-radius: 10px;
    align-items: center;
    position: absolute;
    right: 0;
    top: 1.3rem;
    margin-left: 10px;
    border-color: white;
    height: 60px;
    display: inline-flex;
    border-left: none;
    padding-left: 30px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}



.icon-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border-color: white;
    border-width: thin;
    margin-right: -1px;
    border: 1px solid white;
    position: absolute;
    left: -60px;
}

.login-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90%;
    /* background-image: url(/images/loginimage.JPG); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    z-index: -1;
}



@media (min-width: 768px) {
    /*Animations*/

    .product-item.slide-up {
        transform: translateY(0); /* Target state for slide-up effect */
        opacity: 1; /* Target state for fly-up effect */
    }

    .product-list {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .product-item {
        flex: 0 0 auto;
        width: calc(100% - 20px);
        margin: 0 10px 20px 10px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        height: max-content;
        max-height: 750px;
        transition: transform 0.3s, opacity 0.2s;
        transform: translateY(100%);
        opacity: 0;
    }

        .product-item.fly-up.slide-up:hover {
            transform: translateY(0) scale(1.05);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            background-color: #fff;
        }

        .product-item p {
            font-family: "Work Sans", sans-serif;
            font-style: oblique;
            font-weight: bold;
        }

    /*    .dropdown-menu {
        border: 2px solid grey;
        border-radius: 30px;
        box-shadow: -5px 0px 5px rgba(0, 0, 0, 0.1);
        width: 105%;
    }

    .dropdown-button {
        display: inline-block;
        padding: 8px 16px;
        font-size: 14px;
        border: none;
        border-radius: 3px;
        cursor: pointer;
        transition: background-color 0.3s;
        background-color: #007bff;
        color: white;
        align-self: center;
        margin-left: 4px;
        width: 95%;
        margin-bottom: 2.5px;
    }*/

    /*  .dropdown-button:hover {
            background-color: #0056b3;
        }*/

    /*    .dropdown-menu a {
        color: white;
        text-decoration: none;
        background-color: #007bff;
        padding: 5px 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        transition: background-color 0.3s ease;
        text-align: center;
    }*/
    /*    .dropdown-menu a:hover {
        background-color: #0056b3;
    }*/

    .logo-img {
        width: 17%;
    }

    .spaceproduct {
        justify-content: flex-start;
        display: flex;
        width: 50%;
    }
}

@media (max-width: 767px) {

    .product-list {
        display: block;
        width: 100%;
    }

    .navbar-container {
        background-color: rgb(33, 37, 41);
    }

    .spaceproduct {
        justify-content: flex-start;
        display: flex;
        width: 100%;
    }

    .product-container {
        margin-right: 100px;
    }

    .category-menu {
        position: absolute;
        top: 125px;
        right: 15px;
    }

    .product-item.slide-up {
        transform: translateY(0);
        opacity: 1;
    }

    .product-item {
        width: 125%;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        height: max-content;
        max-height: 750px;
        transition: transform 0.3s, opacity 0.2s;
        transform: translateY(100%);
        opacity: 0;
    }

        .product-item p {
            font-family: "Work Sans", sans-serif;
            font-style: oblique;
            font-weight: bold;
        }

    .category-menu {
        position: absolute;
        top: 250px;
        right: 10px;
        right: 10px;
    }

    /*.dropdown-menu {
        border: 2px solid grey;
        border-radius: 30px;
        box-shadow: -5px 0px 5px rgba(0, 0, 0, 0.1);
        width: 97%;
    }

    .dropdown-button {
        display: block;
        padding: 8px 16px;
        font-size: 14px;
        border: none;
        border-radius: 3px;
        cursor: pointer;
        transition: background-color 0.3s;
        background-color: #007bff;
        color: white;
        align-self: center;
        margin-left: 4px;
        width: 95%;
        margin-bottom: 2.5px;
    }

    btn btn-primary dropdown-toggle {
        width: 50%;
    }

    .dropdown-button:hover {
        background-color: #0056b3;
    }

    .dropdown-menu.show {
        display: contents !important;
    }

    .dropdown-menu a {
        color: white;
        text-decoration: none;
        padding: 5px 10px;
        background-color: #007bff;
        border: 1px solid #ccc;
        border-radius: 5px;
        transition: background-color 0.3s ease;
        text-align: center;
        width: 105% !important;
        position: relative;
        z-index: 1000;
    }*/

    .logo-img {
        width: 30%;
    }
}


.info-img img {
    width: 100%;
}

.preview-frame {
    width: 100%;
    /*height: 100vh;*/
    height: 80vh;
    /*flex-grow:1;*/
}

.submit-preview-frame {
    width: 100%;
    /*height: 100vh;*/
    height: 60vh;
    /*flex-grow:1;*/
}

.template-preview-frame {
    width: 100%;
    /*height: 100vh;*/
    height: 60vh;
    /*flex-grow:1;*/
}

@media(max-width: 768px) {
    .page {
        margin-left: 0px;
    }
}

@media(min-width: 769px) {
    .page {
        margin-left: 250px;
    }
}

@media(min-width: 769px) {
    .mobileonly {
        display: none;
    }
}

.page {
    /*margin-left: 250px;*/
    padding: 10px 20px;
    transition: padding-top .6s ease-in-out;
}

select {
    background: transparent;
    cursor: pointer;
    max-width: 100%;
    padding-right: 30px;
    position: relative;
    z-index: 2;
}

.legend {
    color: #98a1a8;
    font-size: 12px;
    margin: 20px 0;
    width: 75%;
}

    .legend .legend-color {
        background: #ff8c00;
        display: inline-block;
        height: 5px;
        position: relative;
        top: -1px;
        vertical-align: middle;
        width: 40px;
        z-index: 1;
    }

    .legend .bleed-legend-color {
        background: #ff0000;
        display: inline-block;
        height: 5px;
        position: relative;
        top: -1px;
        vertical-align: middle;
        width: 40px;
        z-index: 1;
    }

    .legend .crop-legend-color {
        background: #339966;
        display: inline-block;
        height: 5px;
        position: relative;
        top: -1px;
        vertical-align: middle;
        width: 40px;
        z-index: 1;
    }

.homeimagediv {
    margin: 20px 40px 40px 40px;
    max-width: 1200px;
}

.selectablerow:hover {
    background: #F2F2F2;
    cursor: pointer;
}

.printjobtable {
    width: 100%;
}

.printjobtablekey {
    width: 30%;
    padding: 10px;
}

.printjobtablevalue {
    padding: 10px;
}

.maintable {
    width: 100%;
}

    .maintable th {
        font-weight: normal;
        border-bottom: 1px solid #e3e8ee;
        line-height: 1.5em;
        padding: 10px;
    }

    .maintable td {
        font-weight: normal;
        border-bottom: 1px solid #e3e8ee;
        line-height: 1.5em;
        padding: 10px;
    }


.progress-container {
    text-align: center;
    margin-bottom: 30px;
}

#progressbar {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    color: lightgrey;
}

    #progressbar li {
        flex: 1;
        text-align: center;
        font-size: 15px;
        font-weight: bold;
        position: relative;
    }

        #progressbar li.active {
            color: #300d48;
        }

.progress {
    height: 20px;
    background-color: lightgray;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    background-color: #ec9011;
    width: 0;
    height: 100%;
    transition: width 0.4s ease-in-out;
}


/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */


a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}

@media(max-width: 768px) {
    .sidebar {
        display: none;
    }
}

.sidebar {
    background-color: white;
    cursor: default;
    height: 100vh;
    left: 0;
    overflow: auto;
    padding: 20px 0;
    position: fixed;
    top: 0;
    transition: left .6s ease;
    width: 250px;
    z-index: 10;
}

    .sidebar .selector {
        cursor: pointer;
        opacity: 0;
        padding-top: 20px;
        position: relative;
        top: 30px;
        transition: opacity .4s ease,top .4s ease;
        z-index: 1
    }

        .sidebar .selector.show {
            opacity: 1;
            top: 0
        }

        .sidebar .selector .selected {
            max-height: 200px;
            max-width: 175px
        }

        .sidebar .selector ion-icon {
            color: #7b7d81;
            font-size: 14px;
            margin-left: 5px;
            vertical-align: bottom
        }

    .sidebar .menu {
        list-style: none;
        margin: 30px 0;
        padding: 0
    }

        .sidebar .menu li {
            display: block
        }

            .sidebar .menu li a {
                border-bottom-right-radius: 50px;
                border-top-right-radius: 50px;
                color: #300d48;
                display: block;
                font-size: 16px;
                font-weight: 500;
                text-transform: uppercase;
                opacity: 0;
                padding: 10px 40px 10px 60px;
                position: relative;
                text-decoration: none;
                top: 30px;
                transition: opacity .25s ease,top .25s ease,color .4s ease;
                z-index: 1
            }

                .sidebar .menu li a.show {
                    opacity: 1;
                    top: 0;
                    color: #300d48;
                }

                .sidebar .menu li a ion-icon {
                    font-size: 24px;
                    left: 20px;
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    z-index: 1
                }

               /* .sidebar .menu li a.active ion-icon {
                    color:#FFFFFF;
                }*/
                    .sidebar .menu li a img {
                    font-size: 24px;
                    left: 20px;
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    z-index: 1
                }

                .sidebar .menu li a:hover {
                    background-color: #f2f2f2
                }

                .sidebar .menu li a.active {
                    background-color: #300d48;
                   /* box-shadow: inset 0 0 400px 110px hsla(0,0%,100%,.8);*/
                    color: #FFFFFF;
                    font-weight: 500
                }

                    .sidebar .menu li a.active ion-icon {
                        color: #FFFFFF;
                    }

