@import url('https://fonts.googleapis.com/css2?family=Teko&display=swap');
.sideButton {
    width: 40px;
    height: 100%;
    background-color: transparent;
    border: 0;
    font-size: 30px;
    outline: none;
    color: #fff;
}

.sideButton:hover {
    background-color: #1e1e35;
    color: #fff;
    font-weight: bold;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.5s;
    animation-name: fadeIn;
    animation-duration: 0.5s
}

body {
    background-color: #0F0E1D;
}

.header-bar {
    display: flex;
    background-color: #000;
    color: #fff;
    padding: 5px 20px 5px 0px;
}

.header-bar .header-title {
    padding-left: 20px;
    flex-basis: 0;
    flex-grow: 9;
    flex-shrink: 1;
}

.header-bar .header-extra {
    align-content: center;
    text-align: center;
    vertical-align: middle;
}

.header-bar .header-extra button.btn-transparent {
    background: #141414;
    padding: 6px 12px;
    border-radius: 4px;
    margin: 4px 10px -8px 0;
    cursor: pointer;
}

.header-bar .header-extra button:hover {
    background: #333;
    transition: background 0.2s;
}

.header-bar .date {
    margin: 0;
}


/* The side navigation menu */

.sidenav {
    height: 100%;
    /* 100% Full-height */
    width: 0px;
    /* 0 width - change this with JavaScript */
    max-width: 25%;
    position: fixed;
    /* Stay in place */
    z-index: 1002;
    /* Stay on top */
    top: 0;
    /* Stay at the top */
    left: 0;
    background-color: #f1f1f1;
    /* Black*/
    /*overflow-x:hidden; /* Disable horizontal scroll */
    padding-top: 40px;
    /* Place content 40px from the top */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in the sidenav */
}

.sidenav .mdl-list {
    -webkit-animation-name: animateleft;
    -webkit-animation-duration: 1s;
    animation-name: animateleft;
    animation-duration: 1s;
    padding: 0;
}

ul.mdl-list {
    margin-top: 0;
}

.menu i:hover,
.menu ul li button:hover {
    cursor: pointer;
}

.menu {
    list-style-type: none;
    /* Remove bullets */
    padding: 0;
    /* Remove padding */
    margin: 0;
    /* Remove margins */
    text-align: center;
    display: block;
    margin: 0 auto;
    position: relative;
    width: 5%;
}

.menu ul {
    list-style-type: none;
    /* Remove bullets */
    padding: 0;
    /* Remove padding */
    margin: 0;
    /* Remove margins */
    background: #000;
    height: 0;
    left: -100%;
    opacity: 0;
    position: absolute;
    transition: all .5s ease;
    top: 35px;
    width: 200%;
}

.menu li:hover ul {
    height: fit-content;
    padding: 10px;
    opacity: 1;
    transform: translateY(0);
}

.inner-menu li {
    padding: 10px;
    z-index: 50;
}

.inner-menu li:hover {
    background-color: gray;
}


/* -moz-animation:    @value;
    -o-animation:      @value;
    -ms-transition:    @value; */


/* Add Animation */

@-webkit-keyframes animateleft {
    from {
        left: -300px;
        opacity: 0
    }
    to {
        left: 0;
        opacity: 1
    }
}

@keyframes animateleft {
    from {
        left: -300px;
        opacity: 0
    }
    to {
        left: 0;
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/* The navigation menu links */

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}


/* When you mouse over the navigation links, change their color */

.sidenav a:hover {
    color: #f1f1f1;
}


/* Position and style the close button (top right corner) */

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}


/* Style page content - use this if you want to push the page content to the right when you open the side navigation */

.main {
    transition: margin-left .5s;
    padding: 20px;
    height: 90%;
    padding-left: 60px;
    padding-right: 60px;
}

.header-layout {
    transition: margin-left .5s;
}


/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }
    .sidenav a {
        font-size: 18px;
    }
}

.container h5 {
    padding-right: 10px;
}

h5 {
    margin: 0 !important;
    line-height: 35px !important;
}

.container {
    display: flex;
}

.item {
    color: #fff;
    flex-grow: 1;
    flex-basis: 33.33%;
    max-width: 31%;
    height: 400px;
    margin-left: 1%;
    margin-right: 1%;
    animation: fadeIn ease 1s;
    -webkit-animation: fadeIn ease 1s;
}

.col6 {
    flex-grow: 1;
    flex-basis: 16%;
    max-width: 16%;
    margin-left: 30px;
    margin-right: 0;
}

.connectedSortable {
    background-color: #1e1e35;
    white-space: nowrap;
    text-align: center;
}

.sidenav .mdl-list .connectedSortable {
    background-color: #fff;
}

.placeholder {
    background-color: #1e1e35;
    height: 100px;
    width: 100%;
}

.header-day {
    background-color: #1e1e35;
    height: 20px;
    width: 20px;
    border-radius: 50px;
    font-size: 12px;
    text-align: center;
    vertical-align: bottom;
    line-height: 20px;
    padding: 3px;
    margin: 5px 0 0 5px;
}

#header-date span {
    color: #ffea00;
    font-size: 28px;
    font-family: 'Teko', sans-serif;
    margin-top: -10px;
    margin-bottom: -10px;
    line-height: 28px;
}

.list-header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-header p {
    margin: 0%;
    margin-top: 10px;
    margin-bottom: -10px;
}

.stdText {
    width: 74px;
    text-align: center;
    font-size: 12px;
}

.targetText {
    text-align: center;
    font-size: 20px;
    padding-left: 10px;
    line-height: 35px;
    margin-bottom: 0;
}

.divElementHolder {
    display: flex;
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: auto;
}

.divHidden {
    display: none;
}

.divID {
    color: #00C8B0;
    width: 74px;
}

.divName {
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    text-align: left;
    font-size: 28px;
    font-weight: 600;
    height: 28px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.divDueDate {
    color: #ffea00;
    padding: 10px 10px 8px;
    font-size: 28px;
    font-family: 'Teko', sans-serif;
    border: 1px solid #ffea00;
    margin-top: -10px;
    margin-bottom: -10px;
    line-height: 28px;
}

.grayscale .divDueDate {
    color: #ffea00;
    padding: 3px 0px 0px;
    font-size: 28px;
    font-family: 'Teko', sans-serif;
    border: 0;
    margin-top: 0px;
    margin-bottom: 0px;
}

.grayscale .divAlloc {
    font-size: 18px;
    font-weight: normal !important;
    margin: -15px auto -13px !important;
}

.grayscale .divName {
    font-size: 18px;
    font-weight: normal !important;
}

.grayscale .divElementHolder {
    padding-top: 15px;
    padding-bottom: 13px;
    opacity: 1;
}

.divElementHolder:hover,
.grayscale .divElementHolder:hover {
    cursor: grab;
    background-color: #303057;
    transition: background-color 0.2s;
}

.sidenav .divElementHolder:hover {
    background-color: #dadada;
}

.sidenav .divElementHolder .divAlloc {
    background-color: #dadada;
}

.highlighted .divAlloc {
    background-color: #00C8B0;
}

.embroidery .divAlloc {
    background-color: #ffea00;
    color: #000;
}

.outsourced .divAlloc {
    background-color: #ff00405d;
    color: #000;
}

.supa .divAlloc {
    background-color: #d301b7;
    color: #000;
}

.divUnits {
    width: 74px;
}

.divAlloc {
    display: flex;
    font-size: 28px;
    font-weight: 600;
    justify-content: center;
    background-color: #303057;
    align-items: center;
    width: 74px;
    margin-top: -25px;
    margin-bottom: -25px;
}


/* The Modal (background) */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}


/* Modal Content */

.modal-content {
    position: relative;
    background-color: #1e1e35;
    margin: auto;
    padding: 0;
    border-radius: 10px;
    width: 40%;
    height: auto;
    min-height: 400px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}


/* Add Animation */

@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}


/* The Close Button */

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 2px;
    background-color: #303057;
    color: white;
}

.modal-header .container .divName {
    height: auto;
}

.modalID {
    height: auto;
    width: 10%;
    font-size: larger;
    color: #00C8B0;
    text-align: center;
}

.modal-body {
    padding-top: 10px;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 5%;
}

.modal-body .container {
    height: 40px;
    padding-bottom: 20px;
}

.modal-body p {
    color: #fff;
}

.modal-body h5 {
    color: darkgrey;
}

.modal-body .container .item {
    margin: 0px;
    height: 50px;
}

.modal-body .container .item p {
    text-align: left;
    margin: 0px;
}

.modal-body .container .item .modal-variable {
    background-color: #ADB6BB;
    color: #000;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 25px;
    text-align: center;
}

.modal-notes {
    padding-bottom: 20px;
}


/* Rounded border */

hr.rounded {
    border-top: 2px solid #303057;
    border-radius: 5px;
}

.modal-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-col {
    display: inline-block;
    vertical-align: top;
    width: 45%;
}

input[type=number],
select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #f1f1f1;
}

input[type=submit] {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #45a049;
}

label {
    cursor: pointer;
    color: #fff;
    display: block;
    padding: 5px;
}

.btn-transparent {
    background-color: transparent;
    color: #fff;
    border: 0;
    outline: none;
    padding-left: 20px;
    padding-right: 20px;
    vertical-align: middle;
}

.btn-rounded {
    height: 40px;
    width: 40px;
    color: #000;
    background-color: #fff;
    border: 0px;
    border-radius: 0 10px 10px 0;
    outline: none;
}

.btn-rounded img {
    height: 15px;
    width: 15px;
}

.not-clickable .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.grayscale {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-filter: gray;
    filter: gray;
}


/* Widescreen Fixes */

.col6 .divAlloc {
    font-size: 18px;
    width: auto;
    padding: 10px;
    margin-top: -15px !important;
    margin-bottom: -15px !important;
}

.col6 .divName {
    font-size: 18px;
}

.col6 .divID {
    width: auto;
    margin: auto 10px !important;
}

.col6 .divUnits {
    width: auto;
    margin: auto 10px !important;
}

.col6 .stdText {
    display: none;
}

.col6 .divElementHolder {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.overhead {
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.overhead .current {
    display: flex;
}

.overhead .old {
    display: flex;
}

.overhead .current .costTitle,
.overhead .current .costAmount,
.overhead .old .costTitle,
.overhead .old .costAmount {
    flex: 6;
}

.overhead-form {
    width: 60%;
}

.divASSSHolder {
    margin-top: -25px;
    margin-bottom: -25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}

.divLetter {
    color: #0F0E1D;
    height: 100%;
}

.divLetter>a {
    height: 100%;
    display: block;
}

.grayscale .divASSSHolder {
    display: none;
}


/* Dropdown Button */

.dropbtn {
    background-color: #3498DB;
    border: none;
    border-radius: 2px;
    color: #000;
    position: relative;
    height: 36px;
    margin: 0;
    min-width: 64px;
    padding: 0 16px;
    display: inline-block;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0;
    overflow: hidden;
    will-change: box-shadow;
    transition: box-shadow .2s cubic-bezier(.4, 0, 1, 1), background-color .2s cubic-bezier(.4, 0, .2, 1), color .2s cubic-bezier(.4, 0, .2, 1);
    outline: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    line-height: 36px;
    vertical-align: middle;
    margin-left: 10px;
}

.green {
    background-color: #45a049;
}

.pink {
    background-color: #f700ff;
}

.yellow {
    background-color: #edf100;
}

.blue {
    background-color: cyan;
}

.red {
    background-color: red;
}

.blank {
    background-color: #404066;
}

.default {
    background-color: #1e1e35;
}


/* Dropdown button on hover & focus */

.dropbtn:hover,
.dropbtn:focus {
    background-color: #2980B9;
}


/* 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: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}


/* Links inside the dropdown */

.dropdown-content .btn {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    width: 100%;
}


/* 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;
}

.price-table {
    border-collapse: collapse;
}

.price-table>tbody>tr:nth-child(even) {
    background-color: #dddddd;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 20px;
    margin: 2px;
}


/* Hide default HTML checkbox */

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}


/* The slider */

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0F0E1D;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: #303057;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #1e1e35;
}

input:focus+.slider {
    box-shadow: 0 0 1px #1e1e35;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}


/* Rounded sliders */

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

@media only screen and (max-width: 1200px) {
    .col3 {
        display: none !important;
    }
    .col2 {
        max-width: 49%;
    }
    .col1 {
        max-width: 49%;
    }
}

@media only screen and (max-width: 740px) {
    .col3 {
        display: none !important;
    }
    .col2 {
        display: none !important;
    }
    .col1 {
        max-width: 100%;
    }
}

.manage-main {
    display: flex;
    width: 100%;
    color: white;
}

.previous-details {
    color: white;
    width: 50%;
}

.manage-table {
    width: 100%;
    border: 1px solid white;
    text-align: center;
    border-collapse: collapse;
}

.manage-table>tr:nth-child(odd) {
    background-color: #64646441;
}

.manage-table>tr>td {
    padding: 5px;
    border: 1px solid white;
}

.date-form {
    padding: 80px;
}