body {
  height: 100%;
}

.dashboard {
  display: grid;
  grid-template-columns: 300px 1fr;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.dashboard-directory {
  display: flex;
  flex-flow: column nowrap;
  gap: 50px;
  background-color: white;
  border-right: 1px solid #dbdfea;
  align-items: center;
  overflow: hidden;
}

.dashboard-directory__nav {
  display: flex;
  flex-flow: column nowrap;
  gap: 30px;
  width: 100%;
  overflow-y: scroll;
  height: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.dashboard-directory__nav::-webkit-scrollbar {
  display: none;
}

.dashboard-directory__nav-category {
  padding: 0 0 0 15px;
  display: flex;
  flex-flow: column nowrap;
  font-weight: 600;
  gap: 10px;
}

.dashboard-directory__category {
  padding-left: 25px;
  position: relative;
  margin: 0;
  font-size: 1.125em;
}

.dashboard-directory__category::before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 4px;
  top: 0;
  left: 13px;
  border-radius: 2px;
  background-color: #41AFC6;
}

.dashboard-directory__nav-list-with-icons {
  margin: 0;
  list-style: none;
  padding-inline-start: 0;
  display: flex;
  flex-flow: column nowrap;
  gap: 5px;
}

.dashboard-drectory__nav-item-with-icon {
  display: flex;
  flex-flow: row nowrap;
  padding: 10px 20px;
  gap: 5px;
  align-items: center;
  color: #404040;
  font-weight: normal;
  text-decoration: none;
  border-radius: 10px 0 0 10px;
  border-bottom: 0 solid rgba(204, 222, 255, 0);
  transition-duration: 0.5s;
  transition-property: border-bottom, background-color, font-weight, color;
  border-right: 0px solid #41AFC6;
}

.dashboard-directory__nav-icon {
  width: 35px;
  height: 35px;
  padding: 5px;
}

.dashboard-directory__nav-item-with-icon_disabled {
  background-color: #EFF0F1;
  display: grid;
  grid-template-columns: 35px 1fr;
  color: rgb(191, 191, 191);
  pointer-events: none;
}
.dashboard-directory__nav-item-with-icon_disabled .dashboard-directory__nav-icon {
  filter: brightness(0) invert(1) brightness(0.75);
  grid-row: 1/3;
}

.dashboard-directory__nav-item-with-icon_disabled::after {
  content: "Coming Soon";
  color: #B44545;
  font-size: 0.75em;
}

.dashboard-drectory__nav-item-with-icon:hover {
  border-bottom: 1px solid #ccdeff;
  background-color: #f1f6ff;
  font-weight: 600;
  color: #10357F;
}

.dashboard-directory__nav-item-with-icon_current {
  background-color: rgba(16, 53, 127, 0.05);
  border-right: 4px solid #41AFC6;
}

.dashboard-header {
  display: flex;
  flex-flow: row nowrap;
  padding: 30px 25px;
  justify-content: space-between;
  height: 90px;
  border-bottom: 1px solid #DBDFEA;
  background-color: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.dashboard-header__web-text {
  margin: 0;
  font-size: 1.5em;
  color: #10357F;
}

.dashboard-header__mobile-logo {
  display: none;
}

.mobile-menu-button {
  display: none;
}

.dashboard-content {
  display: flex;
  flex-flow: column nowrap;
  gap: 50px;
  overflow-y: scroll;
  overflow-x: hidden;
  background-image: linear-gradient(180deg, rgba(242, 244, 249, 0.8) 0%, #F2F4F9 100%), url("../../assets/backgrounds/dashboard-background-grid.svg");
  background-position: center 90px;
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
  z-index: 3;
}

.dashboard-content::before {
  position: absolute;
  content: "";
  top: 8px;
  left: -61px;
  width: 200px;
  height: 200px;
  background-color: #10357F;
  border-radius: 100%;
  opacity: 0.3;
  filter: blur(100px);
  z-index: 1;
}

.dashboard-content::after {
  position: absolute;
  content: "";
  top: -47px;
  right: -415px;
  width: 400px;
  height: 400px;
  border-radius: 100%;
  opacity: 0.3;
  background-color: #41AFC6;
  filter: blur(100px);
  z-index: 1;
}

.dashboard-content-body {
  display: flex;
  flex-flow: column nowrap;
  gap: 30px;
  padding: 0 20px 120px;
  z-index: 3;
}

.dashboard-content-body_align_center {
  align-items: center;
}

.dashboard-content-body__header-container {
  display: flex;
  flex-flow: column nowrap;
  gap: 30px;
}

.dashboard-content-body__header-with-caption {
  display: flex;
  flex-flow: column nowrap;
  gap: 10px;
  padding: 0 20px;
}

.dashboard-content-body__header {
  color: #10357F;
  font-size: 1.25em;
  margin: 0;
}

.dashboard-content-body__header-caption {
  margin: 0;
}

.dashboard-content-body__header-caption {
  color: #808080;
  font-size: 0.875em;
}

.site-logo {
  height: 90px;
  border-bottom: 1px solid #DBDFEA;
}

.profiledisplay__button-icon {
  height: 25px;
  width: 25px;
}

.verify-reminder {
  background-color: white;
  padding: 20px 25px;
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #10357F;
  border-radius: 15px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
}
.verify-reminder strong {
  color: #10357F;
}

.verify-reminder__reminder-text {
  padding-inline-start: 28px;
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  gap: 8px;
}
.verify-reminder__reminder-text p {
  margin: 0;
}

.verify-reminder__reminder-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../../assets/svg/info-icon_color_gray.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
}

.verify-reminder__small-text {
  font-size: 0.875em;
}

.dashboard-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  list-style: none;
}

.dashboard-buttons__button {
  text-decoration: none;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 57px;
  border: 1px solid #dbdfea;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
  gap: 8px;
  color: #404040;
  padding: 20px;
  width: 100%;
  height: 100%;
}

.dashboard-buttons__icon {
  width: 30px;
  height: 30px;
}

.dashboard-beneficiary-list {
  background-color: white;
  border-radius: 15px;
  padding: 30px 25px;
  display: flex;
  flex-flow: column nowrap;
  gap: 15px;
}

.dashboard-beneficiary-list__header-container {
  padding-bottom: 20px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(191, 191, 191, 0.5);
}

.dashboard-beneficiary-list__see-all_state_hidden {
  display: none;
}

.dashboard-beneficiary-list__header {
  margin: 0;
  font-size: 1.25em;
}

.dashboard-beneficiary-list__list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: column nowrap;
  gap: 10px;
}

.dashboard-beneficiary-list__see-all {
  display: flex;
  flex-flow: row nowrap;
  gap: 0;
  align-items: center;
  text-decoration: none;
  color: #10357F;
  font-weight: 600;
}

.dashboard-beneficiary-list__see-all::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../../assets/svg/right-chevron_color_blue.svg");
  background-size: 100%;
}

.dashboard-beneficiary-list__item {
  display: grid;
  grid-template-columns: 30px 1fr 84px;
  align-items: center;
  padding: 5px 10px;
  gap: 8px;
  min-height: 63px;
}

.dashboard-beneficiary-list__item::before {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("../../assets/svg/beneficiary-icon.svg");
  background-size: 100%;
}

.dashboard-beneficiary-list__item:nth-child(even) {
  background-color: #F8F9FA;
}

.dashboard-beneficiary-list__name-container {
  display: flex;
  flex-flow: column nowrap;
  gap: 4px;
}
.dashboard-beneficiary-list__name-container p {
  margin: 0;
}

.dashboard-beneficiary-list__beneficiary-account {
  font-size: 0.875em;
}

.dashboard-beneficiary-list__beneficiary-withhit {
  font-size: 0.775em;
  color:red;
  font-style:italic
}

.dashboard-beneficiary-list__empty-display {
  display: flex;
  flex-flow: column nowrap;
  gap: 15px;
  align-items: center;
}

.dashboard-beneficiary-list__empty-display_state_hidden {
  display: none;
}

.dashboard-beneficiary-list__empty-icon {
  width: 200px;
  height: 200px;
}

.dashboard-beneficiary-list__caption {
  margin: 0;
  font-size: 1em;
}

.dashboard-carousel {
  display: flex;
  flex-flow: column nowrap;
  width: calc(100% + 40px);
  position: relative;
  left: -20px;
  align-items: center;
}

.dashboard-carousel__scroll-container {
  width: 100%;
  display: flex;
  overflow-x: hidden;
}

.dashboard-carousel__ribbon {
  list-style-type: none;
  display: flex;
  flex-flow: row nowrap;
  padding: 0;
  margin: 0;
  left: 0;
  position: relative;
  gap: 5px;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
}
.dashboard-carousel__ribbon li {
  display: flex;
}

.dashboard-carousel__carousel-item {
  width: 660px;
}

.dashboard-carousel__dot-nav {
  display: flex;
  flex-flow: row nowrap;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dashboard-carousel__dot {
  width: 10px;
  height: 10px;
  background-color: #d9d9d9;
  border-radius: 100%;
  transform: scale(0.8);
}

.dashboard-carousel__dot_state_active {
  background-color: #10357F;
  transform: scale(1);
}

.dashboard-ekyc-start {
  background-color: white;
  border-radius: 15px;
  display: flex;
  flex-flow: column nowrap;
  padding: 30px 25px;
  gap: 25px;
  align-items: center;
}

.dashboard-ekyc-start__header-container {
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
  align-items: center;
}

.dashboard-ekyc-start__header {
  margin: 0;
  color: #10357F;
  font-size: 1.5em;
}

.dashboard-ekyc-start__header-reminder {
  margin: 0;
  font-size: 1em;
}

.dashboard-ekyc-start__button-display {
  width: 100%;
  gap: 15px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}

.dashboard-ekyc-start__display-reverser {
  display: flex;
  flex-flow: column-reverse nowrap;
  gap: 20px;
  align-items: center;
}

.button_visibility_ekyc-start {
  display: none;
}

.ekyc-reminder {
  width: 100%;
  max-width: 440px;
  padding: 15px 20px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  background-color: #F8F9FA;
  border: 1px solid #eff0f1;
  border-radius: 15px;
}
.ekyc-reminder p {
  margin: 0;
}
.ekyc-reminder strong {
  color: #10357F;
}

.ekyc-reminder::before {
  content: "";
  background-image: url("../../assets/svg/info-icon_color_gray.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
}

.valid-id-display {
  display: flex;
  flex-flow: row;
  gap: 30px;
  justify-content: center;
}

.valid-id-display__item {
  width: 100px;
  margin: 0;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 5px;
}

.valid-id-display__icon {
  width: 60px;
  height: 60px;
  padding: 10px;
}

.valid-id-display__caption {
  text-wrap: nowrap;
}

.dashboard-form {
  display: flex;
  flex-flow: column nowrap;
  gap: 30px;
  max-width: 840px;
  align-self: center;
  width: 100%;
}

.dashboard-form__inputs {
  background-color: white;
  padding: 30px 20px;
  border-radius: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px 10px;
}

.dashboard-form__inputs_grid-span_2 {
  grid-template-columns: 1fr 1fr;
}

.dashboard-form__inputs_grid-span_1 {
  grid-template-columns: 1fr;
}

.dashboard-form__inputs_type_id-verification {
  display: flex;
  flex-flow: column nowrap;
  padding: 24px 20px;
  gap: 25px;
  align-items: stretch;
}

.dashboard-form__inputs-container {
  display: grid;
  grid-column: 1/-1;
  grid-template-columns: inherit;
  gap: inherit;
}

.dashboard-form__inputs-container_grid-span_2 {
  grid-template-columns: 1fr 1fr;
}

.dashboard-form__inputs-container_grid-span_1 {
  grid-template-columns: 1fr;
}

.dashboard-form__inputs_type_input-summary {
  background-color: transparent;
  padding: 0;
  display: flex;
  flex-flow: column;
  align-content: center;
}

.dashboard-form__inputs_with-reminder {
  background-color: transparent;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-flow: column;
  align-content: center;
}

.dashboard-form__inputs_state_hidden {
  display: none;
}

.dashboard-form__button-display {
  grid-column: 1/-1;
  display: flex;
  flex-flow: row nowrap;
  gap: 15px;
  justify-content: flex-end;
}

.dashboard-form__form-header-container {
  grid-column: 1/-1;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(191, 191, 191, 0.5019607843);
}

.dashboard-form__form-header {
  font-size: 1.125em;
  margin: 0;
}

.dashboard-content-body__mobile-only-header {
  display: none;
}

.dashboard-form-progress-bar {
  align-self: flex-start;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  width: 818px;
}

.dashboard-form-progress-bar-step {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.dashboard-form-progress-bar-step__header {
  display: flex;
  flex-flow: row nowrap;
  gap: 8px;
  margin: 0;
  align-items: center;
  color: #808080;
  font-size: 2em;
  font-weight: normal;
}

.dashboard-form-progress-bar-step__header-number {
  width: 38px;
  text-align: center;
}

.dashboard-form-progress-bar-step__header-title {
  display: block;
  font-size: 0.56em;
  text-wrap: nowrap;
}

.dashboard-form-progress-bar-step__stepper {
  display: grid;
  grid-template-columns: 1fr 5.37fr;
  gap: 10px;
  align-items: center;
  padding-right: 10px;
}

.dashboard-form-progress-bar-step__stepper-circle {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  border: 2px solid #808080;
  margin: 6px;
  transition-duration: 0.5s;
}

.dashboard-form-progress-bar-step__stepper-circle::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: transparent;
}

.dashboard-form-progress-bar-step__stepper-bar {
  width: 100%;
  height: 3px;
  background-color: #d7d7d8;
  overflow: hidden;
  position: relative;
}

@keyframes stepperCircle_active {
  0% {
    transform: scale(0);
  }
  25% {
    background-color: #10357F;
    transform: scale(0.1);
  }
  70% {
    background-color: #10357F;
    transform: scale(1.3);
  }
  85% {
    background-color: #10357F;
    transform: scale(0.8);
  }
  100% {
    background-color: #10357F;
    transform: scale(1);
  }
}
@keyframes stepperCircleFrame_active {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.2);
  }
  85% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.dashboard-form-progress-bar-step_state_active .dashboard-form-progress-bar-step__header-number {
  font-weight: bold;
  color: #10357F;
}
.dashboard-form-progress-bar-step_state_active .dashboard-form-progress-bar-step__header-title {
  font-weight: bold;
  color: #10357F;
}
.dashboard-form-progress-bar-step_state_active .dashboard-form-progress-bar-step__stepper-circle {
  border: 2px solid #10357F;
  animation: 0.5s linear 0s forwards stepperCircleFrame_active;
}
.dashboard-form-progress-bar-step_state_active .dashboard-form-progress-bar-step__stepper-circle::before {
  background-color: transparent;
  animation: 0.5s linear 0s forwards stepperCircle_active;
}

@keyframes stepperCircle_finish {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
  }
}
@keyframes stepperCircleCheck_finish {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }
  49% {
    transform: translate(-50%, -50%) scale(0);
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes stepperCircleFrame_finish {
  0% {
    transform: scale(1) rotate(0);
    background-color: transparent;
  }
  10% {
    transform: scale(1.2) rotate(0deg);
    background-color: transparent;
  }
  40% {
    transform: scale(0) rotate(0deg);
    background-color: transparent;
  }
  50% {
    transform: scale(0) rotate(-180deg);
    background-color: #41AFC6;
    border-color: #41AFC6;
  }
  90% {
    transform: scale(1.2) rotate(-360deg);
    background-color: #41AFC6;
    border-color: #41AFC6;
  }
  100% {
    transform: scale(1) rotate(-360deg);
    background-color: #41AFC6;
    border-color: #41AFC6;
  }
}
@keyframes stepperBar_finish {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.dashboard-form-progress-bar-step_state_finished .dashboard-form-progress-bar-step__header-number {
  font-weight: normal;
  color: #41AFC6;
}
.dashboard-form-progress-bar-step_state_finished .dashboard-form-progress-bar-step__header-title {
  font-weight: normal;
  color: #41AFC6;
}
.dashboard-form-progress-bar-step_state_finished .dashboard-form-progress-bar-step__stepper-circle {
  position: relative;
  border: 2px solid #10357F;
  background-color: transparent;
  animation: 0.8s linear 0s forwards stepperCircleFrame_finish;
}
.dashboard-form-progress-bar-step_state_finished .dashboard-form-progress-bar-step__stepper-circle::before {
  background-color: #10357F;
  animation: 0.8s linear 0s forwards stepperCircle_finish;
}
.dashboard-form-progress-bar-step_state_finished .dashboard-form-progress-bar-step__stepper-circle::after {
  content: "";
  background-image: url("../../assets/svg/check-mark_color_white.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  animation: 0.8s linear 0s forwards stepperCircleCheck_finish;
}
.dashboard-form-progress-bar-step_state_finished .dashboard-form-progress-bar-step__stepper-bar::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background-color: #41AFC6;
  animation: 0.5s linear 0s forwards stepperBar_finish;
}

.dashboard-form-progress-bar-step_state_finished-no-anim .dashboard-form-progress-bar-step__stepper-circle {
  position: relative;
  background-color: #41AFC6;
  border-color: #41AFC6;
  animation: none;
}
.dashboard-form-progress-bar-step_state_finished-no-anim .dashboard-form-progress-bar-step__stepper-circle::before {
  display: hidden;
  animation: none;
}
.dashboard-form-progress-bar-step_state_finished-no-anim .dashboard-form-progress-bar-step__stepper-circle::after {
  content: "";
  background-image: url("../../assets/svg/check-mark_color_white.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  animation: none;
}
.dashboard-form-progress-bar-step_state_finished-no-anim .dashboard-form-progress-bar-step__stepper-bar {
  background-color: #41AFC6;
}

.dashboard-form-summary {
  display: flex;
  flex-flow: column nowrap;
  gap: 25px;
  padding: 24px 20px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 600px;
}

.dashboard-form-summary_width_full-width {
  max-width: unset;
}

.dashboard-form-summary__summary {
  display: flex;
  flex-flow: column nowrap;
  gap: 25px;
}

.dashboard-form-summary__summary-header {
  margin: 0;
  font-size: 1.56em;
  color: #10357F;
}

.dashboard-form-summary__category-summary {
  display: flex;
  flex-flow: column nowrap;
  gap: 15px;
  padding: 0;
}

.dashboard-form-summary__category-header {
  margin: 0;
  font-size: 1.125em;
  font-weight: bold;
}

.dashboard-form-summary__divider {
  height: 1px;
  width: 100%;
  background-color: rgba(191, 191, 191, 0.5);
}

.dashboard-form-summary__field-value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
}

.dashboard-form-summary__field-label {
  margin: 0;
  color: #4d4d4d;
  font-size: 1em;
}

.dashboard-form-summary__field-label_style_large-bold {
  font-size: 1.25em;
  font-weight: 800;
}

.dashboard-form-summary__field-value {
  margin: 0;
  color: #10357F;
  text-align: right;
}

.dashboard-form-summary__field-value_style_large-bold {
  font-size: 1.25em;
  font-weight: 800;
}

.dashboard-form-summary__buttons {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  gap: 15px;
}

.dashboard-form-finishicon {
  position: relative;
  width: 200px;
  height: 200px;
  align-self: center;
}

.dashboard-form-finishicon__green-tick {
  position: relative;
  transform: scale(0);
  z-index: 2;
  animation: 1s linear 0s forwards greenTick_pop;
}

.dashboard-form-finishicon__confetti {
  position: absolute;
  transform: scale(0);
  top: 0;
  left: 0;
  z-index: 1;
  animation: 1s linear 0.3s forwards confetti_popFade;
}

@keyframes greenTick_pop {
  0% {
    transform: scale(0);
  }
  35% {
    transform: scale(0.1);
  }
  70% {
    transform: scale(1.1);
  }
  85% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes confetti_popFade {
  0% {
    transform: scale(0);
  }
  40% {
    transform: scale(0.9) translateY(0);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateY(20%);
    opacity: 0;
  }
}
.dashboard-form-finish {
  background-color: white;
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  gap: 30px;
  padding: 30px 20px;
  width: 100%;
  max-width: 600px;
  border-radius: 25px;
  border: 1px solid #DBDFEA;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
}

.dashboard-form-finish__header {
  margin: 0;
  text-align: center;
  font-size: 1.5em;
  color: #10357F;
}

.dashboard-form-finish__info-text {
  font-size: 1em;
  margin: 0;
  text-align: center;
}

.dashboard-form-finish__page-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.dashboard-form-finish__page-buttons_isEven_false {
  display: flex;
  flex-flow: row nowrap;
  gap: 15px;
  justify-content: center;
}

.dashboard-beneficiary-list-back {
  font-weight: bold;
  font-size: 1.5em;
  color: #10357F;
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}

.dashboard-beneficiary-list-back::before {
  content: "";
  background-image: url("../../assets/svg/left-chevron_color_black.svg");
  width: 8px;
  height: 14px;
  background-position: center;
  background-size: 100%;
}

.dashboard-frequent-beneficiaries {
  width: 100%;
  padding: 24px 20px;
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
  border-radius: 15px;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
}

.dashboard-frequent-beneficiaries__header-container {
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(191, 191, 191, 0.5);
}

.dashboard-frequent-beneficiaries__header {
  font-size: 1.125em;
  margin: 0;
}

.dashboard-frequent-beneficiaries__group-container {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
}

.dashboard-frequent-beneficiaries__group {
  display: flex;
  align-self: center;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding-inline-start: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  max-width: 580px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.dashboard-frequent-beneficiaries__group::-webkit-scrollbar {
  display: none;
}

.dashboard-frequent-beneficiaries__group_display_hidden {
  display: none;
}

.dashboard-frequent-beneficiaries__item {
  display: flex;
  flex-flow: column nowrap;
  gap: 8px;
  align-items: center;
  width: 100px;
}

.dashboard-frequent-beneficiaries__item::before {
  content: "";
  width: 50px;
  height: 50px;
  background-image: url("../../assets/svg/frequent-beneficiary-icon.svg");
  background-position: center;
  background-size: 100%;
  border-radius: 10px;
  border: 1px solid #10357F;
  padding: 5px;
}

.dashboard-frequent-beneficiaries__name-container {
  display: flex;
  flex-flow: column nowrap;
  gap: 4px;
  align-items: center;
  width: 100%;
}

.dashboard-frequent-beneficiaries__name {
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
  margin: 0;
  text-wrap-mode: nowrap;
}

.dashboard-frequent-beneficiaries__account {
  margin: 0;
  text-align: center;
  font-size: 0.75em;
  color: #808080;
}

.dashboard-frequent-beneficiaries__dot-nav {
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: row nowrap;
  gap: 7px;
  align-items: center;
  align-self: center;
  list-style-type: none;
  justify-content: center;
}

.dashboard-frequent-beneficiaries__dot-item {
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-frequent-beneficiaries__dot-item::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #d9d9d9;
  border-radius: 100%;
}

.dashboard-frequent-beneficiaries__dot-item_state_active::before {
  width: 10px;
  height: 10px;
  background-color: #10357F;
}

.dashboard-beneficiary-list__action-icons {
  display: flex;
  flex-flow: row nowrap;
  gap: 4px;
  justify-content: flex-end;
}

.dashboard-beneficiary-list__action-icon {
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: none;
}

.dashboard-beneficiary-list__action-icon_icon_edit {
  background-image: url("../../assets/svg/edit-icon.svg");
}

.dashboard-beneficiary-list__action-icon_icon_delete {
  background-image: url("../../assets/svg/delete-icon.svg");
}

.dashboard-beneficiary-list__search-bar-container {
  position: relative;
  width: 100%;
}

.dashboard-beneficiary-list__search-bar-container::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  background-image: url("../../assets/svg/search-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  transform: translateY(-50%);
}

.dashboard-beneficiary-list__search-bar {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid #E9ECEF;
  width: 100%;
}

.mobile-verification {
  display: flex;
  flex-flow: column nowrap;
  gap: 30px;
}

.id-verification-image {
  align-self: center;
  width: 280px;
  height: 280px;
}

.id-verification-text {
  text-align: center;
  margin: 0;
}
.id-verification-text strong {
  color: #10357F;
}

.id-verification-list {
  color: #10357F;
  font-weight: bold;
  margin: 0;
}

.id-verification-list::marker {
  color: #10357F;
}

.id-verification-selfie {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid #E9ECEF;
  width: 100%;
  border-radius: 15px;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-flow: column nowrap;
  gap: 25px;
}

.button_type_beneficiary-select {
  background-color: #f4f6fa;
  display: flex;
  flex-flow: row;
  justify-content: center;
  gap: 10px;
  box-shadow: none;
  border: none;
  color: #10357F;
  font-size: 1.063em;
  width: fit-content;
}

.button_type_beneficiary-select::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("../../assets/svg/right-chevron_color_blue.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.dashboard-form__reminder {
  display: flex;
  flex-flow: column nowrap;
  padding: 15px;
  gap: 15px;
  border-radius: 15px;
  background-color: #ebebeb;
  max-width: 650px;
  width: 100%;
  align-self: center;
}

.dashboard-form__reminder-header {
  margin: 0;
  font-size: 1em;
}

.dashboard-form__reminder-body-list {
  margin: 0;
  padding-inline-start: 25px;
  line-height: 1.5em;
}

.dashboard-form__reminder-paragraph {
  margin: 0;
}

.dashboard-form__reminder-highlight {
  font-style: italic;
  color: #10357F;
  font-weight: bold;
}

.dashboard-form__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(191, 191, 191, 0.5);
  border-radius: 1px;
}

.dashboard-form__inputs-header-container {
  grid-column: 1/-1;
  display: flex;
  flex-flow: column;
  gap: 30px;
}

.dashboard-form__inputs-header {
  font-size: 1.125em;
  color: #10357F;
  margin: 0;
}

.contact-us-details {
  border-radius: 25px;
  border: 1px solid #DBDFEA;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
  padding: 29px 20px;
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.contact-us-details__detail-row {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.contact-us-details__detail-head {
  display: flex;
  flex-flow: row;
  align-items: center;
  gap: 10px;
  align-items: center;
}

.contact-us-details__detail-head img {
  width: 30px;
  height: 30px;
}

.contact-us-details__detail-head p {
  margin: 0;
  font-size: 1em;
  white-space: break-word;
}

.contact-us-details__detail-value {
  margin: 0;
  color: #10357F;
  word-break: break-word;
}

.contact-us-details__divider {
  height: 1px;
  width: 100%;
  background-color: #bfbfbf;
}

.feedback-box {
  border-radius: 25px;
  border: 1px solid #DBDFEA;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
  padding: 29px 20px;
  display: flex;
  flex-flow: column;
}

.feedback-box__header {
  margin: 0 0 20px;
  color: #10357F;
  font-size: 1em;
  font-weight: 700;
  text-align: center;
}

.feedback-box__text-area-container {
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.feedback-box__text-area {
  padding: 20px;
  height: 150px;
  font-size: 1em;
}

.feedback-box__characters-left-message {
  margin: 0;
  font-size: 0.875em;
  color: #808080;
  font-style: italic;
}

.feedback-box .button_size_100 {
  align-self: flex-end;
}

.button-container {
  display: flex;
  flex-flow: row;
  justify-content: flex-end;
  gap: 10px;
}

.branch-search {
  border-radius: 15px;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
  padding: 24px 20px;
  display: flex;
  flex-flow: column;
  gap: 25px;
}

.branch-search__search-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.branch-search__search-container {
  display: flex;
  flex-flow: column;
  position: relative;
}

.branch-search__search-container::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  background-image: url("../../assets/svg/search-icon.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.branch-search__search {
  transition-duration: 0.2s;
  height: 50px;
  border-radius: 100px;
  padding: 10px 48px 10px 20px;
  background-color: #FAFAFA;
  border: 1px solid #E9ECEF;
  box-shadow: 0 0 0 0 rgba(16, 53, 127, 0.2);
  font-size: 1em;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
}

.branch-search__search:focus {
  outline: none;
  border: 1px solid #10357F;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(16, 53, 127, 0.2);
}

.branch-search__filter-container {
  display: flex;
  flex-flow: column;
  position: relative;
}

.branch-search__filter-container::before {
  width: 20px;
  height: 20px;
  content: "";
  background-image: url("../../assets/svg/filter-icon-2.svg");
  background-position: center;
  background-size: 20px auto;
  background-repeat: no-repeat;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #808080;
}

.branch-search__filter-container::after {
  width: 20px;
  height: 20px;
  content: "";
  background-image: url("../../assets/svg/arrow-down.svg");
  background-position: center;
  background-size: 10px;
  background-repeat: no-repeat;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #808080;
}

.branch-search__filter {
  transition-duration: 0.2s;
  height: 50px;
  border-radius: 100px;
  padding: 10px 48px 10px 48px;
  background-color: #FAFAFA;
  border: 1px solid #E9ECEF;
  box-shadow: 0 0 0 0 rgba(16, 53, 127, 0.2);
  font-size: 1em;
  appearance: none;
  align-items: center;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
}

.branch-search__filter:focus {
  outline: none;
  border: 1px solid #10357F;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(16, 53, 127, 0.2);
}

.branch-search-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.branch-search-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 0 15px;
  padding-bottom: 20px;
  margin-bottom: 5px;
  border-bottom: 1px solid #bfbfbf;
}

.branch-search-item__division-1 {
  padding: 0 20px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

.branch-search-item__branch-address {
  padding-top: 10px;
  display: flex;
  flex-flow: column;
  gap: 8px;
}

.branch-search-item__branch-name {
  margin: 0;
  color: #10357F;
  font-size: 1.25em;
  font-size: 700;
}

.branch-search-item__address-line {
  margin: 0;
  font-size: 1em;
}

.branch-search-item__map-link {
  width: 100%;
  padding: 15px 20px;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #10357F;
  cursor: pointer;
}

.branch-search-item__map-link::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-image: url("../../assets/svg/map-icon.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.branch-search-item__division-2 {
  border-radius: 15px;
  background: #F2F4F9;
  padding: 20px;
  display: flex;
  flex-flow: column;
  gap: 15px;
  grid-row: 1/3;
  grid-column: 2/-1;
}

.branch-schedule {
  padding: 0 0 0 33px;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 8px 0;
  position: relative;
}

.branch-schedule::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../../assets/svg/schedule-icon.svg");
  background-repeat: no-repeat;
}

.branch-schedule__days {
  margin: 0;
}

.branch-schedule__time {
  margin: 0;
  text-align: right;
  color: #10357F;
}

.branch-province {
  padding: 0 0 0 33px;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 8px 0;
  position: relative;
}

.branch-province::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../../assets/svg/province.svg");
  background-repeat: no-repeat;
}

.branch-province__days {
  margin: 0;
}

.branch-province__time {
  margin: 0;
  text-align: right;
  color: #10357F;
}

.branch-tel {
  padding-left: 33px;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  position: relative;
}

.branch-tel::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../../assets/svg/contact-us.svg");
  background-repeat: no-repeat;
}

.branch-tel__label {
  margin: 0;
}

.branch-tel__tel-number {
  margin: 0;
  text-align: right;
  color: #10357F;
}

.branch-email {
  padding-left: 33px;
  color: #41AFC6;
  position: relative;
}

.branch-email::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../../assets/svg/contact-info-icon.svg");
  background-repeat: no-repeat;
}

.search {
  display: flex;
  flex-flow: column;
  width: 100%;
  max-width: 370px;
  position: relative;
}

.search::after {
  content: "";
  background-image: url("../../assets/svg/search-icon.svg");
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.search__field {
  height: 54px;
  padding: 10px 48px 10px 20px;
  border-radius: 100px;
  border: 1px solid #E9ECEF;
  font-size: 1em;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
}

.search__field:focus {
  outline: none;
  border: 1px solid #10357F;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(16, 53, 127, 0.2);
}

.filter {
  position: relative;
  display: flex;
  flex-flow: column;
}

.filter__button {
  padding: 10px 20px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-radius: 100px;
  border: 1px solid #E9ECEF;
  background-color: white;
}

.expandable-notice {
  position: absolute;
  width: calc(100% - 300px);
  height: 100%;
  right: 0;
  top: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3.5px);
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
}

@keyframes backdropFadeIn {
  from {
    background-color: transparent;
    backdrop-filter: blur(0px);
  }
  to {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3.5px);
  }
}
.expandable-notice__window {
  width: 100%;
  padding: 32px 32px 50px;
  background-color: white;
  border-radius: 16px 16px 0 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 20px 20px 20px 0 rgba(0, 0, 0, 0.08);
  display: flex;
  flex-flow: column;
}

@keyframes noticeSlideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.expandable-notice_appearing {
  animation: 0.5s ease-in-out 0s forwards backdropFadeIn;
}
.expandable-notice_appearing .expandable-notice__window {
  animation: 0.5s ease-in-out 0s forwards noticeSlideUp;
}

.expandable-notice_hiding {
  animation: 0.5s ease-in-out 0s forwards reverse backdropFadeIn;
}
.expandable-notice_hiding .expandable-notice__window {
  animation: 0.5s ease-in-out 0s forwards reverse noticeSlideUp;
}

.expandable-notice_hidden {
  display: none;
}

.expandable-notice_expanded .expandable-notice__expanded-content {
  max-height: 400px;
  margin-top: 30px;
}
.expandable-notice_expanded .expandable-notice__bottom-button {
  height: 50px;
}
.expandable-notice_expanded .expandable-notice__bottom-button .button {
  position: absolute;
  top: 0%;
  width: 100%;
  height: 50px;
  transition-duration: 0.5s;
  transition-property: top;
}
.expandable-notice_expanded .expandable-notice__expand-button {
  top: 100%;
}

.expandable-notice__top-summary {
  padding-top: 10px;
  display: flex;
  flex-flow: column;
  gap: 30px;
}

.expandable-notice__header {
  margin: 0;
  font-size: 1.375em;
  color: #10357F;
}

.expandable-notice__text-block p:first-child {
  margin-top: 0;
}
.expandable-notice__text-block p:last-child {
  margin-bottom: 0;
}

.expandable-notice__expanded-content {
  overflow: clip;
  max-height: 0px;
  transition-duration: 0.5s;
  margin-top: 0px;
}

.expandable-notice__bottom-button {
  width: 100%;
  height: 30px;
  margin-top: 40px;
  position: relative;
  overflow: clip;
}
.expandable-notice__bottom-button .button {
  position: absolute;
  top: 105%;
  width: 100%;
  height: 50px;
  transition-duration: 0.5s;
  transition-property: top;
}

.expandable-notice__expand-button {
  position: absolute;
  background-color: transparent;
  border: none;
  padding: 0;
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 30px;
  top: 0%;
  cursor: pointer;
  transition-duration: 0.5s;
  transition-property: top;
}

.upload-id {
  display: flex;
  flex-flow: column;
  gap: 30px;
  padding-top: 45px;
  align-items: center;
}

.upload-id__header {
  font-size: 1.375em;
  margin: 0;
  color: #10357F;
  line-height: 79.5%;
  text-align: center;
}

.upload-id__window {
  border-radius: 15px;
  background: #FFF;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.05);
  padding: 24px 20px;
  display: flex;
  flex-flow: column;
  gap: 25px;
  width: 100%;
  max-width: 420px;
}

.upload-id__instructions {
  font-size: 1.125em;
  color: #404040;
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.upload-id__instructions p {
  margin: 0;
}

.upload-id__instructions-small-text {
  color: #808080;
  font-size: 0.89em;
  font-style: italic;
}

.file-upload {
  position: relative;
  padding: 15px 25px;
  border-radius: 15px;
  border: 1.5px dashed #10357F;
  background: #F4F6FA;
  width: 100%;
  height: 380px;
  max-width: 380px;
  font-size: 1em;
}

.file-upload__default {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-flow: column;
  gap: 20px;
  color: #10357F;
  align-items: center;
}
.file-upload__default .file-upload__icon {
  width: 40px;
  height: 40px;
}

.file-upload__success {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  flex-flow: column;
  gap: 20px;
  color: #10357F;
  align-items: center;
}
.file-upload__success .file-upload__icon {
  width: 150px;
  height: 150px;
}

.file-upload_upload-success {
  border: 1.5px dashed #149E14;
  background: #FFF;
}
.file-upload_upload-success .file-upload__success {
  display: flex;
}
.file-upload_upload-success .file-upload__default {
  display: none;
}

.upload-id__button-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/*# sourceMappingURL=dashboard.css.map */
