@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');* {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

input[type='password'],
input[type='email'],
input[type='text'],
input[type='submit'],
textarea,
button {
  /*
   Get rid of native styling. Read more here:
   http://css-tricks.com/almanac/properties/a/appearance/
   */
  -webkit-appearance: none;
  -moz-appearance: none;
}

button,
input[type='submit'] {
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type='number'] {
  -moz-appearance: textfield;
}

body {
  background-color: white !important;
  font-family:
    Open Sans,
    Roboto,
    Times New Roman,
    Times,
    serif,
    sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #464646;
  min-width: 500px;
}
:root {
  --background-primary: #333d45;
  --background-secondary: #f7f9f9;
  --background-focus: #ffffff;
  --background-white: #ffffff;
  --background-grey: #f1f1f1;
  --button-primary: #ff7f00;
  --button-primary-hover: #ff7f00;
  --link: #ff7f00;
  --button-secondary: #c1c1c1;
  --button-disabled: #757171;
  --text-heading: #292929;
  --text-secondary-heading: #464646;
  --text-primary: #555555;
  --text-secondary: #ffffff;
  --text-warning: #ff7761;
  --text-light: #bbbbbb;
  --text-pending: #f8ca72;
  --text-search: #c1c1c1;
  --text-error: #c32727;
  --text-success: #35ac41;
  --box-shadow-primary: #f4f5f6;
  --light-blue: #e4f2ff;
  --blue: #358ad8;
  --dark-blue: #1d71be;
  --dark-orange: #d47600;
  --roman-silver: #81878e;
  --gainsboro: #dddddd;
}

.body-container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.textSubHeading {
  font-size: 20px !important;
  font-style: normal;
  font-weight: 700 !important;
  line-height: 27px;
  color: var(--text-heading) !important;
}

.padding-below-1440 {
  padding-right: 50px;
  padding-left: 25px;
}

@media only screen and (min-width: 1440px) {
  .padding-below-1440 {
    padding-right: 16px;
    padding-left: 16px;
  }
}
/* Font Size */
.fs-10 {
  font-size: 10px;
}

.fs-12 {
  font-size: 12px;
}

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

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

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

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px;
}

.fs-19 {
  font-size: 19px;
}

.fs-20 {
  font-size: 20px;
}

.fs-21 {
  font-size: 21px;
}

.fs-22 {
  font-size: 22px;
}

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

.fs-32 {
  font-size: 32px;
}

.fs-36 {
  font-size: 36px;
}

.fs-38 {
  font-size: 38px;
}

/* Font Size Important */
.fs-14-imp {
  font-size: 14px !important;
}

.fs-16-imp {
  font-size: 16px !important;
}

.fs-17-imp {
  font-size: 17px !important;
}

.fs-20-imp {
  font-size: 20px !important;
}

.fs-40-imp {
  font-size: 40px !important;
}

/* Font Weight */
.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-600-imp {
  font-weight: 600 !important;
}

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

.fw-700-imp {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/* font style */
.italic {
  font-style: italic;
}

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

.text-align-left {
  text-align: left;
}

.text-align-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

/* Text Transformation */
.text-uppercase {
  text-transform: uppercase;
}

.text-underline,
.underline-text {
  text-decoration: underline;
}

.capitalize {
  text-transform: capitalize;
}

.initial {
  text-transform: initial !important;
}

.trayt-black {
  color: var(--text-heading) !important;
}

.trayt-error {
  color: var(--text-error);
}

.trayt-error-imp {
  color: var(--text-error) !important;
}
/* Postfix the Important Margin or padding by -imp */
.m-auto-imp {
  margin: auto !important;
}

.mt-auto-imp {
  margin-top: auto !important;
}

.mb-auto-imp {
  margin-bottom: auto !important;
}

.ml-auto-imp {
  margin-left: auto !important;
}

.mr-auto-imp {
  margin-right: auto !important;
}

.mt-0 {
  margin-top: 0px;
}
.mt-0-imp {
  margin-top: 0px !important;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-0-imp {
  margin-bottom: 0px !important;
}
.ml-0 {
  margin-left: 0px;
}
.ml-0-imp {
  margin-left: 0px !important;
}
.mr-0 {
  margin-right: 0px;
}
.mr-0-imp {
  margin-right: 0px !important;
}

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

.mt-5 {
  margin-top: 5px;
}
.mt-5-imp {
  margin-top: 5px !important;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-5-imp {
  margin-bottom: 5px !important;
}
.ml-5 {
  margin-left: 5px;
}
.ml-5-imp {
  margin-left: 5px !important;
}
.mr-5 {
  margin-right: 5px;
}
.mr-5-imp {
  margin-right: 5px !important;
}

.ml-8 {
  margin-left: 8px;
}
.ml-8-imp {
  margin-left: 8px !important;
}
.mr-8 {
  margin-right: 8px;
}
.mt-8 {
  margin-top: 8px;
}
.mt-8-imp {
  margin-top: 8px !important;
}
.mr-8-imp {
  margin-right: 8px !important;
}

.mt-10 {
  margin-top: 10px;
}
.mt-10-imp {
  margin-top: 10px !important;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-10-imp {
  margin-bottom: 10px !important;
}
.ml-10 {
  margin-left: 10px;
}
.ml-10-imp {
  margin-left: 10px !important;
}
.mr-10 {
  margin-right: 10px;
}
.mr-10-imp {
  margin-right: 10px !important;
}

.mt-12 {
  margin-top: 12px;
}
.mt-12-imp {
  margin-top: 12px !important;
}
.mr-12 {
  margin-right: 12px;
}
.mr-12-imp {
  margin-right: 12px !important;
}

.mt-15 {
  margin-top: 15px;
}
.mt-15-imp {
  margin-top: 15px !important;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-15-imp {
  margin-bottom: 15px !important;
}
.ml-15 {
  margin-left: 15px;
}
.ml-15-imp {
  margin-left: 15px !important;
}
.mr-15 {
  margin-right: 15px;
}
.mr-15-imp {
  margin-right: 15px !important;
}

.mt-20 {
  margin-top: 20px;
}
.mt-20-imp {
  margin-top: 20px !important;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-20-imp {
  margin-bottom: 20px !important;
}
.ml-20 {
  margin-left: 20px;
}
.ml-20-imp {
  margin-left: 20px !important;
}
.mr-20 {
  margin-right: 20px;
}
.mr-20-imp {
  margin-right: 20px !important;
}

.mt-25 {
  margin-top: 25px;
}
.mt-25-imp {
  margin-top: 25px !important;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-25-imp {
  margin-bottom: 25px !important;
}
.ml-25 {
  margin-left: 25px;
}
.ml-25-imp {
  margin-left: 25px !important;
}
.mr-25 {
  margin-right: 25px;
}
.mr-25-imp {
  margin-right: 25px !important;
}

.mt-30 {
  margin-top: 30px;
}
.mt-30-imp {
  margin-top: 30px !important;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-30-imp {
  margin-bottom: 30px !important;
}
.ml-30 {
  margin-left: 30px;
}
.ml-30-imp {
  margin-left: 30px !important;
}
.mr-30 {
  margin-right: 30px;
}
.mr-30-imp {
  margin-right: 30px !important;
}

.mt-35 {
  margin-top: 35px;
}
.mt-35-imp {
  margin-top: 35px !important;
}
.mb-35 {
  margin-bottom: 35px;
}
.mb-35-imp {
  margin-bottom: 35px !important;
}
.ml-35 {
  margin-left: 35px;
}
.ml-35-imp {
  margin-left: 35px !important;
}
.mr-35 {
  margin-right: 35px;
}
.mr-35-imp {
  margin-right: 35px !important;
}

.mt-40 {
  margin-top: 40px;
}
.mt-40-imp {
  margin-top: 40px !important;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-40-imp {
  margin-bottom: 40px !important;
}
.ml-40 {
  margin-left: 40px;
}
.ml-40-imp {
  margin-left: 40px !important;
}
.mr-40 {
  margin-right: 40px;
}
.mr-40-imp {
  margin-right: 40px !important;
}

.mt-45 {
  margin-top: 45px;
}
.mt-45-imp {
  margin-top: 45px !important;
}
.mb-45 {
  margin-bottom: 45px;
}
.mb-45-imp {
  margin-bottom: 45px !important;
}
.ml-45 {
  margin-left: 45px;
}
.ml-45-imp {
  margin-left: 45px !important;
}
.mr-45 {
  margin-right: 45px;
}
.mr-45-imp {
  margin-right: 45px !important;
}

.mt-50 {
  margin-top: 50px;
}
.mt-50-imp {
  margin-top: 50px !important;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-50-imp {
  margin-bottom: 50px !important;
}
.ml-50 {
  margin-left: 50px;
}
.ml-50-imp {
  margin-left: 50px !important;
}
.mr-50 {
  margin-right: 50px;
}
.mr-50-imp {
  margin-right: 50px !important;
}

.mt-60 {
  margin-top: 60px;
}
.mt-60-imp {
  margin-top: 60px !important;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-60-imp {
  margin-bottom: 60px !important;
}
.ml-60 {
  margin-left: 60px;
}
.ml-60-imp {
  margin-left: 60px !important;
}
.mr-60 {
  margin-right: 60px;
}
.mr-60-imp {
  margin-right: 60px !important;
}

.mt-75 {
  margin-top: 75px;
}
.mt-75-imp {
  margin-top: 75px !important;
}
.mb-75 {
  margin-bottom: 75px;
}
.mb-75-imp {
  margin-bottom: 75px !important;
}
.ml-75 {
  margin-left: 75px;
}
.ml-75-imp {
  margin-left: 75px !important;
}
.mr-75 {
  margin-right: 75px;
}
.mr-75-imp {
  margin-right: 75px !important;
}

.mt-100 {
  margin-top: 100px;
}
.mt-100-imp {
  margin-top: 100px !important;
}
.mb-100 {
  margin-bottom: 100px;
}
.mb-100-imp {
  margin-bottom: 100px !important;
}
.mb-200 {
  margin-bottom: 200px;
}
.mb-200-imp {
  margin-bottom: 200px !important;
}

.ml-100 {
  margin-left: 100px;
}
.ml-100-imp {
  margin-left: 100px !important;
}
.mr-100 {
  margin-right: 100px;
}
.mr-100-imp {
  margin-right: 100px !important;
}

.p-0 {
  padding: 0px;
}

.p-0-imp {
  padding: 0px !important;
}

.p-15 {
  padding: 15px;
}

.p-16 {
  padding: 16px;
}

.pt-0 {
  padding-top: 0px;
}
.pt-0-imp {
  padding-top: 0px !important;
}
.pb-0 {
  padding-bottom: 0px;
}
.pb-0-imp {
  padding-bottom: 0px !important;
}
.pl-0 {
  padding-left: 0px;
}
.pl-0-imp {
  padding-left: 0px !important;
}
.pr-0 {
  padding-right: 0px;
}
.pr-0-imp {
  padding-right: 0px !important;
}

.p-5 {
  padding: 5px;
}
.p-5-imp {
  padding: 5px !important;
}
.pt-5 {
  padding-top: 5px;
}
.pt-5-imp {
  padding-top: 5px !important;
}
.pb-5 {
  padding-bottom: 5px;
}
.pb-5-imp {
  padding-bottom: 5px !important;
}
.pl-5 {
  padding-left: 5px;
}
.pl-5-imp {
  padding-left: 5px !important;
}
.pr-5 {
  padding-right: 5px;
}
.pr-5-imp {
  padding-right: 5px !important;
}

.p-10 {
  padding: 10px;
}
.pt-10 {
  padding-top: 10px;
}
.pt-10-imp {
  padding-top: 10px !important;
}
.pb-10 {
  padding-bottom: 10px;
}
.pb-10-imp {
  padding-bottom: 10px !important;
}
.pl-10 {
  padding-left: 10px;
}
.pl-10-imp {
  padding-left: 10px !important;
}
.pr-10 {
  padding-right: 10px;
}
.pr-10-imp {
  padding-right: 10px !important;
}

.pt-15 {
  padding-top: 15px;
}
.pt-15-imp {
  padding-top: 15px !important;
}
.pb-15 {
  padding-bottom: 15px;
}
.pb-15-imp {
  padding-bottom: 15px !important;
}
.pl-15 {
  padding-left: 15px;
}
.pl-15-imp {
  padding-left: 15px !important;
}
.pr-15 {
  padding-right: 15px;
}
.pr-15-imp {
  padding-right: 15px !important;
}
.pr-18 {
  padding-right: 18px;
}
.pr-18-imp {
  padding-right: 18px !important;
}
.pt-20 {
  padding-top: 20px;
}
.pt-20-imp {
  padding-top: 20px !important;
}
.pb-20 {
  padding-bottom: 20px;
}
.pb-20-imp {
  padding-bottom: 20px !important;
}
.pl-20 {
  padding-left: 20px;
}
.pl-20-imp {
  padding-left: 20px !important;
}
.pr-20 {
  padding-right: 20px;
}
.pr-20-imp {
  padding-right: 20px !important;
}

.p-20 {
  padding: 20px;
}

.p-25 {
  padding: 25px;
}
.pt-25 {
  padding-top: 25px;
}
.pt-25-imp {
  padding-top: 25px !important;
}
.pb-25 {
  padding-bottom: 25px;
}
.pb-25-imp {
  padding-bottom: 25px !important;
}
.pl-25 {
  padding-left: 25px;
}
.pl-25-imp {
  padding-left: 25px !important;
}
.pr-25 {
  padding-right: 25px;
}
.pr-25-imp {
  padding-right: 25px !important;
}

.pt-30 {
  padding-top: 30px;
}
.pt-30-imp {
  padding-top: 30px !important;
}
.pb-30 {
  padding-bottom: 30px;
}
.pb-30-imp {
  padding-bottom: 30px !important;
}
.pl-30 {
  padding-left: 30px;
}
.pl-30-imp {
  padding-left: 30px !important;
}
.pr-30 {
  padding-right: 30px;
}
.pr-30-imp {
  padding-right: 30px !important;
}

.pt-35 {
  padding-top: 35px;
}
.pt-35-imp {
  padding-top: 35px !important;
}
.pb-35 {
  padding-bottom: 35px;
}
.pb-35-imp {
  padding-bottom: 35px !important;
}
.pl-35 {
  padding-left: 35px;
}
.pl-35-imp {
  padding-left: 35px !important;
}
.pr-35 {
  padding-right: 35px;
}
.pr-35-imp {
  padding-right: 35px !important;
}

.pt-40 {
  padding-top: 40px;
}
.pt-40-imp {
  padding-top: 40px !important;
}
.pb-40 {
  padding-bottom: 40px;
}
.pb-40-imp {
  padding-bottom: 40px !important;
}
.pl-40 {
  padding-left: 40px;
}
.pl-40-imp {
  padding-left: 40px !important;
}
.pr-40 {
  padding-right: 40px;
}
.pr-40-imp {
  padding-right: 40px !important;
}

.pt-45 {
  padding-top: 45px;
}
.pt-45-imp {
  padding-top: 45px !important;
}
.pb-45 {
  padding-bottom: 45px;
}
.pb-45-imp {
  padding-bottom: 45px !important;
}
.pl-45 {
  padding-left: 45px;
}
.pl-45-imp {
  padding-left: 45px !important;
}
.pr-45 {
  padding-right: 45px;
}
.pr-45-imp {
  padding-right: 45px !important;
}

.pt-50 {
  padding-top: 50px;
}
.pt-50-imp {
  padding-top: 50px !important;
}
.pb-50 {
  padding-bottom: 50px;
}
.pb-50-imp {
  padding-bottom: 50px !important;
}
.pl-50 {
  padding-left: 50px;
}
.pl-50-imp {
  padding-left: 50px !important;
}
.pr-50 {
  padding-right: 50px;
}
.pr-50-imp {
  padding-right: 50px !important;
}

.pt-75 {
  padding-top: 75px;
}
.pt-75-imp {
  padding-top: 75px !important;
}
.pb-75 {
  padding-bottom: 75px;
}
.pb-75-imp {
  padding-bottom: 75px !important;
}
.pl-75 {
  padding-left: 75px;
}
.pl-75-imp {
  padding-left: 75px !important;
}
.pr-75 {
  padding-right: 75px;
}
.pr-75-imp {
  padding-right: 75px !important;
}

.pt-100 {
  padding-top: 100px;
}
.pt-100-imp {
  padding-top: 100px !important;
}
.pb-100 {
  padding-bottom: 100px;
}
.pb-100-imp {
  padding-bottom: 100px !important;
}
.pl-100 {
  padding-left: 100px;
}
.pl-100-imp {
  padding-left: 100px !important;
}
.pr-100 {
  padding-right: 100px;
}
.pr-100-imp {
  padding-right: 100px !important;
}

/* Odd Styles  */
.mt-n100-imp {
  margin-top: -100px !important;
}

.p-20 {
  padding: 20px;
}

.p-24 {
  padding: 24px;
}

.pb-72 {
  padding-bottom: 72px;
}

.pb-126 {
  padding-bottom: 126px;
}

.mt-n10 {
  margin-top: -10px;
}

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

.ml-n20 {
  margin-left: -20px;
}

.ml-n40 {
  margin-left: -40px;
}

.mr-n40 {
  margin-right: -40px;
}

.mt-70 {
  margin-top: 70px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.pt-55 {
  padding-top: 50px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-150 {
  padding-bottom: 150px;
}

/* Border-radiux */
.b-radius-8 {
  border-radius: 8px;
}


@font-face {
  font-family: 'Avenir LT Pro';
  font-weight: 300;
  src: url('/assets/AvenirLTProLight-DC1WfUKP.woff') format('woff');
}

@font-face {
  font-family: 'Avenir LT Pro';
  font-weight: 400;
  src:
    local('Avenir LT Pro 55 Roman'),
    url('/assets/AvenirLTProRoman-CVp8ZLPq.woff') format('woff');
}

@font-face {
  font-family: 'Avenir LT Pro';
  font-style: normal;
  font-weight: 500;
  src: url('/assets/AvenirLTProMedium-BANPpDHT.woff') format('woff');
}

@font-face {
  font-family: 'Avenir LT Pro Bold';
  font-style: normal;
  font-weight: normal;
  src: url('/assets/AvenirLTProMedium-BANPpDHT.woff') format('woff');
}

@font-face {
  font-family: 'Avenir LT Pro';
  font-style: italic;
  font-weight: 500;
  src:
    local('Avenir LT Pro 55 Oblique'),
    url('/assets/AvenirLTProOblique-DiLPp6kp.woff') format('woff');
}

@font-face {
  font-family: 'Avenir LT Pro';
  font-style: normal;
  font-weight: bold;
  src:
    local('Avenir LT Pro 85 Heavy'),
    url('/assets/AvenirLTProHeavy-TjsNUx-2.woff') format('woff');
}

@font-face {
  font-family: 'Avenir LT Pro';
  font-style: italic;
  font-weight: bold;
  src:
    local('Avenir LT Pro 85 Heavy Oblique'),
    url('/assets/AvenirLTProHeavyOblique-DHWCZtcr.woff') format('woff');
}
._headerWrapperContainer_gjf31_1 {
  background: var(--background-primary);
  box-shadow: 0px 1px 10px #999;
  position: fixed;
  width: 100%;
  z-index: 100;
}

._headerContainer_gjf31_9 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;

  margin: auto;
  max-width: 1440px;
  min-height: 72px;
}

._logo_gjf31_21 {
  width: 132px;
  height: auto;
  margin-top: 5px;
  position: absolute;
  right: 15px;
}

._title_gjf31_29 {
  font-weight: 500;
  font-size: 27px;
  color: var(--text-secondary);

  margin: 0 20px;
}

._wrapperContainer_gjf31_37 {
  display: flex;
  flex-direction: row;
  align-items: center;
}

._userName_gjf31_43 {
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

._visibilityHidden_gjf31_49 {
  visibility: hidden;
}
._container_1me54_1 {
  margin: auto;
  padding: 50px 40px;
  max-width: 1440px;

  background-color: var(--background-focus);
  color: #000000;
}

._successContainer_1me54_10 {
  margin: auto;
  padding: 50px 40px;
  max-width: 1440px;

  background-color: var(--background-focus);
  color: #000000;
  height: 100vh;
}

._consentContainer_1me54_20 {
  margin: 20px;
  margin-top: 60px;
}

._errorContainer_1me54_25 {
  text-align: center;
  margin-top: 60px;
}

._consentContainer_1me54_20 h2 {
  font-weight: 600;
  font-size: 22px;
  padding-bottom: 10px;
}

._terms_1me54_36 {
  font-size: 20px;
  font-weight: 500;
  text-align: justify;
  margin-left: 40px;
}
._agreement_1me54_42 {
  font-size: 20px;
  font-weight: 500;
  text-align: justify;
}

._terms_1me54_36 li {
  list-style: none;
  padding-left: 25px;
  text-indent: -25px;
  padding-top: 10px;
  line-height: 25px;
}

._terms_1me54_36 li:before {
  content: '\2022';
  font-size: 40px;
  vertical-align: top;
  padding-right: 7px;
  line-height: 26px;
}

._userInfoContainer_1me54_64 {
  margin: 50px 70px;
  max-width: 450px;
}

._margin25_1me54_69 {
  text-align: justify;
  margin-left: 40px !important;
}

._margin10_1me54_74 {
  margin: 10px 0 !important;
}

._margin20_1me54_78 {
  margin: 20px 0 !important;
}

._declinedContainer_1me54_82 {
  width: 600px;
  padding: 60px;
  border-radius: 20px;

  font-weight: 500;
  font-size: 18px;

  background: var(--background-focus);
}

._logo_1me54_93 {
  width: 250px;
}

._header_1me54_97 {
  font-weight: 500;
  font-size: 27px;
  color: var(--text-heading);
}

._projectInfoContainer_1me54_103 {
  display: flex;
  flex-direction: column;
  align-items: center;

  margin: 20px 0;
}

._primaryColor_1me54_111 {
  color: var(--button-primary);
  text-decoration: none;
}

._infoColor_1me54_116 {
  color: var(--text-primary);
}

._infoMessage_1me54_120 {
  margin-top: 15px;
  color: var(--text-primary);
  text-align: left;
  margin-bottom: 15px;
}

._buttonContainer_1me54_127 {
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  max-width: 350px;
}

._buttonContainer_1me54_127 button {
  margin: 15px 0;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

._detailContainer_1me54_139 div h3 {
  font-weight: 550;
  font-size: 22px;
  color: var(--text-heading);
  margin-bottom: 10px;
}

._detailContainer_1me54_139 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 5%;
}

._subHeader_1me54_154 {
  font-weight: 500;
  font-size: 19px;
  color: var(--text-primary);
}

._link_1me54_160 {
  color: var(--button-primary);
  text-decoration: none;
}

._center_1me54_165 {
  text-align: center;
  padding-bottom: 40px;
}

._successHeader_1me54_170 {
  font-weight: 800;
  font-size: 35px;
  color: var(--text-heading);
  margin-bottom: 20px;
}

._successLogo_1me54_177 {
  width: 300px;
  pointer-events: none;
}

._contactContainer_1me54_182 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 5%;
}

._technicalContainer_1me54_190 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 5%;
}
._title_9i2wv_1 {
  color: #464646;
  font-size: 30px;
  font-weight: 500;
  /* -webkit-font-smoothing: antialiased; */
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  line-height: 40px;
}

._container_9i2wv_11 {
  max-width: 1440px;
  /* min-width: 700px; */
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 40px 0px 450px 0px;
}

._dialogTitleContainer_9i2wv_20 {
  background-color: #f7f9fa;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  padding: 20px;
  margin: -24px;
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
}

._dialogTitle_9i2wv_20 {
  font-weight: 400;
  font-size: 22px;
  color: #464646;
  position: relative;
  top: 8px;
}

._dialogHeaderInfo_9i2wv_40 {
  font-size: 16px;
  color: #464646;
  padding-left: 10px;
}

._smallText_9i2wv_46 {
}

._mediumText_9i2wv_49 {
}

._choiceContainer_9i2wv_52 {
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

._buttonContainer_9i2wv_59 {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding-right: 30px;
  padding-left: 30px;
  max-width: 1350px;
}
._searchContainer_9i2wv_68 {
  display: flex;
  align-items: center;
  width: 400px;
  height: 48px;
}

._choiceTextPadding_9i2wv_75 {
  padding: 3px 0;
}

._responseItem_9i2wv_79:hover {
  background-color: #f7f9fa;
}

._responseItem_9i2wv_79 {
  margin: 0 12px 0 12px;
  padding: 12px 0 12px 12px;
  border-bottom: 1px solid rgb(70, 70, 70, 0.31);
}

._listItemFlexContainer_9i2wv_89 {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #bdbdbd;
  background-color: white;
  padding-left: 30px;
  width: 100%;
  padding-right: 10px;
  max-width: 1350px;
  min-width: 900px;
  user-select: none;
  flex: 1;
}

._emptyListItemFlexContainer_9i2wv_105 {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #bdbdbd;
  background-color: white;
  padding-left: 30px;
  width: 100%;
  padding-right: 10px;
  max-width: 1350px;
  min-width: 1350px;
}

._listItemFlexContainer_9i2wv_89:hover {
  min-height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #bdbdbd;
  background-color: #fafafa;
  cursor: pointer;
}

._notSortColumn_9i2wv_128 {
  display: flex;
  flex: 1;
  justify-content: center;
}

._smallSortColumn_9i2wv_134 {
  display: flex;
  flex: 0.6;
  cursor: pointer;
  justify-content: center;
  text-align: center;
  width: 0;
}

._smallColumn_9i2wv_143 {
  flex: 0.2;
  justify-content: center;
  width: 0;
  display: flex;
}
._smallColumnStatus_9i2wv_149 {
  flex: 0.1;
  justify-content: center;
  width: 0;
  display: flex;
}

._smallColumnEmail_9i2wv_156 {
  flex: 0.2;
  /* justify-content: center; */
  width: 0;
  /* display: flex; */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._smallNotSortColumn_9i2wv_166 {
  display: flex;
  flex: 0.6;
  justify-content: center;
}
._smallNotSortColumnStatus_9i2wv_171 {
  display: flex;
  flex: 0.2;
  justify-content: center;
}

._notSortColumn_9i2wv_128 p {
  display: flex;
  flex: 1;
  color: #a0a0a0;
  text-align: center;
}

._smallNotSortColumn_9i2wv_166 p {
  display: flex;
  flex: 1;
  color: #a0a0a0;
  text-align: center;
}

._listHeaderFlexContainer_9i2wv_191 {
  margin-bottom: 1px;
  height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f7f9fa;
  padding-left: 30px;
  padding-right: 30px;
  -moz-box-shadow: inset 0 0 5px #bdbdbd;
  -webkit-box-shadow: inset 0 0 5px #bdbdbd;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.1),
    0 0 0 1px #f4f5f6;
  border-radius: 4px;
  cursor: default;
  min-width: 900px;
}

._listHeaderFlexContainer_9i2wv_191 p {
  font-size: 12px;
  color: #4a4a4a;
  font-weight: 500;
  flex: 1;
  letter-spacing: 0.7px;
}
._responseItem_9i2wv_79 {
  margin: 0 12px 0 12px;
  padding: 12px 0 12px 12px;
  border-bottom: 1px solid rgb(70, 70, 70, 0.31);
}

@media print {
  ._hide-on-print_9i2wv_225 {
    display: none !important;
  }
}
._dropFile_1wvl4_1 {
  min-width: 370px;
  max-width: 570px;
  min-height: 300px;
  max-height: 300px;
  padding: 20px;
  border: 2px dashed #e5e5e5;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

._consultFormDropFile_1wvl4_14 {
  min-width: 610px;
  max-width: 650px;
  min-height: 250px;
  max-height: 250px;
}

._infoText_1wvl4_21 {
  min-width: 370px;
  margin-bottom: 30px;
}

._consultFormInfoText_1wvl4_26 {
  min-width: 610px;
}

._uploadIconContainer_1wvl4_30 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 250px;
  padding: 20px;
}

._selectBtn_1wvl4_39 {
  color: #555555;
  border: 1px solid #81878e;
}

._uploadTxt_1wvl4_44 {
  text-align: center;
  max-width: 300px;
  font-size: 17px;
  font-weight: 400;
}

._uploadInfoTxt_1wvl4_51 {
  color: #555555;
  font-size: 14px;
  margin-top: 8px;
  padding-left: 10px;
}

._dialogWrapper_1wvl4_58 {
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow-x: hidden;
}

._documentItem_1wvl4_65 {
  border-style: solid;
  border-color: var(--text-light);
  border-width: 1px;
  padding: 20px 15px 15px 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
  margin-bottom: 10px;
}

._fileSizeTxt_1wvl4_75 {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 400px;
  margin-top: 5px;
}

._documentNameWrapper_1wvl4_82 {
  display: flex;
  justify-content: flex-start;
  margin: 0px 10px 0px 0px;
  flex-wrap: wrap;
}

._documentName_1wvl4_82 {
  text-overflow: ellipsis;
  width: 400px;
}

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

._addFileBtn_1wvl4_100 {
  margin-top: 10px;
}

._fileUploadCountTxt_1wvl4_104 {
  color: var(--text-primary);
  font-weight: 400;
  font-size: 17px;
}

._deleteBtnWrapper_1wvl4_110 {
  margin-top: -22px;
}

._downloadIconWrapper_1wvl4_114 {
  background-color: rgba(60, 72, 102, 0.12);
  opacity: 0.5;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
._downloadIcon_1wvl4_114 {
  font-size: 45px !important;
}

._addIcon_1wvl4_128 {
  padding: 0px 5px 0px 0px;
  margin: 0px 0px 0px -15px;
  font-size: 23px;
}

._deleteIcon_1wvl4_134 {
  font-size: 24px;
  color: #81878e;
  margin-right: 5px;
}

._fiDownloadIcon_1wvl4_140 {
  color: var(--button-primary);
  margin: 0px 0px 0px 10px;
}

._selectFileBtn_1wvl4_145 {
  text-align: center;
  margin: 10px 0px 0px 0px !important;
}

._uploadDocInfoTxt_1wvl4_150 {
  color: var(--text-primary);
  font-weight: 400;
  font-size: 16px;
}

._fileDropWrapper_1wvl4_156 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0px 10px 0px;
}

._btnWrapper_1wvl4_163 {
  padding: 0px 43px 0px 0px;
  margin: 20px;
}

._infoIcon_1wvl4_168 {
  color: var(--button-primary);
  margin: 0px 6px 0px 0px;
}

._infoIconWrapper_1wvl4_173 {
  margin-left: 10px;
  margin: 15px 0px 10px 10px;
}

._documentListWrapper_1wvl4_178 {
  min-width: 370px;
  overflow: auto;
  overflow-x: hidden;
  max-height: 400px;
  margin-bottom: 10px;
}

._consultFormDocumentListWrapper_1wvl4_186 {
  min-width: 610px;
}

._disabledUploadBtn_1wvl4_190 {
  background-color: #bbbbbb !important;
  color: #fff !important;
  margin-right: 5px;
}

._enableUploadBtn_1wvl4_196 {
  background-color: var(--button-primary) !important;
  color: #fff !important;
  margin-right: 5px;
  margin-left: 10px;
}

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

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

._documentTitle_1wvl4_214 {
  width: 200px;
  word-wrap: break-word;
}

._fullWidth_1wvl4_219 {
  width: 100%;
}

._documentTypeSelect_1wvl4_223 {
  color: var(--roman-silver);
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  opacity: 0.6;
  margin-top: 6px;
}

._selectedSelectTxt_1wvl4_232 {
  color: var(--roman-silver);
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  margin-top: 6px;
}

._dialog_1wvl4_58 {
  padding: 20px 10px;
  border-radius: '15px';
}

._dialogNoMaxWidth_1wvl4_245 {
  max-width: 'none';
  border-radius: 15px;
}
._container_xvtj2_1 {
  background-color: white;
  min-height: 100vh;
}

._tabRoute_xvtj2_6 {
  opacity: 0.7;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: var(--text-secondary-heading);

  padding: 6px 12px;
  border: 1px solid #e9e9e9;
  background: var(--background-secondary);

  min-height: 48px;
  min-width: 160px;

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

._tabCurrentRoute_xvtj2_25 {
  opacity: 1;
  color: var(--button-primary);

  background: var(--background-focus);
  border-bottom: 2px solid var(--button-primary);
}
._tableHeader_1j1b8_1 {
  color: var(--text-primary);
  position: sticky;
  z-index: 2;
  border: 0;
  border-bottom: 1px solid var(--text-light);
}

._tableFooter_1j1b8_9 {
  position: sticky;
  bottom: 0;
  background: var(--background-white);
  padding: 0px !important;
}

._pagination_1j1b8_16 {
  border-top: 1px solid var(--background-grey);
  border-bottom: 1px solid var(--background-grey);
}

._tableFooter_1j1b8_9 td {
  padding: 0px !important;
}

._tableHeaderColumn_1j1b8_25 {
  height: auto;
  padding: 16px 8px;
  min-height: 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
}

._sortIcon_1j1b8_36 {
  visibility: hidden;
}

._tableHeaderColumn_1j1b8_25:hover ._sortIcon_1j1b8_36 {
  visibility: unset;
  display: initial !important;
}

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

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

._tableHeaderBackground_1j1b8_53 {
  background: var(--background-secondary) !important;
}

._noDataMessage_1j1b8_57 {
  display: flex;
  justify-content: center;
}

._searchFieldContainer_1j1b8_62 {
  display: flex;
  align-items: flex-start;
}

/* For Sticky Header */
thead tr th {
  padding: 0px !important;
}

._stickyHeader_1j1b8_72 ._tableHeaderColumn_1j1b8_25 {
  top: 70px;
  z-index: 3;
  position: fixed;

  animation: _slideDown_1j1b8_1 200ms ease-in;

  width: inherit;
  background-color: var(--background-secondary);
}

._sandboxAccountStickyHeader_1j1b8_83 ._tableHeaderColumn_1j1b8_25 {
  top: 130px;
}

@keyframes _slideDown_1j1b8_1 {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}

._searchIcon_1j1b8_96 {
  margin-top: 18px;
  margin-right: 6px;
}

._tableFilterDescription_1j1b8_101 {
  color: #81878e;
}

/* For Sticky Header */
thead tr th {
  padding: 0px !important;
}
