@media (min-width: 576px) {
  .border-sm-start {
    border-left: 1px solid #dee2e6!important;
  }
}


.multi-spinner:not([data-loading='0']) {
    display: block;
}
  
.table {
    font-size: 12px;
}

.skeleton {
    animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
    0%{
        background-color: hsl(200, 20%, 70%);
    }
    100%{
        background-color: hsl(200, 20%, 95%);
    }
}

.spinner-cursor * {
    cursor: progress!important;
}

.js #drag_drop, #drag_drop_disabled{
    background-color : #f9f9f9;
    border : #ccc 4px dashed;
    padding : 12px;
    font-size : 24px;
    text-align : center;
    position: relative;
}

.js .preview-img {
  max-width: 100px;
  max-height: 50px;
}

.js .imgbox {
  width: 100px!important;
}

.js .box__file {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.js .box.has-advanced-upload .box__icon {
    width: 100%;
    height: 80px;
    fill: #92b0b3;
    display: block;
}

.js .box__file + label {
    max-width: 80%;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
}

.js .box__file + label:hover strong, .box__file:focus + label strong, .box__file.has-focus + label strong {
    color: #39bfd3;
}

.js .clickable {
  cursor: pointer;
}

.js .not-clickable {
  cursor: not-allowed;
}

.js #text{
  position: relative;
  top: 50%;
  left: 50%;
  font-size: 10px;
  color: white;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}


.text-lightgray {
    color: lightgray;
}

.border-start-fat {
    width: 5px;
    height: 100%;
    background-color: #e19924;
    position: absolute;
    top: 0;
    left: 0;
}

.where-we-at-sections .sticky {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 67px;
  z-index: 99;
  background: linear-gradient(225deg, #6e9ac9, #1f5186);
  text-transform: capitalize;
}

.w-fit {
    width: fit-content;
}

.pointer-events-none {
    pointer-events: none;
}

.disabled {
    pointer-events: none;
    color: #6c757d;
}

.no-select {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.user-list-popup {
    position: absolute;
    top: 0;
    left: 12px;
    transform: translateY(-100%);
    background-color: rgb(86 62 240);
    box-shadow: 0 0 5px black;
    max-width: calc(100% - 24px);
    max-height: 200px;
    overflow-y: auto;
}

.user-name-list:hover {
    background-color: lightgrey;
    color: white;
    cursor: pointer;
}

.thin-scrollbar::-webkit-scrollbar {
    width: 8px;
}

.thin-scrollbar::-webkit-scrollbar-thumb {
    background-color: #a1a1a1;
    border-radius: 4px;
}

.user-link {
border-radius: 10px;
padding-left: 5px;
padding-right: 5px;
background-color: #1b59ff;
color: #f3f3f3;
}

.tag-list-popup {
    position: absolute;
    top: 0;
    left: 12px;
    transform: translateY(-100%);
    background-color: rgb(86 62 240);
    box-shadow: 0 0 5px black;
    max-width: calc(100% - 24px);
    max-height: 200px;
    overflow-y: auto;
}

.tag-name-list:hover {
    background-color: lightgrey;
    color: white;
    cursor: pointer;
}

.tag-link {
border-radius: 5px;
padding-left: 3px;
padding-right: 3px;
background-color: #8d8d8d;
color: #f3f3f3;
}

.where-we-at-sections .clickable {
  cursor: pointer;
}

.fs-7 {
  font-size: .75rem!important;
}

.text-deco-dark {
  color: #103052;
}

.bg-deco-dark {
  background: #103052;
}

.text-deco-light {
  color: #1aa6df;
}

.bg-deco-light {
  background: #1aa6df;
}

.text-darkgrey {
  color: #3f3f3f;
}

.where-we-at-sections .bg-light {
  background-color: white;
    transition: background-color 0.5s;
}

.where-we-at-sections .clickable:hover {
      background-color: #dedede!important;
}

.bg-darkgrey {
  color: #3f3f3f;
}

.text-transparent {
  color: transparent;
}

.a-tag-disable {
  pointer-events: none;
}

  #snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: green;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 10000;
  left: 50%;
  top: 30px;
  font-size: 16px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {top: 0; opacity: 0;}
  to {top: 30px; opacity: 1;}
}

@keyframes fadein {
  from {top: 0; opacity: 0;}
  to {top: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {top: 30px; opacity: 1;}
  to {top: 0; opacity: 0;}
}

@keyframes fadeout {
  from {top: 30px; opacity: 1;}
  to {top: 0; opacity: 0;}
}

#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 2;
  cursor: progress;
}

.floating-label {
  font-size: 70%;
    text-transform: uppercase;
}

#autoresizing {
            display: block;
            overflow: hidden;
            resize: none;
        }

        .no-click {
          pointer-events: none;
        }

.page-height {
  height: 1060px;
}

.notes-div {
  min-width: 665px;
  
     margin-left: auto;
     margin-right: auto;
}

.pcPriceTable {
  font-size: 8px;
}

.stamps {
  width: 19%;
}

.gate-area {
    height: 790px;
}

.fit-width {
  width: 5px;
  white-space: nowrap;
}

.no-wrap {
    width: 100%;
    max-width: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.no-main-wrap {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.order-date {
  height: 32px;
}

.sign {
  width: 200px;
  height: 50px;
}

.PC-Title {
  font-size: 26px!important;
  background-color: #ffff00!important;
}

#PC-despatch {
  font-size: 16px;
}


.clickable-row {
  cursor: pointer;
}

.dark-blue {
  color: darkblue;
}

.packing-list {
  display: none;
}

.despatch {
  font-size: 14px!important;
  width: 150px;
}

.production-list-table  td {
  font-size: 18px;
}

.blank-line {
  height: 20px;
}

.summary-panels-box {
  background-color: #ffff00!important;
}

.summary-gates-box {
  background-color: #ff9900!important;
}

.summary-custom-box {
  background-color: #448bf3!important;
}

#datepicker {
	font-family: 'Roboto', sans-serif;
	display:block;
	border: none;
	border-radius: 0.25rem;
	border: 1px solid transparent;
	line-height: 1.5rem;
	padding: 0;
	font-size: 1rem;
	color: #607D8B;
	width: 100%;
	margin-top: 0.5rem;
  text-align: center;
  cursor: pointer;
}
#datepicker:focus {outline: none;}
#ui-datepicker-div {
	display: none;
	background-color: #fff;
	box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.1);
	margin-top: 0.25rem;
	border-radius: 0.5rem;
	padding: 0.5rem;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.ui-datepicker-calendar thead th {
	padding: 0.25rem 0;
	text-align: center;
	font-size: 0.75rem;
	font-weight: 400;
	color: #78909C;
}
.ui-datepicker-calendar tbody td {
	width: 2.5rem;
	text-align: center;
	padding: 0;
}
.ui-datepicker-calendar tbody td a {
	display: block;
	border-radius: 0.25rem;
	line-height: 2rem;
	transition: 0.3s all;
	color: #546E7A;
	font-size: 0.875rem;
	text-decoration: none;
}
.ui-datepicker-calendar tbody td a:hover {
	background-color: #E0F2F1;
}
.ui-datepicker-calendar tbody td a.ui-state-active {
	background-color: #009688;
	color: white;
}
.ui-datepicker-header a.ui-corner-all {
	cursor: pointer;
	position: absolute;
	top: 0;
	width: 2rem;
	height: 2rem;
	margin: 0.5rem;
	border-radius: 0.25rem;
	transition: 0.3s all;
}
.ui-datepicker-header a.ui-corner-all:hover {
	background-color: #ECEFF1;
}
.ui-datepicker-header a.ui-datepicker-prev {
	left: 0;
	background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
	background-repeat: no-repeat;
	background-size: 0.5rem;
	background-position: 50%;
	transform: rotate(180deg);
}
.ui-datepicker-header a.ui-datepicker-next {
	right: 0;
	background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==');
	background-repeat: no-repeat;
	background-size: 10px;
	background-position: 50%;
}
.ui-datepicker-header a>span {
	display: none;
}
.ui-datepicker-title {
	text-align: center;
	line-height: 2rem;
	margin-bottom: 0.25rem;
	font-size: 0.875rem;
	font-weight: 500;
	padding-bottom: 0.25rem;
}
.ui-datepicker-week-col {
	color: #78909C;
	font-weight: 400;
	font-size: 0.75rem;
}


.all-colour-box {
  font-size: 56px;
}

input[id^="datepicker"]::-webkit-input-placeholder {
  font-size: 10px;
  font-style: italic;
}
input[id^="datepicker"]::-moz-placeholder {
  font-size: 10px;
  font-style: italic;
}
input[id^="datepicker"]:-ms-input-placeholder {
  font-size: 10px;
  font-style: italic;
}
input[id^="datepicker"]:-moz-placeholder {
  font-size: 10px;
  font-style: italic;
}

.table-header {
  height: 30px;
  font-size: 18px;
}

.no-bottom-border {
  border-bottom: hidden;
}

.no-right-border {
  border-right: hidden;
}

.no-left-border {
  border-left: hidden!important;
}

.additional-info, .additional-info:focus {
  border-radius: 0;
  border-bottom: hidden;
  border-right: hidden;
  background-color: #ffff00;
}

.additional-info-field, .additional-info-field:focus {
  border-radius: 0;
  border: hidden;
  background-color: #ffff00;
}

.summary-info {
  border-radius: 0;
  border: hidden;
}

.summary-info-text, .summary-info:focus, .send-method:focus {
  background-color: #ffff00!important;
}

.filled-field {
  background-color: #ffff00;
}

.additional-info-notes {
  border-radius: 0;
  border: hidden;
  background-color: #ffff00;
}

.orientation-col {
  width: 7%;
}

.additional-info-text {
  border-radius: 0;
  border-bottom: hidden;
  border-left: hidden;
}

.panel-col {
  width: 7%;
}

.qty-col {
  width: 7%;
}

.face-col {
  width: 14%;
}

.length-col {
  width: 14%;
}

.mod-length-col {
    width: 10.5%;
}

.length-width-col {
  width: 7%;
}

.order-table td {
  padding-bottom: 2px;
  padding-top: 2px;
  font-size: 12px;
}

.design-box {
  text-align: center;
  width: 125px;
  color: blue;
  font-size: 16px;
  }

  .gap-col {
    width: 7%;
  }

  .designName-box {
    border-right: hidden!important;
    font-size: 16px;
  }

  .gate-design-value {
    text-transform: uppercase;
  }

  .gate-number {
  }

  .gate-design {
    color: blue;
  }

.greyed-out {
  background-color: #d9d9d9!important;
}

.production-info td {
  text-align: center;
  font-size: 12px;
}

.production-info {

}

.blank-space {
  width: 2%;
  border-top: hidden;
  border-bottom: hidden;
}

.missing-cell {
  width: 70px;
  border-top: hidden;
  border-left: hidden;
  border-right: hidden;
}

.factory-box {
  text-align: center;
  background-color: #b6d7a8;
  font-size: 30px;
}

.PC-box {
  text-align: center;
  background-color: #ffff00;
  font-size: 30px;
}

.product-box {
    text-align: center;
    font-size: 30px;
    border-right: hidden!important;
}

.design-info {
  font-size: 20px;
}

.invoice-box {
  text-align: center;
  font-size: 32px;
  border-top: hidden!important;
  border-right: hidden!important;
}

.summary-invoice-box {
  font-size: 48px!important;
  width: 150px;
}

.instock {
  background-color: #00ff00;
  font-size: 30px;
  border-top: hidden!important;
  border-left: hidden!important;
}

.outworks {
  background-color: #ff9900;
  font-size: 30px;
  border-top: hidden!important;
  border-left: hidden!important;
}

.summary-instock {
  background-color: #00ff00!important;
  font-size: 26px!important;
}

.summary-outworks {
  background-color: #ff9900!important;
  font-size: 26px!important;
}

.summary-welding {
  background-color: #f9018f!important;
  font-size: 26px!important;
}

.summary-door {
  background-color: #2196f3!important;
  font-size: 26px!important;
}

.summary-not-outworks, .summary-not-instock, .summary-not-welding, .summary-not-door {
  background-color: #ffffff!important;
  color: transparent!important;
  font-size: 26px!important;
}

.face {

}

.face-img {display: block;
 margin-left: auto;
 margin-right: auto;
 width: 24.9px;
}

  .clock {
  font: status-bar;
}

.infoBox {
  background-color: #0000004d;
  border-radius: 2px;
  color: white;
}

.infoBox-invoice {
  background-color: #0000004d;
  border-radius: 2px;
  color: white;
  font-size: 12px;
}

.infoBox-inproduction {
  background-color: #0000004d;
  border-radius: 2px;
  color: white;
  font-size: 12px;
}

.infoBox-outproduction {
  background-color: #ff5722;
  border-radius: 2px;
  color: white;
  font-size: 12px;
}

.infoBox-inFactory {
  background-color: #0000004d;
  border-radius: 2px;
  color: white;
  font-size: 12px;
}

.infoBox-despatched {
  background-color: #0000004d;
  border-radius: 2px;
  color: white;
  font-size: 12px;
}

.infoBox-paid {
  background-color: #198754;
  border-radius: 2px;
  color: white;
  font-size: 12px;
}

.infoBox-completed {
  background-color: #0000004d;
  border-radius: 2px;
  color: white;
  font-size: 12px;
}

.infoBox-Paused {
  background-color: #ff5151;
  border-radius: 2px;
  color: white;
  font-size: 14px;
}

.infoBox-updated {
  background-color: #ff1493;
  border-radius: 2px;
  color: white;
  font-size: 14px;
}

.hide, .hidden-order{
  display: none;
}

.archive-hide{
  display: none;
}

.action-link {
  display: none;
}

.orderOptions:hover > .action-link{
  display: block;
}

.factory{
  color: red;
  font-size: 16px;
  vertical-align: middle;
  font-weight: bold;
}

.todo-icon{
    color: #8b0000;
}

.draggable {
  padding: 0.5rem;
  background-color: white;
  cursor: move;

  transition: transform 0.5s ease;
}

.draggable.dragging {
  opacity: .5;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}


* { box-sizing: border-box; }

.grid:after {
  content: '';
  display: block;
  clear: both;
}

.grid-item {
  width: 160px;
  float: left;
  margin-bottom: 20px;
  height: fit-content;
}

.grid-item--width2 { width: 340px; }
.grid-item--width3 { width: 520px; }
.grid-item--width4 { width: 700px; }
.grid-item--width5 { width: 880px; }

.grid-item--height1 { height: 100px; }
.grid-item--height2 { height: 200px; }
.grid-item--height3 { height: 260px; }
.grid-item--height4 { height: 360px; }

.green {
    color: #587FAD;
}

.blue {
    color: #ff8036;
}

.card-icon{
font-size: 62px;
}

.blur {
  filter: blur(4px);
  -webkit-filter: blur(4px);
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position:fixed;
}

.hide-proccessing{
    display: none;
}

.loadingSpinnerDiv {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
}

.anchor {
    display: block;
    position: relative;
    top: -75px;
    visibility: hidden;
}

.quote-button{
    border: 1px solid rgba(0,0,0,.125)!important;
}

.quote-button:not(.collapsed) {
    color: #0c63e4;
    background-color: transparent;
}

.quote-button:hover{
    background-color: #f0faff;
}


.main {
    min-width: 400px;
}

.quoteTitles {
    font-size: 18px;
    margin-bottom: 0;
}

.orderedBox {
    margin-left: 0;
    margin-right: 0;
    background-color: #fafadc;
    color: black;
    border-left: 5px solid #fab900!important;
}

.orderedBox:hover {
    margin-left: 0;
    margin-right: 0;
    background-color: #fafa96;
    color: black;
    border-left: 5px solid #fab900!important;
}

.distoBox {
  margin-left: 0;
  margin-right: 0;
  background: linear-gradient(45deg, #dddddd, #ffffff);
  color: #000000;
  border-left: 5px solid #76899d!important;
}

.inFactoryBox {
    margin-left: 0;
    margin-right: 0;
    background-color: #f0f0ff;
    color: black;
    border-left: 5px solid #004dfa85!important;
}

.inFactoryBox:hover {
    margin-left: 0;
    margin-right: 0;
    background-color: #dcdcfa;
    color: black;
    border-left: 5px solid #004dfa85!important;
}

.PPhalted {
    margin-left: 0;
    margin-right: 0;
    background-color: #fa9696;
    color: black;
    border-left: 5px solid #fa0000!important;
}

.PPhalted:hover {
    margin-left: 0;
    margin-right: 0;
    background-color: #fa6464;
    color: black;
    border-left: 5px solid #fa0000!important;
}

.paused-message-box {
position: relative;
}

.paused-message {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -100%);
  pointer-events: none;
}


.ordered {
    color: black;
}

.processedBox {
    margin-left: 0;
    margin-right: 0;
    background-color: #dcdcdcb8;
    color: black;
    border-left: 5px solid #464646!important;
}

.completedBox {
    margin-left: 0;
    margin-right: 0;
    background-color: #c8fac8;
    color: black;
    border-left: 5px solid green!important;
}

.completedBox:hover {
    margin-left: 0;
    margin-right: 0;
    background-color: #92fb92;
    color: black;
    border-left: 5px solid green!important;
}

.processedBox:hover {
    margin-left: 0;
    margin-right: 0;
    background-color: #f8f8f8;
    color: black;
    border-left: 5px solid #464646!important;
}

.processed {
    color: black;
}

.acceptedBox {
     margin-left: 0;
    margin-right: 0;
    background-color: #c8c8fa;
    color: black;
   border-left: 5px solid purple!important;
}

.acceptedBox:hover {
   margin-left: 0;
    margin-right: 0;
    background-color: #b4b4fa;
    color: black;
    border-left: 5px solid purple!important;
}

.acceptedQuotes {
    color: black;
}

.quoteBox {
    margin-left: 0;
    margin-right: 0;
    background-color: #e6f0fa;
    color: black;
    border-left: 5px solid blue!important;
}

.quoteBox:hover {
    margin-left: 0;
    margin-right: 0;
    background-color: #d2f0fa;
    color: black;
    border-left: 5px solid blue!important;
}

.pendingQuotes {
    color: black;
}

.draftBox {
    margin-left: 0;
    margin-right: 0;
    background-color: #e6e6e6;
    color: black;
    border-left: 5px solid Grey!important;
}

.draftBox:hover {
    margin-left: 0;
    margin-right: 0;
    background-color: #dcdcdc;
    color: black;
    border-left: 5px solid Grey!important;
}

.draftQuotes {
    color: black;
}

.BoxA {
    text-decoration: none;
    color: black;
}

.visibility-link {
  text-decoration: none;
  color: #6c757d;
  cursor: pointer;
}

.monthSelector {
    text-decoration: none;
    color: black;
}

.orderTitle, .orderAmount {
    font-size: 16px;
    font-weight: 400;
}

.orderSubheading, .orderDate {
    font-size: 14px;
    font-style: italic;
    color: #545454;
}

.usertitle {
    width: 100px;
}

.required:after {
  content:" *" ;
  color: red ;
}

.accordion-item{
  background-color: #fff;
}

.accordion-item:hover{
  background-color: white;
  box-shadow: 0 0 10px rgb(0, 0, 0);
  position:relative;
    z-index:1;
}

.accordion-body {
      border-left: 1px solid rgba(0,0,0,.125);
      border-right: 1px solid rgba(0,0,0,.125);
      padding-bottom: 4px;
}

.accordion-button:focus {
  border: 1px solid rgba(0,0,0,.125);
  box-shadow: none;
}

.nav-link {
  color: white;
}

.nav-link:hover {
  color: #66bfe9;
}

.sidebar {
  background: #3b4454!important;
}

.info-title {
  width: 200px;
}

.send-comment {
    cursor: pointer;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.thin-scrollbar {
}

.thin-scrollbar::-webkit-scrollbar {
}

.comment-window {
    max-height: 30vh;
    overflow: auto;
}

.chat-box {
        max-width: 400px;
}

[contenteditable=true]:empty:before{
  content: attr(data-placeholder);
  pointer-events: none;
  display: block; /* For Firefox */
}

.send-comment:hover {
    color: blue;
}

.info-butt {
  color: #0000bb;
}

.previewimg {
  max-width: 440px;
  max-height: 160px;
}

.dropdownlogo {
  max-width: 200px;
  max-height: 50px;
}

.material-icons, .material-symbols-outlined {
    vertical-align: text-bottom;
}

.add-card {
  max-width: 1200px;
}

.form-control[readonly] {
  background: #fff;
}

#mySidebar::-webkit-scrollbar {
  display: none;
}

#mySidebar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.search-box {
  max-width: 900px;
}

.doorimg{
    max-width: 100px;
    max-height: 200px;
}

.mySidebar {
  height: 100%;
  width: 0px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #ffffff;
  overflow-x: hidden;
  padding-top: 70px;
  transition: 0s;
}

.mySidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 14px;
  color: #000000;
  display: block;
  transition: 0s;
}

.mySidebar a:hover {
    background-color: #f2f2f2;
}

#mySidebar a span.material-icons {
  color: #3f3f3f;
}

.mySidebar .closebtn {
 position: absolute;
  top: 70px;
  right: 0;
  font-size: 36px;
  margin-left: 0px;
}

.main {
  margin-top: 76px;
  margin-left: 0px;
  transition: margin-left 0s;
  padding: 60px;
  padding-top: 30px;
}

.ToPrint .tableimg {
        height: 352px;
    }

.door-table tr {
   height: 32px;
   vertical-align: bottom;
}

.door-table h2 h4 {
    vertical-align: bottom;
}

@media screen and (max-height: 450px) {
  .mySidebar {padding-top: 0px;}
  .mySidebar a {font-size: 12px;}
}

@media screen and (max-width: 650px) {
  .mySidebar  {width: 0;}
  .main {margin-Left: 0;padding: 20px;}
  .navbar .greeting {display: none;}
}

.myNavbarBtn {
    font-size: 24px;
    border: none;
    background-color: inherit;
}

.myNavbarBtn:focus {
    border: none;
}

.myNavbarBtn:active {
    border: none;
}

.myNavbarBtn:hover {
    color: blue;
}

.ToPrint .door-table {
  margin: 0 auto;
}

.ToPrint .door-table td {
  border: 1px solid #e2e2e2;
}

.ToPrint .door-table tr:first-child td {
  border-top: 3px solid black;
}

.ToPrint .door-table tr td:first-child {
  border-left: 3px solid black;
}

.ToPrint .door-table tr:last-child td {
  border-bottom: 3px solid black;
}

.ToPrint .door-table tr td:last-child {
  border-right: 3px solid black;
}

.ToPrint .subheading {
    vertical-align: middle;
    text-align: center;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}

.tableNotes {
    height: 64px;
    display: block;
    border: 1px dashed black;
    border-right: 0;
    font-size: 12px;
    padding: 5px;
}

     .door-table {
         margin-bottom: 0;
         line-height: 80%;
         page-break-inside: avoid;
         page-break-after:always;
     }

     .door-table:last-of-type{page-break-after:avoid}

     .door-table tr {
         height: 16px;
         page-break-inside:avoid;
     }

    .ToPrint .tableimg {
        height: 176px;
    }

  .door-table td {
      padding: 2px!important;
      page-break-inside:avoid;
      page-break-after:auto
     }

    .ToPrint {
        padding: 0;
        font-size: 10px;
        z-index: 999;
    }

    .ToPrint-PP {
        padding: 0;
        z-index: 999;
    }

    .ToPrint h2{
        font-size: 24px;
        margin-bottom: 0;
    }

    .ToPrint h4 {
        font-size: 18px;
        margin-bottom: 0;
    }

    .printOnly {
        display:none;
    }

    .gate-heading {
      font-size: 16px!important;
    }

    .a4page {
      min-width: 665px;
      height: 1169px;
    }

    .send-method {
      border: hidden;
    }

@media print {

 
  @page {
    size: 210mm 297mm;
  }
  
  .svg-row {
      width: 80%;
  }


.ToPrint {
  position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

  .packing-list-contents {
    height: 600px;
    width: 100%;
  }

  .packing-list {
    display: block;
  }

  .no-left-border {
    border-left: hidden!important;
  }

  .no-right-border {
    border-right: hidden!important;
  }

  .door-table {
      margin-bottom: 0;
      line-height: 80%;
      page-break-inside: avoid;
      page-break-after:always;
  }

  .door-table:last-of-type{page-break-after:avoid}


  .a4page {
      margin-bottom: 0;
      page-break-inside: avoid;
      page-break-after:avoid;
      width: 901px;
  }

  .notes-div {
       width: 901px;
}

.ToPrint-PP .a4page {
    width: 100%;
}
.ToPrint-PP .notes-div {
    width: 100%;
}

  .html2pdf__page-break {
    page-break-after:always;
  }


  .a4page:last-of-type{page-break-after:avoid}

    .printOnly {
        display:block;
    }


    .navbar {
        display: none;
    }

    .mySidebar{
        display: none;
    }

    .main {
        padding-top: 0px;
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 0;
        margin-left: 0!important;
    }


    .tableInput, .tableInput:focus {
    color:#00000000;
    text-shadow: 0 0 0 #000;
    border:none;
}

.btn, .no-print {
    display:none;
}

.no-left-border {
  border-left: hidden!important;
}



.summary-instock {
  color: #ffffff!important;
}

.summary-outworks {
  color: #ffffff!important;
}

.summary-welding {
  color: #ffffff!important;
}

.summary-door {
  color: #ffffff!important;
}

.summary-panels-box {
}

.summary-gates-box {
  color: #ffffff!important;
}

.summary-custom-box {
  color: #ffffff!important;
}

.despatch {
  font-size: 14px!important;
  width: 150px!important;
}

}
