@charset "UTF-8";
body {
  margin: 0px;
  color: #1E1D1D;
  font-family: "Noto Sans" !important;
}
thead th {
  color: #4059ac;
}
#application-table > thead th {
  background: #4059ac;
  color: white;
}
#application-table td.subrow {
  padding: 0px;
}
#layout-content {
  --main-color: #253569;
}
html {
  font-size: 16px;
  --page-min-height: 100vh;
  --font-size-48: 2rem;
  --font-size-32: 1.5rem;
  --font-size-28: 1.2rem;
  --font-size-24: 1rem;
}
a {
  text-decoration: none;
  color: inherit;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #9199a3;
  right: 1rem;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #c8ccd1;
  border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  /*
  background: #555; 
  */
}
.logtextbox {
  border-radius: 20px;
  font-size: var(--font-size-24);
  padding: 2rem 2rem 2rem 4rem;
  background: linear-gradient(to right, #253569 0px, #253569 2rem, #F9F9F9 1rem, #F9F9F9 100%);
}
.logtextbox > * {
  height: var(--height, "100%");
  overflow-y: auto;
}
/* Style the list */
ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
}
/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 1rem;
}
/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li + li:before {
  padding: 8px;
  color: black;
  content: "> ";
}
/* Add a color to all links inside the list */
ul.breadcrumb li a {
  text-decoration: none;
}
/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  text-decoration: underline;
}
.header {
  background-color: white;
  filter: drop-shadow(0px 8px 8px rgba(0, 0, 0, 0.25));
  z-index: 999;
  position: relative;
}
.header .logo {
  height: 100%;
}
.header .nav {
  height: calc(3rem + 1.5rem);
  font-size: 1rem;
  padding: 1rem 3rem;
}
.header .nav .nav-item {
  margin-left: 3rem;
  border-bottom: 5px solid transparent;
  position: relative;
}
.header .nav .nav-item .dropdown {
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  text-wrap: nowrap;
  background-color: white;
  padding: 1rem;
}
.header .nav .nav-item:hover > .dropdown {
  display: block;
}
.header .nav .nav-item.active {
  font-weight: bold;
}
.header .nav .nav-search {
  font-weight: bold;
}
.header .nav .nav-search svg {
  width: 2rem;
  height: 2rem;
}
.cus-container {
  /*
   margin: 1.5rem 5rem;
   padding-top: 1.5rem;
   padding-bottom: 1.5rem;
   margin-left: 5rem;
   margin-right: 5rem;
   */
  padding: 1.5rem 5rem;
  min-height: var(--page-min-height);
  position: relative;
}
.btn {
  color: white;
  background-color: #253569;
  font-size: var(--font-size-28);
  padding: 0.25rem 2rem;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border: 0;
  border-radius: 10px;
  font-weight: 600;
  width: fit-content;
}
.btn:disabled {
  background-color: #D9D9D9;
  color: white;
}
.btn-withdraw {
  background-color: #D0D0D0;
}
.btn-blue {
  color: white;
  background-color: #253569;
  font-size: var(--font-size-28);
  padding: 0.25rem 2rem;
  display: block;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border: 0;
  border-radius: 10px;
  font-weight: 600;
  width: fit-content;
}
.btn-blue:disabled {
  background-color: #D9D9D9;
  color: white;
}
.homepage {
  background-size: cover;
  background-position: center;
  position: relative;
}
.homepage .login-container {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  max-width: 40rem;
  /*
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        */
  width: 100%;
  padding: 2rem 4rem;
}
.homepage .login-container .form-container {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}
.homepage .login-container form {
  width: 100%;
}
.homepage .login-container form .input_area .input {
  position: relative;
}
.homepage .login-container form .input_area .input svg {
  position: absolute;
  left: 2rem;
  top: 40%;
  transform: translate(-50%, -50%);
  height: 1.5rem;
}
.homepage .login-container form .input_area .input input {
  margin-bottom: 1rem;
  padding: 1rem 1rem 1rem 5rem;
  border-radius: 10px;
  border: 2px solid #C1C1C1;
  background: #FFF;
}
.homepage .login-container form .btn-blue {
  color: white;
  background-color: #253569;
  font-size: var(--font-size-28);
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 0.25rem 2rem;
  display: block;
}
.homepage .login-container form .btn-blue[type="submit"] {
  font-size: var(--font-size-32);
}
.homepage .login-container form .passwordreset {
  margin-bottom: 1rem;
  font-size: var(--font-size-24);
  text-decoration: underline;
  text-align: center;
  display: block;
  color: #253569;
}
.big-title {
  font-size: var(--font-size-48);
  font-weight: bold;
  color: #253569;
  text-transform: uppercase;
}
.sub-nav {
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.25);
  margin-right: 4rem;
}
.sub-nav .nav-title {
  margin: 0px;
  padding: 0.5rem 1rem;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  background-color: #253569;
  border: 2px solid #253569;
  text-transform: uppercase;
}
.sub-nav .nav-item {
  margin: 0px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: #253569;
  background-color: #FAFAFA;
  border: 2px solid #DFDFDF;
  text-transform: uppercase;
}
.sub-nav .nav-item.active {
  color: white;
  font-weight: bold;
  background-color: #F9B503;
  border: 2px solid #F9B503;
}
.sub-nav .nav-item.active:before {
  content: url("data:image/svg+xml,%3Csvg width='9' height='14' viewBox='0 0 9 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.23662 1.15046C1.50251 0.895057 1.92259 0.895057 2.18848 1.15046L7.15203 5.91822C7.76655 6.5085 7.76655 7.4915 7.15203 8.08178L2.18848 12.8495C1.92259 13.1049 1.50251 13.1049 1.23662 12.8495C0.955372 12.5794 0.955127 12.1296 1.23608 11.8591L4.41275 8.80108C5.43433 7.81765 5.43433 6.18235 4.41275 5.19892L1.23608 2.14089C0.955128 1.87043 0.955373 1.42061 1.23662 1.15046Z' fill='white' stroke='white'/%3E%3C/svg%3E%0A");
  margin-right: 1rem;
}
table {
  font-size: 1rem;
  text-align: center;
}
table th, table td {
  border-width: 1px;
  border-color: #DFDFDF;
  padding: 1rem;
  font-weight: normal;
}
.application-status .right table .history-container {
  text-align: left;
  position: relative;
  padding-left: 2rem;
}
.application-status .right table .history-container .status {
  font-weight: bold;
  padding-bottom: 1rem;
}
.application-status .right table .history-container:before {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: 1rem;
  top: 1rem;
  transform: translate(-50%, -50%);
  background-color: #D0D0D0;
  border-radius: 50%;
}
.application-status .right table .history-container:not(:last-child) .underline {
  border-top: 1px solid #D0D0D0;
  padding-bottom: 1rem;
}
.application-status .right table .history-container:not(:last-child):after {
  content: "";
  height: 100%;
  width: 1px;
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #D0D0D0;
  z-index: -1;
  transform: translate(-50%, 0);
}
.application-status .right table .history-container.pending:before {
  background-color: #25965F;
}
.application-status .right table .history-container.approved:before {
  background-color: #F9B503;
}
.application-status .right table .history-container.incompleted:before {
  background-color: #AB0D11;
}
.application-status .right table .history-container.unsuccessful:before {
  background-color: #AB0D11;
}
.application-status .title {
  font-size: 1rem;
  color: #1E1D1D;
  font-weight: bold;
}
.application-status .dropdown-menu {
  background: transparent;
  border-color: transparent;
}
.fw-600 {
  font-weight: 600 !important;
}
.application-history table .status {
  padding-right: 2rem;
  position: relative;
}
.application-history table .status:after {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translate(50%, -50%);
  background-color: #D0D0D0;
  border-radius: 50%;
}
.application-history table .status.pending:after {
  background-color: #25965F;
}
.application-history table .status.approved:after {
  background-color: #F9B503;
}
.application-history table .status.incompleted:after {
  background-color: #AB0D11;
}
.application-history table .status.unsuccessful:after {
  background-color: #AB0D11;
}
.remark {
  font-size: var(--font-size-24);
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.remark span {
  vertical-align: middle;
}
.applications .right .title {
  font-weight: bold;
  font-size: 1.2rem;
  color: #253569;
}
.form .title {
  color: #1E1D1D;
  font-weight: bold;
}
.form .content {
  font-size: var(--font-size-28);
  color: black;
}
.form .form-label {
  font-size: var(--font-size-28);
}
.form .form-control {
  font-size: var(--font-size-28);
}
.form input[type="number"] {
  text-align: center;
}
.form .clone-template {
  position: relative;
}
.form .clone-template:nth-child(-n+3):after {
  content: url("data:image/svg+xml,%3Csvg width='21' height='32' viewBox='0 0 21 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.36651 1.28963C4.59646 0.565044 3.39545 0.565045 2.6254 1.28963L1.54628 2.30503C0.707647 3.09414 0.706923 4.42663 1.54469 5.21666L11.4367 14.5449C12.2739 15.3344 12.2739 16.6656 11.4367 17.4551L1.54469 26.7833C0.706922 27.5734 0.707649 28.9059 1.54628 29.695L2.6254 30.7104C3.39545 31.435 4.59646 31.435 5.36651 30.7104L19.452 17.4566C20.2913 16.6669 20.2913 15.3331 19.452 14.5434L5.36651 1.28963Z' fill='%23D9D9D9'/%3E%3C/svg%3E%0A");
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translate(0, -50%);
}
.form .clone-template:nth-child(n+2) .delete {
  content: "";
  display: block;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg  width='43' height='43' viewBox='0 0 43 43' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.5021 43C9.63225 42.9871 0.0130303 33.3689 0 21.5V21.07C0.236373 9.25478 9.96536 -0.154868 21.7832 0.00193148C33.6009 0.158709 43.0767 9.82313 42.9995 21.6406C42.9223 33.4579 33.321 42.9976 21.5021 43ZM10.7511 19.35V23.65H32.2532V19.35H10.7511Z' fill='%2329384C'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  position: absolute;
  height: 2rem;
  width: 2rem;
  left: -1.5rem;
  top: 50%;
  transform: translate(-50%, -50%);
}
#confirmModal .modal-dialog {
  width: 100%;
  max-width: 740px;
}
#confirmModal .modal-content {
  padding: 5rem;
  border: 15px solid #F9B503;
}
#confirmModal .modal-content .content {
  font-size: var(--font-size-28);
  color: black;
}
.status-pending {
  color: white;
  background-color: #25965F;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}
.status-incompleted {
  color: white;
  background-color: #AB0D11;
  font-weight: bold;
  font-size: var(--font-size-28);
  padding: 0.5rem 1rem;
  border-radius: 10px;
}
.status-approved {
  color: white;
  background-color: #F9B503;
  font-weight: bold;
  font-size: var(--font-size-28);
  padding: 0.5rem 1rem;
  border-radius: 10px;
}
.status-unsuccessful {
  color: white;
  background-color: #AB0D11;
  font-weight: bold;
  font-size: var(--font-size-28);
  padding: 0.5rem 1rem;
  border-radius: 10px;
}
.mobile-language {
  border: 2px solid #253569;
  color: #253569;
  width: 30px;
  height: 30px;
  font-weight: bold;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-nav {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: #253569;
  color: white;
  padding: 1.3rem 0rem;
  filter: drop-shadow(0px -5px 11px rgba(0, 0, 0, 0.35));
  z-index: 100;
  border-start-end-radius: 3rem;
  border-start-start-radius: 3rem;
  font-size: 0.9rem;
}
.mobile-nav .item {
  width: 20%;
}
.mobile-nav .mobile-nav-icon {
  height: 2rem;
  margin-bottom: 0.5rem;
}
.mobile-nav .nav-button {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translate(-50%, 0);
}
input.disabled {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
  pointer-events: none;
}
button.disabled {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
  pointer-events: none;
}
.progressbar {
  padding-left: 5rem;
  padding-right: 5rem;
  position: relative;
  --height: 4rem;
  --width: 4rem;
}
.progressbar .progressbar-line {
  --padding: 6rem;
  width: calc(100% - var(--padding) - var(--padding));
  top: calc(var(--height) / 2);
  left: var(--padding);
  transform: translate(0, -50%);
  height: 4px;
  background-color: #D9D9D9;
  position: absolute;
  z-index: -1;
}
.progressbar .progressbar-line .progressbar-acive-line {
  background-color: #253569;
  height: 100%;
  width: calc(min((1 + (var(--active) - 1)*2 ), (2*(var(--total) - 1)))/(2*(var(--total) - 1)) * 100%);
}
.progressbar .progressbar-dot {
  background-color: #253569;
  height: var(--height);
  width: var(--width);
  position: relative;
  border-radius: 50%;
  margin-bottom: 10rem;
}
.progressbar .progressbar-dot.active {
  box-shadow: 0px 0px 0px 3px #FFF, 0px 0px 0px 5px #253569;
}
.progressbar .progressbar-dot .progressbar-dot-number {
  color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: var(--font-size-24);
  transform: translate(-50%, -50%);
  font-weight: bold;
}
.progressbar .progressbar-dot .progressbar-text {
  color: #253569;
  position: absolute;
  font-size: var(--font-size-28);
  font-weight: bold;
  left: 50%;
  bottom: 0%;
  transform: translate(-50%, 116%);
  width: calc(100vw / (var(--total) - 1));
  max-width: 200px;
  text-transform: capitalize;
  text-align: center;
}
.breadcrumb li {
  color: #29384C;
  font-weight: 700;
}
.breadcrumb li:before {
  color: "grey";
  font-weight: 400;
}
/*
#naveModal{
     .modal-content{
         overflow: auto;
         background: rgba(4, 34, 73, 0.90);
         padding: 0rem 2rem; 
         .underline{
            border-bottom: 2px solid #DCDCF3;
            width: 100%;
         }
         .title{
             font-weight: bold;
             font-size: 1.3rem;
             color: white;
         }
         .sub-title{
             color: white;
             font-size: 1.3rem;
              margin-top: 1.3rem;
              margin-bottom: 1.3rem;
              display: block;
              &.active{
                  font-weight: 600;
              }
         }
         .item.active{
             &+.dropdown{
                 
                 display: block;
             }
         }
         .item {
             display: block;
              margin-top: 2rem;
              margin-bottom: 2rem;
         }
         .mobile-nav-arrow{
              
         }
         .dropdown{
              padding-left: 2rem;
              display: none;
         }
         .mobile-nav-container{
            max-height: calc(100vh - 7rem);
            margin-right: -1.5rem;
            padding-right: 1.5rem;
            overflow: auto;
            padding-bottom: 11rem;
         }
         .close-btn{
              position: absolute;
              bottom: 4rem;
              left: 50%;
              transform: translate(-50%, 0);
         }

     }
}
*/


.sv-question__title--answer {
  background-color: transparent !important;
}
.sd-btn.sd-navigation__next-btn {
  color: white;
  background-color: #29384C !important;
}
.sd-btn.sd-navigation__prev-btn {
  color: white;
  background-color: grey !important;
}
h5.sv-title {
  font-family: var(--bs-body-font-family) !important;
  font-weight: 400 !important;
  font-size: var(--font-size-28) !important;
}
h4.sv-page__title {
  margin-bottom: 2em;
}
.sv-title {
  padding-left: 0px !important;
}
.sv-btn--navigation {
  padding: 0.25rem 2rem !important;
  border-radius: 10px !important;
  font-size: var(--font-size-28) !important;
  font-weight: 600;
}
.sv-text {
  border: var(--bs-border-width) solid var(--bs-border-color) !important;
  border-bottom: var(--bs-border-width) solid var(--bs-border-color) !important;
  border-radius: var(--bs-border-radius) !important;
}
.sv-page.sv-body__page {
  margin: 0px;
}
.sv-body {
  padding-bottom: 0px !important;
}
.sv-question__title, .sv-description {
  padding-left: 0px !important;
}
.sv-question__content {
  margin-left: 0px;
}
.step-circle {
  font-size: var(--font-size-28) !important;
  width: 55px !important;
  height: 55px !important;
  font-weight: 500 !important;
  color: white !important;
  border: 0px !important;
  background-color: #D9D9D9 !important;
}
.step-success .step-circle {
  outline: 4px solid #29384C !important;
  outline-offset: 4px !important;
  background-color: #29384C !important;
}
.step-content {
  min-width: unset !important;
  max-width: unset !important;
  width: 20rem !important;
}
.step-circle::before {
  width: calc(20rem - 60px + 15px) !important;
  height: 4px !important;
  left: 0px !important;
}
.step-success .step-circle::before {
  width: calc(20rem - 60px) !important;
  height: 4px !important;
  left: -8px !important;
}
.step-active .step-circle::before, .step-success .step-circle::before {
  color: #29384c !important;
}
.step {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.step-text {
  color: #29384c !important;
  font-size: 1rem !important;
  font-weight: 500;
  text-align: center;
  word-break: keep-all;
}
#surveyElement, .sd-root-modern {
  background: transparent !important;
}
