body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.container-fluid {
  display: flex;
  margin: 0;
  padding: 0;
  height: 100vh;

  overflow: hidden;
}
.menu {
  width: 250px;
  background-color: rgb(133, 106, 143);
  display: flex;
  height: 100vh;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.menu .logo {
  height: 30px;
  display: flex;
  justify-content: center;
}
.menuContent {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  padding-left: 30px;
}
a {
  color: white;
  text-decoration: none;
}
a:hover {
  color: white;
  font-weight: bold;
}
.item {
  width: 100%;
  min-width: 160px;
  text-align: left;
  height: 50px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid white;
}
.item.active {
  font-weight: bold;
}
.content {
  overflow: scroll;
  width: 100%;
  height: 100%;
  padding: 40px;
  background-color: #f0f0f0;
}
.logout-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  color: rgb(133, 106, 143);
  background: white;
  padding: 8px 30px;
  font-size: 16px;
  min-width: 64px;
  font-weight: 500;
  line-height: 1.75;
  border-radius: 50px;
  text-transform: none;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.logout-btn:hover {
  color: rgb(133, 106, 143);
  background-color: #f0f0f0;
}
.login {
  width: 100%;
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.login img {
  display: flex;
  justify-content: center;
  width: 210px;
  margin-bottom: 30px;
}
.form-control {
  background-color: transparent;
  border: 0px;
  border-radius: 0px;
  border-bottom: 1px solid rgb(133, 106, 143);

  box-shadow: none;
  outline: 0 none;
}
.form-control:focus {
  border-bottom: 2px solid rgb(133, 106, 143);
  box-shadow: none;
  outline: 0 none;
  background-color: inherit !important;
  transition: linear 0.2s;
}
.form-control:focus::placeholder {
  padding-left: 10px;
  color: rgb(133, 106, 143);
}
#login-form-submit {
  background-color: rgb(133, 106, 143);
  border: none;
  margin-top: 30px;
  margin-left: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: ease-in-out 0.5s;
}
#login-form-submit:hover {
  background-color: #493650;
}
#login-error-message-div {
  padding: 10px;
  padding-top: 21px;
}

/* SPINNER */
.spinner-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 40px;
  background-color: #f0f0f0;
  justify-content: center;
  align-items: center;
}
.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(133, 106, 143);
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.delivery-info {
  height: 30px;
  overflow: hidden;
}
.delivery-height {
  height: auto;
  overflow: auto;
}
.delivery {
  column-span: 3;
  width: 420px;
  padding-left: 30px;
}
.delivery::before {
  content: "+";
}
.delivery:hover {
  background-color: wheat;
  cursor: pointer;
}
.bg-row-done {
  background-color: darkgrey;
}
.bg-row-kit-pending {
  background-color: darkkhaki;
}
.bg-row-payment-done {
  background-color: darksalmon;
}
.bg-row-result-available {
  background-color: 	#afd69b;
}
.bg-row-kit-not-paid {
  
  background-color: #e89e99;
}
.bg-row-delivery-soon {
  background-color: #ffa500; 
}