.heading {
  font-weight: bold;
  letter-spacing: -0.24px;
  line-height: 27px;
}
.heading[data-size="13"] {
  font-size: 13px;
}
.heading[data-size="15"] {
  font-size: 15px;
}
@media (max-width: 767px) {
  .heading[data-size="15"] {
    font-size: 13px;
  }
}
.heading[data-size="17"] {
  font-size: 17px;
}
.heading[data-size="20"] {
  font-size: 20px;
}
.heading[data-size="24"] {
  font-size: 24px;
}
.heading[data-size="25"] {
  font-size: 25px;
}
.heading[data-size="30"] {
  font-size: 30px;
}
.heading.h-15 {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .heading.h-15 {
    font-size: 1.2rem;
  }
}
.heading.h-12 {
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .heading.h-12 {
    font-size: 1.1rem;
  }
}

.Avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.Avatar img {
  width: 100%;
  height: auto;
}
.Avatar .avatar-name {
  width: 100%;
  height: 100%;
  background-color: #0073ff;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: capitalize;
}
.Avatar.sm {
  width: 40px;
  height: 40px;
}
.Avatar.md {
  width: 60px;
  height: 60px;
}
.Avatar.lg {
  width: 80px;
  height: 80px;
}
.Avatar.xl {
  width: 100px;
  height: 100px;
}

.Nav-top {
  position: fixed;
  z-index: 990;
  top: 0;
  right: 0;
  width: calc(100% - 94px);
  height: 132px;
  box-sizing: border-box;
  display: flex;
  flex-flow: row;
  align-items: center;
  background-color: transparent;
  transition: all 0.5s ease;
}
.Nav-top.darken-background {
  background-color: #cde0f5;
  box-shadow: 5px 5px 38px 3px #cde0f5;
  transition: all 0.5s ease;
}
@media (max-width: 900px) {
  .Nav-top {
    height: 70px;
    padding-left: 0;
    width: 100%;
  }
}
.Nav-top .Nav-top-container {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 0 2rem 0 0;
}
@media (max-width: 900px) {
  .Nav-top .Nav-top-container {
    padding: 0 1rem;
  }
}
.Nav-top .Nav-top-container .logo {
  padding-left: 70px;
}
.Nav-top .Nav-top-container .logo img {
  width: 288px;
}
@media (max-width: 1180px) {
  .Nav-top .Nav-top-container .logo img {
    width: 200px;
  }
}
@media (max-width: 1117px) {
  .Nav-top .Nav-top-container .logo {
    display: none;
  }
}
@media (max-width: 900px) {
  .Nav-top .Nav-top-container .Menu-wallet {
    display: none;
  }
}
@media (max-width: 900px) {
  .Nav-top .Nav-top-container .Select-location {
    display: none;
  }
}
.Nav-top .Nav-top-container .system-configuration-button {
  margin-right: 1rem;
  border: 2px solid #0073ff !important;
}
.Nav-top .Nav-top-container .notification-button {
  position: relative;
}
.Nav-top .Nav-top-container .notification-button .notification-badge {
  position: absolute;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  margin-right: 5px;
  margin-top: 5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ff19b7;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  border: 4px solid #ff19b7;
  font-size: 11px;
}
.Nav-top .Nav-top-container .notification-button .notification-badge.error {
  background-color: #d42a2a;
  border-color: #d42a2a;
}
.Nav-top .Nav-top-container .Menu-user {
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 3px solid transparent;
}
.Nav-top .Nav-top-container .Menu-user .Menu-user-avatar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #0073ff;
  width: 50px;
  height: 50px;
}
.Nav-top .Nav-top-container .Menu-user .Menu-user-avatar.sm {
  width: 50px;
  height: 50px;
}
.Nav-top .Nav-top-container .Menu-user .Menu-user-avatar.md {
  width: 60px;
  height: 60px;
}
.Nav-top .Nav-top-container .Menu-user .Menu-user-avatar.lg {
  width: 80px;
  height: 80px;
}
.Nav-top .Nav-top-container .Menu-user .Menu-user-avatar.xl {
  width: 100px;
  height: 100px;
}
.Nav-top .Nav-top-container .Menu-user.active {
  border-bottom: 3px solid #0073ff;
}

.Nav-side {
  position: fixed;
  z-index: 990;
  width: 94px;
  height: 100vh;
  top: 0;
  background: linear-gradient(180deg, #fbfbfb 0%, #edf4fb 100%);
  transition: all 0.25s ease;
}
@media (max-width: 900px) {
  .Nav-side {
    left: -70%;
    position: fixed;
    z-index: 990;
    width: 70%;
    height: 100vh;
    padding-top: 1rem;
  }
  .Nav-side.isMenuOpen {
    left: 0;
  }
}
@media (min-width: 901px) {
  .Nav-side {
    display: flex;
    flex-flow: column;
    justify-content: center;
  }
}
@media (min-width: 901px) {
  .Nav-side .Menu-wallet {
    display: none;
  }
}
@media (min-width: 901px) {
  .Nav-side .Select-location {
    display: none;
  }
}

.Nav-side-mobile-header {
  display: flex;
  flex-flow: row;
  align-items: center;
  margin-left: 4rem;
  margin-right: 4rem;
  width: 90%;
}
@media (min-width: 901px) {
  .Nav-side-mobile-header {
    display: none;
  }
}
@media (max-width: 864px) {
  .Nav-side-mobile-header {
    margin-left: 1rem;
    margin-right: 1rem;
    top: 1rem;
  }
}
.Nav-side-mobile-header .close-icon-container {
  margin-left: auto;
  cursor: pointer;
}
.Nav-side-mobile-header .close-icon-container path,
.Nav-side-mobile-header .close-icon-container svg {
  width: 30px;
}

.burger-menu {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 100;
}
@media (min-width: 901px) {
  .burger-menu.burger-nav {
    display: none;
  }
}
@media (min-width: 901px) {
  .burger-menu.isOpen .dish .burger-item.bread-bottom {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .burger-menu.isOpen .dish .burger-item.bread-top {
    transform: rotate(45deg);
    top: 50%;
  }
  .burger-menu.isOpen .dish .burger-item.meat {
    width: 0;
  }
  .burger-menu.isOpen .dish .burger-item.bread-bottom {
    width: 100%;
    transform: rotate(-45deg);
    top: 50%;
  }
}
.burger-menu .dish {
  width: 30px;
  height: 20px;
  position: relative;
}
.burger-menu .dish .burger-item {
  width: 100%;
  height: 2px;
  background-color: #0073ff;
  position: absolute;
  transition: all 0.1s ease;
}
.burger-menu .dish .burger-item.bread-top {
  top: 0;
}
.burger-menu .dish .burger-item.meat {
  top: calc(50% - 1px);
}
.burger-menu .dish .burger-item.bread-bottom {
  bottom: 0;
}

.menu-item {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  height: 88px;
  cursor: pointer;
  color: #29387c;
  font-size: 13px;
}
@media (max-width: 900px) {
  .menu-item {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: left;
    height: auto;
    font-size: 20px;
    padding: 1rem;
  }
}
.menu-item .Icon {
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .menu-item .Icon {
    margin-bottom: 0;
    margin-right: 20px;
  }
}
.menu-item path,
.menu-item svg {
  fill: #29387c;
  width: 28px;
  height: 28px;
}
@media (max-width: 901px) {
  .menu-item path,
.menu-item svg {
    width: 24px;
    height: 24px;
  }
}
.menu-item:hover {
  color: #0073ff;
}
.menu-item:hover path {
  fill: #0073ff;
}
.menu-item.active {
  color: #0073ff;
}
.menu-item.active .shadow {
  position: absolute;
  height: 1px;
  width: 1px;
  border-radius: 50%;
  background-color: #0073ff;
  box-shadow: 0 0 150px 40px #0073ff;
}
.menu-item.active path {
  fill: #0073ff;
}

.dropdown-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}

.menu-dropdown.open {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.Menu-wallet {
  min-width: 95px !important;
}
@media (max-width: 900px) {
  .Menu-wallet {
    margin-left: 1rem;
    margin-bottom: 1rem;
    padding-right: 10px !important;
    padding-left: 10px !important;
    width: 210px;
  }
}
.Menu-wallet .credit {
  font-size: 16px;
  line-height: 21px;
  white-space: nowrap;
}
.Menu-wallet .navigate {
  font-size: 11px;
  line-height: 13px;
}

.Nav-side-mobile-backdrop {
  position: fixed;
  z-index: 990;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.5);
  transition: all 0.1s ease;
}
@media (min-width: 901px) {
  .Nav-side-mobile-backdrop {
    display: none;
  }
}

.Header-button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  padding-right: 5px;
  padding-left: 5px;
  min-width: 40px;
  height: 50px;
  border-radius: 8px;
  border: 2px solid #0073ff;
  color: #29387c;
  cursor: pointer;
  margin-right: 1rem;
}
.Header-button.active {
  background-color: #0073ff;
  color: #ffffff;
}

.avatar-upload-container {
  position: relative;
}
.avatar-upload-container .avatar {
  background-color: #f4f4f4;
  border: 2px solid #0073ff;
  width: 200px !important;
  height: 200px !important;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
}
.avatar-upload-container .avatar img {
  width: 100%;
  height: auto;
}
.avatar-upload-container .profile-upload {
  position: absolute;
  right: 0;
}
.avatar-upload-container .profile-upload input {
  display: none;
}
.avatar-upload-container .profile-upload label {
  cursor: pointer;
}

.document-container .file-upload {
  display: grid;
  grid-template-columns: 30% 60% 10%;
  align-items: center;
}
.document-container .file-upload input {
  display: none;
}
.document-container .file-upload label {
  display: none;
}
.document-container .file-upload .custom-file-upload {
  border: 1px solid #050505;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 5px;
}
.document-container .file-upload .file-name {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-left: 5px;
}
.document-container .file-upload svg {
  cursor: pointer;
}

.landing-page-header {
  z-index: 999;
  position: fixed;
  top: 0;
  width: 100%;
  height: 130px;
  padding-left: 100px;
  display: flex;
  align-items: center;
  background-color: #ffffff;
}
@media (max-width: 1024px) {
  .landing-page-header {
    padding-left: 0;
    height: 75px;
  }
}
.landing-page-header .logo {
  padding-left: 3rem;
}
.landing-page-header .logo img {
  width: 380px;
}
@media (max-width: 1024px) {
  .landing-page-header .logo {
    padding-left: 1rem;
  }
  .landing-page-header .logo img {
    width: 250px;
  }
}

.landing-page-background {
  top: 130px;
  height: calc(100vh - 130px);
  width: 100%;
  background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../0eb736c258f4c2baba3a.jpg);
  background-size: cover;
  -webkit-clip-path: polygon(0 0, 60% 0, 50% 100%, 0% 100%);
          clip-path: polygon(0 0, 60% 0, 50% 100%, 0% 100%);
  position: absolute;
}
@media (max-width: 1024px) {
  .landing-page-background {
    background-image: none;
  }
}

.landing-page-columns {
  position: relative;
  width: 100vw;
  height: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: 50% 50%;
  margin-top: 130px;
}
@media (max-width: 1024px) {
  .landing-page-columns {
    grid-template-columns: 100%;
    top: 50px;
  }
}
.landing-page-columns .left-column {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.landing-page-columns .left-column .left-column-content {
  color: white;
  width: 70%;
}
@media (max-width: 1300px) {
  .landing-page-columns .left-column .left-column-content {
    width: 80%;
  }
}
@media (max-width: 1024px) {
  .landing-page-columns .left-column .left-column-content {
    width: 90%;
  }
}
.landing-page-columns .left-column .left-column-content .title {
  font-size: 80px;
  font-weight: 600;
}
@media (max-width: 1300px) {
  .landing-page-columns .left-column .left-column-content .title {
    font-size: 60px;
  }
}
@media (max-width: 1024px) {
  .landing-page-columns .left-column .left-column-content .title {
    font-size: 40px;
    color: #2b3678;
  }
}
.landing-page-columns .left-column .left-column-content .subtitle {
  font-size: 30px;
  margin-top: 3rem;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .landing-page-columns .left-column .left-column-content .subtitle {
    font-size: 25px;
    color: #2b3678;
  }
}
.landing-page-columns .right-column {
  display: flex;
  flex-flow: column;
  align-items: center;
}
@media (max-width: 1024px) {
  .landing-page-columns .right-column {
    margin-top: 2rem;
  }
}
.landing-page-columns .right-column .right-column-content {
  font-weight: 300;
  width: 41%;
  padding-left: 7rem;
}
@media (max-width: 1400px) {
  .landing-page-columns .right-column .right-column-content {
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .landing-page-columns .right-column .right-column-content {
    width: 60%;
  }
}
@media (max-width: 1024px) {
  .landing-page-columns .right-column .right-column-content {
    width: 90%;
    padding-left: 0;
  }
}
.landing-page-columns .right-column .description {
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
  color: #2b3678;
}
@media (max-width: 1024px) {
  .landing-page-columns .right-column .description {
    font-size: 20px;
  }
}
.landing-page-columns .right-column .icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 2rem;
}
.landing-page-columns .right-column .icons .landing-page-icon-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.landing-page-columns .right-column .icons .landing-page-icon-container.container {
  justify-content: center;
}
.landing-page-columns .right-column .icons .landing-page-icon-container.tir {
  justify-content: end;
}
.landing-page-columns .right-column .start-button {
  margin-top: 6rem;
  padding: 2rem;
  font-size: 25px;
  font-weight: normal;
}

.chip {
  width: 100%;
  height: 24px;
  border-radius: 40px;
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  padding: 2px;
}
.chip.CREATED {
  background-color: #29387c;
  color: #ffffff;
}
.chip.UPDATED, .chip.UPDATED_FOR_LOGISTIC_OPERATOR, .chip.ON_RETURN_APPROVAL, .chip.ON_PICKUP_APPROVAL, .chip.ON_TRANSFER_APPROVAL {
  background-color: #ffd557;
  color: #29387c;
}
.chip.ACTIVE, .chip.ON_RETURN, .chip.ON_PICKUP {
  background-color: #70e6ff;
  color: #29387c;
}
.chip.COMPLETED, .chip.BALANCED, .chip.ON_SALE {
  background-color: #1b9e00;
  color: #ffffff;
}

.credit-debit {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.09px;
  line-height: 17px;
  text-align: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #ffffff;
}
.credit-debit.debit {
  background-color: #ff19b7;
}
.credit-debit.logisticOperator {
  background-color: #26ca6d;
}
.credit-debit.credit {
  background-color: #0073ff;
}
.credit-debit.more {
  background-color: #29387c;
}

html,
body {
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  overflow-x: hidden;
  font-family: "Open Sans";
}

.m-1 {
  margin: 1rem;
}

.mb-05 {
  margin-bottom: 0.5rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-8 {
  margin-bottom: 8rem;
}

.mt-05 {
  margin-top: 0.5rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-6 {
  margin-top: 6rem;
}

.m-auto {
  margin: auto;
}

.ml-auto {
  margin-left: auto;
}

.mt-auto {
  margin-top: auto;
}

.ml-05 {
  margin-left: 0.5rem;
}

.ml-1 {
  margin-left: 1rem;
}

.ml-2 {
  margin-left: 2rem;
}

.ml-4 {
  margin-left: 4rem;
}

.ml-xs {
  margin-left: 0.25rem;
}

.ml-sm {
  margin-left: 0.5rem;
}

.mr-1 {
  margin-right: 1rem;
}

.mr-4 {
  margin-right: 4rem;
}

.mr-xs {
  margin-right: 0.25rem;
}

.mr-sm {
  margin-right: 0.5rem;
}

.mr-sm {
  margin-right: 0.5rem;
}

.p-1 {
  padding: 1rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.oy-hidden {
  overflow-y: hidden;
}

.color-black {
  color: #050505;
}

.d-flex {
  display: flex;
}

.white-space-nowrap {
  white-space: nowrap;
}

.justify-end {
  justify-content: flex-end;
}

.font-size-xs {
  font-size: 11px;
}

.font-size-sm {
  font-size: 13px;
}

.font-size-md {
  font-size: 16px;
}

.font-size-lg {
  font-size: 30px;
}

.font-weight-bold {
  font-weight: 700;
}

img,
svg {
  display: block;
}

.Icon {
  width: 24px;
  height: 24px;
}
.Icon svg,
.Icon path {
  transition: all 0.25s ease;
}
.Icon.white svg,
.Icon.white path {
  fill: #ffffff;
}
.Icon.primary svg,
.Icon.primary path {
  fill: #0073ff;
}
.Icon.text svg,
.Icon.text path {
  fill: #29387c;
}
.Icon.success svg,
.Icon.success path {
  fill: #26ca6d;
}
.Icon.orange svg,
.Icon.orange path {
  fill: #fc8e34;
}
.Icon.warning svg,
.Icon.warning path {
  fill: #ffb700;
}
.Icon.error svg,
.Icon.error path {
  fill: #d42a2a;
}
.Icon.purple svg,
.Icon.purple path {
  fill: #2b3678;
}

.link {
  display: flex;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  transition: all 0.25s ease;
}
.link.primary {
  color: #29387c;
}
.link.primary:hover {
  color: #232f69;
}

.app-container .app-content {
  width: 100%;
  min-height: 100vh;
  flex: 1;
  box-sizing: border-box;
  background: white;
  background: linear-gradient(180deg, white 0%, #b7cceb 53%, #9ea4c6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#9ea4c6",GradientType=1);
  display: flex;
  flex-direction: column;
  padding: calc(40px + 5rem) 1rem 1rem;
  color: #29387c;
  transition: padding 0.15s ease;
}
@media (min-width: 901px) {
  .app-container .app-content {
    padding: calc(100px + 5rem) 1rem 1rem calc(100px + 5rem);
  }
}

.Page-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  width: 100%;
}
.Page-header h1 {
  margin: 0;
  font-size: 2rem;
}
@media (max-width: 1023px) {
  .Page-header h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .Page-header h1 {
    font-size: 1.5rem;
  }
}
@media (max-width: 479px) {
  .Page-header h1 {
    font-size: 1.2rem;
  }
}

.signUp-terms {
  font-size: 0.8rem;
  color: #666666;
}
.signUp-terms a {
  color: #0073ff;
}

.ml-auto {
  margin-left: auto;
}

.flex-flow-row {
  display: flex;
  flex-flow: row;
}

.flex-flow-column {
  display: flex;
  flex-flow: column;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.pointer {
  cursor: pointer;
}

.capitalize {
  text-transform: capitalize;
}

.lostEmail {
  color: #d42a2a;
  font-size: 13px;
}

.error {
  color: #d42a2a;
}

.td-first-row-title.sm {
  font-size: 12px;
}
.td-first-row-title.md {
  font-size: 15px;
}
.td-first-row-title.bold {
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

.react-datepicker-popper {
  z-index: 999;
}

.border-solid-black {
  border: 1px solid #050505;
}

.gap-0 {
  gap: 0 !important;
}
.Select {
  position: relative;
}
.Select .select-input-container {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid #050505 !important;
  border-radius: 0.5rem;
  min-width: 180px;
  cursor: pointer;
  background-color: #f4f4f4;
}
.Select .select-input-container .Select-input {
  font-family: "Open Sans";
  box-sizing: border-box;
  width: 100%;
  font-size: 12px !important;
  padding-left: 1rem !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border: none;
  cursor: pointer;
  background-color: #f4f4f4;
  border-radius: 0.5rem;
}
.Select .select-input-container .Select-input:focus {
  outline: none;
}
.Select .Select-options {
  position: absolute;
  min-width: -moz-fit-content;
  min-width: fit-content;
  z-index: 999;
  height: auto;
  max-height: 150px;
  top: 0;
  right: 0;
  background-color: #ffffff;
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  box-shadow: 0px 7px 35px -14px rgba(0, 0, 0, 0.5);
}
.Select .Select-options .Select-option {
  padding: 0.5rem 1rem;
  border-top: 1px solid #e0e0e0;
  cursor: pointer;
  font-size: 0.9rem;
}
.Select .Select-options .Select-option:first-of-type {
  border-top: 0;
}
.Select .Select-options .Select-option.active {
  font-weight: 700;
  color: #0073ff;
}
.Select .Select-options .Select-option:hover {
  background-color: #f4f4f4;
}
.Select .Select-clear,
.Select .Select-arrow {
  top: 0;
  right: 0;
  height: 100%;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Select .Select-clear {
  cursor: pointer;
}
.Select .Select-arrow {
  pointer-events: none;
}

.Multi-select {
  display: flex;
  flex-flow: wrap;
}
.Multi-select .Multi-select-option {
  background-color: #f4f4f4;
  padding: 0.5rem;
  border-radius: 0.5rem;
  margin: 0 0.5rem 0.5rem 0;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}
.Multi-select .Multi-select-option.selected {
  background-color: #0073ff;
  color: #ffffff;
}
.Select-location {
  width: 210px;
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  border: solid 2px #0073ff;
  border-radius: 8px;
  padding-right: 10px;
  padding-left: 10px;
  height: 50px;
}
.Select-location .info {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
  margin-bottom: 5px;
}
@media (max-width: 900px) {
  .Select-location {
    width: 210px;
    margin-left: 1rem;
    margin-bottom: 1rem;
  }
}
.button-group {
  display: flex;
}
.button-group .button {
  margin-right: 0.5rem;
}
.button-group .button:last-of-type {
  margin-right: 0;
}

.button {
  display: flex;
  position: relative;
  cursor: pointer;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0;
  outline: none;
  white-space: nowrap;
  font-size: 100%;
  line-height: 1;
  font-family: "Open Sans";
  text-decoration: none;
  box-sizing: border-box;
  color: #29387c;
  transition: all 0.25s ease;
}
.button:focus {
  outline: none;
}
.button.xs {
  padding: 0.4rem;
  font-size: 10px;
}
.button.sm {
  padding: 0.7rem;
  font-size: 12px;
}
.button.md {
  padding: 1.2rem;
  font-size: 17px;
}
.button.lg {
  padding: 1.5rem;
  font-size: 1.1rem;
}
.button.xl {
  padding: 2rem;
  font-size: 1.2rem;
}
.button.fixed-height-30 {
  height: 30px;
}
.button.fixed-height-40 {
  height: 40px;
}
.button.primary {
  background-color: #0073ff;
  color: #ffffff;
}
.button.primary:hover:not([disabled]) {
  background-color: #0068e6;
  text-decoration: none;
  box-shadow: 0px 7px 35px -14px rgba(0, 0, 0, 0.75);
}
.button.transparent {
  background-color: transparent;
  color: #0073ff;
  border: 2px solid #0073ff;
}
.button.transparent:hover:not([disabled]) {
  background-color: lightgray;
  text-decoration: none;
  box-shadow: 0px 7px 35px -14px rgba(0, 0, 0, 0.75);
}
.button.white {
  background-color: #ffffff;
  color: #29387c;
}
.button.white:hover:not([disabled]) {
  background-color: #f4f4f4;
}
.button.white.border-primary {
  border: 1px solid #0073ff;
}
.button.light-grey {
  background-color: #eff3f8;
  color: #29387c;
}
.button.light-grey:hover:not([disabled]) {
  background-color: #e0e0e0;
}
.button.purple {
  background-color: #2b3678;
  color: #ffffff;
}
.button.purple:hover:not([disabled]) {
  background-color: #242e65;
  text-decoration: none;
  box-shadow: 0px 7px 35px -14px rgba(0, 0, 0, 0.75);
}
.button.red {
  background-color: #d42a2a;
  color: #ffffff;
}
.button.red:hover:not([disabled]) {
  background-color: #bf2626;
  text-decoration: none;
  box-shadow: 0px 7px 35px -14px rgba(0, 0, 0, 0.75);
}
.button.border-black {
  border: 1px solid #050505;
}
.button[disabled] {
  opacity: 0.5;
  cursor: default;
}
.button[disabled]:hover {
  box-shadow: none;
}
.button.full-width {
  width: 100%;
}

.button-upload input {
  display: none;
}
.checkout-container {
  display: flex;
  flex-flow: row;
  justify-content: space-evenly;
  height: calc(100vh - 199px);
}
@media (max-width: 1300px) {
  .checkout-container {
    flex-flow: column;
    height: 100%;
  }
}
.checkout-container .checkout-list {
  width: 60%;
}
@media (max-width: 1300px) {
  .checkout-container .checkout-list {
    width: 100%;
  }
}
.checkout-container .checkout-column {
  display: flex;
  flex-flow: column;
  margin-left: 1rem;
  border-radius: 1.5rem;
  background-color: #ffffff;
  padding: 1rem;
  width: 40%;
}
.checkout-container .checkout-column .checkout-summary {
  border: 1px solid #29387c;
  height: 100%;
  max-height: 600px;
  margin-bottom: 1rem;
  border-radius: 1.5rem;
}
.checkout-container .checkout-column .checkout-total {
  display: flex;
  flex-flow: row;
  align-items: center;
  font-size: 20px;
  margin-bottom: 1rem;
}
.checkout-container .checkout-column .checkout-total .infobox {
  margin-left: 1rem;
  cursor: pointer;
}
.checkout-container .checkout-column .checkout-total .tooltip {
  background-color: #0073ff;
}
.checkout-container .checkout-column .payment-container {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-top: auto;
  width: 100%;
}
.checkout-container .checkout-column .payment-container .form {
  width: 100%;
}
@media (max-width: 1300px) {
  .checkout-container .checkout-column {
    margin-top: 1rem;
    padding: 1rem;
    margin-left: 0;
    width: calc(100% - 2rem);
  }
}
.checkout-cart-button-container {
  position: relative;
  z-index: 991;
}
.checkout-cart-button-container .Shopping-cart-button {
  position: relative;
}
.checkout-cart-button-container .Shopping-cart-button .shopping-cart-counter {
  position: absolute;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  top: 0;
  margin-top: 10px;
  z-index: 991;
  color: #fc8e34;
  font-weight: bold;
  width: 20px;
  font-size: 1.4em;
}
.checkout-cart-button-container .Shopping-cart {
  display: flex;
  flex-flow: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 60vh;
  margin-top: 98px;
  margin-right: 1rem;
  border-radius: 1.3rem;
  background-color: white;
  padding: 1rem;
}
@media (max-width: 990px) {
  .checkout-cart-button-container .Shopping-cart {
    position: fixed;
    margin-right: 1rem;
    margin-left: 1rem;
    width: calc(100% - 4rem);
    height: calc(100vh - 128px);
  }
}
.checkout-cart-button-container .checkout-button {
  display: flex;
  flex-flow: row;
  justify-content: center;
  padding: 1rem;
  margin-top: auto;
}

.backdrop {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.5);
  transition: all 0.1s ease;
  opacity: 0;
}
.backdrop.opened {
  opacity: 1;
}
.product-quote-card-container {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 1rem;
  border-radius: 1.5rem;
  background-color: #ffffff;
}
.product-quote-card-container .info-row {
  display: flex;
  flex-flow: row;
  align-items: center;
  width: 100%;
}
.product-quote-card-container .info-row .product-quote-card-image {
  margin-left: 1rem;
  width: 30px;
  padding: 3px;
  border: solid 1px #eff3f8;
  border-radius: 0.5rem;
}
.product-quote-card-container .info-row .product-info {
  margin-left: 1rem;
  margin-right: 1rem;
  max-width: 50%;
}
.product-quote-card-container .info-row .product-info .name-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-quote-card-container .info-row .last-column {
  min-width: 30%;
  margin-left: auto;
}
.product-quote-card-container .button-row {
  display: flex;
  flex-flow: row;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
}
.product-quote-card-container.notAvailable:first-child {
  border-top-left-radius: 1.3rem;
  border-top-right-radius: 1.3rem;
}
.product-quote-card-container.notAvailable {
  background-color: #eff3f8;
  height: 100%;
  margin-top: 0;
  padding-top: 2rem;
}
.product-quantity-container {
  display: flex;
  flex-flow: column;
}
.product-quantity-container .product-quantity {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}
.product-quantity-container .product-quantity.color-error {
  color: #d42a2a;
}
.product-quantity-container .product-quantity.color-success {
  color: #26ca6d;
}
.product-quantity-container .product-quantity .quantity-input input {
  font-size: 14px;
  text-align: center;
  width: 50px;
  height: 20px;
  box-sizing: border-box;
  outline: none;
  border: 1px solid #050505;
  border-radius: 8px;
}
.product-quantity-container .product-quantity .quantity-input input:disabled {
  font-size: 14px;
  padding: 0;
  background-color: #eff3f8;
}
.product-quantity-container .product-quantity .product-quantity-icons {
  width: 5px;
  height: 5px;
}
.Select-language {
  width: 50px;
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  border: solid 2px #0073ff;
  border-radius: 8px;
  height: 50px;
  cursor: pointer !important;
  z-index: 2;
}
.Select-language .Select-language-input {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-transform: uppercase;
}
.Select-language .Select-options {
  position: absolute;
  min-width: -moz-fit-content;
  min-width: fit-content;
  z-index: 999;
  height: auto;
  max-height: 150px;
  top: 0;
  right: 0;
  margin-top: 51px;
  background-color: #ffffff;
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  box-shadow: 0 7px 35px -14px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}
.Select-language .Select-options .Select-option {
  padding: 0.5rem 1rem;
  border-top: 1px solid #e0e0e0;
  cursor: pointer;
  font-size: 0.9rem;
}
.Select-language .Select-options .Select-option:first-of-type {
  border-top: 0;
}
.Select-language .Select-options .Select-option.active {
  font-weight: 700;
  color: #0073ff;
}
.Select-language .Select-options .Select-option:hover {
  background-color: #f4f4f4;
}
.form .form-group {
  width: 100%;
  margin-bottom: 2rem;
}
.form .form-group:last-of-type {
  margin-bottom: 0;
}
.form .form-row {
  display: grid;
  grid-gap: 1rem;
}
@media (min-width: 768px) {
  .form .form-row.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .form .form-row.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .form .form-row.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.form .form-item {
  width: 100%;
  margin-bottom: 15px;
  position: relative;
}
.form .form-item label {
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 10px;
  display: flex;
}
.form .form-item .StripeElement,
.form .form-item input,
.form .form-item textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #050505;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: none;
  padding: 10px;
  font-size: 12px;
  font-family: "Open Sans";
  outline: none;
  color: #29387c;
  height: auto;
  transition: all 0.25s ease;
}
.form .form-item .StripeElement:focus,
.form .form-item input:focus,
.form .form-item textarea:focus {
  background-color: #ffffff;
  border: 1px solid #0073ff;
}
.form .form-item textarea {
  resize: none;
}
.form .form-item textarea.h-lg {
  height: 82px;
}
.form .form-error {
  font-size: 0.9rem;
  color: #d42a2a;
  margin-top: 0.25rem;
}
.form input:-moz-read-only {
  font-size: 17px;
  background-color: transparent;
  border: none;
  padding: 10px 10px 10px 0;
}
.form input:read-only,
.form .readOnly {
  font-size: 17px;
  background-color: transparent;
  border: none;
  padding: 10px 10px 10px 0;
}
.form input:-moz-read-only:focus {
  border: none;
}
.form input:read-only:focus,
.form .readOnly:focus {
  border: none;
}

.react-datepicker-wrapper {
  width: 100%;
}
.Modal {
  position: fixed;
  z-index: 992;
  background-color: #ffffff;
  width: calc(100% - 2rem);
  max-width: 768px;
  max-height: calc(100% - 2rem);
  border-radius: 30px;
  padding: 2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  box-sizing: border-box;
  box-shadow: 0px 7px 35px -14px rgba(0, 0, 0, 0.5);
  flex-flow: column;
  visibility: hidden;
  opacity: 0;
  transition: all 0.1s ease;
}
.Modal.xs {
  max-width: 480px;
}
.Modal.sm {
  max-width: 768px;
}
.Modal.md {
  max-width: 1024px;
}
.Modal.lg {
  max-width: 1280px;
}
.Modal.xl {
  max-width: 1920px;
}
.Modal.open {
  display: flex;
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.Modal .Modal-header {
  display: flex;
  align-items: center;
  padding: 2rem 2rem 0 2rem;
  position: relative;
}
@media (max-width: 767px) {
  .Modal .Modal-header {
    padding: 1rem 1rem 0 1rem;
  }
}
.Modal .Modal-header .close-button {
  position: absolute;
  right: 0;
  top: -10px;
}
.Modal .Modal-header .close-button .close-icon {
  fill: #0073ff;
  width: 30px;
}
.Modal .Modal-content {
  padding: 2rem;
}
@media (max-width: 767px) {
  .Modal .Modal-content {
    padding: 1rem;
  }
}

.Backdrop {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.5);
  transition: all 0.25s ease;
  opacity: 0;
}
.Backdrop.open {
  opacity: 1;
}
.app-content.not-auth {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.app-content.not-auth .auth-form {
  overflow-y: auto;
  width: 380px;
  border-left: 1px solid #e0e0e0;
  box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 30px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.app-content.not-auth .auth-form .auth-form-container {
  padding: 44px 28px 50px;
  display: flex;
  flex-flow: column;
  height: 100%;
  box-sizing: border-box;
}
.app-content.not-auth .auth-form .auth-form-container .logout {
  cursor: pointer;
  margin-top: 1rem;
  text-align: end;
  text-decoration: underline;
}
.app-content.not-auth .auth-form .auth-form-container .logout:hover {
  color: #0073ff;
}
@media (max-width: 450px) {
  .app-content.not-auth .auth-form {
    height: 100vh;
    width: 100%;
    border-radius: 0;
  }
}
.app-content.not-auth .auth-form .logo {
  margin: 0 auto 1rem;
  max-width: 203px;
  width: 100%;
}
.app-content.not-auth .auth-form .logo img {
  width: 100%;
}
.app-content.not-auth .auth-form .form {
  margin: auto 0;
}
.app-content.not-auth .auth-form .auth-footer {
  display: flex;
  flex-flow: row;
  justify-content: center;
  margin-top: 2rem;
  font-size: 14px;
}

.no-auth-form {
  width: 100%;
  max-width: 480px;
  margin: auto;
  box-sizing: border-box;
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
}
.no-auth-form .logo {
  width: 100%;
  max-width: 200px;
  margin: 2rem auto;
}
.no-auth-form .logo img {
  width: 100%;
}
.no-auth-form h1 {
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
}
.no-auth-form .form {
  width: 100%;
}

.change-language {
  position: fixed;
  top: 15px;
  right: 15px;
}
.Alert {
  border-radius: 0.5rem;
  color: #050505;
  font-size: 0.9rem;
}
.Alert.success {
  color: #26ca6d;
  font-size: 13px;
}
.Alert.info {
  font-size: 13px;
}
.Alert.warning {
  color: #ffffff;
  font-size: 13px;
}
.Alert.error {
  color: #d42a2a;
  font-size: 13px;
}
.Inline-select {
  display: flex;
  flex-flow: row;
  width: 100%;
  background-color: #eff3f8;
  opacity: 0.85;
  border-radius: 26.5px;
  height: 53px;
}
.Inline-select .Inline-select-option {
  width: 100%;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin: 6px;
  border-radius: 26.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.Inline-select .Inline-select-option.selected {
  background-color: #0073ff;
  color: #ffffff;
}
.checkbox button {
  width: 24px;
  height: 24px;
  background-color: white;
  border-radius: 0.5rem;
  cursor: pointer;
  border: solid 2px #0073ff;
  margin: 0;
  padding: 0;
  display: flex;
  transition: all 0.25s ease;
}
.checkbox button.checked svg {
  fill: #0073ff;
}
.checkbox.circle button {
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.checkbox.circle button.checked .circle-container {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #0073ff;
}
.checkbox.circle button.checked svg {
  fill: white;
}

.company-dashboard-grid {
  display: grid;
  grid-template-columns: 40% auto;
  gap: 50px;
  margin-bottom: 2rem;
}
@media (max-width: 1200px) {
  .company-dashboard-grid {
    grid-template-columns: 100%;
  }
}
.company-dashboard-grid .first-column .select-inline {
  font-weight: bold;
}
.company-dashboard-grid .first-column .distance-deadlines-container {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 52px;
  margin-top: 4rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.company-dashboard-grid .first-column .distance-deadlines-container .ul-chart-container {
  display: grid;
  grid-template-columns: 50% auto;
  gap: 20px;
}
.company-dashboard-grid .first-column .distance-deadlines-container .ul-chart-container .graph-container {
  height: 140px;
}
@media (max-width: 1200px) {
  .company-dashboard-grid .first-column .distance-deadlines-container .ul-chart-container {
    grid-template-columns: 100%;
  }
}
.company-dashboard-grid .first-column .distance-deadlines-container .ul-chart-container .no-data {
  height: 100px;
}
.company-dashboard-grid .first-column .distance-deadlines-container .ul-chart-container .legend .legend-item {
  display: flex;
  align-items: center;
  height: 38px;
}
.company-dashboard-grid .first-column .distance-deadlines-container .ul-chart-container .legend .legend-item .color {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--color-legend);
  margin-right: 10px;
}
.company-dashboard-grid .first-column .distance-deadlines-container .ul-chart-container .legend .legend-item .color.PINK {
  background-color: #ef62b7;
}
.company-dashboard-grid .first-column .distance-deadlines-container .ul-chart-container .legend .legend-item .color.YELLOW {
  background-color: #fbae31;
}
.company-dashboard-grid .first-column .distance-deadlines-container .ul-chart-container .legend .legend-item .color.LIGHT_BLUE {
  background-color: #52c3fb;
}
.company-dashboard-grid .first-column .distance-deadlines-container .ul-chart-container .legend .legend-item .color.DARK_BLUE {
  background-color: #28387c;
}
.company-dashboard-grid .first-column .distance-deadlines-container .deadlines-container {
  margin-top: auto;
}
.company-dashboard-grid .first-column .distance-deadlines-container .deadlines-container .deadlines {
  display: flex;
  flex-flow: row;
  width: 100%;
  margin-top: 1rem;
}
.company-dashboard-grid .first-column .distance-deadlines-container .deadlines-container .deadlines .deadline-item {
  display: flex;
  flex-flow: column;
  width: 100%;
}
.company-dashboard-grid .first-column .distance-deadlines-container .deadlines-container .deadlines .deadline-item .month {
  font-size: 12px;
  line-height: 16px;
  text-transform: capitalize;
}
.company-dashboard-grid .first-column .distance-deadlines-container .deadlines-container .deadlines .deadline-item .number {
  font-size: 16px;
  line-height: 21px;
}
.company-dashboard-grid .map {
  height: 524px;
}

.dashboard-title {
  font-size: 17px;
  margin-bottom: 1rem;
  font-weight: bold;
}

.line-row {
  height: 2px;
  opacity: 0.16;
  background-color: #0073ff;
}

.company-dashboard-movement .movement-type {
  font-size: 17px;
}
.leaflet-container {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.company-dashboard-map {
  position: relative;
  height: 524px;
}
.company-dashboard-map .leaflet-popup .leaflet-popup-content-wrapper {
  border-radius: 8px;
  color: #29387c;
  font-size: 14px;
}
.company-dashboard-map .leaflet-popup .leaflet-popup-close-button {
  width: 24px;
  height: 24px;
  color: #0073ff;
}
.company-dashboard-map .loading-overlay {
  position: absolute;
  display: flex;
  flex-flow: row;
  align-items: center;
  height: 100%;
  width: 100%;
  background-color: #eff3f8;
  opacity: 0.5;
  z-index: 988;
}
.company-dashboard-map .leaflet-control {
  border: none;
  z-index: 988;
}
.company-dashboard-map .leaflet-control .leaflet-control-zoom-in,
.company-dashboard-map .leaflet-control .leaflet-control-zoom-out {
  border-radius: 50% !important;
  font-size: 12px;
  background-color: #ffffff;
  color: #7f7f7f;
  margin-top: 5px;
}
.company-dashboard-map .licence-overlay {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 988;
}
.company-dashboard-map .marker-cluster {
  background-color: #0073ff;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.leaflet-bottom {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 988;
}
.Table-list {
  overflow-x: auto;
}
.Table-list table {
  width: 100%;
  border-spacing: 0;
  font-size: 14px;
}
.Table-list table a {
  text-decoration: underline;
  cursor: pointer;
  color: inherit;
}
.Table-list table thead tr th {
  height: 50px;
  font-weight: normal;
}
.Table-list table thead tr th div {
  display: flex;
  flex-flow: nowrap;
  align-items: center;
  white-space: nowrap;
}
.Table-list table thead tr th div .handle-sort {
  cursor: pointer;
  opacity: 0.25;
}
.Table-list table thead tr th div .handle-sort.active {
  opacity: 1;
}
.Table-list table thead tr th div .handle-sort .Icon svg {
  width: 100% !important;
  height: auto !important;
}
.Table-list table tbody tr td {
  background-color: #ffffff;
  height: 50px;
  padding: 0.5rem;
  white-space: nowrap;
  border-bottom: 2px solid #cde0f5;
  font-size: 14px;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.Table-list table tbody tr td.col-0 {
  width: 0%;
}
.Table-list table tbody tr td.col-5 {
  width: 5%;
}
.Table-list table tbody tr td.col-10 {
  width: 10%;
}
.Table-list table tbody tr td.col-15 {
  width: 15%;
}
.Table-list table tbody tr td.col-20 {
  width: 20%;
}
.Table-list table tbody tr td.col-25 {
  width: 25%;
}
.Table-list table tbody tr td.col-30 {
  width: 30%;
}
.Table-list table tbody tr td.col-33 {
  width: 33%;
}
.Table-list table tbody tr td.col-40 {
  width: 40%;
}
.Table-list table tbody tr td.col-50 {
  width: 50%;
}
.Table-list table tbody tr td.col-60 {
  width: 60%;
}
.Table-list table tbody tr td.col-66 {
  width: 66%;
}
.Table-list table tbody tr td.col-70 {
  width: 70%;
}
.Table-list table tbody tr td.col-75 {
  width: 75%;
}
.Table-list table tbody tr td.col-80 {
  width: 80%;
}
.Table-list table tbody tr td.col-90 {
  width: 90%;
}
.Table-list table tbody tr td.col-100 {
  width: 100%;
}
.Table-list table tbody.modal-table tr {
  background-color: #cde0f5;
}
.Table-list table tbody.modal-table tr td {
  background-color: #cde0f5;
  border-bottom: 2px solid #ffffff;
}
.Table-list table tr:first-child td:first-child {
  border-top-left-radius: 20px;
}
.Table-list table tr:first-child td:last-child {
  border-top-right-radius: 20px;
}
.Table-list table tr:last-child td:first-child {
  border-bottom-left-radius: 20px;
}
.Table-list table tr:last-child td:last-child {
  border-bottom-right-radius: 20px;
}
.Table-list table th:nth-child(1),
.Table-list table td:nth-child(1) {
  padding-left: 5rem;
}
.Table-list table td:last-child {
  padding-right: 5rem;
}

.Table-list-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Table-list-pagination .pages {
  display: flex;
  flex-flow: row;
  align-items: center;
  background-color: #d4dff1;
  height: 30px;
  margin-top: 74px;
  border-radius: 3px;
  box-shadow: 0 4px 8px 0 rgba(56, 96, 165, 0.15);
}
.Table-list-pagination .pages .pagination-button {
  width: 41px;
  font-size: 12px;
  height: 26px;
}
.Table-list-pagination .pages .pagination-button.active {
  background-color: #ffffff;
  border-radius: 3px;
}
.filter-bar {
  display: flex;
  position: relative;
  z-index: 1;
}
.filter-bar .action-filter {
  border-bottom: 1px solid #e0e0e0;
  align-items: center;
  display: flex;
}

.filter-nav .backdrop {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(5, 5, 5, 0.1);
  z-index: 998;
  opacity: 0;
  transition: all 0.25s ease;
  visibility: hidden;
}
.filter-nav .backdrop.isOpen {
  opacity: 1;
  visibility: visible;
}
.filter-nav .filter-form {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: #ffffff;
  border-left: 1px solid #e0e0e0;
  display: flex;
  flex-flow: column;
  transition: all 0.25s ease;
  box-shadow: 0px 10px 25px -15px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1023px) {
  .filter-nav .filter-form {
    right: -300px;
    width: 300px;
  }
}
.filter-nav .filter-form.isOpen {
  right: 0;
}
.filter-nav .filter-form .filter-form-header {
  padding: 1rem;
  height: 72px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
}
.filter-nav .filter-form .filter-form-header h3 {
  font-size: 1.2rem;
  margin: 0;
}
.filter-nav .filter-form .scrollbar-container {
  padding: 1rem;
}
.filter-nav .filter-form .filter-form-footer {
  display: flex;
  flex-flow: row;
}
.filter-nav .filter-form .filter-form-footer .button {
  width: 50%;
  border-radius: 0;
  justify-content: center;
}

.filters-status {
  display: flex;
  flex-flow: column;
  margin: 1rem 0;
}
.filters-status h3 {
  margin: 0;
  font-size: 0.9rem;
}
.filters-status .active-filter-container {
  display: flex;
  margin-top: 0.5rem;
}
.filters-status .active-filter-container .active-filter {
  display: flex;
  align-items: center;
  padding: 0.25rem;
  border: 1px solid #0073ff;
  border-radius: 8px;
  margin-right: 0.5rem;
  font-size: 0.9rem;
  white-space: nowrap;
}
.filters-status .active-filter-container .active-filter span {
  cursor: pointer;
}

.filter-form-body .clear-button::after {
  background-color: transparent;
  color: #050505;
  font-size: 24px;
}
.filter-form-body .Select .Select-options {
  width: 345px !important;
}
@media screen and (max-width: 1023px) {
  .filter-form-body .Select .Select-options {
    width: 200px !important;
  }
}
.sales-agent-dashboard {
  display: flex;
  flex-flow: row;
}
@media (max-width: 900px) {
  .sales-agent-dashboard {
    flex-flow: column;
  }
}
.sales-agent-dashboard .column-one {
  padding-right: 1rem;
  width: 30%;
}
@media (max-width: 900px) {
  .sales-agent-dashboard .column-one {
    padding: 0;
    width: 100%;
  }
}
.sales-agent-dashboard .column-one .line {
  margin-top: 3rem;
  margin-bottom: 3rem;
  height: 2px;
  background-color: #eff3f8;
}
.sales-agent-dashboard .column-one .revenue-by-company-container {
  height: calc(100vh - 600px);
}
@media (max-width: 900px) {
  .sales-agent-dashboard .column-one .revenue-by-company-container {
    height: 100%;
    max-height: 500px;
  }
}
.sales-agent-dashboard .column-one .stats-row {
  display: flex;
  flex-flow: row;
  align-items: center;
  background-color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 18px;
  margin-bottom: 1rem;
}
.sales-agent-dashboard .column-one .stats-row .counter-container {
  display: flex;
  flex-flow: row;
  align-items: center;
  margin-left: auto;
}
.sales-agent-dashboard .column-one .stats-row .counter-container .number {
  font-weight: bold;
  margin-left: 1rem;
}
.sales-agent-dashboard .column-two {
  padding-left: 1rem;
  width: 70%;
}
@media (max-width: 900px) {
  .sales-agent-dashboard .column-two {
    margin-top: 1rem;
    padding: 0;
    width: 100%;
  }
}
.movements-action-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 625px) {
  .movements-action-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.movements-action-header b {
  letter-spacing: -0.24px;
  line-height: 28.78px;
  font-size: 17px;
}
.movements-action-header .buttons-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
@media (max-width: 625px) {
  .movements-action-header .buttons-container {
    gap: 0.5rem;
  }
}

.movements-table tr td:nth-child(1),
.movements-table tr th:nth-child(1) {
  padding-left: 1rem !important;
}
.movements-table tr td:last-child,
.movements-table tr th:last-child {
  padding-right: 1rem !important;
}

.info-under-button {
  display: flex;
  flex-flow: row;
  margin-top: 0.5rem;
  font-size: 12px;
}

.error {
  color: #d42a2a;
}

.product-item-container {
  width: 100%;
  display: flex;
  flex-flow: row;
  align-items: center;
  font-size: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-item-container .product-item-info {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-item-container .product-item-info.is-delete-button-visible {
  width: 70%;
}

.form-item.shipping-code {
  position: relative;
  display: flex;
  flex-flow: column;
}
.form-item .validating-shipping-code {
  display: flex;
  flex-flow: row;
}
.form-item .validating-shipping-code .shipping-code-input {
  padding-right: 30px;
}
.form-item .validating-shipping-code .shipping-code-icon-container {
  position: absolute;
  bottom: 6px;
  right: 3px;
}

.movement-product-info-container {
  width: 200px;
}
.movement-product-info-container .info-row {
  overflow: hidden;
  text-overflow: ellipsis;
}

.history-shipping-information {
  display: flex;
  flex-direction: row;
}
@media (max-width: 769px) {
  .history-shipping-information {
    flex-direction: column;
    align-items: start;
    margin-bottom: 1.5rem;
  }
}
.history-shipping-information .info {
  display: flex;
  flex-direction: row;
  margin-left: 1rem;
}
@media (max-width: 1023px) {
  .history-shipping-information .info {
    margin-left: 0;
  }
}

.history-accordion-header-title-display {
  margin: 0 45px 0 13px;
  display: grid;
  grid-template-columns: 100px 100px 175px 150px 150px 50px 50px;
  gap: 25px;
  justify-content: space-between;
}
@media (max-width: 1115px) {
  .history-accordion-header-title-display {
    display: none;
  }
}

.Accordion:nth-child(even) {
  background-color: #eff3f8;
}
.Accordion .history-accordion-header {
  display: grid;
  grid-template-columns: 100px 100px 175px 150px 150px 50px 50px;
  flex-direction: row;
  align-items: center;
  overflow-x: auto;
  gap: 25px;
  width: 100%;
  padding: 10px 0;
  justify-content: space-between;
}
@media (max-width: 1115px) {
  .Accordion .history-accordion-header {
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
    gap: 10px;
  }
}
.Accordion .history-accordion-header .history-location-cell {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis !important;
  display: flex;
  flex-direction: column;
}
.Accordion .history-accordion-header .history-location-cell b {
  display: none;
  margin-bottom: 12px;
}
@media (max-width: 1115px) {
  .Accordion .history-accordion-header .history-location-cell b {
    display: block;
  }
}
.Accordion .history-accordion-header .history-location-cell.hidden {
  visibility: hidden;
}
.Accordion .history-accordion-header .history-location-cell.chip {
  max-width: 150px !important;
}
.Accordion .history-accordion-header .history-location-cell .button {
  max-height: 30px;
  max-width: 30px;
}
@media (max-width: 1115px) {
  .Accordion .history-accordion-header .history-location-cell .button {
    max-height: 25px;
    max-width: 25px;
  }
}
.Accordion .movement-history-card-accordion-body {
  padding: 0 1rem;
  margin-top: 2rem;
}
.Accordion .movement-history-card-accordion-body .history-card-quantities {
  width: 50%;
  border: 1px solid lightgray;
  border-radius: 0.8rem;
  margin: auto auto 1rem;
}
@media (max-width: 768px) {
  .Accordion .movement-history-card-accordion-body .history-card-quantities {
    width: 100%;
    border: none;
  }
}
.Accordion .movement-history-card-accordion-body .history-card-quantities .card-quantity-row {
  display: flex;
  flex-direction: row;
  padding: 1rem;
  border-bottom: 1px solid lightgray;
}
.Accordion .movement-history-card-accordion-body .history-card-quantities .card-quantity-row .form-item {
  margin: 0;
}
.Accordion .movement-history-card-accordion-body .history-card-quantities .card-quantity-row .form-item label {
  margin: 0;
}
.Accordion .movement-history-card-accordion-body .history-card-quantities .card-quantity-row .form-item .readOnly {
  font-weight: bold;
  padding: 0;
}
.Accordion .movement-history-card-accordion-body .history-card-quantities .card-quantity-row:last-child {
  border-bottom: none !important;
}
.table-row-id-container .row-id {
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}
.table-row-id-container .row-id-subtitle {
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 12px;
}
.Accordion {
  width: 100%;
}
.Accordion .Accordion-Header {
  display: grid;
  grid-template-columns: auto 30px;
  flex-direction: row;
  align-items: center;
  min-height: 64px;
  overflow: hidden;
  padding: 0 1rem;
  border: solid 1px #eff3f8;
}
.Accordion .Accordion-Body {
  display: none;
  transition: all 0.5s ease;
  border: solid 1px #eff3f8;
}
.Accordion .Accordion-Body.visible {
  display: block;
}
.info-modal-container {
  max-width: 100%;
}
.info-modal-container .text {
  white-space: break-spaces;
  min-height: 30px;
  margin-bottom: 1rem;
}
.info-modal-container .footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.Select-autocomplete {
  position: relative;
  z-index: 1;
}
.Select-autocomplete .Select-options-autocomplete-container {
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e0e0e0;
  background-color: #ffffff;
  border-radius: 0.5rem;
  z-index: 990;
  box-shadow: 0px 7px 35px -14px rgba(0, 0, 0, 0.5);
}
.Select-autocomplete .Select-options-autocomplete-container .Select-autocomplete-options {
  padding: 0.5rem;
}
.Select-autocomplete .Select-options-autocomplete-container .Select-autocomplete-options .Select-option {
  padding: 0.5rem 0;
  cursor: pointer;
  border-top: 1px solid #e0e0e0;
}
.Select-autocomplete .Select-options-autocomplete-container .Select-autocomplete-options .Select-option:first-of-type {
  border-top: none;
}
.Select-autocomplete .Select-options-autocomplete-container .Select-autocomplete-options .Select-option:hover {
  background-color: #f4f4f4;
}
.Select-autocomplete .Selected-option {
  border: 1px solid #050505;
  border-radius: 0.5rem;
  padding: 10px;
  width: 100%;
  position: relative;
}
.Select-autocomplete .Selected-option .Select-clear {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deadlines-empty {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  height: 146px;
  border-radius: 24px;
  background-color: #ffffff;
  font-size: 15px;
  box-shadow: 0 12px 24px 0 rgba(76, 160, 255, 0.15);
}
.calendar-container {
  background-color: white;
  padding: 43px;
  border-radius: 24px;
  box-shadow: 0 12px 24px 0 rgba(76, 160, 255, 0.15);
  font-size: 15px;
  overflow-x: auto;
}
.calendar-container table {
  width: 100%;
  border-collapse: collapse;
}
.calendar-container table thead tr th {
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: left;
  white-space: nowrap;
  height: 47px;
}
.calendar-container table tbody tr {
  border-top: 2px solid #cde0f5;
  border-radius: 10px;
}
.calendar-container table tbody tr.selected-row {
  border: 2px solid #0073ff;
}
.calendar-container table tbody tr td {
  padding-left: 1rem;
  padding-right: 1rem;
  white-space: nowrap;
  height: 47px;
}
.calendar-container table tbody tr td.col-4 {
  width: 4%;
}
.calendar-container table tbody tr td.col-12 {
  width: 12%;
}

.calendar-legend {
  display: flex;
  flex-flow: row;
  margin-top: 2rem;
  align-items: center;
  margin-left: auto;
  font-size: 15px;
}
.calendar-legend span {
  margin-left: 1rem;
  margin-right: 1rem;
}
.date-container {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 140px;
  font-size: 16px;
  text-transform: capitalize;
}
.tabs {
  width: 100%;
  position: relative;
  overflow: hidden;
  font-size: 1.2rem;
}
.tabs .tabs-item {
  display: flex;
  white-space: nowrap;
  cursor: pointer;
  font-size: 1.1rem;
  position: relative;
  font-weight: 400;
  width: unset;
  height: auto;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: 3rem;
  margin-right: 3rem;
}
@media (max-width: 1023px) {
  .tabs .tabs-item {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
.tabs .tabs-item.active {
  border-bottom: 2px solid #0073ff;
}
.tabs .tabs-item .count {
  position: absolute;
  font-size: 0.9rem;
  right: 0;
}
.order-by-container {
  font-size: 11px;
}

.table-product-image {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  border: solid 1px black;
}
.product-preview .image-column {
  order: 1;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .product-preview .image-column {
    order: 2;
    margin-right: 0;
  }
}
.product-preview .info-column {
  margin-left: 1rem;
  order: 2;
}
.product-preview .info-column .description {
  margin-top: 2rem;
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .product-preview .info-column {
    order: 1;
    margin-left: 0;
  }
}

.product-detail {
  font-size: 16px;
  text-transform: capitalize;
}
.product-detail.row {
  display: flex;
  flex-flow: row;
  align-items: center;
  margin-top: 2rem;
}
.product-detail.row .label {
  font-weight: bold;
}
.product-detail.row .value {
  margin-left: auto;
}
@media (min-width: 750px) {
  .product-detail.column {
    display: flex;
    flex-flow: column;
  }
  .product-detail.column .label {
    font-weight: bold;
  }
  .product-detail.column .value {
    margin-top: 1rem;
  }
}
@media (max-width: 750px) {
  .product-detail {
    display: flex;
    flex-flow: column;
  }
  .product-detail .label {
    font-weight: bold;
  }
  .product-detail .value {
    margin-top: 1rem;
  }
}

.product-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  border: solid 2px #d4e7fd;
}
.product-image-container .product-image {
  width: 100%;
  height: auto;
}

.line-separator {
  width: 100%;
  height: 2px;
  background-color: #d4e7fd;
  margin-top: 2rem;
}
.orders-container .order-container {
  width: 100%;
  margin-bottom: 1rem;
}
.orders-container .order-container .header {
  padding: 1rem;
  font-size: 18px;
  border-radius: 20px;
  background-color: #ffffff;
}
.orders-container .order-container .header .header-title {
  display: flex;
  flex-flow: row;
  gap: 5rem;
  width: 100%;
}
.orders-container .order-container .header .header-title .header-column {
  display: flex;
  flex-flow: column;
}
.orders-container .order-container .header .header-title .header-column .title {
  font-size: 13px;
}
.orders-container .order-container .header .header-title .header-column .value {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 980px) {
  .orders-container .order-container .header .header-title .header-column {
    flex-flow: row;
  }
  .orders-container .order-container .header .header-title .header-column .title {
    font-size: 18px;
  }
}
@media screen and (max-width: 980px) {
  .orders-container .order-container .header .header-title {
    flex-flow: column;
    gap: 1rem;
  }
}
.orders-container .order-container .vendor-order-container {
  border: 2px solid #cde0f5;
  margin-top: 1rem;
  border-radius: 20px;
}
.orders-container .order-container .vendor-order-container .vendor {
  display: flex;
  flex-flow: column;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: 14px;
}
.orders-container .order-container .vendor-order-container .total-container {
  margin-left: auto;
  display: flex;
  flex-flow: column;
  align-items: flex-end;
}
.orders-container .order-container .vendor-order-container .total-container .record {
  display: flex;
  flex-flow: row;
}
.orders-container .order-container .vendor-order-container .product-container {
  display: flex;
  flex-flow: row;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #cde0f5;
}
.orders-container .order-container .vendor-order-container .product-container .image-column .product-image {
  width: 80px;
  height: 80px;
  border: 1px solid #050505;
  border-radius: 0.5rem;
}
.orders-container .order-container .vendor-order-container .product-container .info-container {
  display: flex;
  flex-flow: row;
  width: 100%;
  align-items: center;
  font-size: 14px;
}
@media screen and (max-width: 580px) {
  .orders-container .order-container .vendor-order-container .product-container .info-container {
    align-items: baseline;
  }
}
.orders-container .order-container .vendor-order-container .product-container .info-container .product-info {
  margin-left: 1rem;
}
.orders-container .order-container .vendor-order-container .product-container .info-container .location-info {
  display: flex;
  flex-flow: row;
  margin-left: auto;
}
@media screen and (max-width: 580px) {
  .orders-container .order-container .vendor-order-container .product-container .info-container .location-info {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 580px) {
  .orders-container .order-container .vendor-order-container .product-container .info-container {
    flex-flow: column;
  }
}
.user-account-container {
  border-radius: 30px;
  background-color: #ffffff;
  padding: 3rem;
  display: grid;
  grid-template-columns: 70% 30%;
}
@media (max-width: 767px) {
  .user-account-container {
    grid-template-columns: 100%;
  }
}
.user-account-container .user-account-avatar-container {
  display: flex;
  flex-flow: row;
  justify-content: center;
}
@media (max-width: 1024px) {
  .user-account-container .user-account-avatar-container {
    margin-top: 1rem;
  }
}
.company-edit-container {
  border-radius: 30px;
  background-color: #ffffff;
  padding: 3rem;
  display: grid;
  grid-template-columns: 80% 20%;
}
@media (max-width: 1300px) {
  .company-edit-container {
    grid-template-columns: 100%;
  }
}
.company-edit-container .image {
  padding: 3rem;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.company-edit-container .image img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1300px) {
  .company-edit-container .image img {
    display: none;
  }
}
.address-places-autocomplete {
  position: relative;
}
.address-places-autocomplete .address-places-autocomplete-options {
  position: absolute;
  min-width: -moz-fit-content;
  min-width: fit-content;
  z-index: 1;
  height: auto;
  max-height: 150px;
  top: 69px;
  right: 0;
  left: 0;
  background-color: #ffffff;
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  box-shadow: 0 7px 35px -14px rgba(0, 0, 0, 0.5);
}
.address-places-autocomplete .address-places-autocomplete-options .address-places-autocomplete-option {
  padding: 0.5rem 1rem;
  border-top: 1px solid #e0e0e0;
  cursor: pointer;
  font-size: 0.9rem;
  white-space: nowrap;
}
.address-places-autocomplete .address-places-autocomplete-options .address-places-autocomplete-option:first-of-type {
  border-top: 0;
}
.address-places-autocomplete .address-places-autocomplete-options .address-places-autocomplete-option.active {
  font-weight: 700;
  color: #0073ff;
}
.address-places-autocomplete .address-places-autocomplete-options .address-places-autocomplete-option:hover {
  background-color: #f4f4f4;
}
.address-places-autocomplete .Select-clear,
.address-places-autocomplete .Select-arrow {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.address-places-autocomplete .Select-clear {
  cursor: pointer;
}
.address-places-autocomplete .Select-arrow {
  pointer-events: none;
}

.Multi-select {
  display: flex;
  flex-flow: wrap;
}
.Multi-select .Multi-select-option {
  background-color: #f4f4f4;
  padding: 0.5rem;
  border-radius: 0.5rem;
  margin: 0 0.5rem 0.5rem 0;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}
.Multi-select .Multi-select-option.selected {
  background-color: #0073ff;
  color: #ffffff;
}
.address-container {
  border: 1px solid #29387c;
  border-radius: 15px;
  padding: 1rem;
  margin-bottom: 1rem;
  min-height: 230px;
}
.item {
  display: flex;
  flex-flow: row;
  align-items: center;
  width: 150px;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0.5rem;
  margin: 0.5rem 0.5rem 0 0;
}
.item button {
  margin-right: 1rem;
}
@media (max-width: 1024px) {
  .item {
    width: 100%;
  }
}

.favourite-products-container {
  border-radius: 30px;
  padding: 3rem;
  color: #29387c;
}
.favourite-products-container .table-item td {
  width: 33%;
}
.vendor-page-container {
  border-radius: 30px;
  background-color: #ffffff;
  padding: 3rem;
}
.vendor-page-container .stripe-logo {
  width: 200px;
}
.vendor-page-container .vendor-page-link {
  text-decoration: none;
  color: #ffffff;
}

.reauth-container {
  display: flex;
  flex-flow: column;
  align-items: center;
}

.vendor-info-container {
  display: flex;
  flex-flow: column;
  align-items: center;
  font-size: 17px;
  background-color: #ffffff;
  border-radius: 3rem;
  padding: 3rem 1rem;
}
.vendor-info-container .Icon,
.vendor-info-container .Loader {
  margin-top: 3rem;
}


.product-image-upload-container .product-image {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #f4f4f4;
  border: 2px solid #0073ff;
  border-radius: 8px;
  width: 100% !important;
  height: 257px !important;
  overflow: hidden;
  margin-bottom: 1rem;
}
.product-image-upload-container .product-image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.product-image-upload-container .product-image .remove {
  position: absolute;
  top: 0;
  right: 0;
}
.product-image-upload-container .product-upload input {
  display: none;
}
.product-image-upload-container .product-upload label {
  cursor: pointer;
}
.Wallet .wallet-card {
  width: 300px;
  height: 120px;
  padding: 11px 35px;
  border-radius: 24px;
}
.Wallet .wallet-card.availability {
  display: flex;
  flex-flow: column;
  justify-content: center;
  background-color: #ffffff;
  box-shadow: 0 12px 24px 0 rgba(76, 160, 255, 0.15);
}
.Wallet .wallet-card.availability .price-balance {
  font-size: 30px;
  font-weight: bold;
}
.Wallet .wallet-card label {
  font-size: 15px !important;
}
@media (max-width: 768px) {
  .Wallet .wallet-card {
    width: auto;
  }
}
.Wallet .wallet-form-amount {
  display: flex;
  flex-direction: row;
}
.Wallet .wallet-form-amount :nth-child(2) {
  order: 2;
}
.Wallet .euro-to-circular :nth-child(1) {
  order: 1;
}
.Wallet .euro-to-circular :nth-child(3) {
  order: 3;
}
.Wallet .circular-to-euro :nth-child(1) {
  order: 3;
}
.Wallet .circular-to-euro :nth-child(3) {
  order: 1;
}

.wallet-movement .amount {
  display: flex;
  align-items: center;
}
.wallet-movement .amount.positive {
  color: #0073ff;
}
.wallet-movement .amount.negative {
  color: #ff19b7;
}
.secure-code iframe {
  border-radius: 8px;
  width: 100%;
  border: none;
}

.result-icon {
  width: 48px;
  height: 48px;
}
.unread-notification {
  background: #ff19b7;
  height: 10px;
  width: 10px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #ff19b7;
}
.Switch {
  width: 40px;
  height: 20px;
  display: flex;
  align-items: center;
  border-radius: 15px;
  background-color: #e0e0e0;
  cursor: pointer;
  padding: 0.15rem;
  transition: all 0.25s ease;
}
.Switch.switched {
  background-color: #0073ff;
  justify-content: flex-end;
}
.Switch .Switch-handle {
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  border-radius: 50%;
}
.system-configuration-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.system-configuration-card-container .system-configuration-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #0073ff;
  border-radius: 0.8rem;
  padding: 1rem;
  position: relative;
}
.system-configuration-card-container .system-configuration-card .system-configuration-edit-button {
  position: absolute;
  right: 0;
  margin-right: 10px;
}
.system-configuration-card-container .system-configuration-card .system-configuration-label {
  font-size: 13px;
  font-weight: bold;
}
.system-configuration-card-container .system-configuration-card .system-configuration-price {
  font-size: 20px;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.company-management-tab-container {
  border-radius: 30px;
  background-color: #ffffff;
  padding: 3rem;
}

.company-wallet-balance-container {
  width: 300px;
  margin-bottom: 1rem;
}
.company-wallet-balance-container .wallet-balance-title {
  font-size: 15px;
  margin-bottom: 1rem;
}
.company-wallet-balance-container .balance {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 600px) {
  .company-wallet-balance-container {
    width: calc(100% - 6rem);
  }
}

.activation-status-container {
  width: 50% !important;
}
@media (max-width: 1200px) {
  .activation-status-container {
    width: 80% !important;
  }
}

.logistic-operator-chip {
  background-color: #ffd557;
  color: #29387c;
}
.carbon-credit-table tr td:nth-child(1),
.carbon-credit-table tr th:nth-child(1) {
  padding-left: 1rem !important;
}
.carbon-credit-table tr td:last-child,
.carbon-credit-table tr th:last-child {
  padding-right: 1rem !important;
}
.notifications-modal-container {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  margin-bottom: 15px;
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  height: 50px;
  width: 30%;
  background-color: #b2c3e2;
  font-weight: bold;
  cursor: pointer;
}
@media (max-width: 750px) {
  .notifications-modal-container {
    width: 95%;
  }
}
.notifications-modal-container .notifications-modal-button {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #b2c3e2;
}
