:root {
  --blue: #4687F3;
  --white: #E8E8E8;
  --silver: #BFBFBF;
  --dark: #172A3A;
  --Titillium: 'Titillium Web', sans-serif;
  --darkBlue: #4582DB;
  --red: #ed6d66;
  --green: #4cad56;
}

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: var(--white);
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 10px;
  }

  *::-webkit-scrollbar-track {
    background: var(--white);
  }

  *::-webkit-scrollbar-thumb {
    background-color: var(--darkBlue);
    border-radius: 0px;
    border: 0px solid #ffffff;
  }

a {
  text-decoration: none;
  color: inherit;
}
body {
  margin: 0;
  padding: 0;
  text-rendering: optimizeLegibility;
  font-family: var(--Titillium);
}
table {
  text-rendering: optimizeLegibility;
}
input {
  font-family: var(--Titillium);
}
select {
  font-family: var(--Titillium);
}
textarea {
  font-family: var(--Titillium);
}
button {
  font-family: var(--Titillium);
  cursor: pointer;
}
input:focus {
  outline: none;
}
select:focus {
  outline: none;
}
textarea:focus {
  outline: none;
}
button:focus {
  outline: none;
}
.splash {
  background-image: url("https://esticami.sirv.com/Assets/Backgrounds/blueBG-01.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: var(--Titillium);
  height: 100vh;
  width: 100%;
}
#loginBox {
  background: var(--white);
  border-radius: 10px;
  width: 400px;
  position: fixed;
  left: calc(50vw - 250px);
  padding: 50px;
  text-align: center;
  color: var(--blue);
  overflow: auto;
  opacity: 0;
  -webkit-box-shadow: 3px 3px 3px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 3px 3px 3px 0px rgba(0,0,0,0.5);
  box-shadow: 3px 3px 3px 0px rgba(0,0,0,0.5);
}
#loginBox img {
  width: 100%;
}
.inputContainer {
  margin-top: 20px;
}
.inputContainer .title {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
}
.inputContainer .input {
  border: none;
  height: 40px;
  border-bottom: solid 1px var(--dark);
  background: none;
  font-size: 14px;
  width: 100%;
  color: var(--dark);
}
.blueButton {
  height: 40px;
  background: var(--blue);
  color: var(--white);
  border: none;
  font-size: 18px;
  border-radius: 5px;
}
.darkButton {
  height: 30px;
  background: var(--dark);
  color: var(--white);
  border: none;
  font-size: 14px;
  width: 100%;
  border-radius: 5px;
}
.left {
  float: left !important;
}
.right {
  float: right !important;
}
.navigation {
  background: var(--dark);
  height: 100vh;
  width: 160px;
  position: fixed;
  left: 0;
  top: 0;
  color: var(--white);
  padding: 20px;
  font-size: 14px;
}
.navigation .nav {
  margin-bottom: 20px;
  cursor: pointer;
  height: 25px;
  line-height: 25px;
  font-weight: bold;
  text-transform: uppercase;
}
.navSelected {
  font-weight: bold;
  text-transform: uppercase;
}
.navigation .nav img {
  height: 25px;
  float: left;
  margin-right: 10px;
}
.navigation .subNav {
  margin-left: 10px;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.navigation .subNav .nav {
  height: 20px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  text-transform: capitalize;
}
#options {
  position: fixed;
  left: 180px;
  height: calC(100vh - 20px);
  width: 140px;
  background: var(--white);
  color: var(--dark);
  padding: 10px;
  padding-right: 0px;
  font-size: 14px;
  overflow-y: scroll;
}
#content {
  position: fixed;
  left: 330px;
  background: white;
  top: 0;
  width: calc(100% - 330px);
  height: 100vh;
  color: var(--dark);
  overflow-y: scroll;
}
.fixedTable {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}
.fixedTable tbody tr {
  cursor: pointer;
}
.fixedTable tbody tr:hover {
  background: var(--white);
  transition: 0.5s;
}
.statusBubble {
  height: 25px;
  line-height: 25px;
  width: 100%;
  font-size: 14px;
  background: green;
  text-align: center;
  color: white;
  border-radius: 5px;
  font-weight: bold;
}
.AwaitingArrival {
  background: orange;
  color: white;
}
.Cancelled {
  background: #A6383A;
  color: white;
}
.Received {
  background: black;
  color: white;
}
.Completed {
  background: green;
}
.InProgress {
  background: #f0b12b;
  color: #FFFFFF;
}
.Incoming {
  background: #A6383A;
  color: white;
}
.Pending {
  background: var(--darkBlue);
  color: white;
}
.Archived {
  background: var(--dark);
  color: white;
}
.Started {
  background: #ffdb8f;
  color: #ad7600;
}
.Dispatched {
  background: #82fa86;
  color: #003802;
}
.Invoiced {
  background: #24296b;
  color: white;
}
.OnHold {
  background: black;
  color: white;
}
.Query {
  background: var(--blue);
  color: white;
}
.windowContainer {
  padding: 20px;
}
.windowTitle {
  font-size: 25px;
  font-weight: bold;
  border-bottom: solid 1px var(--silver);
  height: 40px;
  margin-bottom: 10px;
}
.twoThirds {
  width: calc(66% - 10px);
  height: calc(100vh - 100px);
  background: var(--white);
  overflow-y: scroll;
}
.half {
  width: calc((100% / 2) - 10px);
  background: var(--white);
  overflow-y: scroll;
  height: calc(100vh - 150px);
}
.full {
  width: 100%;
  background: var(--white);
  overflow-y: scroll;
  height: calc(100vh - 150px);
}
.thirdLeft {
  width: calc((100% / 3) - 10px);
  margin-right: 10px;
  height: calc(100vh - 150px);
  background: var(--white);
  overflow-y: scroll;
  float: left;
}
.thirdMid {
  float: left;
  width: calc((100% / 3) - 10px);
  margin-left: 5px;
  background: var(--white);
  height: calc(100vh - 150px);
  overflow-y: scroll;
}
.thirdRight {
  float: right;
  width: calc((100% / 3) - 10px);
  margin-left: 10px;
  background: var(--white);
  height: calc(100vh - 150px);
  overflow-y: scroll;
}
.secInner {
  margin: 20px;
  margin-right: 10px;
}
.checkBox {
  height: 30px;
  width: 30px;
  border: solid 2px var(--dark);
  cursor: pointer;
  border-radius: 5px;
  line-height: 30px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: var(--darkBlue);
}
.checkBox .check {

}
#notification {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 30px;
  line-height: 30px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  background: red;
  color: white;
  display: none;
  border-radius: 5px;
  -webkit-box-shadow: 3px 3px 3px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 3px 3px 3px 0px rgba(0,0,0,0.5);
  box-shadow: 3px 3px 3px 0px rgba(0,0,0,0.5);
  z-index: 1000;
}
.inlineInput {
  background: none;
  border: none;
  font-size: 14px;
  padding: 0;
  margin: 0;
}
.optionContainer {
  margin-top: 20px;
  text-align: center;
}
.optionContainer .title {
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
}
.searchInput {
  height: 30px;
  border: none;
  background: none;
  font-size: 12px;
  width: 100%;
  border-bottom: solid 1px var(--dark);
  text-align: center;
  margin-bottom: 5px;
}
.searchContainer {
  background: white;
  border: dashed 1px var(--silver);
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}
.addSearchIcon {
  height: 30px;
  cursor: pointer;
  margin-bottom: -5px;
}
#modal {
  position: fixed;
  right: 0;
  top: 0;
  width: calc(100% - 330px);
  height: 100vh;
  z-index: 10;
  display: none;
  background: white;
}
.noData {
  color: var(--dark);
  text-align: center;
  font-size: 20px;
  margin-top: 20px;
  font-weight: bold;
}
#searchToggle {
  display: block;
}
#savedSearchToggle {
  display: none;
}
.plusButton {
  height: 25px;
  width: 25px;
  background: var(--dark);
  color: var(--white);
  text-align: center;
  line-height: 21px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  float: right;
  margin-left: 5px;
}
.dashboardTable {
  width: calc(100%);
  padding: 0px;
  table-layout: fixed;
}
.dashboardProjectContainer {
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
}
.deleteButton {
  float: right;
  border: none;
  border-radius: 5px;
  color: var(--white);
  background: var(--dark);
  height: 30px;
}
.calendar {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.calendar thead {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  height: 50px;
  font-weight: bold;
}
.calendar tbody td {
  vertical-align: text-top;
}
.calendarDate {
  font-weight: bold;
  font-size: 14px;
  height: 30px;
  line-height: 30px;
  border-bottom: solid 1px var(--dark);
}
.calendarInner {
  height: calc(((100vh - 50px) / 5) - 78px);
  overflow-y: scroll;
}
.calendarTask {
  margin-top: 5px;
  font-size: 14px;
  cursor: pointer;
  background: var(--white);
  color: var(--dark);
  width: calc(100% - 30px);
  padding-left: 10px;
  padding-right: 10px;
  text-transform: capitalize !important;
}
.taskincomplete {
  background: var(--red);
  color: var(--white);
}
.taskcomplete {
  background: var(--green);
  color: var(--white);
}
.calendarIcon {
  height: 24px;
  background: var(--dark);
  width: 24px;
  margin-top: 3px;
  border-radius: 50%;
  cursor: pointer;
  margin-left: 5px;
  line-height: 28px;
}
.calendarIcon img {
  width: 14px;
}
label {
  cursor: pointer;
}
.halfHeight {
  height: calc((100vh - 160px) / 2);
}
#forgottenSection {
  display: none;
}
#forgottenCode {
  display: none;
}
#passwordResetText {
  display: none;
}
.weekBlock {
  background: var(--dark);
  width: 30px;
  cursor: pointer;
  color: var(--white);
  text-align: center;
  vertical-align: middle !important;
}
.fixedTable thead {
  background: var(--dark);
  color: white;
  height: 50px;
  font-weight: bold;
}
.inlineSelect {
  cursor: pointer;
}
#multiContainer {

}
.navInner {
  height: calc(100vh - 80px);
}
#slideModal {
  width: 30vw;
  height: 100vh;
  position: fixed;
  z-index: 10000;
  right: -30vw;
  top: 0;
  background: white;
}
#slideModalBg {
  background: var(--dark);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  opacity: 0.8;
  display: none;
}
.slideModalHeader {
  height: 50px;
  line-height: 50px;
  background: var(--dark);
  color: var(--white);
  padding-left: 20px;
  padding-right: 20px;
  font-weight: bold;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
.slideModalInner {
  padding: 20px;
  height: calc(100vh - 70px);
  overflow-y: scroll;
}
.navFooter {
  font-weight: bold;
}
.quotePreview {
  width: 100%;
}
.plusButton img {
  height: 15px;
  margin-top: 5px;
}
#quoteGenerate {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 100vw;
}
.calendarArrow {
  width: 30px;
  height: 30px;
  background: var(--dark);
  border-radius: 5px;
  cursor: pointer;
}
.calendarArrow img {
  width: 20px;
  margin: 5px;
}
.smallInput {
  width: 100%;
}
#hhHeader {
  background: var(--dark);
  height: 50px;
  color: white;
}
#hhHeader #logo {
  height: 40px;
  margin: 5px;
}
#hhBody {
  height: calc(100vh - 56px);
  overflow-y: scroll;
  width: 100%;
}
.thirdContainer {
  width: calc(100% / 3);
  float: left;
  text-align: center;
  color: var(--dark);
  position: relative;
}
.thirdContainer .inner {
  margin: 10px;
  background: #eaeaea;
  padding: 10px;
  border-radius: 10px;
}
.thirdContainer .inner img {
  width: 100%;
}
.hhRoundle {
  position: absolute;
  background: red;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  color: white;
  line-height: 30px;
  right: 0;
  top: 0;
}
.thirdContainer .inner .text {
  font-weight: bold;
}
.padded {
  padding: 20px;
}
.tHead {
  background: var(--dark);
  color: white;
  font-weight: bold;
}
.blueTable {
  width: 100%;
  border: solid 1px var(--dark);
  border-collapse: collapse;
  font-size: 13px;
}
.halfWidth {
  width: calc(50% - 5px) !important;
}
.hhRoundle {
  font-size: 12px;
  text-shadow: 1px 1px #000000;
}
.goodsInStatus {
  height: 40px;
  width: 5px;
}
.hhFooter {
  height: 50px;
  position: fixed;
  left: 0;
  bottom: 0;
  background: var(--dark);
  color: white;
  line-height: 50px;
  text-align: center;
  width: 100%;
}
#barcodeScan {
  position: fixed;
  left: 50px;
  bottom: -100vh;
  width: calc(100% - 100px);
  height: auto;
  background: white;
  z-index: 100;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
#barcodeScanBG {
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: var(--dark);
  opacity: .8;
  display: none;
}
#barcodeInput {
  font-family: 'Libre Barcode 39', cursive;
  width: 100%;
  font-size: 30px;
  border: none;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
#barcodeScan h3 {
  text-align: center;
  color: var(--dark);
  margin: 0;
  padding: 0;
}
.kioskCalendarRow {
  float: left;
  width: calc((100% / 5) - 51px);
  height: 100vh;
  background: #eaeaea;
  position: relative;
  z-index: 1;
  border-right: solid 1px #c9c9c9;
}
.kioskCalendarRowToday {
  float: left;
  width: calc((100% / 5) + 200px);
  height: 100vh;
  box-shadow: 1px 1px 11px 0px rgba(0,0,0,0.75);
  -webkit-box-shadow: 1px 1px 11px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 1px 1px 11px 0px rgba(0,0,0,0.75);
  position: relative;
  z-index: 2;
}
.kioskTitle {
  color: var(--darkBlue);
  font-weight: bold;
  font-size: 20px;
  border-bottom: solid 2px var(--darkBlue);
  height: 40px;
}
.kioskTask {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 10px;
}
.calendarTaskSubtitle {
  font-size: 16px;
  font-style: oblique;
  margin-left: 10px;
  margin-top: -5px;
  font-weight: normal;
}
.campaignContainer {
  border: dashed 1px var(--dark);
  padding: 20px;
  cursor: pointer;
  overflow: auto;
  margin-bottom: 20px;
}
.campaignContainer:hover {
  background: #eaeaea;
  transition: 0.5s;
}
.campaignContainer .campaignTitle {
  font-size: 20px;
  font-weight: bold;
  color: var(--dark);
  border: none;
  background: none;
  width: 100%;
}
.textRight {
  text-align: right;
}
.textLeft {
  text-align: left;
}
.emailNav {
  width: 80px;
  background: var(--darkBlue);
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.53);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.53);
  z-index: 100;
}
.emailNav .nav {
  height: 80px;
  cursor: pointer;
  width: 100%;
  color: white;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}
.emailNav .nav:hover {
  background: var(--dark);
  transition: 0.5s;
}
.emailNav .nav .navIcon {
  height: 35px;
  margin-bottom: -0px;
}
#emailSubNav {
  position: fixed;
  left: 80px;
  height: calc(100vh - 40px);
  width: 400px;
  background: #eaeaea;
  z-index: 99;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.53);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.53);
padding: 20px;
overflow-y: scroll;
}
.addModuleHere {
  height: 15px;
  line-height: 30px;
  overflow: hidden;
  color: grey;
  text-align: center;
  cursor: pointer;
  opacity: 0;
}
.addModuleHere:hover {
  height: 30px;
  line-height: 30px;
  transition: 0.5s;
  border: dashed 1px grey;
  margin-top: 5px;
  margin-bottom: 5px;
  opacity: 1;
}
#emailRender {
  position: fixed;
  right: 0;
  top: 0;
  width: calc(100% - 520px);
  height: 100vh;
  z-index: 98;
  overflow-y: scroll;
}
.html {
  background: var(--dark);
  color: white;
  font-family: monospace;
  width: calc(100% - 20px);
  height: 200px;
  padding: 10px;
  margin: 0px;
  border: none;
  border-radius: 5px;
}
.emailTitle {
  height: 40px;
  margin-bottom: 20px;
  border-bottom: solid 1px black;
  font-size: 20px;
  font-weight: bold;
}
.scrollBox {
  background: white;
  height: 400px;
  overflow-y: scroll;
  border: solid 1px grey;
  margin-bottom: 10px;
}
.anaTitle {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.anaText {
  font-size: 30px;
  color: var(--darkBlue);
  text-align: center;
  margin-top: -10px;
}
.thirdWidth {
  width: calc(100% / 3);
  text-align: center;
}
#personEmails {
  height: calc(100vh - 270px);
}
.recTypePerson {
  height: 20px;
  line-height: 20px;
  padding-left: 10px;
  padding-right: 10px;
  float: right;
  color: white;
  background: var(--darkBlue);
  border-radius: 5px;
  margin-top: 5px;
}
.recTypeCompany {
  height: 20px;
  line-height: 20px;
  padding-left: 10px;
  padding-right: 10px;
  float: right;
  color: white;
  background: var(--dark);
  border-radius: 5px;
  margin-top: 5px;
}
.hook {
  background: var(--dark);
  color: white;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
  cursor: pointer;
  float: left;
  font-size: 12px;
  padding-left: 10px;
  padding-right: 10px;
  margin-right: 10px;
}
