/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
  
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.noMarkerList {
  list-style: none !important;
  padding-left: 0px !important;
}

/* lot color box */
.lot-color-box {
  border: 1px solid #000;
  background-color: #000;
}

.withdrawal-nav-container {
  border: 1px solid #777;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.withdrawal-nav {
  background-color: #444;
  display: flex;
  flex: 0 0 72px;
}
.withdrawal-nav-buttons {
  display: flex;
}
.withdrawal-nav-button {
  cursor: pointer;
  height: 100%;
  width: 100px;
  background-color: #e0e0e0;
  border: 1px solid #444;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.withdrawal-nav-button:hover:not(.disabled) {
  background-color: #d0d0d0;
}
.withdrawal-nav-button.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.withdrawal-main {
  display: flex;
  flex: 1 1 auto;
  overflow: hidden auto;
}

.withdrawal-main__left {
  flex: 1 1 auto;
  flex-wrap: wrap;
  display: flex;
  overflow-y: auto;
  align-content: flex-start;
}

.withdrawal-main__right {
  flex: 0 0 30%;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
}

/* withdrawal components */
.withdrawal-container-root {
  padding: 2px;
  max-width: 20%;
  flex: 0 0 20%;
  height: 160px;
}
.withdrawal-container {
  height: 100%;
  background-color: #c8e4ff;
  position: relative;
  cursor: pointer;
}
.withdrawal-container.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.withdrawal-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #00000080;
  padding: 6px 4px;
  color: #fff;
}
.withdrawal-cart {
  flex: 1 1 auto;
  overflow: hidden auto;
}
.withdrawal-summary {
  flex: 0 0 auto;
  border-top: 3px solid #000;
}
.withdrawal-cart-item-container.selected {
  background-color: #fffde6;
}
.withdrawal-cart-item-container:hover {
  background-color: #fffef2;
}


/** helper class */
.clickable {
  cursor: pointer;
}