*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  font-family: "montserrat";
}

body {
  overflow-x: hidden;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
  font-family: "Montserrat", sans-serif;
  background-color: #f7f9fc;
}

a {
  color: #098fd0;
  transition: 0.5s ease-in-out;
  text-decoration: none;
}
a:hover {
  color: #0976ab;
}

.heading-sm {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.heading-md {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
}

.heading-lg {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 2rem;
}

.primary {
  color: #098fd0;
}

.dark-primary {
  color: #0976ab;
}

.highlight {
  color: #e50d0f;
}

.warning {
  color: #d82e2e;
}

.lightCharcoal {
  color: #282828;
}

.darkGrey {
  color: #232323;
}

.darkModalBottomButtonText {
  color: #acacac;
}

.darkModalActionBackground {
  color: #161616;
}

.lightGrey {
  color: #77838f;
}

.greyBorder {
  color: #bfcadc;
}

.greyMedium {
  color: #c7c7cc;
}

.off-white {
  color: #f7f9fc;
}

.card-border {
  color: #efefef;
}

.flex,
.flex-container {
  display: flex;
  align-items: center;
}

.flex-wrap-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

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

.margin-top-15 {
  margin-top: 15px;
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.btn {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.09) !important;
  color: white;
  line-height: 1.5;
  text-decoration: none;
  background-color: #098fd0;
  transition: 0.5s ease-in-out;
  border: 1px solid #098fd0;
  text-align: center;
  border-radius: 5px;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
}
.btn:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0) !important;
  background-color: #0976ab;
  cursor: pointer;
}
.btn:focus {
  outline: 0;
}

.btn-info {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.09) !important;
  color: white;
  line-height: 1.5;
  text-decoration: none;
  background-color: #098fd0;
  transition: 0.5s ease-in-out;
  border: 1px solid #098fd0;
  text-align: center;
  border-radius: 5px;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  background-color: rgba(0, 0, 0, 0.21);
  border-color: rgba(0, 0, 0, 0.33);
  color: black !important;
}
.btn-info:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0) !important;
  background-color: #0976ab;
  cursor: pointer;
}
.btn-info:focus {
  outline: 0;
}

.btn-block {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.09) !important;
  color: white;
  line-height: 1.5;
  text-decoration: none;
  background-color: #098fd0;
  transition: 0.5s ease-in-out;
  border: 1px solid #098fd0;
  text-align: center;
  border-radius: 5px;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  width: 100%;
}
.btn-block:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0) !important;
  background-color: #0976ab;
  cursor: pointer;
}
.btn-block:focus {
  outline: 0;
}

.btn-rounded-lg {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.09) !important;
  color: white;
  line-height: 1.5;
  text-decoration: none;
  background-color: #098fd0;
  transition: 0.5s ease-in-out;
  border: 1px solid #098fd0;
  text-align: center;
  border-radius: 100px;
  padding: 1.1875rem 2.25rem;
  font-size: 1.25rem;
}
.btn-rounded-lg:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0) !important;
  background-color: #0976ab;
  cursor: pointer;
}
.btn-rounded-lg:focus {
  outline: 0;
}

.btn-rounded-white-lg {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.09) !important;
  color: white;
  line-height: 1.5;
  text-decoration: none;
  background-color: #098fd0;
  transition: 0.5s ease-in-out;
  border: 1px solid #098fd0;
  text-align: center;
  border-radius: 100px;
  padding: 1.1875rem 2.25rem;
  font-size: 1.25rem;
  background-color: white;
  color: #098fd0;
}
.btn-rounded-white-lg:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0) !important;
  background-color: #0976ab;
  cursor: pointer;
}
.btn-rounded-white-lg:focus {
  outline: 0;
}
.btn-rounded-white-lg:hover {
  background-color: rgba(0, 155, 114, 0.2);
  border-color: transparent;
  color: #0976ab;
}

.btn-rounded-md {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.09) !important;
  color: white;
  line-height: 1.5;
  text-decoration: none;
  background-color: #098fd0;
  transition: 0.5s ease-in-out;
  border: 1px solid #098fd0;
  text-align: center;
  border-radius: 100px;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
}
.btn-rounded-md:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0) !important;
  background-color: #0976ab;
  cursor: pointer;
}
.btn-rounded-md:focus {
  outline: 0;
}
.btn-rounded-md:hover {
  color: #f7f9fc;
}

.btn-rounded-sm {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.09) !important;
  color: white;
  line-height: 1.5;
  text-decoration: none;
  background-color: #098fd0;
  transition: 0.5s ease-in-out;
  border: 1px solid #098fd0;
  text-align: center;
  border-radius: 100px;
  padding: 0.6rem 1rem;
  font-size: 1rem;
}
.btn-rounded-sm:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0) !important;
  background-color: #0976ab;
  cursor: pointer;
}
.btn-rounded-sm:focus {
  outline: 0;
}
.btn-rounded-sm:hover {
  color: #f7f9fc;
}

.btn-rounded-white-md {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.09) !important;
  color: white;
  line-height: 1.5;
  text-decoration: none;
  background-color: #098fd0;
  transition: 0.5s ease-in-out;
  border: 1px solid #098fd0;
  text-align: center;
  border-radius: 100px;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  background-color: white;
  color: #098fd0;
}
.btn-rounded-white-md:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0) !important;
  background-color: #0976ab;
  cursor: pointer;
}
.btn-rounded-white-md:focus {
  outline: 0;
}
.btn-rounded-white-md:hover {
  background-color: rgba(0, 155, 114, 0.2);
  border-color: transparent;
  color: #009b72;
}

.btn-loading:hover {
  background-color: #098fd0 !important;
  cursor: not-allowed !important;
}

.btn-disabled {
  background-color: #77838f !important;
  border: 1px #77838f solid;
  color: #f7f9fc;
}
.btn-disabled:hover {
  cursor: not-allowed !important;
}

.link-with-dark-bg {
  color: white;
  transition: 0.5s ease-in-out;
}
.link-with-dark-bg:hover {
  color: #098fd0;
  cursor: pointer;
}

.link-bold {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  color: #098fd0;
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: none;
  transition: 0.5s ease-in-out;
}
.link-bold:hover {
  color: #0976ab;
}

.link-warning {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  color: #d82e2e;
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: none;
  transition: 0.5s ease-in-out;
}
.link-warning:hover {
  color: #a01e1e;
}

.link-disabled {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  color: #77838f;
  font-size: 1.1rem;
  cursor: not-allowed;
}

.link {
  cursor: pointer;
}

.form-wrapper {
  width: 100%;
}

.form-sm {
  width: 300px;
}

.form-control {
  border: 1px solid #bfcadc;
  border-radius: 5px;
  padding: 8px 5px;
  width: 100%;
  font-size: 1.1rem;
  outline: none;
  transition: 0.5s ease-in-out;
}
.form-control:focus {
  border-color: #098fd0 !important;
  outline: 0;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.09) !important;
}

.horizontal-group {
  display: flex;
  align-items: center;
}
.horizontal-group__label {
  padding-right: 15px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #161616;
}

.top-layer-input {
  z-index: 2000;
}

.react-datetime-picker__wrapper {
  border: 1px solid #bfcadc !important;
  height: 60px;
  border-radius: 5px;
  padding: 0.6875rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #161616;
}

.switch-label {
  padding: 0px 15px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  color: #282828;
}

.homepage-wrapper {
  width: 100vw !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
}
.homepage-wrapper .image-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.homepage-wrapper .image-container img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.homepage-wrapper .sign-in-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.homepage-wrapper .sign-in-form .logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.homepage-wrapper .sign-in-form .logo-wrapper .subtitle {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 1.1em;
  color: #232323;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 15px;
}
.homepage-wrapper .sign-in-form .view-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.homepage-wrapper .sign-in-form .view-wrapper .password-reset-instructions {
  font-size: 1.1rem;
  font-weight: 700;
  color: #232323;
  width: 80%;
  text-align: center;
  margin-bottom: 21px;
}
.homepage-wrapper .sign-in-form .content {
  width: 450px;
  text-align: center;
}
.homepage-wrapper .sign-in-form .content .headline {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 3em;
  color: #098fd0;
  margin-bottom: 50px;
}
.homepage-wrapper .sign-in-form .content .headline svg {
  width: 130px;
  margin-right: 10px;
}

.password-page-wrapper {
  width: calc(100vw - 30px) !important;
  display: grid;
  grid-template-columns: 1fr;
  height: 100vh;
  padding: 0px 15px;
}
.password-page-wrapper__logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background-color: #098fd0;
}
.password-page-wrapper .sign-in-form {
  display: flex;
  justify-content: center;
  align-items: center;
}
.password-page-wrapper .sign-in-form .content {
  width: 100%;
}
.password-page-wrapper .sign-in-form .content .headline {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 3em;
  color: #098fd0;
  margin-bottom: 50px;
}
.password-page-wrapper .sign-in-form .content .headline svg {
  width: 130px;
  margin-right: 10px;
}
.password-page-wrapper .sign-in-form .content .subtitle {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  width: 100%;
  text-align: center;
  font-size: 1.8em;
  color: #232323;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.inventory-header-container {
  margin-bottom: 42px;
}
.inventory-header-container__header {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.inventory-header-container__header svg {
  font-size: 2rem !important;
  margin-left: 15px;
}
.inventory-header-container__tabs .tab-link {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  color: #bfcadc;
  padding: 15px 30px;
  border-bottom: 2px solid transparent;
}
.inventory-header-container__tabs .active-tab {
  color: #098fd0;
  border-bottom: 2px solid #098fd0;
}

.dashboard-container {
  display: flex;
  justify-content: center;
  padding: 42px 0px;
  background-color: #f6f6f6 !important;
  min-height: 100vh;
}
.dashboard-container .container {
  background-color: #f6f6f6 !important;
}
.dashboard-container__content {
  width: 1200px;
}

.grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.grid-1-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}

.grid-2-3 {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 30px;
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.grid-3-1 {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.grid-1-1-100px {
  display: grid;
  grid-template-columns: 1fr 1fr 100px;
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}

.grid-200px-1fr-1fr-42px {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 42px;
  gap: 30px;
  align-items: center;
}

body.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

.sweet-overlay {
  background-color: black;
  /* IE8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE8 */
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000;
}

.sweet-alert {
  background-color: white;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 99999;
}

@media all and (max-width: 540px) {
  .sweet-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px;
  }
}
.sweet-alert h2 {
  color: #575757;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 25px 0;
  padding: 0;
  line-height: 40px;
  display: block;
}

.sweet-alert p {
  color: #797979;
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  position: relative;
  text-align: inherit;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal;
}

.sweet-alert fieldset {
  border: none;
  position: relative;
}

.sweet-alert .sa-error-container {
  background-color: #f1f1f1;
  margin-left: -17px;
  margin-right: -17px;
  overflow: hidden;
  padding: 0 10px;
  max-height: 0;
  webkit-transition: padding 0.15s, max-height 0.15s;
  transition: padding 0.15s, max-height 0.15s;
}

.sweet-alert .sa-error-container.show {
  padding: 10px 0;
  max-height: 100px;
  webkit-transition: padding 0.2s, max-height 0.2s;
  transition: padding 0.25s, max-height 0.25s;
}

.sweet-alert .sa-error-container .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ea7d7d;
  color: white;
  line-height: 24px;
  text-align: center;
  margin-right: 3px;
}

.sweet-alert .sa-error-container p {
  display: inline-block;
}

.sweet-alert .sa-input-error {
  position: absolute;
  top: 29px;
  right: 26px;
  width: 20px;
  height: 20px;
  opacity: 0;
  transform: scale(0.5);
  transform-origin: 50% 50%;
  transition: all 0.1s;
}

.sweet-alert .sa-input-error::before,
.sweet-alert .sa-input-error::after {
  content: "";
  width: 20px;
  height: 6px;
  background-color: #f06e57;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 50%;
  margin-left: -9px;
}

.sweet-alert .sa-input-error::before {
  transform: rotate(-45deg);
}

.sweet-alert .sa-input-error::after {
  transform: rotate(45deg);
}

.sweet-alert .sa-input-error.show {
  opacity: 1;
  transform: scale(1);
}

.sweet-alert input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  height: 43px;
  margin-top: 10px;
  margin-bottom: 17px;
  font-size: 18px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
  padding: 0 12px;
  display: none;
  transition: all 0.3s;
}

.sweet-alert input:focus {
  outline: none;
  box-shadow: 0px 0px 3px #c4e6f5;
  border: 1px solid #b4dbed;
}

.sweet-alert input:focus::-moz-placeholder {
  -moz-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

.sweet-alert input:focus:-ms-input-placeholder {
  -ms-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

.sweet-alert input:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

.sweet-alert input::-moz-placeholder {
  color: #bdbdbd;
}

.sweet-alert input:-ms-input-placeholder {
  color: #bdbdbd;
}

.sweet-alert input::-webkit-input-placeholder {
  color: #bdbdbd;
}

.sweet-alert.show-input input {
  display: block;
}

.sweet-alert .sa-confirm-button-container {
  display: inline-block;
  position: relative;
}

.sweet-alert .la-ball-fall {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -27px;
  margin-top: 4px;
  opacity: 0;
  visibility: hidden;
}

.sweet-alert button {
  background-color: #8cd4f5;
  color: white;
  border: none;
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 32px;
  margin: 26px 5px 0 5px;
  cursor: pointer;
}

.sweet-alert button:focus {
  outline: none;
  box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.sweet-alert button:hover {
  background-color: #7ecff4;
}

.sweet-alert button:active {
  background-color: #5dc2f1;
}

.sweet-alert button.cancel {
  background-color: #c1c1c1;
}

.sweet-alert button.cancel:hover {
  background-color: #b9b9b9;
}

.sweet-alert button.cancel:active {
  background-color: #a8a8a8;
}

.sweet-alert button.cancel:focus {
  box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important;
}

.sweet-alert button[disabled] {
  opacity: 0.6;
  cursor: default;
}

.sweet-alert button.confirm[disabled] {
  color: transparent;
}

.sweet-alert button.confirm[disabled] ~ .la-ball-fall {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.sweet-alert button::-moz-focus-inner {
  border: 0;
}

.sweet-alert[data-has-cancel-button=false] button {
  box-shadow: none !important;
}

.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
  padding-bottom: 40px;
}

.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  border-radius: 40px;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  box-sizing: content-box;
}

.sweet-alert .sa-icon.sa-error {
  border-color: #f27474;
}

.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block;
}

.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #f27474;
  display: block;
  top: 37px;
  border-radius: 2px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  transform: rotate(45deg);
  left: 17px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  transform: rotate(-45deg);
  right: 16px;
}

.sweet-alert .sa-icon.sa-warning {
  border-color: #f8bb86;
}

.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #f8bb86;
}

.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #f8bb86;
}

.sweet-alert .sa-icon.sa-info {
  border-color: #c9dae1;
}

.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #c9dae1;
}

.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #c9dae1;
}

.sweet-alert .sa-icon.sa-success {
  border-color: #098fd0;
}

.sweet-alert .sa-icon.sa-success::before,
.sweet-alert .sa-icon.sa-success::after {
  content: "";
  border-radius: 40px;
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: white;
  transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-success::before {
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  transform: rotate(-45deg);
  transform-origin: 60px 60px;
}

.sweet-alert .sa-icon.sa-success::after {
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  transform: rotate(-45deg);
  transform-origin: 0px 60px;
}

.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165, 220, 134, 0.2);
  border-radius: 40px;
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: white;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #098fd0;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat;
}

/*
   * Animations
   */
@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}
@keyframes slideFromTop {
  0% {
    top: 0%;
  }
  100% {
    top: 50%;
  }
}
@keyframes slideToTop {
  0% {
    top: 50%;
  }
  100% {
    top: 0%;
  }
}
@keyframes slideFromBottom {
  0% {
    top: 70%;
  }
  100% {
    top: 50%;
  }
}
@keyframes slideToBottom {
  0% {
    top: 50%;
  }
  100% {
    top: 70%;
  }
}
.showSweetAlert[data-animation=pop] {
  animation: showSweetAlert 0.3s;
}

.showSweetAlert[data-animation=none] {
  animation: none;
}

.showSweetAlert[data-animation=slide-from-top] {
  animation: slideFromTop 0.3s;
}

.showSweetAlert[data-animation=slide-from-bottom] {
  animation: slideFromBottom 0.3s;
}

.hideSweetAlert[data-animation=pop] {
  animation: hideSweetAlert 0.2s;
}

.hideSweetAlert[data-animation=none] {
  animation: none;
}

.hideSweetAlert[data-animation=slide-from-top] {
  animation: slideToTop 0.4s;
}

.hideSweetAlert[data-animation=slide-from-bottom] {
  animation: slideToBottom 0.3s;
}
@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
}
.animateSuccessTip {
  animation: animateSuccessTip 0.75s;
}

.animateSuccessLong {
  animation: animateSuccessLong 0.75s;
}

.sa-icon.sa-success.animate::after {
  animation: rotatePlaceholder 4.25s ease-in;
}
@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
}
.animateErrorIcon {
  animation: animateErrorIcon 0.5s;
}
@keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px;
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1;
  }
}
.animateXMark {
  animation: animateXMark 0.5s;
}
@keyframes pulseWarning {
  0% {
    border-color: #f8d486;
  }
  100% {
    border-color: #f8bb86;
  }
}
.pulseWarning {
  animation: pulseWarning 0.75s infinite alternate;
}
@keyframes pulseWarningIns {
  0% {
    background-color: #f8d486;
  }
  100% {
    background-color: #f8bb86;
  }
}
.pulseWarningIns {
  animation: pulseWarningIns 0.75s infinite alternate;
}
@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Internet Explorer 9 has some special quirks that are fixed here */
/* The icons are not animated. */
/* This file is automatically merged into sweet-alert.min.js through Gulp */
/* Error icon */
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -ms-transform: rotate(45deg) \9 ;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -ms-transform: rotate(-45deg) \9 ;
}

/* Success icon */
.sweet-alert .sa-icon.sa-success {
  border-color: transparent\9 ;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  -ms-transform: rotate(45deg) \9 ;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  -ms-transform: rotate(-45deg) \9 ;
}

/*!
   * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
   * Copyright 2015 Daniel Cardoso <@DanielCardoso>
   * Licensed under MIT
   */
.la-ball-fall,
.la-ball-fall > div {
  position: relative;
  box-sizing: border-box;
}

.la-ball-fall {
  display: block;
  font-size: 0;
  color: #fff;
}

.la-ball-fall.la-dark {
  color: #333;
}

.la-ball-fall > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.la-ball-fall {
  width: 54px;
  height: 18px;
}

.la-ball-fall > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  opacity: 0;
  animation: ball-fall 1s ease-in-out infinite;
}

.la-ball-fall > div:nth-child(1) {
  animation-delay: -200ms;
}

.la-ball-fall > div:nth-child(2) {
  animation-delay: -100ms;
}

.la-ball-fall > div:nth-child(3) {
  animation-delay: 0ms;
}

.la-ball-fall.la-sm {
  width: 26px;
  height: 8px;
}

.la-ball-fall.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px;
}

.la-ball-fall.la-2x {
  width: 108px;
  height: 36px;
}

.la-ball-fall.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px;
}

.la-ball-fall.la-3x {
  width: 162px;
  height: 54px;
}

.la-ball-fall.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px;
}

/*
   * Animation
   */
@keyframes ball-fall {
  0% {
    opacity: 0;
    transform: translateY(-145%);
  }
  10% {
    opacity: 0.5;
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateY(145%);
  }
}
.field-report-select__control {
  min-height: 52px !important;
}

.navbar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.09) !important;
  flex-direction: column;
  background-color: white;
}
.navbar-container__content {
  width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.navbar-container__content .nav-logo {
  width: 80px;
}
.navbar-container__content .nav-link {
  border-bottom: 2px solid transparent;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #77838f;
}
.navbar-container__content .nav-link .title {
  margin-left: 10px;
}
.navbar-container__content .nav-link:hover {
  border-bottom: 2px solid #098fd0;
}
.navbar-container__content .active-page {
  color: #098fd0;
  border-bottom: 2px solid #098fd0;
}

.dropdown-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.09) !important;
  background-color: #098fd0;
  margin-top: -2px;
}
.dropdown-container__content {
  width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.dropdown-container__content .link {
  color: white;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  margin: 0px 15px;
  cursor: pointer;
}

.list-title {
  font-size: 2rem;
  color: #232323;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
}

.default-list-container {
  background-color: white;
  border-radius: 5px;
  border: 1px solid #efefef;
  padding: 30px;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.09) !important;
}

.embedded-list-container {
  background-color: transparent !important;
  border-radius: unset !important;
  border: unset !important;
  padding: unset !important;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0) !important;
}

.subtitle {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: #77838f;
  text-transform: uppercase;
}

.list-container {
  font-size: 0.9rem;
}
.list-container .list-item-xs {
  display: flex;
  flex-direction: column;
  width: 50px;
}
.list-container .list-item-sm {
  display: flex;
  flex-direction: column;
  padding-right: 15px;
  width: 105px;
  word-break: break-word;
}
.list-container .list-item-md {
  display: flex;
  flex-direction: column;
  padding-right: 15px;
  width: 185px;
  word-break: break-all;
}
.list-container .list-item-lg {
  display: flex;
  flex-direction: column;
  padding-right: 15px;
  width: 285px;
  word-break: break-all;
}
.list-container .secondary,
.list-container .subtitle {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: #77838f;
  text-transform: uppercase;
}
.list-container .list-header-actions-wrapper {
  margin-bottom: 30px;
}
.list-container .list-header-actions-wrapper .list-header-action {
  margin-left: 15px;
}
.list-container .list-header-container {
  display: flex;
  align-items: center;
}
.list-container .list-header-container .list-header-item {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: #77838f;
  text-transform: uppercase;
  color: #bfcadc;
  display: flex;
  align-items: flex-start;
  height: 50px;
  word-break: break-word;
}
.list-container .list-items-container {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}
.list-container .list-items-container .list-item {
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 80px;
  border-bottom: 1px solid #efefef;
  justify-content: space-between;
}
.list-container .list-items-container .list-item .content-items {
  display: flex;
  align-items: center;
}
.list-container .list-items-container .list-item .content-items .nested-list-element {
  padding: 10px 0px;
  height: 18px;
}
.list-container .list-items-container .list-item .action-items {
  display: flex;
}
.list-container .list-items-container .list-item .action-items a {
  cursor: pointer;
  margin-left: 21px;
  color: #bfcadc;
}

.card-title {
  font-size: 2rem;
  color: #232323;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
}

.card-container {
  background-color: white;
  border-radius: 5px;
  border: 1px solid #efefef;
  padding: 30px;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.09) !important;
}
.card-container .card-header-actions-wrapper {
  margin-bottom: 20px;
}

.content-card-container {
  background-color: #f7f9fc;
  border-radius: 5px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  overflow: scroll;
}
.content-card-container__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content-card-container__header .title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #282828;
}
.content-card-container__header .actions a {
  margin-left: 21px;
}

.status-label {
  padding: 5px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.7rem;
}
.status-label__active {
  background-color: #dff6e5;
  color: #00b434;
}
.status-label__archived {
  background-color: #feeded;
  color: #fb6064;
}
.status-label__draft {
  background-color: #efefef;
  color: #77838f;
}
.status-label__customer, .status-label__customer_account {
  background-color: #dff6e5;
  color: #00b434;
}
.status-label__published {
  background-color: #dff6e5;
  color: #00b434;
}
.status-label__admin {
  background-color: #feeded;
  color: #fb6064;
}
.status-label__employee {
  background-color: #efefef;
  color: #77838f;
}
.status-label__delivery_driver {
  background-color: #0976ab;
  color: white;
}

.data-group {
  display: grid;
  grid-template-columns: 121px 1fr;
  gap: 15px;
  align-items: center;
}
.data-group__label {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #77838f;
}
.data-group__value {
  font-weight: 500;
}

.PhoneInputInput {
  border: 0px;
  outline: 0px;
  padding-left: 10px;
  font-size: 1rem;
}

.pagination-wrapper {
  display: flex;
  align-items: center;
  margin: 50px 0px;
}
.pagination-wrapper a {
  font-size: 0.9rem;
  color: #098fd0;
}
.pagination-wrapper .middle-button {
  padding: 14px 18px;
  border: 1px #bfcadc solid;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}
.pagination-wrapper .first-button {
  padding: 14px 18px;
  border-left: 1px #bfcadc solid;
  border-top: 1px #bfcadc solid;
  border-bottom: 1px #bfcadc solid;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}
.pagination-wrapper .last-button {
  padding: 14px 18px;
  border-right: 1px #bfcadc solid;
  border-top: 1px #bfcadc solid;
  border-bottom: 1px #bfcadc solid;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}
.pagination-wrapper__counter {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 21px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #098fd0;
}
.pagination-wrapper .active-page {
  background-color: #098fd0;
  color: white;
  cursor: not-allowed;
}

.click-to-copy-wrapper {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
}
.click-to-copy-wrapper span {
  cursor: copy;
}

.stat-card {
  background-color: white;
  border-radius: 5px;
  border: 1px solid #efefef;
  padding: 30px;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.09) !important;
  padding: 20px;
}
.stat-card__data {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stat-card__count {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #282828;
}
.stat-card__label {
  font-size: 0.9rem;
  color: #77838f;
  font-weight: 500;
}
.stat-card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #098fd0;
  border-radius: 15px;
  height: 80px;
  width: 80px;
}
.stat-card__icon svg {
  font-size: 2rem;
  color: white;
}

.map-wrapper {
  padding-top: 68px;
}

.map-wrapper > div {
  border-radius: 5px;
  border: 1px solid #efefef;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.09) !important;
}

.bookmarked {
  color: #098fd0;
}

.not-bookmarked {
  color: #bfcadc;
}

.swd-manager-tabs-wrapper {
  margin-bottom: 42px;
}
.swd-manager-tabs-wrapper__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.swd-manager-tabs-wrapper__header svg {
  font-size: 2rem !important;
  margin-left: 15px;
}
.swd-manager-tabs-wrapper__tabs .tab-link {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  color: #bfcadc;
  padding: 15px 30px;
  border-bottom: 2px solid transparent;
}
.swd-manager-tabs-wrapper__tabs .active-tab {
  color: #098fd0;
  border-bottom: 2px solid #098fd0;
}

.date-range-group {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-right: 15px;
}
.date-range-group .subtitle {
  color: #098fd0;
}
.date-range-group__clear-link {
  margin: 0px 20px 0px 5px;
  cursor: pointer;
  font-size: 1.25rem;
}

.chart-title {
  display: flex;
  justify-content: center;
  align-content: center;
  text-align: center;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #098fd0;
}

.flir-images-horizontal-list {
  margin: 15px 0px;
  padding-bottom: 15px;
  border-bottom: 1px solid #efefef;
  display: flex;
  align-items: baseline;
  overflow: scroll;
}
.flir-images-horizontal-list__img-container {
  width: 250px;
  height: 300px;
  margin-right: 15px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.flir-images-horizontal-list__img-container img {
  border-radius: 5px;
  width: 250px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.flir-images-horizontal-list__img-container .actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}
.flir-images-horizontal-list__img-container .actions a {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  color: #098fd0;
  padding: 0px 10px;
  cursor: pointer;
}

.existing-flir-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.existing-flir-image-container img {
  margin-bottom: 15px;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.existing-flir-image-container__link {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}
.existing-flir-image-container__deleting {
  cursor: not-allowed;
}

.field-report-list,
.swd-manager-container,
.swd-manager-tabs-wrapper__header,
.inventory-header-container__header {
  padding: 60px 0px 0px 0px;
  width: calc(100vw - 130px);
}

.field-report-list-header-actions {
  padding-top: 15px !important;
}

.swd-manager-tabs-wrapper {
  width: 100%;
  gap: 0px !important;
}

.swd-manager-tabs-wrapper__tabs {
  padding-top: 15px !important;
}

a:hover {
  cursor: pointer !important;
}

.data-dashboard-grid {
  width: calc(100vw - 130px);
}

.swd-container {
  width: calc(100vw - 130px);
  padding: 60px 0px 0px 0px;
}

.map-wrapper {
  padding-top: 0px !important;
}

.flir-images-row {
  padding: 0px 15px;
}

.card-container.embedded {
  padding: 0px 15px;
  box-shadow: none !important;
  border-radius: 0px !important;
  border: none !important;
  background-color: transparent !important;
}

.swd-manager-container .map-wrapper {
  padding-right: 15px !important;
}

.flex-end.list-header-actions-wrapper {
  padding-right: 15px;
}

.ReactModal__Overlay.ReactModal__Overlay--after-open {
  z-index: 1250 !important;
}

.flex-center.btn-group {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  align-items: center !important;
}

@media (max-width: 800px) {
  .grid-2-3,
  .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .ReactModal__Overlay.ReactModal__Overlay--after-open .ReactModal__Content.ReactModal__Content--after-open {
    width: calc(100vw - 30px) !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
    max-height: calc(100vh - 30px) !important;
  }
  .ReactModal__Overlay.ReactModal__Overlay--after-open .ReactModal__Content.ReactModal__Content--after-open .horizontal-group {
    flex-direction: column !important;
  }
  .ReactModal__Overlay.ReactModal__Overlay--after-open .ReactModal__Content.ReactModal__Content--after-open .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .flex-end.list-header-actions-wrapper {
    flex-direction: column !important;
  }
  .heading-lg {
    font-size: 1.25rem !important;
  }
  .dashboard-container {
    padding: 15px 0px 100px 0px;
  }
  .field-report-list,
  .swd-container,
  .card-container.swd-config-card,
  .data-dashboard-grid,
  .swd-manager-container,
  .swd-manager-tabs-wrapper__header,
  .inventory-header-container__header {
    width: calc(100vw - 85px) !important;
  }
  .card-container.swd-config-card {
    padding: 15px !important;
  }
  .card-container.swd-config-card .content-card-container {
    padding: 10px !important;
    gap: 10px !important;
  }
  .card-container.swd-config-card .content-card-container .grid-2,
  .card-container.swd-config-card .content-card-container .data-group {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .card-container.swd-config-card .content-card-container .grid-2 {
    margin-top: 10px !important;
  }
  .data-dashboard-filters {
    flex-direction: column;
    align-items: flex-start;
  }
  .data-dashboard-filters .date-range-group {
    justify-content: space-between;
    width: calc(100vw - 102px);
  }
  .data-dashboard-filters .filter-link {
    margin: 15px 0px 0px 0px;
  }
  .data-dashboard-grid {
    grid-template-columns: 1fr;
  }
  .swd-manager-tabs-wrapper__header {
    margin-bottom: 15px !important;
  }
  .swd-manager-tabs-wrapper__header .heading-lg {
    padding-left: 15px;
  }
  .swd-manager-tabs-wrapper__tabs {
    padding-top: 15px !important;
    overflow-x: overlay;
    overflow-y: hidden;
    padding-bottom: 15px;
  }
  .list-component-items-container .MuiListItem-root {
    padding-right: 16px !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .list-component-items-container .MuiListItem-root .MuiListItemText-multiline {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  .list-component-items-container .MuiListItem-root .MuiListItemSecondaryAction-root {
    position: relative !important;
    right: unset !important;
    top: unset !important;
    transform: unset !important;
    padding-bottom: 30px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25) !important;
    width: 100% !important;
  }
  .list-component-items-container .MuiListItem-root .MuiListItemSecondaryAction-root .MuiStack-root {
    width: 100% !important;
    padding-right: 0px !important;
    justify-content: center !important;
  }
  .content-card-container__header .title,
  .content-card-container__header .actions a {
    font-size: 0.8rem !important;
  }
  .MuiListItemText-primary {
    font-size: 0.85rem !important;
  }
  .homepage-wrapper {
    grid-template-columns: 1fr !important;
  }
  .homepage-wrapper .image-container {
    display: none !important;
  }
}
.MuiSpeedDialAction-staticTooltipLabel {
  min-width: 200px !important;
  font-size: 0.9rem !important;
}
