﻿/*Animation Classes*/
.fadein {
    -webkit-animation: fadein 0.2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 0.2s; /* Firefox < 16 */
    -o-animation: fadein 0.2s; /* Opera < 12.1 */
    animation: fadein 0.2s;
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
    from {opacity: 0;}
    to {opacity: 1;}
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from {opacity: 0;}
    to {opacity: 1;}
}
/* Internet Explorer */
@-ms-keyframes fadein {
    from {opacity: 0;}
    to {opacity: 1;}
}
/* Opera < 12.1 */
@-o-keyframes fadein {
    from {opacity: 0;}
    to {opacity: 1;}
}
/*Timeline Gradient*/
@-webkit-keyframes Timeline {
    0% {background-position: 50% 0}
    50% {background-position: 51% 100%}
    100% {background-position: 50% 0}
}
@-moz-keyframes Timeline {
    0% {background-position: 50% 0}
    50% {background-position: 51% 100%}
    100% {background-position: 50% 0}
}
@keyframes Timeline {
    0% {background-position: 50% 0}
    50% {background-position: 51% 100%}
    100% {background-position: 50% 0}
}
/*Profile Image Gradient*/
@-webkit-keyframes Profile-Default {
    0% {background-position: 0 50%}
    50% {background-position: 100% 50%}
    100% {background-position: 0 100%}
}
@-moz-keyframes Profile-Default {
    0% {background-position: 0 50%}
    50% {background-position: 100% 50%}
    100% {background-position: 0 100%}
}
@keyframes Profile-Default {
    0% {background-position: 0 50%}
    50% {background-position: 100% 50%}
    100% {background-position: 0 100%}
}
/*Login Gradient*/
@-webkit-keyframes LoginWrap {
    0% {background-position: 0 50%}
    50% {background-position: 100% 50%}
    100% {background-position: 0 50%}
}
@keyframes LoginWrap {
    0% {background-position: 0 50%}

    50% {background-position: 100% 50%}

    100% {background-position: 0 50%}
}
@-webkit-keyframes Sidebar-Background {
    0% {background-position: 0 50%}
    50% {background-position: 100% 50%}
    100% {background-position: 0 50%}
}
@-moz-keyframes Sidebar-Background {
    0% {background-position: 0 50%}
    50% {background-position: 100% 50%}
    100% {background-position: 0 50%}
}
@keyframes Sidebar-Background {
    0% {background-position: 0 50%}
    50% {background-position: 100% 50%}
    100% {background-position: 0 50%}
}

/*Custom Controls*/
.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}


.control-group {
    display: inline-block;
    vertical-align: top;
    background: #fff;
    text-align: left;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    padding: 30px;
    width: 200px;
    height: 210px;
    margin: 10px;
}

.control {
    display: block;
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Roboto',sans-serif;
}

    .control input {
        position: absolute;
        z-index: -1;
        opacity: 0;
    }

.control__indicator {
    position: absolute;
    top: -6px;
    left: 0;
    height: 25px;
    width: 25px;
    background: #e6e6e6;
    border: 1px solid #3498db;
    border-radius: 4px;
}

.control--radio .control__indicator {
    border-radius: 50%;
}
.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
    background: #ccc;
}
.control input:checked ~ .control__indicator {
    background: #3498db;
}
.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
    background: #2980b9;
}
.control input:disabled ~ .control__indicator {
    background: #95a5a6;
    border: 1px solid #7f8c8d;
    opacity: 0.6;
    pointer-events: none;
}
.control__indicator:after {
    content: '';
    position: absolute;
    display: none;
}
.control input:checked ~ .control__indicator:after {
    display: block;
}
.control--checkbox .control__indicator:after {
    left: 10px;
    top: 4px;
    width: 5px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.control--checkbox input:disabled ~ .control__indicator:after {
    border-color: #ecf0f1;
}
.control--radio .control__indicator:after {
    left: 5px;
    top: 5px;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background: white;
}
.control--radio input:disabled ~ .control__indicator:after {
    background: #7b7b7b;
}
.select {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    width: 100%;
}
    .select select {
        display: inline-block;
        width: 100%;
        cursor: pointer;
        padding: 10px 15px;
        outline: 0;
        border: 0;
        border-radius: 0;
        background: #e6e6e6;
        color: #7b7b7b;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

        .select select::-ms-expand {
            display: none;
        }

        .select select:hover,
        .select select:focus {
            color: #000;
            background: #ccc;
        }

        .select select:disabled {
            opacity: 0.5;
            pointer-events: none;
        }

.select__arrow {
    position: absolute;
    top: 16px;
    right: 15px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: #7b7b7b transparent transparent transparent;
}

.select select:hover ~ .select__arrow,
.select select:focus ~ .select__arrow {
    border-top-color: #000;
}

.select select:disabled ~ .select__arrow {
    border-top-color: #ccc;
}

/*Custom block radio buttons for Warranty Form
    https://codepen.io/anon/pen/jePgwP
*/

.inputGroup {
    background-color: #dfe6e9;
    display: block;
    margin: 10px 0;
    position: relative;
    width: 340px;
}

    .inputGroup label {
        padding: 12px 50px;
        display: block;
        text-align: left;
        color: #3c454c;
        cursor: pointer;
        position: relative;
        z-index: 2;
        transition: color 200ms ease-in;
        overflow: hidden;
    }

        .inputGroup label:before {
            width: 100%;
            height: 10px;
            border-radius: 50%;
            content: '';
            background-color: #00b894;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%) scale3d(1, 1, 1);
            transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            z-index: -1;
        }

        .inputGroup label:after {
            width: 25px;
            height: 25px;
            content: '';
            border: 2px solid #d1d7dc;
            background-color: #fff;
            background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
            background-repeat: no-repeat;
            background-position: 1px 2px;
            border-radius: 50%;
            z-index: 2;
            position: absolute;
            right: 30px;
            left: 0;
            margin-left: 4px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            transition: all 200ms ease-in;
        }

    .inputGroup input:checked ~ label {
        color: #fff;
    }

        .inputGroup input:checked ~ label:before {
            transform: translate(-50%, -50%) scale3d(56, 56, 1);
            opacity: 1;
        }

        .inputGroup input:checked ~ label:after {
            background-color: #54e0c7;
            border-color: #54e0c7;
        }

    .inputGroup input {
        width: 32px;
        height: 32px;
        order: 1;
        z-index: 2;
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        visibility: hidden;
    }
/*
    Vertical Side tabs for Warrnaty Form https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_vertical_tabs
*/
/* Style the tab */
.vert-tab {
    float: left;
    border: 1px solid #ccc;
    background-color: #ced6e0;
    width: 20%;
    height: 500px;
}

    /* Style the buttons inside the tab */
    .vert-tab button {
        display: block;
        background-color: inherit;
        color: #57606f;
        padding: 22px 16px;
        width: 100%;
        border: none;
        outline: none;
        text-align: left;
        cursor: pointer;
        transition: 0.3s;
        font-size: 17px;
    }

        /* Change background color of buttons on hover */
        .vert-tab button:hover {
            background-color: #eef2f7;
        }

        /* Create an active/current "tab button" class */
        .vert-tab button.vertActive {
            background-color: #758ba7;
            color: whitesmoke;
        }

/* Style the tab content */
.vert-tabcontent {
    float: left;
    padding: 0px 12px;
    border: 1px solid #ccc;
    width: 79%;
    border-left: none;
    height: 500px;
}

/*File Uploader*/

.fileUpload {
    position: relative;
    overflow: hidden;
    margin: 10px;
}

    .fileUpload input.upload {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        padding: 0;
        font-size: 20px;
        cursor: pointer;
        opacity: 0;
        filter: alpha(opacity=0);
    }

    .upload-btn{
        color: white;
        font-size: 1em;
        padding: 10px;
        max-width: 100px;
        text-align: center;
        border-radius: 50px;
    }
/*Notifications are fun!*/


.notification-bg {
    background: white;
    width: 400px;
    position: fixed;
    right: 6%;
    top: 70px;
    height: 565px;
    border-collapse: collapse;
    border-spacing: 0;
    display: block;
    -webkit-box-shadow: 0px 12px 30px 0px rgba(50, 50, 50, 0.39);
    -moz-box-shadow: 0px 12px 30px 0px rgba(50, 50, 50, 0.39);
    box-shadow: 0px 12px 30px 0px rgba(50, 50, 50, 0.39);
    border-radius: 6px;
}



.notification-link {
    color: #4684BE;
    background: none;
    display: inline-block;
    padding-top: 5px;
    padding-left: 0;
    height: auto;
}

.notification-delete {
    font-size: 1.5em;
    text-decoration: none;
    color: red;
}

.notification-createdate {
    font-size: .8em;
    color: #B7B7B7;
    padding-left: 10px;
    margin: 0;
}


/*Ticket Comments*/
.comment-section {
    padding: 0px;
    border-bottom: 0px solid #a5b1c2;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.comment-table {
    height: 365px;
    display: inline-block;
    width: 100%;
    overflow-y: scroll;
}

.comment-structure {
    border-collapse: collapse;
    height: auto;
    padding-left: 10px;
}

#profile-img-container {
    height: 45px;
    padding-left: 6px;
    padding-right: 6px;
    float: left;
}

#comment-name {
    margin: 0;
    font-size: .9em;
    color: #0F1E2C;
    text-align: left;
    font-family: Roboto, sans-serif;
    font-weight: bolder;
}

#comment-container {
    padding: 8px;
    padding-left: 0px;
    color: #0F1E2C;
    width: 100%;
    max-width: 400px;
}

#comment {
    margin: 0px;
    padding-left: 0px;
    padding-right: 5px;
    width: 100%;
    max-width: 400px;
    word-break: break-all;
    font-size: .9em;
    white-space: normal;
}

#comment-footer {
    font-size: .9em;
    color: #a4b0be;
    margin-top: 2px;
    margin-bottom: 20px;
}

    #comment-footer a {
        text-decoration: none;
        color: #a4b0be;
    }

/*Tabs*/
.tab {
    overflow: hidden;
    background-color: #ced6e0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.tab-overlay {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #F3F6F7;
    height: 40px;
}
    /* Style the buttons inside the tab */
    .tab button{
        float: left;
        outline: none;
        cursor: pointer;
        transition: 0.3s;
        font-size: .9em;
        height: 100%;
    }

.tab-overlay button {
    float: left;
    outline: none;
    cursor: pointer;
    transition: 0.1s;
    font-size: .9em;
    height: 100%;
}
.tab-default {
    padding: 14px 16px 14px 16px;
    color: #747d8c;
    font-weight: bold;
    background: #ced6e0;
    border: 0;
    border-top: 2px solid #ced6e0;
}

.tab-quote {
    padding: 14px 16px 14px 16px;
    color: #747d8c;
    font-weight: bold;
    background: #ced6e0;
    border: 0;
    border-top: 2px solid #ced6e0;
}

.tab-invoice {
    padding: 14px 16px 14px 16px;
    color: #747d8c;
    font-weight: bold;
    background: #ced6e0;
    border: 0;
    border-top: 2px solid #ced6e0;
}

.tab-po {
    padding: 14px 16px 14px 16px;
    color: #747d8c;
    font-weight: bold;
    background: #ced6e0;
    border: 0;
    border-top: 2px solid #ced6e0;
}

.tab-vi {
    padding: 14px 16px 14px 16px;
    color: #747d8c;
    font-weight: bold;
    background: #ced6e0;
    border: 0;
    border-top: 2px solid #ced6e0;
}

.tab-btn-1 {
    padding: 14px 16px 14px 16px;
    color: white;
    font-weight: bold;
    background: #2ed573;
    border: 0;
    border-top: 2px solid #ced6e0;
    border-radius: 50px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.tab-btn-2 {
    padding: 14px 16px 14px 16px;
    color: white;
    font-weight: bold;
    background: #1e90ff;
    border: 0;
    border-top: 2px solid #ced6e0;
    border-radius: 50px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.tab-btn-3 {
    padding: 14px 16px 14px 16px;
    color: white;
    font-weight: bold;
    background: #c0392b;
    border: 0;
    border-top: 2px solid #ced6e0;
    border-radius: 50px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.tab-btn-4 {
    padding: 14px 16px 14px 16px;
    color: white;
    font-weight: bold;
    background: #f39c12;
    border: 0;
    border-top: 2px solid #ced6e0;
    border-radius: 50px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.overlay-tab-default {
    padding: 12px;
    color: #57606f;
    font-weight: bold;
    border: 0;
    height: 100%;
    background: #F3F6F7;
    border-top: 1px solid rgb(232, 232, 237);
    border-left: 1px solid rgb(232, 232, 237);
    border-right: 1px solid rgb(232, 232, 237);
    border-bottom: 1px solid rgb(232, 232, 237);
}
.tab-default:hover {
    padding: 14px 16px 14px 16px;
    color: #57606f;
    font-weight: bold;
    background: white;
}

.tab-btn-1:hover {
    padding: 14px 16px 14px 16px;
    color: white;
    font-weight: bold;
    background: #7bed9f;
}

.tab-btn-2:hover {
    padding: 14px 16px 14px 16px;
    color: white;
    font-weight: bold;
    background: #70a1ff;
}

.tab-btn-3:hover {
    padding: 14px 16px 14px 16px;
    color: white;
    font-weight: bold;
    background: #e74c3c;
}

.tab-btn-4:hover {
    padding: 14px 16px 14px 16px;
    color: white;
    font-weight: bold;
    background: #f1c40f;
}

/* Create an active/current tablink class */
.tab-active {
    background: white;
    color: #57606f;
}

.tab-active-overlay {
    border-top: 2px solid #4684BE;
    border-left: 1px solid white;
    border-right: 1px solid white;
    border-bottom: 1px solid white;
    color: #4684BE;
    background: white;
}

.tab-quote.tab-active {
    color: #2580F8;
}


.tab-invoice.tab-active {
    color: #D59139;
}

.tab-po.tab-active {
    color: #A846D8;
}

.tab-vi.tab-active {
    color: #ff0066;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
    min-height: 300px;
    -webkit-animation: fadein 0.5s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 0.5s; /* Firefox < 16 */
    -o-animation: fadein 0.5s; /* Opera < 12.1 */
    animation: fadein 0.5s;
}
/* Style the close button */
.topright {
    float: right;
    cursor: pointer;
    font-size: 28px;
}

    .topright:hover {
        color: red;
    }
/*Collapsible*/
.collapsible {
    background-color: white;
    color: #acacad;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 1.2em;
    transition: padding 0.1s ease-in-out;
    transition: border 0.3s ease-in-out;
    border: 0;
    border-bottom: 1px solid #e4e4e4;
}

    .collapsible:hover {
        background-color: #ecf7ff;
    }

.collapsible p{
    margin: 0;
}

    .collapsible.active {
        background-color: #ced6e0;
        color: #747d8c;
    }

.collapse-content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: padding 0.1s ease-in-out;
    transition: border 0.3s ease-in-out;
    transition: max-height 0.2s ease-out;
    background-color: white;
    font-family: 'Roboto',sans-serif;
}


@keyframes colorchange {
    0% {
        background: #66ae27;
    }

    50% {
        background: #a7d02e;
    }

    100% {
        background: #66ae27;
    }
}

@-webkit-keyframes colorchange /* Safari and Chrome - necessary duplicate */
{
    0% {
        background: #66ae27;
    }

    50% {
        background: #a7d02e;
    }

    100% {
        background: #66ae27;
    }
}

.pending-save {
    animation: colorchange 1s infinite; /* animation-name followed by duration in seconds*/
    /* you could also use milliseconds (ms) or something like 2.5s */
    -webkit-animation: colorchange 1s infinite; /* Chrome and Safari */
}
}

.timeline-container {
    width: 100%;
    height: 100px;
    -webkit-animation: zoomIn 2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: zoomIn 1s; /* Firefox < 16 */
    -o-animation: zoomIn 1s; /* Opera < 12.1 */
    animation: zoomIn 1s;
}

.timeline{
    counter-reset: step;
}

    .timeline li {
        list-style-type: none;
        float: left;
        width: 16%;
        position: relative;
        text-align: center;
        font-size: 1em;
        font-weight: bold;
        color: gray;
    }

        .timeline li:before {
            content: counter(step);
            counter-increment: step;
            width: 40px;
            position: relative;
            height: 40px;
            line-height: 40px;
            display: block;
            text-align: center;
            margin: 0 auto 10px auto;
            border-radius: 50%;
            background: #C0C0C0;
            font-weight: bold;
            color: white;
            z-index: 1;
            transition: border 0.2s ease-in-out;
            transition: background 0.2s ease-in-out;
        }

        .timeline li:hover:before {
            background: #45aaf2;
            border: 4px solid #45aaf2;
            transition: border 0.2s ease-in-out;
            transition: background 0.2s ease-in-out;
            box-shadow: 0 5px 15px rgba(69, 170, 242,.4);
        }

        .timeline li:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 8px;
            background: #C0C0C0;
            top: 19px;
            left: -50%;
            z-index: 0;
        }

    .timeline li:first-child:after {
        content: none;
    }
    .timeline li.timeline-active {
        color: #0055A4;
    }
        .timeline li.timeline-current {
            color: #4684BE;
        }
        .timeline li.timeline-active:before {
            background: #4684BE;
            color: white;
        }
        .timeline li.timeline-current:before {
            background: #45aaf2;
            border: 4px solid #45aaf2;
            color: white;
            box-shadow: 0 5px 15px rgba(69, 170, 242,.4);
        }
        .timeline li.timeline-active + li:after {
            background: #4684BE;
        }
        .timeline li.timeline-current + li:after {
            background: #C0C0C0;
        }


.dash-timeline {
    counter-reset: step;
}

    .dash-timeline li {
        list-style-type: none;
        float: left;
        width: 16%;
        position: relative;
        text-align: center;
        font-size: .8em;
        font-family: Roboto,sans-serif;
        font-weight: normal;
        color: gray;
    }

        .dash-timeline li:before {
            content: "";
            counter-increment: step;
            width: 20px;
            position: relative;
            height: 20px;
            line-height: 20px;
            display: block;
            text-align: center;
            margin: 0 auto 4px auto;
            border-radius: 50%;
            background: #C0C0C0;
            font-weight: normal;
            font-size: .8em;
            color: white;
            z-index: 1;
            transition: border 0.2s ease-in-out;
            transition: background 0.2s ease-in-out;
        }

        .dash-timeline li:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 8px;
            background: #C0C0C0;
            top: 6px;
            left: -50%;
            z-index: 0;
        }



        .dash-timeline li:first-child:after {
            content: none;
        }

        .dash-timeline li.dash-timeline-active {
            color: #0055A4;
        }

        .dash-timeline li.dash-timeline-current {
            color: #4684BE;
        }

        .dash-timeline li.dash-timeline-active:before {
            background: #4684BE;
            color: white;
        }

        .dash-timeline li.dash-timeline-current:before {
            background: #45aaf2;
            color: white;
        }

        .dash-timeline li.dash-timeline-active + li:after {
            background: #4684BE;
        }

        .dash-timeline li.dash-timeline-current + li:after {
            background: #C0C0C0;
        }

.dash-section-container {
    text-decoration: none;
}

.dash-section {
    margin: 0 25px 10px 25px;
    background: white;
    border: 1px solid #bfbfbf;
    height: 80px;
    border-radius: 6px;
    padding: 6px 10px;
    max-width: 1100px;
    transition: 0.1s ease-in;
}

    .dash-section:hover {
        background: #f5f5f5;
    }

/* SPINNER CSS */
.cssload-loader {
    display: block;
    margin: 0 auto;
    width: 38px;
    height: 38px;
    position: relative;
    border: 5px solid white;
    animation: cssload-loader 2.3s infinite ease;
    -o-animation: cssload-loader 2.3s infinite ease;
    -webkit-animation: cssload-loader 2.3s infinite ease;
    -moz-animation: cssload-loader 2.3s infinite ease;
}

.cssload-loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background: white;
    animation: cssload-loader-inner 2.3s infinite ease-in;
    -o-animation: cssload-loader-inner 2.3s infinite ease-in;
    -webkit-animation: cssload-loader-inner 2.3s infinite ease-in;
    -moz-animation: cssload-loader-inner 2.3s infinite ease-in;
}


@keyframes cssload-loader {
    0% {transform: rotate(0deg);}
    25% {transform: rotate(180deg);}
    50% {transform: rotate(180deg);}
    75% {transform: rotate(360deg);}
    100% {transform: rotate(360deg);}
}

@-o-keyframes cssload-loader {
    0% {transform: rotate(0deg);}
    25% {transform: rotate(180deg);}
    50% {transform: rotate(180deg);}
    75% {transform: rotate(360deg);}
    100% {transform: rotate(360deg);}
}

@-ms-keyframes cssload-loader {
    0% {transform: rotate(0deg);}
    25% {transform: rotate(180deg);}
    50% {transform: rotate(180deg);}
    75% {transform: rotate(360deg);}
    100% {transform: rotate(360deg);}
}

@-webkit-keyframes cssload-loader {
    0% {transform: rotate(0deg);}
    25% {transform: rotate(180deg);}
    50% {transform: rotate(180deg);}
    75% {transform: rotate(360deg);}
    100% {transform: rotate(360deg);}
}
@-moz-keyframes cssload-loader {
    0% {transform: rotate(0deg);}
    25% {transform: rotate(180deg);}
    50% {transform: rotate(180deg);}
    75% {transform: rotate(360deg);}
    100% {transform: rotate(360deg);}
}
@keyframes cssload-loader-inner {
    0% {height: 0;}
    25% {height: 0;}
    50% {height: 100%;}
    75% {height: 100%;}
    100% {height: 0;}
}
@-o-keyframes cssload-loader-inner {
    0% {height: 0;}
    25% {height: 0;}
    50% {height: 100%;}
    75% {height: 100%;}
    100% {height: 0;}
}
@-ms-keyframes cssload-loader-inner {
    0% {height: 0;}
    25% {height: 0;}
    50% {height: 100%;}
    75% {height: 100%;}
    100% {height: 0;}
}
@-webkit-keyframes cssload-loader-inner {
    0% {height: 0;}
    25% {height: 0;}
    50% {height: 100%;}
    75% {height: 100%;}
    100% {height: 0;}
}
@-moz-keyframes cssload-loader-inner {
    0% {height: 0;}
    25% {height: 0;}
    50% {height: 100%;}
    75% {height: 100%;}
    100% {height: 0;}
}

/* END SPINNER CSS */

.ReceiveOverlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(9, 32, 63); /* For browsers that do not support gradients */
    background-color: rgba(48, 60, 86, 0.63);
    z-index: 28;
    border-radius: 4px;
}

.LoadingOverlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(9, 32, 63); /* For browsers that do not support gradients */
    background: linear-gradient(to top, rgba(9, 32, 63,.4), rgba(83, 120, 149,.4));
    z-index: 28;
    cursor: wait;
    border-radius: 4px;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 1em;
    margin: 0;
    background: #e8e8ed;
}

p {
    font-family: 'Roboto', sans-serif;
}

.login-body {
    background-image: url(/images/backgroundgrey.jpg);
}
.login-textbox-base {
    background: none;
    border-radius: 4px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #989999;
}

.login-input {
    margin-top: 6px;
    border-radius: 2px;
    height: 40px;
    border: none;
    font-family: Roboto,sans-serif;
    padding-left: 10px;
}

.login-input:focus{
    outline: none;
}
.left-ico-box {
    display: inline-block;
    width: 8%;
    padding-left: 6px;
    margin-bottom: 6px;
    margin-left: auto;
    margin-right: auto;
}
    .left-ico-box img {
        padding: 1px;

    }
.right-box {
    display: inline-block;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border: none;
}

.right-box:focus{
    outline: none;
}

.right-box input {
    width: 100%;
}


    .right-box input:focus {
        outline: none;
    }
.login-small-logo-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2%;
    border-radius: 4px;
    background: none;
    box-shadow: none;
    padding: 0;
    visibility: visible;
}
    .login-small-logo-container img {
        width: 600px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

.login-small-logo-container-mobile {
    visibility: hidden;
    height: 0;
    margin: 0;
}

    .login-small-logo-container-mobile img {
        visibility: hidden;
        height: 0;
    }



.login-small-center-container {
    width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
    border-radius: 4px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background: white;
    transition: 0.3s;
    font-size: 1.5em;
}

.login-container-content {
    min-height: 50%;
}


.validation-style {
    text-align: left;
    margin-left: 15%;
}

.forgot-pass-link {
    color: grey;
    margin-left: 35%;
    text-align: center;
}

.login-button {
    background-color: #0156A5;
    border: 1px solid #0156A5;
    width: 60%;
    height: 50px;
    color: white;
    margin-left: 20%;
    margin-right: auto;
    font-size: 1.2em;
    transition: 0.5s;
    border-radius: 0;
}

    .login-button:hover {
        background: #66a0ff;
        transition: 0.5s;
        border: none;
    }
.signUp-button {
    background-color: #FF7F2A;
    border: 1px solid #FF7F2A;
    width: 60%;
    height: 50px;
    color: white;
    margin-left: 20%;
    margin-right: auto;
    font-size: 1em;
    transition: 0.5s;
    border-radius: 0;
    font-family: 'Lato', sans-serif;
}

    .signUp-button:hover {
        background-color: #ffa366;
        transition: 0.5s;
        border: none;
    }

.title-header {
    text-align: center;
    background: linear-gradient(270deg, #1ce9ff, #0098ff, #003ebd);
    background-size: 600% 600%;
    -webkit-animation: LoginWrap 20s ease infinite;
    -moz-animation: LoginWrap 20s ease infinite;
    animation: LoginWrap 20s ease infinite;
    color: white;
    padding-bottom: 10px;
    padding-top: 10px;
    margin-top: 0;
    margin-bottom: 30px;
}

.login-container-bottom {
    background: linear-gradient(270deg, #1ce9ff, #0098ff, #003ebd);
    background-size: 600% 600%;
    -webkit-animation: LoginWrap 20s ease infinite;
    animation: LoginWrap 20s ease infinite;
    height: 20px;
    margin-bottom: 0;
    margin-top: 30px;
}

/*Foot Style for Login Page*/
footer {
    color: white;
    position: absolute;
    bottom: 0;
}
/*Default footer for rest of site*/
.footer-style {
    color: black;
    position: absolute;
    bottom: 0;
    background: white;
}

.desktop{
    visibility: visible;
}

.mobile{
    visibility: hidden;
}

.styled-nav {
    background: #0055A4;
    height:50px;
    width: 100%;
    position:fixed;
    z-index: 4;
}
    .styled-nav ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-color: #0055A4;
        width: auto;
        height: 50px;
    }

    .styled-nav li {
        float: left;
        height: 50px;
        width: 100px;
    }

.main-nav-btns a{
    display: block;
    color: white;
    text-align: center;
    padding: 15px 16px 0 16px;
    text-decoration: none;
    font-family: 'Roboto',sans-serif;
    font-size: .9em;
    height: 50px;
}
.main-nav-btns a:hover {
    background: rgb(63,143,214);
    background: linear-gradient(0deg, rgba(63,143,214,1) 0%, rgba(0,85,164,1) 100%);
}


            .sidenav-main-content-container {
                margin-top: 35px;
                width: 100%;
            }
.navbar-right{
    float:right;
    width: 300px;
}

/* The dropdown container */
.profile-dropdown {
    float: left;
    overflow: hidden;
}

.profile-dropdown-btn {
    font-size: .9em;
    border: none;
    outline: none;
    color: white;
    padding: 10px 16px;
    background-color: inherit;
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

.profile-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
    margin: 0;
    
}

    .profile-dropdown-content a, .profile-dropdown-content button {
        float: none;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .profile-dropdown-content a:hover {
            background:white;
        }

#profile-btn {
    color: black;
    background:white;
}

.profile-dropdown:hover .profile-dropdown-content {
    display: block;
}

#profile-img {
    width: 35px;
    height: 35px;
    background-color: #e67e22;
    -webkit-animation: Profile-Default 5s ease infinite;
    -moz-animation: Profile-Default 5s ease infinite;
    animation: Profile-Default 5s ease infinite;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    border: 0 solid white;
    margin-top: 8px;
    text-align: center;
    box-sizing: border-box;
}

    #profile-img p {
        padding-top: 6px;
        font-size: 1em;
        font-weight: normal;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin: 0;
        color: white;
    }
.filter-bar {
    background: #2c3b4a;
    height: 44px;
    width: 90%;
    top: 60px;
    left: 230px;
    float: right;
    position: fixed;
    color: white;
    font-size: .9em;
    padding-left: 5%;
}

.sidenav-container {
    max-width: 216px;
    width: 216px;
}

.main-content-container {
    padding: 60px 30px 0 260px;
}

.main-content-container-filter {
    padding: 50px 20px 0 260px;
}

.main-content {
    width: 100%;
    display: grid;
    display: -ms-grid;
    /* define the number of grid columns */
    grid-template-columns: repeat(8, 1fr);
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.main-content-filter {
}

.validation-summary-errors ul {
    list-style: none;
    margin-left: -40px
}

/**GRID SECTIONS*/

.row1 {grid-row: 1;
      -ms-grid-row: 1;}
.row2 {
    grid-row: 2;
    -ms-grid-row: 2;
}
.row3 {
    grid-row: 3;
    -ms-grid-row: 3;
}
.row4 {
    grid-row: 4;
    -ms-grid-row: 4;
}
.row5 {
    grid-row: 5;
    -ms-grid-row: 5;
}
.row6 {
    grid-row: 6;
    -ms-grid-row: 6;
}
.row7 {
    grid-row: 7;
    -ms-grid-row: 7;
}
.row8 {
    grid-row: 8;
    -ms-grid-row: 8;
}
.block1-2 {
    grid-column: 1/3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
}
.block1-3 {
    grid-column: 1/4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
}
.block1-4 {
    grid-column: 1/5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 7;
}
.block1-5 {
    grid-column: 1/6;
    -ms-grid-column: 1;
    -ms-grid-column-span: 9;
}
.block1-6 {
    grid-column: 1/7;
    -ms-grid-column: 1;
    -ms-grid-column-span: 10;
}
.block1-8 {
    grid-column: 1/9;
    -ms-grid-column: 1;
    -ms-grid-column-span: 10;
}
.block2-8 {
    grid-column: 3/9;
    -ms-grid-column: 7;
    -ms-grid-column-span: 10;
}
.block3-4 {
    grid-column: 3/5;
    -ms-grid-column: 5;
    -ms-grid-column-span: 2;
}
.block3-8 {
    grid-column: 4/9;
    -ms-grid-column: 7;
    -ms-grid-column-span: 10;
}
.block6-8 {
    grid-column: 6/9;
    -ms-grid-column: 11;
    -ms-grid-column-span: 5;
}
.block7-8 {
    grid-column: 7/9;
    -ms-grid-column: 13;
    -ms-grid-column-span: 2;
}
.block4-7 {
    grid-column: 5/8;
    -ms-grid-column: 9;
    -ms-grid-column-span: 4;
}
.block4-8 {
    grid-column: 5/9;
    -ms-grid-column: 9;
    -ms-grid-column-span: 8;
}
.block8 {
    grid-column: 8-9;
    -ms-grid-column: 8;
}
/*HEADER*/

.main-content-header {
    grid-column: 1 / 9;
    -ms-grid-column: 1;
    -ms-grid-column-span: 15;
    grid-row: 1;
    text-align: center;
    color: #0055A4;
}
    .main-content-header h1 {color: #0055A4;}
    .main-content-header h4 {color: #0055A4;}

.section-header-block {
    background: #ffffff;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 45px;
    border: 1px solid #ccd4e2;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
    .section-header-block h4 {
        display: inline-block;
        color: #6b747d;
        margin: 0;
        font-size: 18px;
        padding-left: 10px;
        padding-top: 10px;
        padding-bottom: 8px;
        font-family: 'Roboto',sans-serif;
        font-weight: normal;
    }

.section-header {
    background: white;
    width: 100%;
    border: 1px solid #ccd4e2;
    border-bottom: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

    .section-header h4 {
        display: inline-block;
        color: #57606f;
        font-weight: bold;
        font-family: 'Roboto',sans-serif;
        margin: 0;
        font-size: 1.5em;
        padding: 16px 5px 10px 15px;
    }

    .section-header img {
        padding-left: 15px;
        position: relative;
        top: 6px;
    }

.section-header-pop-up {
    background: white;
    width: 100%;
    border: 0;
    border-bottom: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-bottom: 10px;
    border-radius: 4px;
}
    .section-header-pop-up h4 {
        display: inline-block;
        padding: 16px;
        color: #57606f;
        font-weight: bold;
        font-family: 'Roboto',sans-serif;
        margin: 0;
        font-size: 1.5em;
        padding: 16px 5px 10px 15px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .section-header-pop-up input {
        display: inline;
        max-width: 300px;
        border: 0;
        border-bottom: 1px solid #57606f;
        background: #e8e8ed;
        color: #57606f;
        font-size: 22px;
        font-family: 'Roboto',sans-serif;
        padding: 6px;
        font-weight: bold;
        border-radius: 4px;
        margin-top: 14px;
        margin-left: 14px;
        margin-bottom: 0;
        font-size: 1.5em;
    }

.section-header-button {
    float: right;
    transition: border 0.1s;
    transition: padding 0.2s ease-in-out;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}
    .section-header-button input {
        padding: 10px 20px 8px 20px;
        margin: 0;
        height: 20px;
        width: 20px;
    }
    .section-header-button a img {
        padding: 8px 20px 7px 20px;
        margin: 0;
        height: 22px;
        width: 22px;;
    }
        .section-header-button input:hover {padding: 13px 20px 7px 20px;}
    .section-header-button a img:hover {padding: 9px 20px 7px 20px;}

.header-circle-btn {
    float: right;
    padding: 10px 14px 10px 14px;
    position: relative;
    top: 10px;
    right: 10px;
    cursor: pointer;
    border-radius: 6px;
}

.header-save-btn-p{
    display: inline;
    color: white;
    font-weight:  normal;
    font-size: 1em;
}

.header-save-btn-img {
    display: inline;
    height: 16px;
    width: 16px;
}

.status-style {
    color: white;
    font-weight: normal;
    padding: 6px 10px 6px 10px;
    border-radius: 50px;
    margin: 0;
    margin-left: 10px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}

.status-style-sales {
    color: white;
    font-weight: normal;
    padding: 6px 10px 6px 10px;
    border-radius: 50px;
    margin-left: 10px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}

.status-style a{
    text-decoration-color: white;
    color: white;
}


.overlay-header-button {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 10px;
}

.section-header-save {
    background: #2ecc71;
    border-bottom: 4px solid #27ae60;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.section-header-save:hover {border-bottom: 2px solid #27ae60;}

.section-header-add {
    background: #1abc9c;
    border-bottom: 4px solid #16a085;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.section-header-add:hover {border-bottom: 2px solid #16a085;}

.section-header-close {
    background: #e74c3c;
    border-bottom: 4px solid #c0392b;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .section-header-close:hover {border-bottom: 2px solid #c0392b;}

.section-header-edit {
    background: #f1c40f;
    border-bottom: 4px solid #f39c12;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .section-header-edit:hover {border-bottom: 2px solid #f39c12;}

.section-header-other {
    background: #00ACCF;
    border-bottom: 4px solid #2980b9;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*Regular Button Styles*/
.button-save {
    background: #27ae60;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .button-save:hover {
        background: #2ecc71;
    }


.button-add {
    background: #82be54;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


    .button-add:hover {
        background: #96ce6a;
    }

.button-close {
    background: #c0392b;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .button-close:hover {
        background: #e74c3c;
    }

.button-edit {
    background: #f39c12;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .button-edit:hover {
        background: #f1c40f;
    }

.button-other {
    background: #2980b9;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .button-other:hover {
        background: #00ACCF;
    }

.filterInput {
    background: #93a0ab;
    padding: 6px;
    color: black;
    font-size: 14px;
    cursor: pointer;
    vertical-align: middle;
    border-radius: 6px;
}

    .filterInput:hover, .filterInput:focus {
        background: #a6b2bb;
    }

.columnFilter {
    position: relative;
    display: inline-block;
}

.filterContent {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #a9b5bf;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.1);
    border-radius: 6px;
    z-index: 1;
    color: black;
}

    .filterContent a {
        color: black;
        padding: 10px 12px;
        text-decoration: none;
        display: block;
        font-family: 'Roboto',sans-serif;
        font-size: 14px;
    }

    .filterContent p {
        display: block;
        background: #f1f1f1;
        margin: 0;
        padding: 10px 16px;
        min-width: 160px;
        border-bottom: 1px solid #a9b5bf;
    }

.columnFilter a:hover {
    background-color: #eaf4ff;
}

.filter-content-show {
    display: block;
}

/*Section Styles*/
.section-style {
}

.section-style-notables {
    background: white;
    border: 1px solid #ccd4e2;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.section-content {
    background: white;
    width: 100%;
    position: inherit;
    border: 1px solid #ccd4e2;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top: 0;
    box-sizing: border-box;
}

.section-sub-section {
    position: inherit;
    padding: 0 20px 10px 20px;
    border-bottom: 1px solid #e8e8ed;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.section-sub-section-heading {
    color: #57606f;
    font-weight: bold;
    font-size: .9em;
    font-family: 'Roboto', sans-serif;
}

.milestone-background {
    background: #B5CDE4;
    color: #00203D;
}

.milestone-button {background: #56CBA7;}

/*Milestone Dropdown*/
/* Dropdown Button */
.dropbtn {
    color: white;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
    /* Dropdown button on hover & focus */
    .dropbtn:hover, .dropbtn:focus {
        background-color: #CB5689;
    }
/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
}

    /* Links inside the dropdown */
    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        /* Change color of dropdown links on hover */
        .dropdown-content a:hover {
            background-color: #ddd
        }

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
    display: block;
}

/*Milestone Section*/
.milestone-section-table {
    background: white;
    width: 100%;
    border: 1px solid #4684BE;
    -webkit-box-shadow: 0 3px 6px 0 #D6D7DC;
    box-shadow: 0 3px 6px 0 #D6D7DC;
}
.milestone-section-tasks-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #EBFCFF;
}
.milestone-section-tasks-table p{margin: 5px;}

/*Control Styles*/
.control-title {
    margin: 0 0 6px 0;
    padding-left: 0px;
    font-family: 'Roboto', sans-serif;
    font-size: .9em;
    color: #57606f;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.control-box {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    margin-top: 0;
    height: 40px;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    margin-bottom: 14px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    color: #57606f;
}

    .control-box::placeholder {
        color: #c0c2c5;
    }


    .control-box:-ms-input-placeholder { /* Internet Explorer 10-11 */
        color: #c0c2c5;
    }

    .control-box::-ms-input-placeholder { /* Microsoft Edge */
        color: #c0c2c5;
    }

    .control-box:focus {
        border: 1px solid #45aaf2;
    }

    .control-box:invalid {
        border: 1px solid red;
    }
.control-box-input:invalid { border: 2px solid red;}

.control-box:read-only {
    border: 1px solid #ccc;
    background: #f2f2f2;
    color: #2f3542;
    padding: 10px;
    padding-left: 6px;
}

.control-box-select {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px;
    margin: 0 0 6px 0;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #57606f;
    height: 40px;
}

.control-box-select:invalid {border: 2px solid red;}

.field-btn {
    border: 0;
    border-radius: 4px;
    color: white;
    min-width: 90px;
    font-family: 'Roboto', sans-serif;
    font-size: .9em;
    font-weight: normal;
    padding: 12px 10px 12px 10px;
    margin-top: 0;
    text-decoration: none;
    transition: background 0.1s ease-in-out;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 40px;
    cursor: pointer;
    white-space: nowrap;
}

.rounded-field-btn {
    border: 0;
    border-radius: 50px;
    color: white;
    min-width: 90px;
    font-family: 'Roboto', sans-serif;
    font-size: .9em;
    font-weight: normal;
    padding: 9px 15px 9px 15px;
    margin-top: 0;
    text-decoration: none;
    transition: background 0.1s ease-in-out;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    white-space: nowrap;
}


/*Table Holder Section*/

.table-container {
    background: white;
    padding: 15px;
    -webkit-box-shadow: 0 3px 6px 0 #D6D7DC;
    box-shadow: 0 3px 6px 0 #D6D7DC;
}

    .table-container p {
        color: #4684BE;
        margin-bottom: 6px;
    }

.items-table-heading {
    color: #4684BE;
    margin-bottom: 4px;
}

    .items-table-heading h4 {
        margin: 0;
        display: inline;
        font-size: 1.2em;
        padding: 4px;
    }

    .items-table-heading a {
        display: inline;
        text-decoration: none;
        color: #4684BE;
        float: right;
    }

.items-table-container {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .items-table-container table tr:hover {background: #9FCDFF !important;}

.items-table, .section-table {
    width: 100%;
    border-collapse: collapse;
    border: 0;
    border-radius: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .items-table table tr:hover, .section-table table tr:hover {
        background: #E4F1FF !important;
        border-bottom: 1px solid #d6d6d6 !important;
    }

    .items-table th {
        background: #718093;
        color: white;
        font-family: 'Roboto', sans-serif;
        font-weight: normal;
        text-align: left;
        padding: 10px 8px 10px 8px;
        font-size: .9em;
    }

    .section-table th {
        background: #f5f5f5;
        color: #292f3c;
        font-family: 'Roboto', sans-serif;
        font-weight: normal;
        text-align: left;
        padding: 15px 8px 15px 8px;
        font-size: .96em;
        border-bottom: 1px solid #e0e0e0;
        border-top: 1px solid #e0e0e0;
    }

    .items-table p, .section-table p{
        margin: 0;
    }

        .items-table th:not(:first-child):not(:last-child) {
            border-left: 1px solid #7f8fa6;
            border-right: 1px solid #7f8fa6;
        }

        .items-table td{
            padding: 6px 8px 6px 8px;
        }

    .section-table td {
        padding: 10px 10px 10px 10px;
        color: #3a4046;
        font-family: 'Roboto',sans-serif;
        font-size: .95em;
        border-bottom: 1px solid #bfbfbf;
    }

    .section-table table tr:hover{
        background: #f5f5f5 !important;
    }

.sidebar-table {
    width: 100%;
    border-collapse: collapse;
    border: 0;
    border-radius: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.sidebar table tr:hover {
    background: #E4F1FF !important;
    border-bottom: 1px solid #d6d6d6 !important;
}

.sidebar-table th {
    background: white;
    color: #718093;
    border-bottom: 1px solid #718093;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    text-align: left;
    padding: 10px 8px 10px 8px;
    font-size: .9em;
}

.sidebar-table p {
    margin: 0;
}

.sidebar-table td {
    padding: 10px 8px 10px 8px;
}



.items-table2 {
    width: 100%;
    border-collapse: collapse;
    border: 0;
    border-radius: 0;
}

    .items-table2 th {
        background: #4684BE;
        color: white;
        font-family: 'Lato', sans-serif;
        text-align: left;
        padding: 8px;
    }

    .items-table2 td {
        padding: 6px;
    }


.header-style {
    color: #0055A4;
    text-align: center;
    font-family: 'Lato', sans-serif;
}

.table-title {
    font-family: 'Roboto',sans-serif;
    color: #2a5177;
    margin-left: 10px;
}

.action-bar {
    background: white;
    padding: 0 0 0 1%;
    width: 99%;
    margin: 0 0 10px 0;
    border: 1px solid #a0b3c3;
    border-radius: 6px;
    color: #2c3b4a;
    box-sizing: content-box;
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
}

    .action-bar a {
        text-decoration: none;
        color: #0055A4;
    }

        .action-bar a:hover {
            color: cadetblue;
        }

    .action-bar p{
        color: #0055A4;
    }

.pagination-containter {
    width: auto;
    min-width: 140px;
    border-style: solid;
    border-color: #a0b3c3;
    border-width: 0 1px 0 0;
    height: 40px;
}

.pagination-inner-container {
    /**background: #e29f76;**/
    border-radius: 50px;
    padding: 6px;
    margin-top: 4px;
}

.next img, .prev img {
    opacity: 0.7;
    filter: alpha(opacity=70);
    transition: 0.1s ease-in-out;
    cursor: pointer;
}

    .next img:hover, .prev img:hover {
        opacity: 1;
        filter: alpha(opacity=100);
    }

.filter-container {
    min-width: 260px;
    border-style: solid;
    border-color: #a0b3c3;
    border-width: 0 1px 0 0;
    height: 40px;
}

    .filter-container select {
        width: 83.4%;
        height: 100%;
        background: white;
        border: none;
        padding-left: 6px;
        cursor: pointer;
    }

    .filter-container button {
        height: 40px;
        width: 40px;
        border: 0 solid black;
        border-left: 1px solid #e2e2e2;
        background: white;
        transition: 0.2s ease-in-out;
        cursor: pointer;
    }

        .filter-container button:hover {
            background: #c3dbff;
        }

.search-container {
    min-width: 400px;
    border-style: solid;
    border-color: #a0b3c3;
    border-width: 0 1px 0 0;
    height: 40px;
}

    .search-container input {
        width: 87.6%;
        height: 100%;
        background: white;
        border: none;
        padding: 0;
        padding-left: 6px;
        transition: 0.2s ease-in-out;
    }

.search-container button {
    height: 40px;
    width: 40px;
    border: 0 solid black;
    border-left: 1px solid #e2e2e2;
    background: white;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}

    .search-container button:hover {
        background: #c3dbff;

    }

        .search-container input:focus {
            color: #438cd0;
        }

.buttons-container {
    width: 90%;
    border-style: solid;
    border-color: #a0b3c3;
    border-width: 0 1px 0 0;
    height: 40px;
    padding-right: 20px;
}

.action-bar-btn {
    border: none;
    color: white;
    height: 30px;
    margin: 5px 5px 0 5px;
    width: 120px;
    float: right;
    border-radius: 50px;
}

.action-bar-settings-container {
    width: 50px;
    float: right;
}

.action-bar-settings-btn {
    height: 40px;
    width: 50px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border: 0 solid black;
    border-left: 1px solid #e2e2e2;
    background: white;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}

    .action-bar-settings-btn:hover {
        background: #c3dbff;
    }

.pagination-inner-container label {
    font-family: 'Roboto',sans-serif;
    /**color: white;**/
}

input:focus{
    outline: none;
}

select:focus {
    outline: none;
}

button:focus{
    outline: none;
}

.sidebar-nodropdown {
    height: 44px;
    background: none;
    transition: 0.2s ease-in-out;
}

    .sidebar-nodropdown:hover {
        background: #2c3b4a;
    }

    .sidebar-nodropdown img {
        margin-left: 25px;
        float: left;
        padding-right: 20px;
        padding-top: 14px;
        height: 18px;
        width: 18px;
    }

    .sidebar-nodropdown a {
        padding-top: 16px;
        text-decoration: none;
        font-size: 14px;
        font-family: 'Roboto', sans-serif;
        font-weight: normal;
        color: #ccd7e2;
        float: left;
        border: none;
        background: none;
        text-align: left;
        cursor: pointer;
        outline: none;
        margin: 0;
        margin-left: 5px;
        padding-right: 80px;
    }

        .sidebar-nodropdown a:hover {
            color: #98A5B3;
        }

.brand{
    background: #124c82;
    transition: 0.2s ease-in-out;
}

    .brand:hover {
        background: #1c466d;
    }

/* Fixed sidenav, full height */
.sidenav {
    min-height: 100vh;
    width: 230px;
    background-color: #1d2d3c;
    overflow-x: hidden;
    left: 0;
    top: 50px;
    float: left;
    position: fixed;
}

.sidenav-expander {
    padding: 8px 0 8px 0;
    text-decoration: none;
    font-size: 16px;
    color: #E4E4E4;
    display: block;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.sidenav-expander img{
    margin: auto;
    padding-left: 45%;
}

    /* Style the sidenav links and the dropdown button */
    .dropdown-container a, .dropdown-btn {
        padding: 12px 0 12px 20px;
        text-decoration: none;
        font-size: 1em;
        color: #C9D3D9;
        display: block;
        border: none;
        background: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
        outline: none;
    }

.dropdown-btn {
    padding: 0;
    height: 44px;
    background: none;
    transition: .2s ease-in-out;
}

    .dropdown-btn:hover {
        background: #2c3b4a;
    }

        .dropdown-btn img {
            margin-left: 25px;
            float: left;
            padding-right: 20px;
            padding-top: 4px;
        }

    .dropdown-btn p {
        padding-top: 6px;
        text-decoration: none;
        font-size: .9em;
        font-weight: normal;
        font-family: 'Roboto', sans-serif;
        color: #ccd7e2;
        float: left;
        border: none;
        background: none;
        text-align: left;
        cursor: pointer;
        outline: none;
        margin: 0;
        margin-left: 5px;
        text-align: left;
    }

    .sidenav img, dropdown-btn img{
        padding-right: 16px;
    }

        /* On mouse-over */
        .sidenav a:hover, .dropdown-btn:hover {
            color: #f1f1f1;
        }

        .sidenav ul li{
            text-decoration: none;
            list-style-type: none;
        }

/* Main content */
.main {
    margin-left: 250px; /* Same as the width of the sidenav */
    font-size: 1.2em; /* Increased text to enable scrolling */
    padding: 0 10px;
}

/* Add an active class to the active dropdown button */
.active {
    background-color: #2c3b4a;
    color: white;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
    display: none;
    background-color: #253442;
}

    .dropdown-container a {
        padding: 8px 0 8px 40px;
        font-size: 14px;
        color: #959fa7;
        font-family: 'Roboto', sans-serif;
        border-left: 4px solid #2a5075;
        transition: .1s ease-in;
    }
        /* On mouse-over */
        .dropdown-container a:hover {
            color: #E4E4E4;
            background: #394d5f;
            border-left: 4px solid #3573af;
        }

.filter-btn {
    margin: 0;
    float: left;
    margin-top: 5px;
    background: #406398;
    height: 34px;
    width: 38px;
    border: 0;
    padding: 10px 4px 8px 4px;
    cursor: pointer;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

    .filter-btn:hover {
        background: #4970ab;
    }

.filter-select {
    margin: 0;
    margin-top: 5px;
    padding: 6px;
    margin-left: 5%;
    float: left;
    min-width: 20%;
    background: #586875;
    height: 34px;
    border: 0px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    color: white;
    padding-left: 6px;
}

.filter-select

.search-btn {
    margin: 0;
    float: left;
    margin-top: 5px;
    background: #44b381;
    height: 34px;
    width: 38px;
    border: 0;
    padding: 8px 4px 8px 4px;
    cursor: pointer;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.search-box {
    margin: 0;
    margin-top: 5px;
    padding: 4px 16px 4px 16px;
    margin-left: 6%;
    float: left;
    min-width: 20%;
    background: #586875;
    height: 26px;
    border: 0px;
    color: white;
    padding-left: 6px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.search-btn:hover {
    background: #56ca96;
}

.search-box::placeholder{
    color: white;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
    padding-top: 10px;
    float: right;
    padding-right: 8px;
}


.Adjustment[type=number]::-webkit-inner-spin-button,
.Adjustment[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*TABLE STYLES*/
.custom-content-table table {
    font-size: 1em;
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
    background: white;
    border: 1px solid #a0b3c3;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.col-hover:hover {
    background: #aab7c1;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}

    .custom-content-table table tr:hover {
        background: #f1f8ff !important;
    }

    .custom-content-table table th {
        color: white;
        background: #93a0ab;
        border-bottom: 0;
        font-size: .9em;
        font-weight: normal;
        text-align: left;
        min-height: 40px;
        padding-top: 2px;
        padding-bottom: 2px;
        padding-left: 10px;
        padding-right: 10px;
        /*border-top: 1px solid #4684BE;*/
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
        .custom-content-table table th:hover {
            color: white;
        }

.custom-content-table table th p {
    display: inline-block;
}

.custom-content-table td {
    padding-left: 10px;
    padding-right: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: Roboto, sans-serif;
}

.custom-content-table table tr {
    border-bottom: 1px solid #a0b3c3;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .custom-content-table table tr:last-child {
        border-bottom: 0 solid #d6d6d6;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

.table-caret {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin-left: 4px;
}

.table-container-table {
    width: 100%;
    padding: 15px;
}

    .table-container-table table {
        width: 100%;
        padding: 15px;
        border-collapse: collapse;
    }

    .table-container-table th {
        background: #99B2C9;
        color: white;
    }

.comments-table {
    width: 100%;
    height: 100%;
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*
.custom-content-table table tr td:first-child {
    border-left: 1px solid #0055A4;
}

.custom-content-table table tr td:last-child {
    border-right: 1px solid #0055A4;
}

.custom-content-table table tr:first-child td {
    border-top: 1px solid #0055A4;
}

.custom-content-table table tr:last-child td {
    border-bottom: 1px solid #0055A4;
}
*/

.status-bar, .caution, .inprog, .almost-complete, .completed, .denied {
    color: #B1B1B1;
    font-size: .6em;
    line-height: 1.5em;
    text-indent: .5em;
    width: 15em;
    height: 1.8em;
    border: 1.2px solid #B1B1B1;
    border-radius: 50px;
    background: #fff;
}

    .status-bar[value]::-webkit-progress-bar, .caution[value]::-webkit-progress-bar, .inprog[value]::-webkit-progress-bar, .almost-complete[value]::-webkit-progress-bar, .completed[value]::-webkit-progress-bar, .denied[value]::-webkit-progress-bar {
        background-color: #FFF;
        border-radius: 50px;
    }

    .status-bar::-moz-progress-bar {
        background: #B1B1B1;
        border-radius: 50px;
    }

    .status-bar::-webkit-progress-value {
        background: #B1B1B1;
        border-radius: 50px;
    }

.status-bar {
    border-radius: 50px;
}

.caution::-moz-progress-bar {
    background: #E19A3D;
    border-radius: 50px;
}

.caution::-webkit-progress-value {
    background: #E19A3D;
    border-radius: 50px;
}

.caution {
    border-radius: 50px;
}

.inprog::-moz-progress-bar {
    background: #6DA0EB;
    border-radius: 50px;
}

.inprog::-webkit-progress-value {
    background: #6DA0EB;
    border-radius: 50px;
}

.inprog {
    border-radius: 50px;
}

.almost-complete::-moz-progress-bar {
    background: #BCCC66;
    border-radius: 50px;
}

.almost-complete::-webkit-progress-value {
    background: #BCCC66;
    border-radius: 50px;
}


.almost-complete {
    border-radius: 50px;
}


.completed::-moz-progress-bar {
    background: #1A9F1F;
    border-radius: 50px;
}

.completed::-webkit-progress-value {
    background: #1A9F1F;
    border-radius: 50px;
}

.completed {
    border-radius: 50px;
}

.denied progress::-moz-progress-bar {
    background: #eb4d4b;
    border-radius: 50px;
}

.denied progress::-webkit-progress-value {
    background: #eb4d4b;
    border-radius: 50px;
}

.denied{
    border-radius: 50px;
} 



.ticket-number, .ticket-number:read-only {
    color: #4684BE;
    border: 0;
    height: 50px;
    width: 100%;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    transition: .1s ease-in-out;
    background: none;
}


.ticket-status {
    color: white;
    border: 0;
    background: #74b9ff;
    border-bottom: 4px solid #0984e3;
    height: 40px;
    width: auto;
    font-size: 1em;
    text-align: center;
}

.ticket-subtotal {
    font-size: 1em;
    height: 60px;
    float: left;
    padding: 6px 10px 0 10px;
}

    .ticket-subtotal img {
        display: inline-block;
        padding-right: 6px;
    }

.ticket-total {
    font-size: .9em;
    background: #45aaf2;
    color: white;
    font-size: 1.2em;
    width: 140px;
    float: left;
    padding: 19px;
}

/*pop-up**/
.pop-up {
    background: white;
    width: 35%;
    margin-right: 15%;
    margin-top: 5%;
    -webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0);
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
    border-radius: 4px;
    position: fixed;
    top: 50vh;
    left: 50vw;
    margin-top: -300px;
    margin-left: -300px;
    width: 600px;
    max-width: 600px;
    height: auto;
}

.pop-up-description {
    padding: 10px;
    color: #57606f;
}

    .pop-up-description p {
        margin: 0;
        text-align: center;
    }

.pop-up-contents {
    padding: 20px 20px 10px 20px;
    background: white;
}



.inner-pop-up-table {
    table-layout: fixed;
    border: 0;
    margin-left: auto;
    margin-right: auto;
}

    .inner-pop-up-table td {
        padding-left: 5px;
        padding-right: 5px;
    }

.fixed-scroll {
    table-layout: fixed;
    border-collapse: collapse;
}

    .fixed-scroll tr {
        display: table-header-group;
    }

    .fixed-scroll tbody {
        display: inline-block;
        overflow: auto;
        height: 200px;
        width: 100%;
    }

    .fixed-scroll th {
        background: #adb5bf;
        color: white;
        padding: 14px 6px;
    }

    .fixed-scroll th p{
        margin:0;
    }

    .fixed-scroll th, .fixed-scroll td {
        text-align: left;
        width: 200px;
        font-size: .9em;
        font-family: 'Roboto',sans-serif;
        font-weight: normal;
    }

    .fixed-scroll td {
        padding: 2px 6px;
        height: 50px;
        border-bottom: 1px solid #adb5bf;
    }

.column-picker-container {
    background: #b1b8c7;
    padding: 8px 6px;
    margin: 10px 0;
    min-height: 350px;
    max-height: 350px;
    overflow-y: scroll;
    border-radius: 6px;
}

.column-picker-column {
    padding: 10px;
    margin: 4px 20px;
    border: none;
    font-weight: normal;
    color: #5B6263;
    background: white;
    margin-bottom: 2px;
    border-radius: 2px;
    box-shadow: 0px 1px 2px 0px rgba(117, 128, 148,0.39);
    cursor: pointer;
    font-family: Roboto,sans-serif;
    font-size: 16px;
    list-style-type: none;
}

    .column-picker-column:hover {
        background: #d8e5ff;
    }

.pop-up-submit-container {
    padding: 10px;
    min-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.pop-up-footer {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    background: white;
}


.pop-up-footer-btn-cancel {
    border: 1px solid #e74c3c;
    color: #e74c3c;
    background: none;
}

.submit-button-container {
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
}

.submit-button {
    display: inline-block;
    width: auto;
    min-width: 150px;
    float: none;
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
}
/*Top Overlay Container*/
.overlay-container {
    width: 450px;
    top: 60px;
    right: 0;
    float: right;
    height: 100%;
    background: white;
    border-left: 0;
    border-radius: 0;
    position: fixed;
    -webkit-box-shadow: -1px 18px 70px 5px rgba(0,0,0,.2);
}

.overlay-inner-container {
    padding-left: 30px;
    padding-right: 30px;
    height: 85%;
    overflow-y: scroll;
}

.overlay-table {
    background: white;
    padding-left: 20px;
    padding-right: 20px;
    margin-right: 0;
    margin-left:0;
    margin-bottom: 200px;
    width: 100%;
    table-layout: fixed;
}


.overlay-table td {
    max-height: 30px;
    padding: 0;
    margin: 0;

}

.overlay-title {
    margin: 0;
    margin-bottom: 6px;
    padding-top: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: .9em;
    color: #57606f;
}

.overlay-box {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    margin-top: 0;
    min-height: 42px;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    margin-bottom: 14px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    color: #57606f;
}
.overlay-box p{margin:0;}
    .overlay-box:invalid {
        border: 1px solid #ff7979;
    }
.overlay-box select{padding-right: 20px;}
.overlay-table tr {max-height: 20px;}

.overlay-header {
    color: white;
    font-size: 16px;
    height: 50px;
    background: #4684BE;
    border-left: .5px solid gray;
    border-bottom: 4px solid #0055A4;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.overlay-description {
    color: #18293a;
    font-family: 'Lato', sans-serif;
    font-size: .8em;
    background: #eff9f4;
}

    .overlay-description p {
        padding: 10px;
        text-align: center;
        margin:0;
    }

    .overlay-description hr {
        color: #5d6f82;
    }

.overlay-header h4 {
    margin: 0;
    padding-left: 10px;
    margin-top: 12px;
    width: 335px;
    float: left;
}

    .overlay-header img {
        float: left;
        height: 26px;
        width: 26px;
    }

.overlay-header a {
    padding: 10px 12px 10px 12px;
    float: left;
}

    .overlay-header a:hover {
        padding: 12px 12px 10px 12px;
    }

    .overlay-header input {
        margin-top: 10px;
    }

    .overlay-display-table{
        width: 500px;
        margin-left: auto;
        margin-right: auto;
        border-collapse: collapse;
        border: 0;
    }

    .overlay-display-table td{
        padding: 5px;
    }

        .overlay-display-table tr:nth-child(even){
            background-color: whitesmoke;
        }

        .overlay-display-table th {
            text-align: left;
            color: #0055A4;
            border-bottom: 1px solid #4684BE;
            padding: 5px;
            text-align: left;
        }

.form-seperator{
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(102, 125, 182, .3), rgba(0, 130, 200,.75), rgba(102, 125, 182, .3));
}

.form-grid {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-gap: 10px;
    width: inherit;
}

.form-row1 {grid-row: 1;
            -ms-grid-row: 1;
}
.form-row2 {
    grid-row: 2;
    -ms-grid-row: 2;
}
.form-row3 {
    grid-row: 3;
    -ms-grid-row: 3;
}
.form-row4 {
    grid-row: 4;
    -ms-grid-row: 4;
}
.form-row5 {
    grid-row: 5;
    -ms-grid-row: 5;
}
.form-row6 {
    grid-row: 6;
    -ms-grid-row: 6;
}
.form-row7 {
    grid-row: 7;
    -ms-grid-row: 7;
}
.form-row8 {
    grid-row: 8;
    -ms-grid-row: 8;
}
.form-row9 {
    grid-row: 9;
    -ms-grid-row: 9;
}
.form-row10 {
    grid-row: 10;
    -ms-grid-row: 10;
}
.form-row11 {
    grid-row: 11;
    -ms-grid-row: 11;
}
.form-col1-4 {
    grid-column: 1 / 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 7;
}
.form-col1-3 {
    grid-column: 1 / 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
}
.form-col1-2 {
    grid-column: 1/3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
}
.form-col1 {
    grid-column: 1/2;
    -ms-grid-column: 1;
}
.form-col2-4 {
    grid-column: 2/5;
    -ms-grid-column: 3;
    -ms-grid-column-span: 5;
}
.form-col2-3 {
    grid-column: 2/4;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
}
.form-col2 {
    grid-column: 2/3;
    -ms-grid-column: 3;
}
.form-col3 {
    grid-column: 3/4;
    -ms-grid-column: 5;
}
.form-col3-4 {
    grid-column: 3/5;
    -ms-grid-column: 5;
    -ms-grid-column-span: 3;
}
.form-col4 {
    grid-column: 4/5;
    -ms-grid-column: 7;
}

.main-section-form-grid {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-gap: 10px;
    width: inherit;
}

.main-form-col1 {
    grid-column: 1/2;
    -ms-grid-column: 1;
}

.main-form-col1-6 {
    grid-column: 1/7;
    -ms-grid-column: 1;
    -ms-grid-column-span: 11;
}
.main-form-col1-5 {
    grid-column: 1/6;
    -ms-grid-column: 1;
    -ms-grid-column-span: 9;
}
.main-form-col1-4 {
    grid-column: 1/5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
}
.main-form-col1-3 {
    grid-column: 1/4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
}
.main-form-col1-2 {
    grid-column: 1/3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
}

.main-form-col2 {
    grid-column: 2/3;
    -ms-grid-column: 3;
}

.main-form-col2-3 {
    grid-column: 2/4;
    -ms-grid-column: 3;
    -ms-grid-column-span: 5;
}
.main-form-col2-6 {
    grid-column: 2/7;
    -ms-grid-column: 3;
    -ms-grid-column-span: 6;
}
.main-form-col4-5 {
    grid-column: 4/6;
    -ms-grid-column: 7;
    -ms-grid-column-span: 3;
}
.main-form-col2-4 {
    grid-column: 2/5;
    -ms-grid-column: 5;
    -ms-grid-column-span: 3;
}

.main-form-col3-4 {
    grid-column: 3/5;
    -ms-grid-column: 5;
    -ms-grid-column-span: 3;
}

.main-form-col3-5 {
    grid-column: 3/6;
    -ms-grid-column: 5;
    -ms-grid-column-span: 4;
}

.main-form-col3-6 {
    grid-column: 3/7;
    -ms-grid-column: 5;
    -ms-grid-column-span: 6;
}

.main-form-col5 {
    grid-column: 5/6;
    -ms-grid-column: 9;
    -ms-grid-column-span: 3;
}


.main-form-col5-6 {
    grid-column: 5/7;
    -ms-grid-column: 9;
    -ms-grid-column-span: 4;
}

.main-form-col4 {
    grid-column: 4/5;
    -ms-grid-column: 7;
}

.main-form-col4-6 {
    grid-column: 4/7;
    -ms-grid-column: 9;
    -ms-grid-column-span: 5;
}

.main-form-col3 {
    grid-column: 3/4;
    -ms-grid-column: 5;
}
.main-form-col6 {
    grid-column: 6/7;
    -ms-grid-column: 11;
}

.scrollbar {
    float: left;
    height: 440px;
    overflow-y: scroll;
}

.force-overflow {
    min-height: 450px;
}

/*
 *  STYLE 1 https://codepen.io/GhostRider/pen/GHaFw
 */

#style-1::-webkit-scrollbar-track {
    background: #ced6e0;
}

#style-1::-webkit-scrollbar {
    width: 12px;
}

#style-1::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #7f8fa6;
}

.full-res {
    display: block;
}

.small-res {
    display: none;
}

/******************************
********* Smaller Resolution **********
*******************************
*******************************/
@media screen and (max-width: 1600px) {

    .main-content-container-filter{
        padding: 50px 20px 0 80px;
    }
    .main-content-container {
        padding: 70px 20px 0 80px;
    }


    .sidenav {
        width: 50px;
        position: fixed;
        z-index: 20;
    }

    .dropdown-btn img {
        margin-left: 15px;
    }

    .sidebar-nodropdown img {
        margin-left: 15px;
    }

    .custom-content-table td {
        padding: 0 4px 0 4px;
    }

    .custom-content-table table{
        font-size: .9em;
    }

    .filter-container{
        min-width: 160px;
    }
        .filter-container select {
            width: 72.4%;
            font-size: .8em;
        }

    .search-container {
        min-width: 300px;
    }

        .search-container input {
            width: 72.4%;
        }

    .pop-up-contents {
        max-height: 400px !important;
        overflow-y: scroll !important;
    }

    .pop-up {
        margin-top: -290px;
    }

    .ticket-subtotal {
        font-size: .9em;
        height: 60px;
        float: left;
        padding: 6px 4px 0 4px;
    }

        .ticket-subtotal img {
            height: 20px;
            width: 20px;
            padding-left: 4px !important;
        }

    .ticket-total {
        font-size: .9em;
        background: #45aaf2;
        color: white;
        font-size: 1em;
        width: 120px;
        float: left;
        padding: 20px 4px 22px 4px;
    }

    .full-res{
        display: none;
    }

    .small-res {
        display: block;
    }

    .dropdown-container a {
        padding: 10px 20px 10px 20px;
    }

    /******************************
********* PHONE VIEW **********
*******************************
*******************************/
    @media screen and (max-width: 500px) {
        /* Hide captions */
        .carousel-caption {
            display: none;
        }

        .login-body {
            background-image: url(/images/backgroundgblur.jpg);
            height: 100vh;
            width: 100vw;
            padding: 0;
        }

        .login-small-center-container {
            width: 100%;
            margin-left: 0;
            margin-right: 0;
            margin-top: 0;
            border-radius: 4px;
            box-shadow: none;
            background: none;
            transition: 0.3s;
            color: white;
        }


        .login-small-logo-container {
            visibility: hidden;
            height: 0;
            margin: 0;
        }

            .login-small-logo-container img {
                visibility: hidden;
                height: 0;
            }

        .login-small-logo-container-mobile {
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            margin-top: 2%;
            border-radius: 4px;
            background: none;
            box-shadow: none;
            padding: 0;
            visibility: visible;
            height: 200px;
        }

            .login-small-logo-container-mobile img {
                width: 90%;
                margin-left: auto;
                margin-right: auto;
                display: block;
                visibility: visible;
                height: auto;
            }

        .login-textbox-base {
            border-radius: 4px;
            width: 90%;
            margin-left: auto;
            margin-right: auto;
        }

        .right-box {
            display: inline-block;
            width: 85%;
            margin-left: auto;
            margin-right: auto;
        }

            .right-box input {
                width: 100%;
            }

        .title-header {
            text-align: center;
            background: none;
            color: white;
            padding-bottom: 0;
            padding-top: 0;
            margin-top: 0;
            margin-bottom: 30px;
            visibility: hidden;
            height: 0;
            margin: 0;
        }

        hr {
            visibility: hidden;
        }

        .forgot-pass-link {
            color: white;
            margin-left: 30%;
            text-align: center;
            margin-top: 10px;
        }

        .login-container-bottom {
            background: none;
            height: 20px;
            margin-bottom: 0;
            margin-top: 30px;
        }

        @-webkit-keyframes LoginGradient {
            0% {
                background-position: 0 50%
            }

            50% {
                background-position: 100% 50%
            }

            100% {
                background-position: 0 50%
            }
        }

        @keyframes LoginGradient {
            0% {
                background-position: 0 50%
            }

            50% {
                background-position: 100% 50%
            }

            100% {
                background-position: 0 50%
            }
        }

        @-webkit-keyframes SignUpGradient {
            0% {
                background-position: 0 50%
            }

            50% {
                background-position: 100% 50%
            }

            100% {
                background-position: 0 50%
            }
        }

        @keyframes SignUpGradient {
            0% {
                background-position: 0 50%
            }

            50% {
                background-position: 100% 50%
            }

            100% {
                background-position: 0 50%
            }
        }

        .login-button {
            background: linear-gradient(270deg, #0479ec, #2a3bc6, #6000ff);
            background-size: 600% 600%;
            -webkit-animation: LoginGradient 20s ease infinite;
            animation: LoginGradient 20s ease infinite;
            border: 1px solid #0156A5;
            width: 80%;
            height: 50px;
            color: white;
            margin-left: 10%;
            margin-right: auto;
            font-size: 1.4em;
            transition: 0.5s;
            border-radius: 30px;
        }

            .login-button:hover {
                background: linear-gradient(270deg, #0479ec, #2a3bc6, #6000ff);
                background-size: 600% 600%;
                -webkit-animation: LoginGradient 20s ease infinite;
                animation: LoginGradient 20s ease infinite;
                border: 1px solid #0156A5;
                width: 80%;
                color: white;
                margin-left: 10%;
                margin-right: auto;
                font-size: 1.4em;
                transition: 0.5s;
            }

        .signUp-button {
            background: linear-gradient(270deg, #ffb600, #ff7300, #f75990);
            background-size: 600% 600%;
            -webkit-animation: SignUpGradient 20s ease infinite;
            animation: SignUpGradient 20s ease infinite;
            width: 80%;
            height: 50px;
            color: white;
            margin-left: 10%;
            margin-right: auto;
            font-size: 1.4em;
            transition: 0.5s;
            border-radius: 30px;
        }

            .signUp-button:hover {
                background: linear-gradient(270deg, #ffb600, #ff7300, #f75990);
                background-size: 600% 600%;
                -webkit-animation: SignUpGradient 20s ease infinite;
                animation: SignUpGradient 20s ease infinite;
                width: 80%;
                color: white;
                margin-left: 10%;
                margin-right: auto;
                font-size: 1.4em;
                transition: 0.5s;
            }
        /*Foot Style for Login Page*/
        footer {
            padding-top: 15%;
            color: lightgray;
            position: relative;
            bottom: auto;
            text-align: center;
        }
        /*Default footer for rest of site*/
        .footer-style {
            color: black;
            position: relative;
            bottom: unset;
            bottom: auto;
            background: white;
            visibility: hidden;
        }

        .desktop {
            visibility: hidden;
        }

        .mobile {
            visibility: visible;
        }
    }

    /******************************
********* Tablet VIEW **********
*******************************
*******************************/
    @media screen and (min-width: 499px) and (max-width: 768px) {
        /* Hide captions */
        .carousel-caption {
            display: none;
        }

        .body-content {
            padding-left: 0;
            padding-right: 0;
        }

        .row {
            margin-right: 0;
            margin-left: 0;
        }

        .login-body {
            background-image: url(/images/backgroundgblur.jpg);
            height: 100vh;
            width: 100vw;
            padding: 0;
        }

        .login-small-center-container {
            width: 90%;
            margin-left: 5%;
            margin-right: 5%;
            margin-top: 5%;
            border-radius: 4px;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
            background: white;
            transition: 0.3s;
        }

        .login-small-logo-container {
            width: 70%;
            border-radius: 4px;
            background: none;
            box-shadow: none;
            padding: 0;
            height: 60px;
            padding-left: 0;
            margin-bottom: 10%;
        }

            .login-small-logo-container img {
                width: 90%;
                margin: auto;
            }

        .login-small-logo-container-mobile {
            visibility: hidden;
            height: 0;
            margin: 0;
        }

            .login-small-logo-container-mobile img {
                visibility: hidden;
                height: 0;
            }

        .login-textbox-base {
            border-radius: 4px;
            width: 70%;
            margin-left: auto;
            margin-right: auto;
        }

        .right-box {
            display: inline-block;
            width: 85%;
            margin-left: auto;
            margin-right: auto;
        }

            .right-box input {
                width: 100%;
            }

        .forgot-pass-link {
            color: grey;
            margin-left: 40%;
            text-align: center;
            margin-top: 10px;
        }

        .title-header {
            text-align: center;
            color: white;
            padding-bottom: 5px;
            padding-top: 5px;
            margin-top: 0;
            margin-bottom: 30px;
        }

        .login-button {
            background-color: #0156A5;
            border: 1px solid #0156A5;
            width: 50%;
            height: 50px;
            color: white;
            margin-left: 25%;
            margin-right: auto;
            font-size: 1.4em;
            transition: 0.5s;
            border-radius: 30px;
        }

            .login-button:hover {
                background-color: #0156A5;
                border: 1px solid #0156A5;
                width: 80%;
                color: white;
                margin-left: 10%;
                margin-right: auto;
                font-size: 1.4em;
                transition: 0.5s;
            }

        .signUp-button {
            background-color: #FF7F2A;
            border: 1px solid #FF7F2A;
            width: 50%;
            height: 50px;
            color: white;
            margin-left: 25%;
            margin-right: auto;
            font-size: 1.4em;
            transition: 0.5s;
            border-radius: 30px;
        }

            .signUp-button:hover {
                background-color: #FF7F2A;
                border: 1px solid #FF7F2A;
                width: 80%;
                color: white;
                margin-left: 10%;
                margin-right: auto;
                font-size: 1.4em;
                transition: 0.5s;
            }
        /*Foot Style for Login Page*/
        footer {
            color: white;
            position: relative;
            bottom: unset;
            bottom: auto;
        }
        /*Default footer for rest of site*/
        .footer-style {
            color: black;
            position: relative;
            bottom: unset;
            bottom: auto;
            background: white;
            visibility: hidden;
        }

        .desktop {
            visibility: hidden;
        }

        .mobile {
            visibility: visible;
        }
    }

    .fake-link {
        cursor: pointer;
    }

    .clickable-row-details {
        cursor: pointer;
    }

    .clickable-row {
        cursor: pointer !important;
    }