/*!***************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/styles/main.scss ***!
  \***************************************************************************************************************/
@import url(https://fonts.googleapis.com/css?family=Roboto:300);
/*!***************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/styles/style.css ***!
  \***************************************************************************************************************/
*,
::after,
::before {
  box-sizing: border-box; }

/* fonts */
/* @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600&family=Montserrat&display=swap"); */
html {
  font-size: 100%; }

/*16px*/
:root {
  /* colors */
  --primary-100: #e2e0ff;
  --primary-200: #c1beff;
  --primary-300: #a29dff;
  --primary-400: #837dff;
  --primary-500: #645cff;
  --primary-600: #504acc;
  --primary-700: #3c3799;
  --primary-800: #282566;
  --primary-900: #141233;
  /* grey */
  --grey-50: #f8fafc;
  --grey-100: #f1f5f9;
  --grey-200: #e2e8f0;
  --grey-300: #cbd5e1;
  --grey-400: #94a3b8;
  --grey-500: #64748b;
  --grey-600: #475569;
  --grey-700: #334155;
  --grey-800: #1e293b;
  --grey-900: #0f172a;
  /* rest of the colors */
  --black: #222;
  --white: #fff;
  --red-light: #f8d7da;
  --red-dark: #842029;
  --green-light: #d1e7dd;
  --green-dark: #0f5132;
  /* fonts  */
  --small-text: 0.875rem;
  --extra-small-text: 0.7em;
  /* rest of the vars */
  --backgroundColor: var(--grey-50);
  --textColor: var(--grey-900);
  --borderRadius: 0.25rem;
  --letterSpacing: 1px;
  --transition: 0.3s ease-in-out all;
  --max-width: 1120px;
  --fixed-width: 600px;
  /* box shadow*/
  --shadow-1: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-2: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-3: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-4: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04); }

body {
  background: var(--backgroundColor);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: var(--textColor); }

p {
  margin-bottom: 0;
  max-width: 40em; }

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  margin-bottom: 1.38rem;
  font-family: var(--headingFont);
  font-weight: 400;
  line-height: 1.3;
  text-transform: capitalize;
  letter-spacing: var(--letterSpacing); }

h1 {
  margin-top: 0;
  font-size: 3.052rem; }

h2 {
  font-size: 2.441rem; }

h3 {
  font-size: 1.953rem; }

h4 {
  font-size: 1.563rem; }

h5 {
  font-size: 1.25rem; }

small,
.text-small {
  font-size: var(--small-text); }

a {
  text-decoration: none; }

ul {
  list-style-type: none;
  padding: 0; }

.img {
  width: 100%;
  display: block;
  object-fit: cover; }

/* buttons */
.btn {
  cursor: pointer;
  color: var(--white);
  background: var(--primary-500);
  border: transparent;
  border-radius: var(--borderRadius);
  letter-spacing: var(--letterSpacing);
  padding: 0.375rem 0.75rem;
  box-shadow: var(--shadow-1);
  transition: var(--transition);
  text-transform: capitalize;
  display: inline-block; }

.btn:hover {
  background: var(--primary-700);
  box-shadow: var(--shadow-3); }

.btn-hipster {
  color: var(--primary-500);
  background: var(--primary-200); }

.btn-hipster:hover {
  color: var(--primary-200);
  background: var(--primary-700); }

.btn-block {
  width: 100%; }

/* alerts */
.alert {
  padding: 0.375rem 0.75rem;
  margin-bottom: 1rem;
  border-color: transparent;
  border-radius: var(--borderRadius); }

.alert-danger {
  color: var(--red-dark);
  background: var(--red-light); }

.alert-success {
  color: var(--green-dark);
  background: var(--green-light); }

/* form */
.form {
  width: 90vw;
  max-width: 400px;
  background: var(--white);
  border-radius: var(--borderRadius);
  box-shadow: var(--shadow-2);
  padding: 2rem 2.5rem;
  margin: 3rem 0; }

.form-label {
  display: block;
  font-size: var(--small-text);
  margin-bottom: 0.5rem;
  text-transform: capitalize;
  letter-spacing: var(--letterSpacing); }

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.375rem 0.75rem;
  border-radius: var(--borderRadius);
  background: var(--backgroundColor);
  border: 1px solid var(--grey-200); }

.form-row {
  margin-bottom: 1rem; }

.form-textarea {
  height: 7rem; }

::placeholder {
  font-family: inherit;
  color: var(--grey-400); }

.form-alert {
  color: var(--red-dark);
  letter-spacing: var(--letterSpacing);
  text-transform: capitalize; }

/* alert */
@keyframes spinner {
  to {
    transform: rotate(360deg); } }

.form h5 {
  text-align: center; }

.form .btn {
  margin-top: 0.5rem; }

.loading {
  width: 6rem;
  height: 6rem;
  border: 5px solid var(--grey-400);
  border-radius: 50%;
  border-top-color: var(--primary-500);
  animation: spinner 0.6s linear infinite; }

.loading {
  margin: 0 auto; }

/* title */
.title {
  text-align: center; }

.title-underline {
  background: var(--primary-500);
  width: 7rem;
  height: 0.25rem;
  margin: 0 auto;
  margin-top: -1rem; }

.section {
  padding: 2rem 0;
  width: 90vw;
  max-width: var(--max-width);
  margin: 0 auto; }

.navbar {
  width: 90vw;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 1rem; }

.link {
  color: var(--grey-500); }

.active {
  color: var(--primary-500); }

.products article {
  margin-bottom: 1rem; }

.products h5 {
  margin-bottom: 0; }

.product img {
  width: 200px;
  height: 150px; }

/*!*************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/js/components/shared/breadcrumbs/_breadcrumbs.scss ***!
  \*************************************************************************************************************************************************/
.breadcrumb > li + li:before {
  font-family: "FontAwesome";
  content: "\f054";
  margin-top: 2px; }

.breadcrumb {
  background: none;
  margin-bottom: 5px;
  margin-top: 5px; }

.breadcrumb li a.active {
  color: #333;
  cursor: default;
  text-decoration: none;
  padding-right: 10px;
  padding-left: 10px; }

/*!*******************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/styles/main.scss (1) ***!
  \*******************************************************************************************************************/
.main-heading-title {
  text-transform: capitalize;
  color: #616065;
  width: max-content;
  width: -moz-max-content;
  width: fit-content;
  display: inline-table;
  border-bottom: 3px solid #6F6F6E;
  margin-bottom: 20px; }

.bg-primary-main-heading {
  font-weight: 600;
  width: max-content;
  width: -moz-max-content;
  width: fit-content;
  display: inline-table;
  border-bottom: 3px solid #F78F1E;
  margin-bottom: 20px; }

.square-edges {
  border-radius: 0px !important; }

.btn-primary {
  background-color: #F78F1E !important;
  color: white;
  border-color: #F78F1E !important;
  border-radius: 0px !important; }

.br-1 {
  border-right: 1px solid #c2c0c0 !important; }

.btn-group-xs > .btn,
.btn-xs {
  padding: 4px !important;
  font-size: 14px !important;
  line-height: 0.5 !important;
  border-radius: 0 !important; }

.bg-light-grey {
  background-color: #d8d8d8 !important; }

.bg-dark-grey {
  background-color: #616065 !important;
  color: white !important; }

.bg-medium-grey {
  background-color: #7f7d85 !important;
  color: white !important; }

.bg-brand-primary {
  background-color: #F78F1E !important;
  color: white !important; }

.bg-brand-primary-light {
  background-color: #fef1e3 !important;
  color: black; }

.bg-info-secondary {
  background-color: #175586;
  color: #fff; }

#loadingSpinner {
  height: 10px !important; }

.border-brand-primary-thin + .border-brand-primary-thin:focus {
  border: 2px solid #F78F1E !important; }

.border-brand-primary-1 {
  border: 1px solid #F78F1E !important; }

.border-thin-white {
  border: 2px solid white !important; }

.border-thinner-white {
  border: 1px solid white !important; }

fieldset {
  border-radius: 0px !important; }

.b-0 {
  border: none !important; }

.MuiButton-root {
  outline: none !important; }

.btn-info:hover,
.btn-secondary:hover {
  color: #1976d2 !important; }

.MuiDialog-paper {
  border-radius: 0px !important; }

.btn-info.disabled,
.btn-info:disabled {
  background-color: #fff !important;
  opacity: 1 !important;
  border: 1px solid #d8d8d8 !important;
  color: #d8d8d8 !important;
  cursor: not-allowed !important; }

.text-info-disabled {
  color: #d8d8d8 !important; }

.sticky-table-header {
  position: sticky;
  top: auto; }

.bg-danger-disabled {
  background-color: #f58792 !important; }

tr,
td {
  text-align: center; }

.link-pointer {
  cursor: pointer !important; }

.bg-white {
  background-color: #fff !important; }

.required-field {
  color: red !important;
  font-weight: 600 !important; }

.margin-border {
  margin: 10px; }

.b-1-dark-grey {
  border: 1px #616065 !important; }

.b-2-dark-grey {
  border: 2px #616065 !important; }

.fake-link {
  color: #007bff;
  cursor: pointer; }
  .fake-link:hover {
    text-decoration: none; }

.has-error {
  border: 2px solid red !important;
  color: #495057;
  background-color: #fff; }

.border-1-primary-orange {
  border: 1px #F78F1E !important; }

.form-control:focus {
  box-shadow: none !important;
  border-color: #F78F1E !important; }

.input-group-text-validation-error {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 10px 2px 10px !important;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #d32f2f !important;
  border-left: 1px solid #d32f2f !important;
  border-radius: 0px !important; }

div#OtherQueryDescription fieldset.MuiOutlinedInput-notchedOutline {
  border: 1px solid #DADADA !important; }

div#OtherQueryDescription .MuiInputBase-multiline {
  background-color: #fff !important; }

.no-padding.MuiDialogActions-root {
  padding: 5px !important; }

.w-200px {
  width: 200px !important; }

.pb-6 {
  padding-bottom: 4rem !important; }

.maximinHeight {
  min-height: 79.6vh !important; }

.text-brand-primary {
  color: #F78F1E !important; }

.text-info-dark {
  color: #2173b1 !important; }

.text-brand-dark-grey {
  color: #616065 !important; }

.text-brand-light-grey {
  color: #d8d8d8 !important; }

.text-white {
  color: #fff; }

.text-italics {
  font-style: italic !important; }

.bold-400 {
  font-weight: 400 !important; }

.bold-500 {
  font-weight: 500 !important; }

.bold-600 {
  font-weight: 600 !important; }

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

.text-14px {
  font-size: 14px !important; }

.text-15px {
  font-size: 15px !important; }

a.link-underline:hover {
  border-bottom: 1px solid #ccc; }

.text-paddings {
  padding: 3px;
  margin: 2px; }

.no-underline {
  text-decoration: none !important; }

.card-header-thin {
  padding: 0 !important;
  padding-top: 7px !important;
  padding-bottom: 7px !important;
  padding-left: 11px !important; }

.modal-header {
  font-size: 1.8rem;
  line-height: 1.8rem; }
  .modal-header button {
    font-size: inherit; }

.MuiDialogActions-root {
  padding: 20px 24px !important; }

.modal-dialog-title-thin {
  padding: 8px 18px !important; }

.header {
  background-color: #19234d !important; }

.text-brand-primary {
  color: #F78F1E !important; }

.text-info-dark {
  color: #2173b1 !important; }

.text-brand-dark-grey {
  color: #616065 !important; }

.text-brand-light-grey {
  color: #d8d8d8 !important; }

.text-white {
  color: #fff; }

.text-italics {
  font-style: italic !important; }

.bold-400 {
  font-weight: 400 !important; }

.bold-500 {
  font-weight: 500 !important; }

.bold-600 {
  font-weight: 600 !important; }

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

.text-14px {
  font-size: 14px !important; }

.text-15px {
  font-size: 15px !important; }

a.link-underline:hover {
  border-bottom: 1px solid #ccc; }

.text-paddings {
  padding: 3px;
  margin: 2px; }

.no-underline {
  text-decoration: none !important; }

div.MuiLoadingButton-loadingIndicator {
  position: static !important;
  padding-right: 12px !important; }

.bg-danger {
  background-color: #d32f2f !important; }

.bg-success {
  background-color: #228e3b !important; }

.bg-primary-orange {
  background-color: #F78F1E !important;
  color: #fff !important; }

.bg-warning-override {
  background-color: #FF8F00F5 !important; }

.MuiCheckbox-colorSecondary.Mui-checked {
  color: #3a6fcf !important; }

.mt-6 {
  margin-top: 4.5rem !important; }

.MuiAlert-message {
  font-weight: 500 !important; }

.MuiAlert-action {
  padding: 0px !important;
  padding-right: 6px !important; }

.MuiFormLabel-asterisk {
  color: red !important; }

.MuiOutlinedInput-root .MuiAutocomplete-input {
  padding: 0 !important; }

#startDate,
#endDate {
  padding: 10px !important; }

#endDate-helper-text {
  margin-left: initial !important; }

.MuiSpeedDialAction-staticTooltipLabel {
  width: 120px !important;
  height: 40px !important;
  padding: 7px 5px 15px 19px !important;
  padding-top: 7px;
  padding-right: 5px;
  padding-bottom: 15px;
  padding-left: 19px;
  font-weight: 500 !important;
  color: #353535 !important; }

.ag-root-wrapper.ag-ltr.ag-layout-normal {
  border-radius: 0px; }

footer {
  position: static;
  bottom: 0;
  width: 100%;
  background-color: #1f1f1f;
  color: #fff;
  padding: 20px 0; }
  footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 6em !important;
    padding-right: 6em !important; }
  footer .footer-info {
    font-size: 14px;
    color: #aaa; }
  footer .footer-credits {
    text-align: right;
    font-size: 14px;
    color: #aaa; }
  footer .footer-credits img {
    max-height: 20px;
    margin-bottom: 5px; }
  footer ul {
    float: left;
    list-style: none;
    margin-left: -48px; }
    footer ul li {
      display: inline;
      padding-left: 8px;
      padding-right: 12px;
      border-right: 1px solid #fff; }
  footer a.footerlink {
    color: #fff !important; }

input[type='file'] {
  color: rgba(0, 0, 0, 0); }

.imageSize {
  width: 100%;
  height: 10rem;
  object-fit: scale-down; }

.imagePlaceholder {
  width: 100%;
  height: 10rem;
  background-color: #f7f7f7;
  border: 1px solid black; }

.login-container {
  margin-top: -0.3em;
  /* Media query for landscape orientation */ }
  .login-container .form-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; }
    .login-container .form-logo > img {
      max-width: 100% !important;
      height: auto;
      padding-bottom: 80px !important; }
  .login-container .login-heading {
    position: initial;
    margin-top: -70px; }
    .login-container .login-heading > span {
      font-size: 17pt;
      font-weight: 500;
      text-align: center; }
  @media screen and (max-width: 768px) {
    .login-container .form-logo img {
      width: 80%;
      /* Adjust as needed */ } }
  @media screen and (max-width: 480px) {
    .login-container .form-logo img {
      width: 90%;
      margin-top: -90px; } }
  @media screen and (orientation: landscape) {
    .login-container .form-logo img {
      width: 70%;
      margin-top: -158px; } }

.login-page {
  padding: 8% 0 0;
  margin: auto; }

.form {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  margin: 0 auto 100px;
  padding: 45px;
  text-align: left;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24); }
  .form .signin-title {
    color: #6F6F6E; }

.container {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 0 auto; }

.container:before,
.container:after {
  content: "";
  display: block;
  clear: both; }

.container .info {
  margin: 50px auto;
  text-align: center; }

.container .info h1 {
  margin: 0 0 15px;
  padding: 0;
  font-size: 36px;
  font-weight: 300;
  color: #1a1a1a; }

.container .info span {
  color: #4d4d4d;
  font-size: 12px; }

.container .info span a {
  color: #000000;
  text-decoration: none; }

.container .info span .fa {
  color: #EF3B3A; }

body {
  background: #FFF !important;
  /* fallback for old browsers */
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.btn-disabled {
  cursor: not-allowed !important; }

.btn-secondary-disabled {
  color: #bec9d0 !important; }

.btn-brand-primary {
  color: white !important;
  background-color: #F78F1E !important; }

.MuiIconButton-root:hover {
  background-color: transparent !important; }

button:focus {
  outline: none !important; }

.btn-primary-action {
  font-size: 13px !important;
  height: 32px !important; }

.action-button-disabled {
  color: #a8a8a8 !important;
  border-color: lightgray !important;
  pointer-events: none !important;
  background-color: #f0f0f0 !important;
  display: inline-block;
  height: 38px;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: 0.02857em;
  min-width: 78px;
  padding: 6px 13px 0px 13px !important; }

.action-button-primary {
  color: #fff !important;
  background-color: #F78F1E !important;
  border-color: #fc8b27 !important;
  height: 38px !important; }

.action-button-primary-delete {
  color: #fff !important;
  background-color: #dc3545 !important;
  height: 38px !important;
  border-color: #dc3545 !important; }

.action-button-primary-secondary {
  color: #F78F1E !important;
  background-color: #fff !important;
  border-color: #F78F1E !important;
  height: 38px !important; }

.sticky-table-header {
  position: sticky;
  top: -1px;
  z-index: 1000;
  background-color: #eee;
  border-bottom: 0.1px solid black; }

.dropzone-target-area {
  border: 2px dashed #d8d8d8 !important;
  min-height: 100px !important; }

.border-bottom-dashed-light-grey {
  border-bottom: 2px dashed #d8d8d8 !important; }

.rates-table .rates-table-actions .btn-disabled {
  background-color: #fff !important;
  opacity: 1 !important;
  color: #d8d8d8 !important;
  cursor: not-allowed !important; }

.MuiInputBase-root .MuiOutlinedInput-root .MuiInputBase-colorPrimary .Mui-disabled .MuiInputBase-fullWidth .MuiInputBase-formControl, .MuiInputBase-multiline {
  background-color: #F7F7F7 !important; }

@media (min-width: 1200px) and (max-width: 1799px) {
  .apply-custom-card-width {
    width: 234px !important; } }

.masthead-banner {
  background-color: #6c757d;
  color: white;
  padding: 40px 0; }

.masthead-banner h3 {
  color: white;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 1.5rem; }

.masthead-banner p {
  color: #e9ecef;
  line-height: 1.6;
  margin-bottom: 15px; }

.contact-info {
  margin-bottom: 15px; }

.contact-label {
  color: #F78F1E;
  font-weight: 500;
  display: inline-block;
  width: 70px; }

.contact-value {
  color: white;
  font-weight: bold; }

.certificate-link {
  color: #e9ecef;
  text-decoration: underline; }

.certificate-link:hover {
  color: #F78F1E;
  text-decoration: underline; }

.social-links {
  margin-top: 20px; }

.social-links a {
  color: #e9ecef;
  margin-right: 15px;
  text-decoration: none;
  transition: color 0.3s; }

.social-links a:hover {
  color: #F78F1E; }

.social-links i {
  margin-right: 5px; }

.orange-tab {
  background-color: #F78F1E;
  color: #333;
  padding: 15px 10px;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-weight: bold;
  font-size: 0.9rem;
  border-radius: 5px 0 0 5px; }

@media (max-width: 768px) {
  .masthead-banner {
    text-align: center; }
  .orange-tab {
    display: none; }
  .masthead-banner .col-md-3,
  .masthead-banner .col-md-2 {
    margin-bottom: 30px; } }

